diff --git a/grammar.js b/grammar.js index 513f485..bccac0a 100644 --- a/grammar.js +++ b/grammar.js @@ -183,10 +183,15 @@ module.exports = grammar({ seq( field('body', $._statement), field('redirect', choice( - repeat1(choice( + $.file_redirect, + $.heredoc_redirect, + )), + repeat(choice( + field('redirect', choice( $.file_redirect, $.heredoc_redirect, )), + field('argument', $._literal), )), ), seq( @@ -530,7 +535,7 @@ module.exports = grammar({ choice( seq( choice('<', '>', '>>', '&>', '&>>', '<&', '>&', '>|'), - field('destination', repeat1($._literal)), + field('destination', $._literal), ), seq( choice('<&-', '>&-'), // close file descriptor diff --git a/src/grammar.json b/src/grammar.json index fa9509d..4f484de 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -262,7 +262,24 @@ "type": "CHOICE", "members": [ { - "type": "REPEAT1", + "type": "SYMBOL", + "name": "file_redirect" + }, + { + "type": "SYMBOL", + "name": "heredoc_redirect" + } + ] + } + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "redirect", "content": { "type": "CHOICE", "members": [ @@ -276,6 +293,14 @@ } ] } + }, + { + "type": "FIELD", + "name": "argument", + "content": { + "type": "SYMBOL", + "name": "_literal" + } } ] } @@ -2632,11 +2657,8 @@ "type": "FIELD", "name": "destination", "content": { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "_literal" - } + "type": "SYMBOL", + "name": "_literal" } } ] diff --git a/src/node-types.json b/src/node-types.json index 8cc6b30..346358e 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -1288,7 +1288,7 @@ ] }, "destination": { - "multiple": true, + "multiple": false, "required": false, "types": [ { @@ -1812,6 +1812,20 @@ "type": "redirected_statement", "named": true, "fields": { + "argument": { + "multiple": true, + "required": false, + "types": [ + { + "type": "_primary_expression", + "named": true + }, + { + "type": "concatenation", + "named": true + } + ] + }, "body": { "multiple": false, "required": false, diff --git a/src/parser.c b/src/parser.c index 4eeb137..b0e10b7 100644 --- a/src/parser.c +++ b/src/parser.c @@ -15,8 +15,8 @@ #endif #define LANGUAGE_VERSION 15 -#define STATE_COUNT 7571 -#define LARGE_STATE_COUNT 523 +#define STATE_COUNT 7190 +#define LARGE_STATE_COUNT 495 #define SYMBOL_COUNT 280 #define ALIAS_COUNT 0 #define TOKEN_COUNT 174 @@ -24,7 +24,7 @@ #define FIELD_COUNT 19 #define MAX_ALIAS_SEQUENCE_LENGTH 8 #define MAX_RESERVED_WORD_SET_SIZE 0 -#define PRODUCTION_ID_COUNT 159 +#define PRODUCTION_ID_COUNT 160 #define SUPERTYPE_COUNT 1 enum ts_symbol_identifiers { @@ -2076,128 +2076,129 @@ static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [33] = {.index = 11, .length = 1}, [34] = {.index = 38, .length = 2}, [35] = {.index = 40, .length = 1}, - [36] = {.index = 41, .length = 2}, - [37] = {.index = 41, .length = 2}, - [38] = {.index = 43, .length = 4}, + [36] = {.index = 41, .length = 4}, + [37] = {.index = 45, .length = 2}, + [38] = {.index = 45, .length = 2}, [39] = {.index = 47, .length = 4}, - [40] = {.index = 51, .length = 2}, - [41] = {.index = 51, .length = 2}, - [42] = {.index = 53, .length = 2}, - [43] = {.index = 55, .length = 3}, - [44] = {.index = 58, .length = 1}, - [45] = {.index = 59, .length = 1}, - [46] = {.index = 59, .length = 1}, - [47] = {.index = 60, .length = 3}, - [49] = {.index = 63, .length = 2}, - [50] = {.index = 65, .length = 2}, - [51] = {.index = 67, .length = 2}, - [52] = {.index = 69, .length = 2}, - [53] = {.index = 69, .length = 2}, - [54] = {.index = 71, .length = 2}, - [55] = {.index = 25, .length = 2}, - [56] = {.index = 73, .length = 4}, - [57] = {.index = 77, .length = 1}, - [58] = {.index = 78, .length = 1}, - [59] = {.index = 79, .length = 1}, - [60] = {.index = 79, .length = 1}, - [61] = {.index = 80, .length = 2}, - [62] = {.index = 63, .length = 2}, - [63] = {.index = 82, .length = 3}, - [64] = {.index = 85, .length = 3}, - [65] = {.index = 88, .length = 3}, - [66] = {.index = 91, .length = 2}, - [67] = {.index = 93, .length = 2}, - [68] = {.index = 95, .length = 4}, - [69] = {.index = 99, .length = 2}, - [70] = {.index = 101, .length = 2}, - [71] = {.index = 103, .length = 2}, - [72] = {.index = 105, .length = 2}, - [73] = {.index = 107, .length = 2}, - [74] = {.index = 109, .length = 2}, - [75] = {.index = 111, .length = 3}, - [76] = {.index = 114, .length = 3}, - [77] = {.index = 117, .length = 2}, - [78] = {.index = 119, .length = 2}, - [79] = {.index = 121, .length = 2}, - [80] = {.index = 123, .length = 2}, - [81] = {.index = 117, .length = 2}, - [82] = {.index = 119, .length = 2}, - [83] = {.index = 121, .length = 2}, - [84] = {.index = 125, .length = 3}, - [85] = {.index = 67, .length = 2}, - [86] = {.index = 128, .length = 3}, - [87] = {.index = 128, .length = 3}, - [88] = {.index = 63, .length = 2}, - [89] = {.index = 131, .length = 2}, - [90] = {.index = 133, .length = 3}, - [91] = {.index = 136, .length = 3}, - [92] = {.index = 139, .length = 4}, - [93] = {.index = 143, .length = 2}, - [94] = {.index = 145, .length = 1}, - [95] = {.index = 146, .length = 1}, - [96] = {.index = 147, .length = 3}, - [97] = {.index = 150, .length = 3}, - [98] = {.index = 153, .length = 3}, - [99] = {.index = 156, .length = 3}, - [100] = {.index = 159, .length = 3}, - [101] = {.index = 162, .length = 3}, - [102] = {.index = 165, .length = 3}, - [103] = {.index = 168, .length = 2}, - [104] = {.index = 170, .length = 2}, - [105] = {.index = 172, .length = 3}, - [106] = {.index = 175, .length = 3}, - [107] = {.index = 178, .length = 2}, - [108] = {.index = 180, .length = 2}, - [109] = {.index = 182, .length = 2}, - [110] = {.index = 178, .length = 2}, - [111] = {.index = 180, .length = 2}, - [112] = {.index = 182, .length = 2}, - [113] = {.index = 168, .length = 2}, - [114] = {.index = 170, .length = 2}, - [115] = {.index = 172, .length = 3}, - [116] = {.index = 175, .length = 3}, - [117] = {.index = 184, .length = 3}, - [118] = {.index = 184, .length = 3}, - [119] = {.index = 67, .length = 2}, - [120] = {.index = 187, .length = 3}, - [121] = {.index = 131, .length = 2}, - [122] = {.index = 190, .length = 3}, - [123] = {.index = 193, .length = 4}, - [124] = {.index = 197, .length = 3}, - [125] = {.index = 200, .length = 2}, - [126] = {.index = 202, .length = 2}, - [127] = {.index = 204, .length = 3}, - [128] = {.index = 207, .length = 4}, + [40] = {.index = 51, .length = 4}, + [41] = {.index = 55, .length = 2}, + [42] = {.index = 55, .length = 2}, + [43] = {.index = 57, .length = 2}, + [44] = {.index = 59, .length = 3}, + [45] = {.index = 62, .length = 1}, + [46] = {.index = 63, .length = 1}, + [47] = {.index = 63, .length = 1}, + [48] = {.index = 64, .length = 3}, + [50] = {.index = 67, .length = 2}, + [51] = {.index = 69, .length = 2}, + [52] = {.index = 71, .length = 2}, + [53] = {.index = 73, .length = 2}, + [54] = {.index = 73, .length = 2}, + [55] = {.index = 75, .length = 2}, + [56] = {.index = 25, .length = 2}, + [57] = {.index = 77, .length = 4}, + [58] = {.index = 81, .length = 1}, + [59] = {.index = 82, .length = 1}, + [60] = {.index = 83, .length = 1}, + [61] = {.index = 83, .length = 1}, + [62] = {.index = 84, .length = 2}, + [63] = {.index = 67, .length = 2}, + [64] = {.index = 86, .length = 3}, + [65] = {.index = 89, .length = 3}, + [66] = {.index = 92, .length = 3}, + [67] = {.index = 95, .length = 2}, + [68] = {.index = 97, .length = 2}, + [69] = {.index = 99, .length = 4}, + [70] = {.index = 103, .length = 2}, + [71] = {.index = 105, .length = 2}, + [72] = {.index = 107, .length = 2}, + [73] = {.index = 109, .length = 2}, + [74] = {.index = 111, .length = 2}, + [75] = {.index = 113, .length = 2}, + [76] = {.index = 115, .length = 3}, + [77] = {.index = 118, .length = 3}, + [78] = {.index = 121, .length = 2}, + [79] = {.index = 123, .length = 2}, + [80] = {.index = 125, .length = 2}, + [81] = {.index = 127, .length = 2}, + [82] = {.index = 121, .length = 2}, + [83] = {.index = 123, .length = 2}, + [84] = {.index = 125, .length = 2}, + [85] = {.index = 129, .length = 3}, + [86] = {.index = 71, .length = 2}, + [87] = {.index = 132, .length = 3}, + [88] = {.index = 132, .length = 3}, + [89] = {.index = 67, .length = 2}, + [90] = {.index = 135, .length = 2}, + [91] = {.index = 137, .length = 3}, + [92] = {.index = 140, .length = 3}, + [93] = {.index = 143, .length = 4}, + [94] = {.index = 147, .length = 2}, + [95] = {.index = 149, .length = 1}, + [96] = {.index = 150, .length = 1}, + [97] = {.index = 151, .length = 3}, + [98] = {.index = 154, .length = 3}, + [99] = {.index = 157, .length = 3}, + [100] = {.index = 160, .length = 3}, + [101] = {.index = 163, .length = 3}, + [102] = {.index = 166, .length = 3}, + [103] = {.index = 169, .length = 3}, + [104] = {.index = 172, .length = 2}, + [105] = {.index = 174, .length = 2}, + [106] = {.index = 176, .length = 3}, + [107] = {.index = 179, .length = 3}, + [108] = {.index = 182, .length = 2}, + [109] = {.index = 184, .length = 2}, + [110] = {.index = 186, .length = 2}, + [111] = {.index = 182, .length = 2}, + [112] = {.index = 184, .length = 2}, + [113] = {.index = 186, .length = 2}, + [114] = {.index = 172, .length = 2}, + [115] = {.index = 174, .length = 2}, + [116] = {.index = 176, .length = 3}, + [117] = {.index = 179, .length = 3}, + [118] = {.index = 188, .length = 3}, + [119] = {.index = 188, .length = 3}, + [120] = {.index = 71, .length = 2}, + [121] = {.index = 191, .length = 3}, + [122] = {.index = 135, .length = 2}, + [123] = {.index = 194, .length = 3}, + [124] = {.index = 197, .length = 4}, + [125] = {.index = 201, .length = 3}, + [126] = {.index = 204, .length = 2}, + [127] = {.index = 206, .length = 2}, + [128] = {.index = 208, .length = 3}, [129] = {.index = 211, .length = 4}, [130] = {.index = 215, .length = 4}, [131] = {.index = 219, .length = 4}, [132] = {.index = 223, .length = 4}, [133] = {.index = 227, .length = 4}, - [134] = {.index = 231, .length = 3}, - [135] = {.index = 234, .length = 3}, - [136] = {.index = 237, .length = 2}, - [137] = {.index = 239, .length = 2}, - [138] = {.index = 241, .length = 3}, - [139] = {.index = 244, .length = 3}, - [140] = {.index = 237, .length = 2}, - [141] = {.index = 239, .length = 2}, - [142] = {.index = 241, .length = 3}, - [143] = {.index = 244, .length = 3}, - [144] = {.index = 231, .length = 3}, - [145] = {.index = 234, .length = 3}, - [146] = {.index = 247, .length = 3}, - [147] = {.index = 250, .length = 3}, - [148] = {.index = 250, .length = 3}, - [149] = {.index = 253, .length = 4}, - [150] = {.index = 257, .length = 5}, - [151] = {.index = 262, .length = 5}, - [152] = {.index = 267, .length = 5}, - [153] = {.index = 272, .length = 3}, - [154] = {.index = 275, .length = 3}, - [155] = {.index = 272, .length = 3}, - [156] = {.index = 275, .length = 3}, - [157] = {.index = 278, .length = 3}, - [158] = {.index = 281, .length = 6}, + [134] = {.index = 231, .length = 4}, + [135] = {.index = 235, .length = 3}, + [136] = {.index = 238, .length = 3}, + [137] = {.index = 241, .length = 2}, + [138] = {.index = 243, .length = 2}, + [139] = {.index = 245, .length = 3}, + [140] = {.index = 248, .length = 3}, + [141] = {.index = 241, .length = 2}, + [142] = {.index = 243, .length = 2}, + [143] = {.index = 245, .length = 3}, + [144] = {.index = 248, .length = 3}, + [145] = {.index = 235, .length = 3}, + [146] = {.index = 238, .length = 3}, + [147] = {.index = 251, .length = 3}, + [148] = {.index = 254, .length = 3}, + [149] = {.index = 254, .length = 3}, + [150] = {.index = 257, .length = 4}, + [151] = {.index = 261, .length = 5}, + [152] = {.index = 266, .length = 5}, + [153] = {.index = 271, .length = 5}, + [154] = {.index = 276, .length = 3}, + [155] = {.index = 279, .length = 3}, + [156] = {.index = 276, .length = 3}, + [157] = {.index = 279, .length = 3}, + [158] = {.index = 282, .length = 3}, + [159] = {.index = 285, .length = 6}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2267,335 +2268,340 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [40] = {field_redirect, 1}, [41] = + {field_argument, 2, .inherited = true}, + {field_body, 0}, + {field_redirect, 1}, + {field_redirect, 2, .inherited = true}, + [45] = {field_argument, 0}, {field_argument, 1}, - [43] = + [47] = {field_argument, 0, .inherited = true}, {field_argument, 1, .inherited = true}, {field_redirect, 0, .inherited = true}, {field_redirect, 1, .inherited = true}, - [47] = + [51] = {field_argument, 2, .inherited = true}, {field_name, 1}, {field_redirect, 0, .inherited = true}, {field_redirect, 2, .inherited = true}, - [51] = + [55] = {field_index, 2}, {field_name, 0}, - [53] = + [57] = {field_body, 3}, {field_variable, 1}, - [55] = + [59] = {field_left, 0}, {field_operator, 1}, {field_right, 2}, - [58] = + [62] = {field_condition, 1}, - [59] = + [63] = {field_value, 1}, - [60] = + [64] = {field_body, 2}, {field_name, 1}, {field_redirect, 3}, - [63] = + [67] = {field_operator, 0}, {field_operator, 1}, - [65] = + [69] = {field_operator, 0}, {field_operator, 1, .inherited = true}, - [67] = + [71] = {field_operator, 0}, {field_operator, 2}, - [69] = + [73] = {field_operator, 0}, {field_operator, 2, .inherited = true}, - [71] = + [75] = {field_body, 3}, {field_name, 0}, - [73] = + [77] = {field_body, 4}, {field_condition, 2, .inherited = true}, {field_initializer, 2, .inherited = true}, {field_update, 2, .inherited = true}, - [77] = + [81] = {field_initializer, 0}, - [78] = + [82] = {field_update, 2}, - [79] = + [83] = {field_value, 0}, - [80] = + [84] = {field_body, 4}, {field_name, 1}, - [82] = + [86] = {field_operator, 0}, {field_operator, 1}, {field_operator, 2, .inherited = true}, - [85] = + [89] = {field_operator, 0}, {field_operator, 1, .inherited = true}, {field_operator, 2}, - [88] = + [92] = {field_body, 3}, {field_name, 0}, {field_redirect, 4}, - [91] = + [95] = {field_operator, 0}, {field_right, 1}, - [93] = + [97] = {field_argument, 0, .inherited = true}, {field_argument, 1, .inherited = true}, - [95] = + [99] = {field_body, 5}, {field_condition, 2, .inherited = true}, {field_initializer, 2, .inherited = true}, {field_update, 2, .inherited = true}, - [99] = + [103] = {field_condition, 2}, {field_initializer, 0}, - [101] = + [105] = {field_initializer, 0}, {field_update, 3}, - [103] = + [107] = {field_initializer, 0}, {field_initializer, 1}, - [105] = + [109] = {field_condition, 1}, {field_update, 3}, - [107] = + [111] = {field_condition, 1}, {field_condition, 2}, - [109] = + [113] = {field_update, 2}, {field_update, 3}, - [111] = + [115] = {field_body, 5}, {field_value, 3}, {field_variable, 1}, - [114] = + [118] = {field_alternative, 4}, {field_condition, 0}, {field_consequence, 2}, - [117] = + [121] = {field_termination, 2}, {field_value, 0}, - [119] = + [123] = {field_fallthrough, 2}, {field_value, 0}, - [121] = + [125] = {field_value, 0}, {field_value, 1, .inherited = true}, - [123] = + [127] = {field_value, 0, .inherited = true}, {field_value, 1, .inherited = true}, - [125] = + [129] = {field_body, 4}, {field_name, 1}, {field_redirect, 5}, - [128] = + [132] = {field_operator, 0}, {field_operator, 1}, {field_operator, 3}, - [131] = + [135] = {field_operator, 0}, {field_operator, 3}, - [133] = + [137] = {field_operator, 0}, {field_operator, 2}, {field_operator, 3, .inherited = true}, - [136] = + [140] = {field_operator, 0}, {field_operator, 1}, {field_operator, 3, .inherited = true}, - [139] = + [143] = {field_operator, 0}, {field_operator, 1, .inherited = true}, {field_operator, 2}, {field_operator, 3, .inherited = true}, - [143] = + [147] = {field_operator, 2, .inherited = true}, {field_right, 2, .inherited = true}, - [145] = + [149] = {field_argument, 2, .inherited = true}, - [146] = + [150] = {field_redirect, 2}, - [147] = + [151] = {field_condition, 2}, {field_initializer, 0}, {field_update, 4}, - [150] = + [154] = {field_condition, 2}, {field_condition, 3}, {field_initializer, 0}, - [153] = + [157] = {field_initializer, 0}, {field_update, 3}, {field_update, 4}, - [156] = + [160] = {field_condition, 3}, {field_initializer, 0}, {field_initializer, 1}, - [159] = + [163] = {field_initializer, 0}, {field_initializer, 1}, {field_update, 4}, - [162] = + [166] = {field_condition, 1}, {field_update, 3}, {field_update, 4}, - [165] = + [169] = {field_condition, 1}, {field_condition, 2}, {field_update, 4}, - [168] = + [172] = {field_termination, 3}, {field_value, 0}, - [170] = + [174] = {field_fallthrough, 3}, {field_value, 0}, - [172] = + [176] = {field_termination, 3}, {field_value, 0}, {field_value, 1, .inherited = true}, - [175] = + [179] = {field_fallthrough, 3}, {field_value, 0}, {field_value, 1, .inherited = true}, - [178] = + [182] = {field_termination, 3}, {field_value, 1}, - [180] = + [184] = {field_fallthrough, 3}, {field_value, 1}, - [182] = + [186] = {field_value, 1}, {field_value, 2, .inherited = true}, - [184] = + [188] = {field_operator, 0}, {field_operator, 2}, {field_operator, 4}, - [187] = + [191] = {field_operator, 0}, {field_operator, 1}, {field_operator, 4}, - [190] = + [194] = {field_operator, 0}, {field_operator, 2}, {field_operator, 4, .inherited = true}, - [193] = + [197] = {field_operator, 0}, {field_operator, 1, .inherited = true}, {field_operator, 2}, {field_operator, 4, .inherited = true}, - [197] = + [201] = {field_descriptor, 0}, {field_operator, 3, .inherited = true}, {field_right, 3, .inherited = true}, - [200] = + [204] = {field_argument, 3, .inherited = true}, {field_descriptor, 0}, - [202] = + [206] = {field_descriptor, 0}, {field_redirect, 3}, - [204] = + [208] = {field_operator, 3, .inherited = true}, {field_redirect, 2}, {field_right, 3, .inherited = true}, - [207] = + [211] = {field_condition, 2}, {field_initializer, 0}, {field_update, 4}, {field_update, 5}, - [211] = + [215] = {field_condition, 2}, {field_condition, 3}, {field_initializer, 0}, {field_update, 5}, - [215] = + [219] = {field_condition, 3}, {field_initializer, 0}, {field_initializer, 1}, {field_update, 5}, - [219] = + [223] = {field_condition, 3}, {field_condition, 4}, {field_initializer, 0}, {field_initializer, 1}, - [223] = + [227] = {field_initializer, 0}, {field_initializer, 1}, {field_update, 4}, {field_update, 5}, - [227] = + [231] = {field_condition, 1}, {field_condition, 2}, {field_update, 4}, {field_update, 5}, - [231] = + [235] = {field_termination, 4}, {field_value, 0}, {field_value, 1, .inherited = true}, - [234] = + [238] = {field_fallthrough, 4}, {field_value, 0}, {field_value, 1, .inherited = true}, - [237] = + [241] = {field_termination, 4}, {field_value, 1}, - [239] = + [243] = {field_fallthrough, 4}, {field_value, 1}, - [241] = + [245] = {field_termination, 4}, {field_value, 1}, {field_value, 2, .inherited = true}, - [244] = + [248] = {field_fallthrough, 4}, {field_value, 1}, {field_value, 2, .inherited = true}, - [247] = + [251] = {field_operator, 0}, {field_operator, 2}, {field_operator, 5}, - [250] = + [254] = {field_operator, 0}, {field_operator, 3}, {field_operator, 5}, - [253] = + [257] = {field_descriptor, 0}, {field_operator, 4, .inherited = true}, {field_redirect, 3}, {field_right, 4, .inherited = true}, - [257] = + [261] = {field_condition, 2}, {field_condition, 3}, {field_initializer, 0}, {field_update, 5}, {field_update, 6}, - [262] = + [266] = {field_condition, 3}, {field_initializer, 0}, {field_initializer, 1}, {field_update, 5}, {field_update, 6}, - [267] = + [271] = {field_condition, 3}, {field_condition, 4}, {field_initializer, 0}, {field_initializer, 1}, {field_update, 6}, - [272] = + [276] = {field_termination, 5}, {field_value, 1}, {field_value, 2, .inherited = true}, - [275] = + [279] = {field_fallthrough, 5}, {field_value, 1}, {field_value, 2, .inherited = true}, - [278] = + [282] = {field_operator, 0}, {field_operator, 3}, {field_operator, 6}, - [281] = + [285] = {field_condition, 3}, {field_condition, 4}, {field_initializer, 0}, @@ -2609,7 +2615,7 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [1] = { [0] = sym_word, }, - [9] = { + [8] = { [1] = sym_word, }, [10] = { @@ -2624,7 +2630,7 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [16] = { [0] = sym_word, }, - [22] = { + [21] = { [2] = sym_word, }, [23] = { @@ -2639,51 +2645,48 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [33] = { [1] = anon_sym_AT2, }, - [36] = { + [37] = { [1] = sym_word, }, - [40] = { + [41] = { [2] = sym_word, }, - [45] = { + [46] = { [1] = sym_word, }, - [48] = { + [49] = { [0] = sym_regex, }, - [53] = { + [54] = { [1] = anon_sym_AT2, }, - [55] = { + [56] = { [0] = sym_variable_name, }, - [59] = { + [60] = { [0] = sym_word, }, - [62] = { + [63] = { [2] = sym_word, }, - [77] = { - [0] = sym_word, - }, [78] = { [0] = sym_word, }, [79] = { [0] = sym_word, }, - [85] = { - [3] = sym_word, + [80] = { + [0] = sym_word, }, [86] = { + [3] = sym_word, + }, + [87] = { [2] = sym_word, }, - [88] = { + [89] = { [3] = sym_word, }, - [103] = { - [0] = sym_word, - }, [104] = { [0] = sym_word, }, @@ -2694,7 +2697,7 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [0] = sym_word, }, [107] = { - [1] = sym_word, + [0] = sym_word, }, [108] = { [1] = sym_word, @@ -2702,26 +2705,26 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [109] = { [1] = sym_word, }, - [117] = { + [110] = { + [1] = sym_word, + }, + [118] = { [3] = sym_word, }, - [119] = { + [120] = { [4] = sym_word, }, - [120] = { + [121] = { [3] = sym_word, }, - [121] = { + [122] = { [4] = sym_word, }, - [134] = { - [0] = sym_word, - }, [135] = { [0] = sym_word, }, [136] = { - [1] = sym_word, + [0] = sym_word, }, [137] = { [1] = sym_word, @@ -2732,18 +2735,21 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [139] = { [1] = sym_word, }, - [146] = { - [4] = sym_word, + [140] = { + [1] = sym_word, }, [147] = { [4] = sym_word, }, - [153] = { - [1] = sym_word, + [148] = { + [4] = sym_word, }, [154] = { [1] = sym_word, }, + [155] = { + [1] = sym_word, + }, }; static const uint16_t ts_non_terminal_alias_map[] = { @@ -2776,12 +2782,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [19] = 14, [20] = 15, [21] = 15, - [22] = 13, + [22] = 22, [23] = 23, [24] = 24, [25] = 25, [26] = 26, - [27] = 27, + [27] = 13, [28] = 28, [29] = 29, [30] = 30, @@ -2806,7525 +2812,7144 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [49] = 49, [50] = 50, [51] = 50, - [52] = 52, - [53] = 50, - [54] = 52, - [55] = 52, - [56] = 52, - [57] = 52, - [58] = 50, - [59] = 52, - [60] = 52, - [61] = 52, + [52] = 50, + [53] = 53, + [54] = 50, + [55] = 53, + [56] = 53, + [57] = 53, + [58] = 53, + [59] = 53, + [60] = 53, + [61] = 53, [62] = 62, [63] = 63, [64] = 64, [65] = 65, - [66] = 66, - [67] = 26, - [68] = 26, + [66] = 62, + [67] = 25, + [68] = 25, [69] = 64, [70] = 70, - [71] = 66, + [71] = 62, [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, + [74] = 74, + [75] = 64, + [76] = 62, + [77] = 70, + [78] = 73, + [79] = 64, + [80] = 62, + [81] = 70, + [82] = 73, + [83] = 64, + [84] = 73, [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, + [86] = 73, + [87] = 64, + [88] = 62, + [89] = 70, + [90] = 73, + [91] = 64, + [92] = 92, + [93] = 62, + [94] = 70, + [95] = 73, + [96] = 64, + [97] = 97, + [98] = 62, + [99] = 70, + [100] = 73, + [101] = 64, [102] = 102, [103] = 102, - [104] = 104, - [105] = 105, - [106] = 63, - [107] = 65, - [108] = 102, - [109] = 62, - [110] = 104, - [111] = 105, - [112] = 63, - [113] = 65, - [114] = 102, - [115] = 62, - [116] = 104, - [117] = 105, - [118] = 63, - [119] = 65, - [120] = 102, - [121] = 62, - [122] = 104, - [123] = 105, - [124] = 63, - [125] = 102, - [126] = 62, - [127] = 104, - [128] = 105, - [129] = 63, - [130] = 102, - [131] = 62, - [132] = 104, - [133] = 105, - [134] = 63, - [135] = 102, - [136] = 62, - [137] = 104, - [138] = 105, - [139] = 63, - [140] = 62, - [141] = 104, - [142] = 105, - [143] = 63, - [144] = 62, - [145] = 104, - [146] = 105, - [147] = 63, - [148] = 62, - [149] = 104, - [150] = 105, - [151] = 63, - [152] = 62, - [153] = 104, - [154] = 105, - [155] = 63, - [156] = 62, - [157] = 104, - [158] = 105, - [159] = 63, - [160] = 62, - [161] = 104, - [162] = 105, - [163] = 63, - [164] = 62, - [165] = 104, - [166] = 105, - [167] = 63, - [168] = 62, - [169] = 104, - [170] = 105, - [171] = 63, - [172] = 62, - [173] = 104, - [174] = 105, - [175] = 63, - [176] = 62, - [177] = 104, - [178] = 105, - [179] = 63, - [180] = 62, - [181] = 104, - [182] = 105, - [183] = 63, - [184] = 62, - [185] = 104, - [186] = 105, - [187] = 63, - [188] = 62, - [189] = 104, - [190] = 105, - [191] = 63, - [192] = 62, - [193] = 104, - [194] = 105, - [195] = 63, - [196] = 62, - [197] = 104, - [198] = 105, - [199] = 63, - [200] = 62, - [201] = 104, - [202] = 105, - [203] = 63, - [204] = 62, - [205] = 104, - [206] = 105, - [207] = 63, - [208] = 62, - [209] = 104, - [210] = 105, - [211] = 63, - [212] = 62, - [213] = 104, - [214] = 105, - [215] = 63, - [216] = 62, - [217] = 104, - [218] = 105, - [219] = 63, - [220] = 62, - [221] = 104, - [222] = 105, - [223] = 63, - [224] = 62, - [225] = 104, - [226] = 105, - [227] = 63, - [228] = 62, - [229] = 104, - [230] = 105, - [231] = 63, - [232] = 62, - [233] = 104, - [234] = 105, - [235] = 63, - [236] = 62, - [237] = 104, - [238] = 105, - [239] = 63, - [240] = 62, - [241] = 104, - [242] = 105, - [243] = 63, - [244] = 62, - [245] = 104, - [246] = 105, - [247] = 63, - [248] = 62, - [249] = 104, - [250] = 105, - [251] = 63, - [252] = 62, - [253] = 104, - [254] = 105, - [255] = 63, - [256] = 62, - [257] = 104, - [258] = 105, - [259] = 63, - [260] = 62, - [261] = 104, - [262] = 105, - [263] = 63, - [264] = 62, - [265] = 104, - [266] = 105, - [267] = 63, - [268] = 62, - [269] = 104, - [270] = 105, - [271] = 63, - [272] = 62, - [273] = 104, - [274] = 105, - [275] = 63, - [276] = 62, - [277] = 104, - [278] = 105, - [279] = 63, - [280] = 62, - [281] = 104, - [282] = 105, - [283] = 63, - [284] = 62, - [285] = 104, - [286] = 105, - [287] = 63, - [288] = 62, - [289] = 104, - [290] = 105, - [291] = 63, - [292] = 62, - [293] = 104, - [294] = 105, - [295] = 63, - [296] = 62, - [297] = 104, - [298] = 105, - [299] = 63, - [300] = 62, - [301] = 104, - [302] = 105, - [303] = 63, - [304] = 62, - [305] = 104, - [306] = 105, - [307] = 63, - [308] = 62, - [309] = 104, - [310] = 105, - [311] = 63, - [312] = 62, - [313] = 104, - [314] = 105, - [315] = 63, - [316] = 62, - [317] = 104, - [318] = 105, - [319] = 63, - [320] = 62, - [321] = 104, - [322] = 105, - [323] = 63, - [324] = 62, - [325] = 104, - [326] = 105, - [327] = 63, - [328] = 62, - [329] = 104, - [330] = 105, - [331] = 63, - [332] = 62, - [333] = 104, - [334] = 105, - [335] = 63, - [336] = 62, - [337] = 104, - [338] = 105, - [339] = 63, - [340] = 62, - [341] = 104, - [342] = 105, - [343] = 63, - [344] = 62, - [345] = 104, - [346] = 105, - [347] = 63, - [348] = 62, - [349] = 104, - [350] = 105, - [351] = 63, - [352] = 62, - [353] = 104, - [354] = 105, - [355] = 63, - [356] = 62, - [357] = 104, - [358] = 105, - [359] = 63, - [360] = 62, - [361] = 104, - [362] = 105, - [363] = 63, - [364] = 62, - [365] = 104, - [366] = 105, - [367] = 62, - [368] = 104, - [369] = 105, - [370] = 62, - [371] = 104, - [372] = 105, - [373] = 62, - [374] = 104, - [375] = 105, - [376] = 62, - [377] = 104, - [378] = 105, - [379] = 62, - [380] = 104, - [381] = 105, - [382] = 62, - [383] = 104, - [384] = 105, + [104] = 74, + [105] = 97, + [106] = 106, + [107] = 63, + [108] = 65, + [109] = 102, + [110] = 74, + [111] = 97, + [112] = 106, + [113] = 63, + [114] = 65, + [115] = 102, + [116] = 74, + [117] = 97, + [118] = 106, + [119] = 63, + [120] = 65, + [121] = 102, + [122] = 74, + [123] = 97, + [124] = 106, + [125] = 63, + [126] = 102, + [127] = 74, + [128] = 97, + [129] = 106, + [130] = 63, + [131] = 102, + [132] = 74, + [133] = 97, + [134] = 106, + [135] = 63, + [136] = 102, + [137] = 74, + [138] = 97, + [139] = 106, + [140] = 63, + [141] = 74, + [142] = 97, + [143] = 106, + [144] = 63, + [145] = 74, + [146] = 97, + [147] = 106, + [148] = 63, + [149] = 74, + [150] = 97, + [151] = 106, + [152] = 63, + [153] = 74, + [154] = 97, + [155] = 106, + [156] = 63, + [157] = 74, + [158] = 97, + [159] = 106, + [160] = 63, + [161] = 74, + [162] = 97, + [163] = 106, + [164] = 63, + [165] = 74, + [166] = 97, + [167] = 106, + [168] = 63, + [169] = 74, + [170] = 97, + [171] = 106, + [172] = 63, + [173] = 74, + [174] = 97, + [175] = 106, + [176] = 63, + [177] = 74, + [178] = 97, + [179] = 106, + [180] = 63, + [181] = 74, + [182] = 97, + [183] = 106, + [184] = 63, + [185] = 74, + [186] = 97, + [187] = 106, + [188] = 63, + [189] = 74, + [190] = 97, + [191] = 106, + [192] = 63, + [193] = 74, + [194] = 97, + [195] = 106, + [196] = 63, + [197] = 74, + [198] = 97, + [199] = 106, + [200] = 63, + [201] = 74, + [202] = 97, + [203] = 106, + [204] = 63, + [205] = 74, + [206] = 97, + [207] = 106, + [208] = 63, + [209] = 74, + [210] = 97, + [211] = 106, + [212] = 63, + [213] = 74, + [214] = 97, + [215] = 106, + [216] = 63, + [217] = 74, + [218] = 97, + [219] = 106, + [220] = 63, + [221] = 74, + [222] = 97, + [223] = 106, + [224] = 63, + [225] = 74, + [226] = 97, + [227] = 106, + [228] = 63, + [229] = 74, + [230] = 97, + [231] = 106, + [232] = 63, + [233] = 74, + [234] = 97, + [235] = 106, + [236] = 63, + [237] = 74, + [238] = 97, + [239] = 106, + [240] = 63, + [241] = 74, + [242] = 97, + [243] = 106, + [244] = 63, + [245] = 74, + [246] = 97, + [247] = 106, + [248] = 63, + [249] = 74, + [250] = 97, + [251] = 106, + [252] = 63, + [253] = 74, + [254] = 97, + [255] = 106, + [256] = 63, + [257] = 74, + [258] = 97, + [259] = 106, + [260] = 63, + [261] = 74, + [262] = 97, + [263] = 106, + [264] = 63, + [265] = 74, + [266] = 97, + [267] = 106, + [268] = 63, + [269] = 74, + [270] = 97, + [271] = 106, + [272] = 63, + [273] = 74, + [274] = 97, + [275] = 106, + [276] = 63, + [277] = 74, + [278] = 97, + [279] = 106, + [280] = 63, + [281] = 74, + [282] = 97, + [283] = 106, + [284] = 63, + [285] = 74, + [286] = 97, + [287] = 106, + [288] = 63, + [289] = 74, + [290] = 97, + [291] = 106, + [292] = 63, + [293] = 74, + [294] = 97, + [295] = 106, + [296] = 63, + [297] = 74, + [298] = 97, + [299] = 106, + [300] = 63, + [301] = 74, + [302] = 97, + [303] = 106, + [304] = 63, + [305] = 74, + [306] = 97, + [307] = 106, + [308] = 63, + [309] = 74, + [310] = 97, + [311] = 106, + [312] = 63, + [313] = 74, + [314] = 97, + [315] = 106, + [316] = 63, + [317] = 74, + [318] = 97, + [319] = 106, + [320] = 63, + [321] = 74, + [322] = 97, + [323] = 106, + [324] = 63, + [325] = 74, + [326] = 97, + [327] = 106, + [328] = 63, + [329] = 74, + [330] = 97, + [331] = 106, + [332] = 63, + [333] = 74, + [334] = 97, + [335] = 106, + [336] = 63, + [337] = 74, + [338] = 97, + [339] = 106, + [340] = 74, + [341] = 97, + [342] = 106, + [343] = 74, + [344] = 97, + [345] = 106, + [346] = 74, + [347] = 97, + [348] = 106, + [349] = 74, + [350] = 97, + [351] = 106, + [352] = 74, + [353] = 97, + [354] = 106, + [355] = 74, + [356] = 97, + [357] = 106, + [358] = 74, + [359] = 97, + [360] = 106, + [361] = 74, + [362] = 97, + [363] = 106, + [364] = 74, + [365] = 97, + [366] = 106, + [367] = 74, + [368] = 97, + [369] = 106, + [370] = 74, + [371] = 97, + [372] = 106, + [373] = 74, + [374] = 97, + [375] = 106, + [376] = 74, + [377] = 97, + [378] = 106, + [379] = 74, + [380] = 97, + [381] = 106, + [382] = 382, + [383] = 383, + [384] = 106, [385] = 62, - [386] = 104, - [387] = 105, - [388] = 62, - [389] = 104, - [390] = 105, - [391] = 62, - [392] = 104, - [393] = 105, - [394] = 62, - [395] = 104, - [396] = 105, - [397] = 62, - [398] = 104, - [399] = 105, - [400] = 62, - [401] = 104, - [402] = 105, - [403] = 62, - [404] = 104, - [405] = 105, - [406] = 62, - [407] = 104, - [408] = 105, - [409] = 409, - [410] = 410, - [411] = 104, - [412] = 105, - [413] = 73, - [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, + [386] = 386, + [387] = 386, + [388] = 388, + [389] = 389, + [390] = 390, + [391] = 391, + [392] = 388, + [393] = 388, + [394] = 388, + [395] = 391, + [396] = 391, + [397] = 391, + [398] = 391, + [399] = 386, + [400] = 386, + [401] = 401, + [402] = 402, + [403] = 403, + [404] = 403, + [405] = 405, + [406] = 402, + [407] = 402, + [408] = 403, + [409] = 403, + [410] = 403, + [411] = 402, + [412] = 403, + [413] = 402, + [414] = 402, + [415] = 403, + [416] = 402, + [417] = 403, + [418] = 402, + [419] = 419, + [420] = 419, + [421] = 421, + [422] = 419, + [423] = 419, + [424] = 421, + [425] = 419, + [426] = 421, + [427] = 419, + [428] = 421, + [429] = 421, + [430] = 421, + [431] = 431, [432] = 432, - [433] = 433, - [434] = 433, - [435] = 430, - [436] = 433, - [437] = 430, - [438] = 433, - [439] = 430, - [440] = 433, - [441] = 430, - [442] = 430, - [443] = 433, - [444] = 433, - [445] = 430, - [446] = 433, + [433] = 432, + [434] = 431, + [435] = 435, + [436] = 436, + [437] = 437, + [438] = 438, + [439] = 439, + [440] = 440, + [441] = 441, + [442] = 442, + [443] = 443, + [444] = 444, + [445] = 445, + [446] = 446, [447] = 447, - [448] = 447, - [449] = 447, - [450] = 447, + [448] = 448, + [449] = 449, + [450] = 450, [451] = 451, - [452] = 451, - [453] = 451, - [454] = 447, - [455] = 451, - [456] = 447, - [457] = 451, - [458] = 451, + [452] = 452, + [453] = 453, + [454] = 454, + [455] = 455, + [456] = 456, + [457] = 457, + [458] = 458, [459] = 459, [460] = 460, - [461] = 459, - [462] = 460, + [461] = 461, + [462] = 462, [463] = 463, - [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, - [478] = 478, - [479] = 479, - [480] = 480, - [481] = 481, - [482] = 482, - [483] = 483, - [484] = 484, - [485] = 485, - [486] = 486, - [487] = 487, - [488] = 488, - [489] = 489, - [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, - [523] = 523, - [524] = 524, - [525] = 523, - [526] = 524, - [527] = 527, - [528] = 524, - [529] = 529, - [530] = 523, - [531] = 531, - [532] = 524, - [533] = 523, + [464] = 435, + [465] = 436, + [466] = 440, + [467] = 439, + [468] = 437, + [469] = 438, + [470] = 447, + [471] = 448, + [472] = 458, + [473] = 459, + [474] = 443, + [475] = 449, + [476] = 442, + [477] = 446, + [478] = 451, + [479] = 452, + [480] = 445, + [481] = 441, + [482] = 453, + [483] = 457, + [484] = 454, + [485] = 444, + [486] = 456, + [487] = 455, + [488] = 450, + [489] = 460, + [490] = 461, + [491] = 462, + [492] = 463, + [493] = 493, + [494] = 493, + [495] = 495, + [496] = 496, + [497] = 495, + [498] = 496, + [499] = 499, + [500] = 495, + [501] = 501, + [502] = 502, + [503] = 496, + [504] = 496, + [505] = 495, + [506] = 506, + [507] = 502, + [508] = 508, + [509] = 499, + [510] = 431, + [511] = 495, + [512] = 501, + [513] = 432, + [514] = 496, + [515] = 496, + [516] = 516, + [517] = 495, + [518] = 506, + [519] = 508, + [520] = 501, + [521] = 502, + [522] = 501, + [523] = 516, + [524] = 499, + [525] = 502, + [526] = 432, + [527] = 432, + [528] = 431, + [529] = 431, + [530] = 499, + [531] = 516, + [532] = 431, + [533] = 431, [534] = 534, - [535] = 529, - [536] = 460, - [537] = 459, - [538] = 524, + [535] = 508, + [536] = 502, + [537] = 432, + [538] = 516, [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, - [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, - [598] = 598, - [599] = 599, - [600] = 534, - [601] = 539, - [602] = 460, - [603] = 541, - [604] = 459, - [605] = 523, - [606] = 599, - [607] = 534, - [608] = 608, - [609] = 569, - [610] = 608, - [611] = 588, - [612] = 586, - [613] = 587, - [614] = 591, - [615] = 571, - [616] = 572, - [617] = 569, - [618] = 608, - [619] = 523, - [620] = 571, - [621] = 572, - [622] = 572, - [623] = 569, - [624] = 608, - [625] = 459, - [626] = 608, - [627] = 460, - [628] = 459, - [629] = 571, - [630] = 460, - [631] = 608, - [632] = 459, - [633] = 569, - [634] = 608, - [635] = 571, - [636] = 598, - [637] = 608, - [638] = 572, - [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, + [540] = 508, + [541] = 432, + [542] = 431, + [543] = 506, + [544] = 544, + [545] = 506, + [546] = 501, + [547] = 499, + [548] = 502, + [549] = 501, + [550] = 550, + [551] = 432, + [552] = 431, + [553] = 553, + [554] = 554, + [555] = 555, + [556] = 432, + [557] = 557, + [558] = 431, + [559] = 559, + [560] = 508, + [561] = 431, + [562] = 534, + [563] = 563, + [564] = 432, + [565] = 506, + [566] = 506, + [567] = 557, + [568] = 495, + [569] = 516, + [570] = 432, + [571] = 553, + [572] = 550, + [573] = 496, + [574] = 544, + [575] = 575, + [576] = 508, + [577] = 432, + [578] = 578, + [579] = 554, + [580] = 578, + [581] = 563, + [582] = 555, + [583] = 544, + [584] = 578, + [585] = 495, + [586] = 534, + [587] = 578, + [588] = 432, + [589] = 578, + [590] = 554, + [591] = 431, + [592] = 555, + [593] = 578, + [594] = 550, + [595] = 578, + [596] = 496, + [597] = 544, + [598] = 559, + [599] = 534, + [600] = 550, + [601] = 578, + [602] = 575, + [603] = 431, + [604] = 432, + [605] = 559, + [606] = 554, + [607] = 555, + [608] = 563, + [609] = 555, + [610] = 575, + [611] = 554, + [612] = 555, + [613] = 555, + [614] = 554, + [615] = 555, + [616] = 563, + [617] = 575, + [618] = 432, + [619] = 431, + [620] = 432, + [621] = 431, + [622] = 431, + [623] = 432, + [624] = 431, + [625] = 534, + [626] = 544, + [627] = 501, + [628] = 550, + [629] = 499, + [630] = 502, + [631] = 554, + [632] = 559, + [633] = 554, + [634] = 554, + [635] = 635, + [636] = 432, + [637] = 431, + [638] = 557, + [639] = 635, + [640] = 640, + [641] = 635, + [642] = 635, + [643] = 640, + [644] = 553, + [645] = 635, + [646] = 640, + [647] = 501, + [648] = 554, + [649] = 555, + [650] = 555, + [651] = 554, + [652] = 555, + [653] = 432, + [654] = 431, + [655] = 640, + [656] = 539, + [657] = 499, + [658] = 539, + [659] = 432, + [660] = 502, + [661] = 431, + [662] = 432, + [663] = 431, + [664] = 432, + [665] = 640, + [666] = 635, + [667] = 563, + [668] = 554, + [669] = 640, + [670] = 555, + [671] = 559, + [672] = 575, + [673] = 431, + [674] = 506, + [675] = 516, + [676] = 563, + [677] = 575, + [678] = 554, + [679] = 555, + [680] = 508, + [681] = 431, + [682] = 432, + [683] = 555, + [684] = 508, + [685] = 554, + [686] = 431, + [687] = 432, + [688] = 431, + [689] = 432, + [690] = 516, + [691] = 554, + [692] = 554, + [693] = 555, + [694] = 506, + [695] = 555, + [696] = 557, + [697] = 553, + [698] = 431, + [699] = 432, + [700] = 432, + [701] = 555, + [702] = 702, + [703] = 431, + [704] = 432, + [705] = 431, + [706] = 432, + [707] = 431, + [708] = 554, + [709] = 555, + [710] = 431, + [711] = 432, + [712] = 554, + [713] = 555, + [714] = 432, + [715] = 432, + [716] = 431, + [717] = 431, + [718] = 554, + [719] = 431, + [720] = 554, + [721] = 555, + [722] = 534, + [723] = 431, + [724] = 554, + [725] = 555, + [726] = 726, + [727] = 550, + [728] = 728, + [729] = 544, + [730] = 431, + [731] = 731, + [732] = 555, + [733] = 550, + [734] = 432, + [735] = 432, + [736] = 431, + [737] = 534, + [738] = 432, + [739] = 554, + [740] = 432, + [741] = 544, + [742] = 435, + [743] = 436, + [744] = 437, + [745] = 438, + [746] = 575, + [747] = 442, + [748] = 748, + [749] = 446, + [750] = 447, + [751] = 448, + [752] = 435, + [753] = 436, + [754] = 441, + [755] = 437, + [756] = 438, + [757] = 451, + [758] = 452, + [759] = 435, + [760] = 760, + [761] = 436, + [762] = 437, + [763] = 763, + [764] = 554, + [765] = 534, + [766] = 438, + [767] = 445, + [768] = 453, + [769] = 444, + [770] = 458, + [771] = 450, + [772] = 772, + [773] = 773, + [774] = 455, + [775] = 563, + [776] = 456, + [777] = 777, + [778] = 457, + [779] = 726, + [780] = 728, + [781] = 559, [782] = 782, [783] = 783, - [784] = 459, + [784] = 555, [785] = 785, - [786] = 572, - [787] = 460, - [788] = 586, - [789] = 586, - [790] = 587, - [791] = 587, - [792] = 460, + [786] = 550, + [787] = 731, + [788] = 788, + [789] = 544, + [790] = 790, + [791] = 443, + [792] = 449, [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, - [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, + [794] = 554, + [795] = 459, + [796] = 555, + [797] = 454, + [798] = 452, + [799] = 431, + [800] = 793, + [801] = 748, + [802] = 772, + [803] = 773, + [804] = 438, + [805] = 805, + [806] = 806, + [807] = 805, + [808] = 460, + [809] = 437, + [810] = 443, + [811] = 449, + [812] = 731, + [813] = 459, + [814] = 458, + [815] = 442, + [816] = 726, + [817] = 446, + [818] = 447, + [819] = 443, + [820] = 449, + [821] = 435, + [822] = 459, + [823] = 458, + [824] = 442, + [825] = 446, + [826] = 447, + [827] = 726, + [828] = 448, + [829] = 441, + [830] = 435, + [831] = 436, + [832] = 437, + [833] = 451, + [834] = 731, + [835] = 432, + [836] = 431, + [837] = 438, + [838] = 448, + [839] = 441, + [840] = 728, + [841] = 451, + [842] = 452, + [843] = 445, + [844] = 453, + [845] = 444, + [846] = 432, + [847] = 450, + [848] = 455, + [849] = 456, + [850] = 457, + [851] = 805, + [852] = 445, + [853] = 453, + [854] = 444, + [855] = 454, + [856] = 450, + [857] = 455, + [858] = 456, + [859] = 457, + [860] = 777, + [861] = 805, + [862] = 805, + [863] = 785, + [864] = 788, + [865] = 783, + [866] = 782, + [867] = 763, + [868] = 790, + [869] = 760, + [870] = 554, + [871] = 555, + [872] = 575, + [873] = 438, + [874] = 432, + [875] = 431, + [876] = 554, + [877] = 555, + [878] = 805, + [879] = 435, + [880] = 436, + [881] = 563, + [882] = 436, + [883] = 728, + [884] = 805, + [885] = 437, + [886] = 805, + [887] = 559, + [888] = 554, + [889] = 555, + [890] = 454, + [891] = 456, + [892] = 431, + [893] = 432, + [894] = 431, + [895] = 438, + [896] = 438, + [897] = 443, + [898] = 449, + [899] = 783, + [900] = 442, + [901] = 458, + [902] = 448, + [903] = 777, + [904] = 448, + [905] = 441, + [906] = 906, + [907] = 432, + [908] = 431, + [909] = 909, + [910] = 788, + [911] = 447, + [912] = 912, + [913] = 460, + [914] = 914, + [915] = 915, + [916] = 451, + [917] = 452, + [918] = 432, + [919] = 431, + [920] = 777, + [921] = 432, + [922] = 431, + [923] = 450, + [924] = 445, + [925] = 453, + [926] = 444, + [927] = 454, + [928] = 450, + [929] = 455, + [930] = 446, + [931] = 457, + [932] = 446, + [933] = 444, + [934] = 760, + [935] = 454, + [936] = 455, + [937] = 451, + [938] = 456, + [939] = 432, + [940] = 806, + [941] = 457, + [942] = 431, + [943] = 458, + [944] = 452, + [945] = 445, + [946] = 441, + [947] = 782, + [948] = 785, + [949] = 788, + [950] = 453, + [951] = 460, + [952] = 444, + [953] = 783, + [954] = 763, + [955] = 793, + [956] = 748, + [957] = 435, + [958] = 436, + [959] = 790, + [960] = 782, + [961] = 772, + [962] = 773, + [963] = 763, + [964] = 790, + [965] = 448, + [966] = 454, + [967] = 432, + [968] = 431, + [969] = 451, + [970] = 793, + [971] = 748, + [972] = 772, + [973] = 773, + [974] = 554, + [975] = 447, + [976] = 555, + [977] = 435, + [978] = 436, + [979] = 437, + [980] = 452, + [981] = 447, + [982] = 455, + [983] = 456, + [984] = 984, + [985] = 985, + [986] = 457, + [987] = 462, + [988] = 984, + [989] = 985, + [990] = 990, + [991] = 443, + [992] = 450, + [993] = 459, + [994] = 449, + [995] = 432, + [996] = 431, + [997] = 435, + [998] = 438, + [999] = 435, + [1000] = 436, + [1001] = 437, + [1002] = 760, + [1003] = 445, [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, + [1005] = 458, + [1006] = 1006, + [1007] = 1007, + [1008] = 793, + [1009] = 748, + [1010] = 1010, + [1011] = 1011, + [1012] = 772, + [1013] = 773, + [1014] = 459, + [1015] = 436, + [1016] = 441, + [1017] = 453, + [1018] = 442, + [1019] = 437, + [1020] = 554, + [1021] = 555, + [1022] = 731, + [1023] = 726, + [1024] = 728, + [1025] = 442, + [1026] = 443, [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, + [1028] = 449, + [1029] = 435, + [1030] = 438, + [1031] = 785, + [1032] = 1032, + [1033] = 436, + [1034] = 437, + [1035] = 554, + [1036] = 555, + [1037] = 446, + [1038] = 432, + [1039] = 554, + [1040] = 555, + [1041] = 728, + [1042] = 432, + [1043] = 431, + [1044] = 438, + [1045] = 458, + [1046] = 455, + [1047] = 456, + [1048] = 445, + [1049] = 453, + [1050] = 1027, + [1051] = 444, + [1052] = 454, + [1053] = 457, + [1054] = 450, + [1055] = 445, + [1056] = 453, [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, + [1058] = 444, + [1059] = 454, + [1060] = 443, + [1061] = 450, + [1062] = 449, + [1063] = 455, + [1064] = 456, + [1065] = 457, + [1066] = 459, + [1067] = 443, + [1068] = 449, + [1069] = 455, + [1070] = 456, + [1071] = 457, + [1072] = 432, + [1073] = 793, + [1074] = 431, + [1075] = 442, + [1076] = 1076, + [1077] = 1032, + [1078] = 435, + [1079] = 459, + [1080] = 436, + [1081] = 437, + [1082] = 446, + [1083] = 458, + [1084] = 447, + [1085] = 442, + [1086] = 806, + [1087] = 432, + [1088] = 431, + [1089] = 806, + [1090] = 990, + [1091] = 446, + [1092] = 447, + [1093] = 438, + [1094] = 906, + [1095] = 1095, + [1096] = 460, + [1097] = 760, + [1098] = 912, + [1099] = 915, + [1100] = 432, + [1101] = 431, + [1102] = 1095, + [1103] = 1103, + [1104] = 1104, + [1105] = 432, + [1106] = 431, + [1107] = 914, + [1108] = 909, + [1109] = 462, + [1110] = 1110, + [1111] = 782, + [1112] = 760, + [1113] = 448, + [1114] = 435, + [1115] = 436, + [1116] = 454, + [1117] = 1110, + [1118] = 441, + [1119] = 1110, + [1120] = 1120, + [1121] = 1110, + [1122] = 448, + [1123] = 1110, + [1124] = 441, + [1125] = 435, + [1126] = 436, + [1127] = 459, + [1128] = 443, + [1129] = 449, + [1130] = 458, + [1131] = 442, + [1132] = 437, + [1133] = 772, + [1134] = 446, + [1135] = 447, + [1136] = 448, + [1137] = 445, + [1138] = 441, + [1139] = 435, + [1140] = 444, + [1141] = 451, + [1142] = 450, + [1143] = 452, + [1144] = 451, + [1145] = 452, + [1146] = 453, + [1147] = 454, + [1148] = 777, + [1149] = 436, + [1150] = 462, + [1151] = 984, + [1152] = 985, + [1153] = 455, + [1154] = 456, + [1155] = 457, + [1156] = 437, + [1157] = 459, + [1158] = 984, + [1159] = 985, + [1160] = 443, + [1161] = 449, + [1162] = 458, + [1163] = 442, + [1164] = 438, + [1165] = 446, + [1166] = 447, + [1167] = 554, + [1168] = 555, + [1169] = 451, + [1170] = 452, + [1171] = 554, + [1172] = 555, + [1173] = 783, + [1174] = 1095, + [1175] = 448, + [1176] = 438, + [1177] = 460, + [1178] = 1178, + [1179] = 1179, + [1180] = 1180, + [1181] = 785, + [1182] = 788, + [1183] = 445, + [1184] = 441, + [1185] = 763, + [1186] = 790, + [1187] = 1187, + [1188] = 793, + [1189] = 748, + [1190] = 772, + [1191] = 773, + [1192] = 438, + [1193] = 444, + [1194] = 782, + [1195] = 748, + [1196] = 450, + [1197] = 1006, + [1198] = 1007, + [1199] = 451, + [1200] = 452, + [1201] = 773, + [1202] = 453, + [1203] = 1010, + [1204] = 1011, + [1205] = 1110, + [1206] = 1180, + [1207] = 793, + [1208] = 748, + [1209] = 990, + [1210] = 438, + [1211] = 453, + [1212] = 435, + [1213] = 444, + [1214] = 454, + [1215] = 436, + [1216] = 984, + [1217] = 985, + [1218] = 437, + [1219] = 450, + [1220] = 1006, + [1221] = 984, + [1222] = 1027, + [1223] = 985, + [1224] = 1032, + [1225] = 448, + [1226] = 455, + [1227] = 456, + [1228] = 457, + [1229] = 441, + [1230] = 460, + [1231] = 457, + [1232] = 906, + [1233] = 450, + [1234] = 443, + [1235] = 449, + [1236] = 458, + [1237] = 455, + [1238] = 456, + [1239] = 438, + [1240] = 1240, + [1241] = 457, + [1242] = 984, + [1243] = 448, + [1244] = 985, + [1245] = 438, + [1246] = 442, + [1247] = 435, + [1248] = 445, + [1249] = 436, + [1250] = 435, + [1251] = 435, + [1252] = 1240, + [1253] = 437, + [1254] = 1006, + [1255] = 1007, + [1256] = 912, + [1257] = 915, + [1258] = 438, + [1259] = 459, + [1260] = 435, + [1261] = 462, + [1262] = 436, + [1263] = 436, + [1264] = 460, + [1265] = 437, + [1266] = 451, + [1267] = 437, + [1268] = 446, + [1269] = 452, + [1270] = 441, + [1271] = 912, + [1272] = 915, + [1273] = 441, + [1274] = 447, + [1275] = 443, + [1276] = 449, + [1277] = 1010, + [1278] = 453, + [1279] = 458, + [1280] = 460, + [1281] = 443, + [1282] = 906, + [1283] = 449, + [1284] = 1178, + [1285] = 909, + [1286] = 445, + [1287] = 451, + [1288] = 452, + [1289] = 793, + [1290] = 748, + [1291] = 1011, + [1292] = 1103, + [1293] = 435, + [1294] = 1187, + [1295] = 1295, + [1296] = 1104, + [1297] = 459, + [1298] = 1027, + [1299] = 436, + [1300] = 1300, + [1301] = 1032, + [1302] = 437, + [1303] = 444, + [1304] = 454, + [1305] = 446, + [1306] = 1006, + [1307] = 1007, + [1308] = 1010, + [1309] = 1011, + [1310] = 1310, + [1311] = 458, + [1312] = 1179, + [1313] = 436, + [1314] = 447, + [1315] = 462, + [1316] = 1007, + [1317] = 442, + [1318] = 1318, + [1319] = 1319, + [1320] = 914, + [1321] = 451, + [1322] = 452, + [1323] = 1076, + [1324] = 462, + [1325] = 438, + [1326] = 448, + [1327] = 1010, + [1328] = 1011, + [1329] = 772, + [1330] = 773, + [1331] = 984, + [1332] = 985, + [1333] = 914, + [1334] = 1027, + [1335] = 459, + [1336] = 437, + [1337] = 455, + [1338] = 445, + [1339] = 453, + [1340] = 446, + [1341] = 444, + [1342] = 454, + [1343] = 909, + [1344] = 456, + [1345] = 772, + [1346] = 447, + [1347] = 438, + [1348] = 460, + [1349] = 1032, + [1350] = 773, + [1351] = 450, + [1352] = 442, + [1353] = 728, + [1354] = 444, + [1355] = 459, + [1356] = 454, + [1357] = 448, + [1358] = 445, + [1359] = 441, + [1360] = 443, + [1361] = 449, + [1362] = 446, + [1363] = 458, + [1364] = 1007, + [1365] = 447, + [1366] = 442, + [1367] = 438, + [1368] = 448, + [1369] = 457, + [1370] = 435, + [1371] = 1371, + [1372] = 1179, + [1373] = 451, + [1374] = 452, + [1375] = 445, + [1376] = 436, + [1377] = 441, + [1378] = 453, + [1379] = 1379, + [1380] = 1187, + [1381] = 437, + [1382] = 444, + [1383] = 454, + [1384] = 455, + [1385] = 456, + [1386] = 457, + [1387] = 442, + [1388] = 450, + [1389] = 453, + [1390] = 444, + [1391] = 454, + [1392] = 437, + [1393] = 462, + [1394] = 1310, + [1395] = 462, + [1396] = 1371, + [1397] = 438, + [1398] = 1178, + [1399] = 450, + [1400] = 1180, + [1401] = 1401, + [1402] = 451, + [1403] = 452, + [1404] = 1371, + [1405] = 445, + [1406] = 453, + [1407] = 444, + [1408] = 448, + [1409] = 454, + [1410] = 459, + [1411] = 446, + [1412] = 459, + [1413] = 1401, + [1414] = 1010, + [1415] = 459, + [1416] = 443, + [1417] = 449, + [1418] = 1027, + [1419] = 458, + [1420] = 1420, + [1421] = 1421, + [1422] = 442, + [1423] = 460, + [1424] = 1103, + [1425] = 1104, + [1426] = 459, + [1427] = 458, + [1428] = 443, + [1429] = 449, + [1430] = 450, + [1431] = 446, + [1432] = 455, + [1433] = 458, + [1434] = 1420, + [1435] = 447, + [1436] = 1421, + [1437] = 442, + [1438] = 1011, + [1439] = 438, + [1440] = 435, + [1441] = 436, + [1442] = 456, + [1443] = 442, + [1444] = 1240, + [1445] = 437, + [1446] = 446, + [1447] = 447, + [1448] = 554, + [1449] = 555, + [1450] = 455, + [1451] = 462, + [1452] = 1240, + [1453] = 1453, + [1454] = 1454, + [1455] = 448, + [1456] = 448, + [1457] = 445, + [1458] = 441, + [1459] = 444, + [1460] = 451, + [1461] = 443, + [1462] = 450, + [1463] = 449, + [1464] = 448, + [1465] = 446, + [1466] = 1179, + [1467] = 1467, + [1468] = 455, + [1469] = 456, + [1470] = 457, + [1471] = 1179, + [1472] = 1076, + [1473] = 451, + [1474] = 452, + [1475] = 445, + [1476] = 441, + [1477] = 453, + [1478] = 447, + [1479] = 441, + [1480] = 1480, + [1481] = 443, + [1482] = 449, + [1483] = 1187, + [1484] = 456, + [1485] = 444, + [1486] = 454, + [1487] = 435, + [1488] = 450, + [1489] = 445, + [1490] = 436, + [1491] = 435, + [1492] = 436, + [1493] = 451, + [1494] = 452, + [1495] = 441, + [1496] = 453, + [1497] = 453, + [1498] = 457, + [1499] = 454, + [1500] = 455, + [1501] = 456, + [1502] = 457, + [1503] = 447, + [1504] = 1371, + [1505] = 451, + [1506] = 1178, + [1507] = 446, + [1508] = 458, + [1509] = 1187, + [1510] = 1006, + [1511] = 1007, + [1512] = 912, + [1513] = 915, + [1514] = 459, + [1515] = 793, + [1516] = 748, + [1517] = 452, + [1518] = 435, + [1519] = 1010, + [1520] = 1011, + [1521] = 772, + [1522] = 773, + [1523] = 984, + [1524] = 985, + [1525] = 436, + [1526] = 460, + [1527] = 1371, + [1528] = 984, + [1529] = 985, + [1530] = 1103, + [1531] = 1371, + [1532] = 1180, + [1533] = 1076, + [1534] = 438, + [1535] = 438, + [1536] = 1318, + [1537] = 1319, + [1538] = 1032, + [1539] = 455, + [1540] = 456, + [1541] = 731, + [1542] = 457, + [1543] = 726, + [1544] = 1006, + [1545] = 458, + [1546] = 1295, + [1547] = 462, + [1548] = 438, + [1549] = 450, + [1550] = 442, + [1551] = 443, + [1552] = 435, + [1553] = 1553, + [1554] = 449, + [1555] = 447, + [1556] = 1300, + [1557] = 1104, + [1558] = 436, + [1559] = 460, + [1560] = 452, + [1561] = 726, + [1562] = 1007, + [1563] = 1010, + [1564] = 1011, + [1565] = 1318, + [1566] = 445, + [1567] = 1310, + [1568] = 728, + [1569] = 1319, + [1570] = 441, + [1571] = 453, + [1572] = 435, + [1573] = 1027, + [1574] = 450, + [1575] = 436, + [1576] = 1310, + [1577] = 436, + [1578] = 460, + [1579] = 1240, + [1580] = 1580, + [1581] = 444, + [1582] = 454, + [1583] = 455, + [1584] = 456, + [1585] = 448, + [1586] = 457, + [1587] = 1187, + [1588] = 435, + [1589] = 436, + [1590] = 1295, + [1591] = 442, + [1592] = 1592, + [1593] = 452, + [1594] = 445, + [1595] = 450, + [1596] = 441, + [1597] = 443, + [1598] = 449, + [1599] = 1599, + [1600] = 1300, + [1601] = 438, + [1602] = 1240, + [1603] = 1295, + [1604] = 444, + [1605] = 438, + [1606] = 1553, + [1607] = 459, [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, + [1609] = 1401, + [1610] = 446, + [1611] = 450, + [1612] = 1608, + [1613] = 1599, + [1614] = 1599, + [1615] = 460, + [1616] = 443, + [1617] = 455, + [1618] = 449, + [1619] = 456, + [1620] = 457, + [1621] = 460, + [1622] = 1007, + [1623] = 459, + [1624] = 438, + [1625] = 448, + [1626] = 460, + [1627] = 458, + [1628] = 1178, + [1629] = 1180, + [1630] = 782, + [1631] = 435, + [1632] = 1027, + [1633] = 460, + [1634] = 451, + [1635] = 1318, + [1636] = 442, + [1637] = 452, + [1638] = 760, + [1639] = 451, + [1640] = 447, + [1641] = 1010, + [1642] = 441, + [1643] = 1300, + [1644] = 1608, + [1645] = 452, + [1646] = 453, + [1647] = 435, + [1648] = 436, + [1649] = 462, + [1650] = 445, + [1651] = 437, + [1652] = 1608, + [1653] = 1401, + [1654] = 1599, [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, + [1656] = 1319, + [1657] = 1032, + [1658] = 453, + [1659] = 458, + [1660] = 1608, + [1661] = 1608, + [1662] = 1608, + [1663] = 1295, + [1664] = 436, + [1665] = 446, + [1666] = 447, + [1667] = 438, + [1668] = 1420, + [1669] = 437, + [1670] = 454, + [1671] = 447, + [1672] = 444, + [1673] = 1421, + [1674] = 1379, + [1675] = 1240, + [1676] = 1011, + [1677] = 731, + [1678] = 435, + [1679] = 1599, + [1680] = 458, + [1681] = 1681, + [1682] = 442, + [1683] = 785, + [1684] = 788, + [1685] = 1032, + [1686] = 449, + [1687] = 1467, + [1688] = 1179, + [1689] = 763, + [1690] = 790, + [1691] = 1608, + [1692] = 454, + [1693] = 460, + [1694] = 1420, + [1695] = 459, + [1696] = 1006, + [1697] = 448, + [1698] = 793, + [1699] = 748, + [1700] = 772, + [1701] = 773, + [1702] = 438, + [1703] = 443, + [1704] = 1453, + [1705] = 1421, + [1706] = 1454, + [1707] = 446, + [1708] = 1480, + [1709] = 1240, + [1710] = 437, + [1711] = 455, + [1712] = 456, + [1713] = 1300, + [1714] = 457, + [1715] = 1006, + [1716] = 462, + [1717] = 462, + [1718] = 451, + [1719] = 1599, + [1720] = 1467, + [1721] = 1553, + [1722] = 1722, + [1723] = 443, + [1724] = 449, + [1725] = 446, + [1726] = 458, + [1727] = 447, + [1728] = 442, + [1729] = 446, + [1730] = 1401, + [1731] = 447, + [1732] = 1732, + [1733] = 1733, + [1734] = 1734, + [1735] = 1735, + [1736] = 1736, + [1737] = 1737, + [1738] = 448, + [1739] = 1739, + [1740] = 445, + [1741] = 441, + [1742] = 444, + [1743] = 450, + [1744] = 1744, + [1745] = 1745, + [1746] = 448, + [1747] = 1747, + [1748] = 451, + [1749] = 452, + [1750] = 445, + [1751] = 441, + [1752] = 453, + [1753] = 444, + [1754] = 454, + [1755] = 1755, + [1756] = 450, + [1757] = 1757, + [1758] = 1758, + [1759] = 1179, + [1760] = 1467, + [1761] = 451, + [1762] = 452, + [1763] = 459, + [1764] = 1453, + [1765] = 453, + [1766] = 443, + [1767] = 449, + [1768] = 1379, + [1769] = 454, + [1770] = 455, + [1771] = 456, + [1772] = 457, + [1773] = 458, + [1774] = 442, + [1775] = 446, + [1776] = 455, + [1777] = 456, + [1778] = 457, + [1779] = 447, + [1780] = 1480, + [1781] = 448, + [1782] = 445, + [1783] = 441, + [1784] = 444, + [1785] = 450, + [1786] = 451, + [1787] = 452, + [1788] = 453, + [1789] = 454, + [1790] = 455, + [1791] = 456, + [1792] = 457, + [1793] = 1187, + [1794] = 1794, + [1795] = 1420, + [1796] = 760, + [1797] = 1401, + [1798] = 1454, + [1799] = 1421, + [1800] = 1800, + [1801] = 1420, + [1802] = 1553, + [1803] = 1179, + [1804] = 1794, + [1805] = 462, + [1806] = 462, + [1807] = 1480, + [1808] = 1187, + [1809] = 1401, + [1810] = 1810, + [1811] = 1811, + [1812] = 1732, + [1813] = 1813, + [1814] = 1733, + [1815] = 1734, + [1816] = 1735, + [1817] = 1736, + [1818] = 1737, + [1819] = 1739, + [1820] = 1820, + [1821] = 1821, + [1822] = 1822, + [1823] = 1823, + [1824] = 1824, + [1825] = 1825, + [1826] = 1826, + [1827] = 1827, + [1828] = 1828, + [1829] = 1829, + [1830] = 1830, + [1831] = 1831, + [1832] = 1832, + [1833] = 1833, + [1834] = 1834, + [1835] = 1835, + [1836] = 1836, + [1837] = 1837, + [1838] = 1838, + [1839] = 1839, + [1840] = 1744, + [1841] = 1745, + [1842] = 1747, + [1843] = 1755, + [1844] = 1757, + [1845] = 462, + [1846] = 460, + [1847] = 437, + [1848] = 1420, + [1849] = 1592, + [1850] = 462, + [1851] = 1401, + [1852] = 1421, + [1853] = 460, + [1854] = 1800, + [1855] = 1722, + [1856] = 1758, + [1857] = 1857, + [1858] = 1732, + [1859] = 1813, + [1860] = 1733, + [1861] = 1734, + [1862] = 1735, + [1863] = 1736, + [1864] = 1737, + [1865] = 1739, + [1866] = 1744, + [1867] = 1745, + [1868] = 1747, + [1869] = 1755, + [1870] = 1757, + [1871] = 1420, + [1872] = 1800, + [1873] = 1813, + [1874] = 1421, + [1875] = 435, + [1876] = 436, + [1877] = 438, + [1878] = 1722, + [1879] = 1758, + [1880] = 1857, + [1881] = 1421, + [1882] = 554, + [1883] = 1722, + [1884] = 1758, + [1885] = 1857, + [1886] = 1722, + [1887] = 1758, + [1888] = 1857, + [1889] = 793, + [1890] = 748, + [1891] = 1857, + [1892] = 1857, + [1893] = 772, + [1894] = 773, + [1895] = 1857, + [1896] = 1857, + [1897] = 1857, + [1898] = 1857, + [1899] = 1857, + [1900] = 1857, + [1901] = 1857, + [1902] = 1857, + [1903] = 1857, + [1904] = 1454, + [1905] = 1857, + [1906] = 1857, + [1907] = 1857, + [1908] = 1857, + [1909] = 1857, + [1910] = 1857, + [1911] = 459, + [1912] = 1857, + [1913] = 1857, + [1914] = 1857, + [1915] = 1857, + [1916] = 1857, + [1917] = 1857, + [1918] = 1857, + [1919] = 1857, + [1920] = 1857, + [1921] = 1857, + [1922] = 1857, + [1923] = 1857, + [1924] = 1857, + [1925] = 1857, + [1926] = 1857, + [1927] = 1857, + [1928] = 1857, + [1929] = 1857, + [1930] = 1857, + [1931] = 1857, + [1932] = 1857, + [1933] = 1857, + [1934] = 1857, + [1935] = 1857, + [1936] = 1857, + [1937] = 1857, + [1938] = 1857, + [1939] = 1857, + [1940] = 1857, + [1941] = 1857, + [1942] = 1857, + [1943] = 1857, + [1944] = 1857, + [1945] = 1857, + [1946] = 1857, + [1947] = 1857, + [1948] = 1857, + [1949] = 1857, + [1950] = 1857, + [1951] = 1857, + [1952] = 1857, + [1953] = 1857, + [1954] = 1857, + [1955] = 1857, + [1956] = 1857, + [1957] = 1857, + [1958] = 1857, + [1959] = 1857, + [1960] = 1857, + [1961] = 555, + [1962] = 1962, + [1963] = 1963, + [1964] = 1318, + [1965] = 1319, + [1966] = 1006, + [1967] = 1007, + [1968] = 1010, + [1969] = 1011, + [1970] = 462, + [1971] = 1794, + [1972] = 1962, + [1973] = 1963, + [1974] = 1962, + [1975] = 1963, + [1976] = 462, + [1977] = 1800, + [1978] = 785, + [1979] = 788, + [1980] = 1857, + [1981] = 460, + [1982] = 1962, + [1983] = 1794, + [1984] = 1732, + [1985] = 1813, + [1986] = 1733, + [1987] = 1734, + [1988] = 1735, + [1989] = 1736, + [1990] = 1737, + [1991] = 1739, + [1992] = 1744, + [1993] = 1745, + [1994] = 1747, + [1995] = 1755, + [1996] = 1757, + [1997] = 782, + [1998] = 763, + [1999] = 790, + [2000] = 1467, + [2001] = 1480, + [2002] = 1732, + [2003] = 1813, + [2004] = 1800, + [2005] = 1963, + [2006] = 1733, + [2007] = 435, + [2008] = 1734, + [2009] = 1735, + [2010] = 1736, + [2011] = 436, + [2012] = 1737, + [2013] = 1732, + [2014] = 1734, + [2015] = 1735, + [2016] = 1736, + [2017] = 1737, + [2018] = 1739, + [2019] = 1739, + [2020] = 1744, + [2021] = 1745, + [2022] = 1747, + [2023] = 1755, + [2024] = 1757, + [2025] = 1800, + [2026] = 1794, + [2027] = 437, + [2028] = 760, + [2029] = 1722, + [2030] = 1758, + [2031] = 1794, + [2032] = 1963, + [2033] = 438, + [2034] = 1744, + [2035] = 1745, + [2036] = 1295, + [2037] = 459, + [2038] = 1747, + [2039] = 1755, + [2040] = 1757, + [2041] = 1300, + [2042] = 443, + [2043] = 449, + [2044] = 458, + [2045] = 1963, + [2046] = 442, + [2047] = 1379, + [2048] = 1813, + [2049] = 1453, + [2050] = 1857, + [2051] = 446, + [2052] = 450, + [2053] = 1295, + [2054] = 438, + [2055] = 772, + [2056] = 1011, + [2057] = 451, + [2058] = 452, + [2059] = 773, + [2060] = 1300, + [2061] = 438, + [2062] = 453, + [2063] = 454, + [2064] = 460, + [2065] = 1010, + [2066] = 438, + [2067] = 448, + [2068] = 455, + [2069] = 459, + [2070] = 1592, + [2071] = 462, + [2072] = 443, + [2073] = 449, + [2074] = 446, + [2075] = 456, + [2076] = 806, + [2077] = 458, + [2078] = 1810, + [2079] = 1811, + [2080] = 457, + [2081] = 447, + [2082] = 442, + [2083] = 1820, + [2084] = 1821, + [2085] = 1822, + [2086] = 1823, + [2087] = 1824, + [2088] = 435, + [2089] = 436, + [2090] = 435, + [2091] = 436, + [2092] = 1825, + [2093] = 1826, + [2094] = 1827, + [2095] = 1828, + [2096] = 1829, + [2097] = 1830, + [2098] = 1831, + [2099] = 462, + [2100] = 1832, + [2101] = 1833, + [2102] = 1834, + [2103] = 1835, + [2104] = 1836, + [2105] = 1837, + [2106] = 1838, + [2107] = 1839, + [2108] = 448, + [2109] = 1295, + [2110] = 451, + [2111] = 447, + [2112] = 445, + [2113] = 441, + [2114] = 453, + [2115] = 460, + [2116] = 438, + [2117] = 435, + [2118] = 436, + [2119] = 437, + [2120] = 438, + [2121] = 1300, + [2122] = 444, + [2123] = 454, + [2124] = 432, + [2125] = 431, + [2126] = 455, + [2127] = 456, + [2128] = 1453, + [2129] = 457, + [2130] = 1454, + [2131] = 450, + [2132] = 459, + [2133] = 462, + [2134] = 1006, + [2135] = 1007, + [2136] = 443, + [2137] = 449, + [2138] = 1379, + [2139] = 458, + [2140] = 442, + [2141] = 438, + [2142] = 1592, + [2143] = 445, + [2144] = 1467, + [2145] = 1006, + [2146] = 1007, + [2147] = 912, + [2148] = 915, + [2149] = 441, + [2150] = 793, + [2151] = 748, + [2152] = 460, + [2153] = 1010, + [2154] = 1011, + [2155] = 772, + [2156] = 773, + [2157] = 984, + [2158] = 985, + [2159] = 793, + [2160] = 1480, + [2161] = 444, + [2162] = 748, + [2163] = 984, + [2164] = 985, + [2165] = 438, + [2166] = 438, + [2167] = 452, + [2168] = 2168, + [2169] = 2169, + [2170] = 436, + [2171] = 1810, + [2172] = 1811, + [2173] = 1834, + [2174] = 1835, + [2175] = 2175, + [2176] = 2176, + [2177] = 1836, + [2178] = 1837, + [2179] = 2179, + [2180] = 437, + [2181] = 2168, + [2182] = 1838, + [2183] = 1839, + [2184] = 435, + [2185] = 436, + [2186] = 1825, + [2187] = 435, + [2188] = 436, + [2189] = 1006, + [2190] = 1007, + [2191] = 444, + [2192] = 1010, + [2193] = 1011, + [2194] = 454, + [2195] = 450, + [2196] = 2196, + [2197] = 2197, + [2198] = 912, + [2199] = 915, + [2200] = 435, + [2201] = 436, + [2202] = 2202, + [2203] = 2169, + [2204] = 2175, + [2205] = 2176, + [2206] = 435, + [2207] = 436, + [2208] = 2179, + [2209] = 793, + [2210] = 2168, + [2211] = 748, + [2212] = 1826, + [2213] = 1827, + [2214] = 772, + [2215] = 773, + [2216] = 1824, + [2217] = 455, + [2218] = 914, + [2219] = 2202, + [2220] = 1820, + [2221] = 984, + [2222] = 2169, + [2223] = 435, + [2224] = 985, + [2225] = 456, + [2226] = 457, + [2227] = 2196, + [2228] = 2175, + [2229] = 1027, + [2230] = 2202, + [2231] = 2169, + [2232] = 1467, + [2233] = 436, + [2234] = 2176, + [2235] = 2202, + [2236] = 460, + [2237] = 1821, + [2238] = 1822, + [2239] = 1823, + [2240] = 1824, + [2241] = 1825, + [2242] = 1480, + [2243] = 1032, + [2244] = 909, + [2245] = 1826, + [2246] = 1827, + [2247] = 1828, + [2248] = 1829, + [2249] = 459, + [2250] = 906, + [2251] = 443, + [2252] = 449, + [2253] = 458, + [2254] = 442, + [2255] = 2169, + [2256] = 435, + [2257] = 446, + [2258] = 1828, + [2259] = 447, + [2260] = 435, + [2261] = 2261, + [2262] = 2179, + [2263] = 436, + [2264] = 437, + [2265] = 2168, + [2266] = 1480, + [2267] = 438, + [2268] = 2196, + [2269] = 1830, + [2270] = 1829, + [2271] = 1831, + [2272] = 1832, + [2273] = 1833, + [2274] = 1834, + [2275] = 1835, + [2276] = 1836, + [2277] = 1837, + [2278] = 1830, + [2279] = 448, + [2280] = 1831, + [2281] = 445, + [2282] = 441, + [2283] = 984, + [2284] = 985, + [2285] = 1820, + [2286] = 1810, + [2287] = 1832, + [2288] = 1811, + [2289] = 2202, + [2290] = 2169, + [2291] = 444, + [2292] = 460, + [2293] = 2175, + [2294] = 450, + [2295] = 1838, + [2296] = 435, + [2297] = 2176, + [2298] = 2196, + [2299] = 2197, + [2300] = 1839, + [2301] = 436, + [2302] = 462, + [2303] = 1467, + [2304] = 437, + [2305] = 1178, + [2306] = 1180, + [2307] = 451, + [2308] = 452, + [2309] = 2196, + [2310] = 462, + [2311] = 453, + [2312] = 438, + [2313] = 445, + [2314] = 460, + [2315] = 455, + [2316] = 456, + [2317] = 457, + [2318] = 453, + [2319] = 454, + [2320] = 1833, + [2321] = 2202, + [2322] = 438, + [2323] = 2179, + [2324] = 1823, + [2325] = 438, + [2326] = 1821, + [2327] = 1822, + [2328] = 462, + [2329] = 448, + [2330] = 441, + [2331] = 442, + [2332] = 1179, + [2333] = 435, + [2334] = 436, + [2335] = 458, + [2336] = 445, + [2337] = 460, + [2338] = 2338, + [2339] = 437, + [2340] = 446, + [2341] = 459, + [2342] = 447, + [2343] = 448, + [2344] = 442, + [2345] = 2345, + [2346] = 447, + [2347] = 445, + [2348] = 455, + [2349] = 438, + [2350] = 456, + [2351] = 457, + [2352] = 2352, + [2353] = 455, + [2354] = 456, + [2355] = 2355, + [2356] = 451, + [2357] = 457, + [2358] = 462, + [2359] = 1006, + [2360] = 443, + [2361] = 1007, + [2362] = 2362, + [2363] = 2363, + [2364] = 451, + [2365] = 452, + [2366] = 1010, + [2367] = 1011, + [2368] = 453, + [2369] = 450, + [2370] = 453, + [2371] = 435, + [2372] = 454, + [2373] = 436, + [2374] = 445, + [2375] = 444, + [2376] = 1318, + [2377] = 2377, + [2378] = 452, + [2379] = 453, + [2380] = 1319, + [2381] = 441, + [2382] = 1295, + [2383] = 462, + [2384] = 454, + [2385] = 1187, + [2386] = 1076, + [2387] = 449, + [2388] = 435, + [2389] = 459, + [2390] = 436, + [2391] = 455, + [2392] = 456, + [2393] = 2393, + [2394] = 2394, + [2395] = 1318, + [2396] = 1319, + [2397] = 1103, + [2398] = 2197, + [2399] = 446, + [2400] = 1104, + [2401] = 444, + [2402] = 443, + [2403] = 449, + [2404] = 460, + [2405] = 458, + [2406] = 442, + [2407] = 1178, + [2408] = 1180, + [2409] = 450, + [2410] = 435, + [2411] = 436, + [2412] = 438, + [2413] = 450, + [2414] = 2197, + [2415] = 451, + [2416] = 437, + [2417] = 452, + [2418] = 446, + [2419] = 447, + [2420] = 460, + [2421] = 438, + [2422] = 450, + [2423] = 454, + [2424] = 462, + [2425] = 2425, + [2426] = 1032, + [2427] = 444, + [2428] = 444, + [2429] = 455, + [2430] = 456, + [2431] = 453, + [2432] = 1006, + [2433] = 1007, + [2434] = 445, + [2435] = 1010, + [2436] = 459, + [2437] = 1011, + [2438] = 2438, + [2439] = 2439, + [2440] = 1027, + [2441] = 443, + [2442] = 449, + [2443] = 441, + [2444] = 2196, + [2445] = 2261, + [2446] = 454, + [2447] = 448, + [2448] = 458, + [2449] = 457, + [2450] = 1300, + [2451] = 457, + [2452] = 2452, + [2453] = 2453, + [2454] = 455, + [2455] = 2455, + [2456] = 2456, + [2457] = 456, + [2458] = 2452, + [2459] = 2459, + [2460] = 2459, + [2461] = 457, + [2462] = 1453, + [2463] = 2452, + [2464] = 454, + [2465] = 1454, + [2466] = 2459, + [2467] = 441, + [2468] = 2452, + [2469] = 450, + [2470] = 2459, + [2471] = 2452, + [2472] = 2452, + [2473] = 2452, + [2474] = 2452, + [2475] = 2452, + [2476] = 448, + [2477] = 2452, + [2478] = 2452, + [2479] = 448, + [2480] = 2452, + [2481] = 1187, + [2482] = 2452, + [2483] = 2452, + [2484] = 445, + [2485] = 2452, + [2486] = 441, + [2487] = 2452, + [2488] = 451, + [2489] = 2452, + [2490] = 2452, + [2491] = 2452, + [2492] = 2452, + [2493] = 2452, + [2494] = 2452, + [2495] = 2452, + [2496] = 2452, + [2497] = 2452, + [2498] = 2452, + [2499] = 2452, + [2500] = 2452, + [2501] = 2452, + [2502] = 2452, + [2503] = 2452, + [2504] = 2452, + [2505] = 2452, + [2506] = 2452, + [2507] = 2452, + [2508] = 2452, + [2509] = 444, + [2510] = 2452, + [2511] = 459, + [2512] = 2452, + [2513] = 2452, + [2514] = 2452, + [2515] = 2452, + [2516] = 2452, + [2517] = 450, + [2518] = 2452, + [2519] = 2452, + [2520] = 2452, + [2521] = 2452, + [2522] = 2452, + [2523] = 2452, + [2524] = 451, + [2525] = 2452, + [2526] = 452, + [2527] = 2452, + [2528] = 2452, + [2529] = 453, + [2530] = 2452, + [2531] = 452, + [2532] = 2452, + [2533] = 1318, + [2534] = 2452, + [2535] = 1319, + [2536] = 2452, + [2537] = 454, + [2538] = 2452, + [2539] = 443, + [2540] = 449, + [2541] = 455, + [2542] = 456, + [2543] = 457, + [2544] = 444, + [2545] = 1480, + [2546] = 435, + [2547] = 436, + [2548] = 437, + [2549] = 444, + [2550] = 454, + [2551] = 455, + [2552] = 456, + [2553] = 457, + [2554] = 458, + [2555] = 1295, + [2556] = 2394, + [2557] = 1300, + [2558] = 462, + [2559] = 2559, + [2560] = 442, + [2561] = 438, + [2562] = 2562, + [2563] = 2563, + [2564] = 2564, + [2565] = 1027, + [2566] = 1032, + [2567] = 1240, + [2568] = 2568, + [2569] = 2569, + [2570] = 2570, + [2571] = 2352, + [2572] = 2572, + [2573] = 1006, + [2574] = 1007, + [2575] = 2377, + [2576] = 1010, + [2577] = 1011, + [2578] = 2439, + [2579] = 2579, + [2580] = 462, + [2581] = 2345, + [2582] = 2582, + [2583] = 2583, + [2584] = 2584, + [2585] = 2585, + [2586] = 2586, [2587] = 2587, [2588] = 2588, - [2589] = 473, - [2590] = 480, - [2591] = 469, - [2592] = 481, - [2593] = 471, - [2594] = 2337, + [2589] = 2589, + [2590] = 2590, + [2591] = 2425, + [2592] = 2592, + [2593] = 2593, + [2594] = 2594, [2595] = 2595, - [2596] = 2596, - [2597] = 482, - [2598] = 483, - [2599] = 484, - [2600] = 475, - [2601] = 477, + [2596] = 462, + [2597] = 2597, + [2598] = 2355, + [2599] = 2599, + [2600] = 450, + [2601] = 2601, [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, + [2603] = 432, + [2604] = 459, + [2605] = 431, + [2606] = 460, + [2607] = 443, + [2608] = 449, + [2609] = 458, + [2610] = 442, + [2611] = 1240, + [2612] = 2261, + [2613] = 460, + [2614] = 446, + [2615] = 2452, + [2616] = 2616, + [2617] = 2459, + [2618] = 446, + [2619] = 1467, + [2620] = 2620, + [2621] = 451, + [2622] = 447, + [2623] = 452, + [2624] = 445, [2625] = 2625, - [2626] = 2545, - [2627] = 2627, - [2628] = 2566, - [2629] = 2629, - [2630] = 1320, - [2631] = 2631, - [2632] = 1027, - [2633] = 1029, - [2634] = 1320, - [2635] = 2512, + [2626] = 445, + [2627] = 453, + [2628] = 441, + [2629] = 453, + [2630] = 2630, + [2631] = 444, + [2632] = 454, + [2633] = 2633, + [2634] = 2634, + [2635] = 450, [2636] = 2636, - [2637] = 2637, - [2638] = 2638, + [2637] = 447, + [2638] = 453, [2639] = 2639, [2640] = 2640, - [2641] = 2641, - [2642] = 2642, - [2643] = 2643, - [2644] = 2644, - [2645] = 2541, + [2641] = 445, + [2642] = 455, + [2643] = 456, + [2644] = 1179, + [2645] = 457, [2646] = 2646, - [2647] = 2647, + [2647] = 2452, [2648] = 2648, [2649] = 2649, [2650] = 2650, - [2651] = 2442, - [2652] = 460, - [2653] = 459, - [2654] = 1020, - [2655] = 1021, + [2651] = 2459, + [2652] = 2652, + [2653] = 448, + [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, - [2669] = 2656, - [2670] = 2657, - [2671] = 2656, - [2672] = 2656, - [2673] = 2656, - [2674] = 2656, - [2675] = 2656, - [2676] = 2656, - [2677] = 1670, - [2678] = 2656, - [2679] = 2656, - [2680] = 2656, - [2681] = 2656, - [2682] = 2656, - [2683] = 2656, - [2684] = 2656, - [2685] = 2656, - [2686] = 1153, - [2687] = 2656, - [2688] = 2656, - [2689] = 2656, - [2690] = 2656, - [2691] = 2656, - [2692] = 2656, - [2693] = 2656, - [2694] = 2656, - [2695] = 2656, - [2696] = 2656, - [2697] = 2656, - [2698] = 2656, - [2699] = 2656, - [2700] = 2656, - [2701] = 2656, - [2702] = 2656, - [2703] = 2656, - [2704] = 2656, - [2705] = 2656, - [2706] = 2656, - [2707] = 2656, - [2708] = 2656, - [2709] = 2656, - [2710] = 2656, - [2711] = 2656, - [2712] = 2712, - [2713] = 2656, - [2714] = 2656, - [2715] = 2715, - [2716] = 2656, - [2717] = 2656, - [2718] = 2656, - [2719] = 2656, - [2720] = 2656, - [2721] = 2656, - [2722] = 2656, - [2723] = 2656, - [2724] = 2656, - [2725] = 2656, - [2726] = 2656, - [2727] = 2727, - [2728] = 2656, - [2729] = 2729, - [2730] = 2656, - [2731] = 2656, - [2732] = 2656, - [2733] = 2656, - [2734] = 2656, - [2735] = 2656, - [2736] = 470, - [2737] = 488, - [2738] = 476, - [2739] = 478, - [2740] = 486, - [2741] = 479, - [2742] = 473, - [2743] = 487, - [2744] = 485, - [2745] = 477, - [2746] = 480, - [2747] = 472, - [2748] = 474, - [2749] = 2508, - [2750] = 2750, - [2751] = 2751, + [2657] = 1310, + [2658] = 2363, + [2659] = 2597, + [2660] = 2660, + [2661] = 2355, + [2662] = 2662, + [2663] = 2663, + [2664] = 2664, + [2665] = 454, + [2666] = 442, + [2667] = 2667, + [2668] = 2582, + [2669] = 2583, + [2670] = 2584, + [2671] = 1553, + [2672] = 2585, + [2673] = 2673, + [2674] = 2590, + [2675] = 2675, + [2676] = 2592, + [2677] = 2586, + [2678] = 446, + [2679] = 1179, + [2680] = 2680, + [2681] = 2681, + [2682] = 447, + [2683] = 1187, + [2684] = 2593, + [2685] = 2587, + [2686] = 2588, + [2687] = 2589, + [2688] = 2590, + [2689] = 2689, + [2690] = 448, + [2691] = 2592, + [2692] = 2593, + [2693] = 1401, + [2694] = 445, + [2695] = 2594, + [2696] = 441, + [2697] = 2595, + [2698] = 2597, + [2699] = 2681, + [2700] = 2594, + [2701] = 2667, + [2702] = 2394, + [2703] = 2599, + [2704] = 444, + [2705] = 450, + [2706] = 2345, + [2707] = 2595, + [2708] = 2582, + [2709] = 450, + [2710] = 2660, + [2711] = 2597, + [2712] = 451, + [2713] = 452, + [2714] = 453, + [2715] = 2569, + [2716] = 2667, + [2717] = 2675, + [2718] = 454, + [2719] = 2570, + [2720] = 2582, + [2721] = 2675, + [2722] = 460, + [2723] = 2569, + [2724] = 2579, + [2725] = 2583, + [2726] = 2570, + [2727] = 2584, + [2728] = 455, + [2729] = 456, + [2730] = 457, + [2731] = 2585, + [2732] = 2586, + [2733] = 1592, + [2734] = 2587, + [2735] = 2588, + [2736] = 2589, + [2737] = 2590, + [2738] = 2592, + [2739] = 2593, + [2740] = 1420, + [2741] = 2338, + [2742] = 2438, + [2743] = 2362, + [2744] = 2594, + [2745] = 2745, + [2746] = 2681, + [2747] = 2595, + [2748] = 2393, + [2749] = 2597, + [2750] = 2363, + [2751] = 2660, [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, + [2753] = 2572, + [2754] = 2572, + [2755] = 2681, + [2756] = 2681, + [2757] = 2757, + [2758] = 2758, + [2759] = 2579, + [2760] = 2760, + [2761] = 2745, + [2762] = 1421, + [2763] = 2763, + [2764] = 2662, [2765] = 2765, - [2766] = 2766, - [2767] = 2767, - [2768] = 2768, - [2769] = 2769, - [2770] = 2770, - [2771] = 2771, - [2772] = 2772, + [2766] = 2660, + [2767] = 2570, + [2768] = 2352, + [2769] = 2572, + [2770] = 2667, + [2771] = 1421, + [2772] = 2362, [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, + [2774] = 458, + [2775] = 432, + [2776] = 431, + [2777] = 1295, + [2778] = 2675, + [2779] = 2745, + [2780] = 2780, + [2781] = 2660, + [2782] = 2782, + [2783] = 1420, + [2784] = 462, + [2785] = 2338, + [2786] = 2377, + [2787] = 2681, + [2788] = 2438, + [2789] = 432, + [2790] = 431, + [2791] = 2599, + [2792] = 1300, + [2793] = 2582, + [2794] = 1401, + [2795] = 2660, + [2796] = 432, + [2797] = 431, + [2798] = 460, + [2799] = 2660, + [2800] = 2583, + [2801] = 462, + [2802] = 455, + [2803] = 456, + [2804] = 2667, + [2805] = 2675, + [2806] = 457, [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, - [2838] = 2838, - [2839] = 1673, - [2840] = 2636, - [2841] = 1468, - [2842] = 2541, - [2843] = 2646, - [2844] = 2647, - [2845] = 2805, - [2846] = 482, - [2847] = 2518, - [2848] = 483, - [2849] = 484, - [2850] = 488, - [2851] = 2641, - [2852] = 1655, - [2853] = 2648, - [2854] = 2642, - [2855] = 2649, - [2856] = 475, - [2857] = 2643, - [2858] = 2602, - [2859] = 1320, - [2860] = 477, - [2861] = 2644, - [2862] = 2642, - [2863] = 2810, - [2864] = 470, - [2865] = 487, - [2866] = 2866, - [2867] = 2646, - [2868] = 2650, - [2869] = 485, - [2870] = 2637, - [2871] = 1150, - [2872] = 2508, - [2873] = 2750, - [2874] = 1153, - [2875] = 2750, - [2876] = 1673, - [2877] = 2520, - [2878] = 2565, - [2879] = 475, - [2880] = 2442, - [2881] = 473, - [2882] = 477, - [2883] = 2638, - [2884] = 2639, - [2885] = 2806, - [2886] = 2647, - [2887] = 2887, - [2888] = 469, - [2889] = 2889, - [2890] = 472, - [2891] = 476, - [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, - [2906] = 2906, - [2907] = 2907, - [2908] = 2491, - [2909] = 2636, - [2910] = 2637, - [2911] = 2638, - [2912] = 2639, - [2913] = 2640, - [2914] = 2641, - [2915] = 2642, - [2916] = 2643, - [2917] = 2644, - [2918] = 2646, - [2919] = 2919, - [2920] = 2627, - [2921] = 488, - [2922] = 2649, - [2923] = 2650, - [2924] = 476, - [2925] = 479, - [2926] = 480, - [2927] = 1468, - [2928] = 2495, - [2929] = 1608, - [2930] = 1609, - [2931] = 2931, - [2932] = 2932, - [2933] = 2487, - [2934] = 481, - [2935] = 2602, - [2936] = 460, - [2937] = 459, - [2938] = 2649, - [2939] = 2650, - [2940] = 460, - [2941] = 459, - [2942] = 2810, - [2943] = 2805, - [2944] = 2806, - [2945] = 1604, - [2946] = 2643, - [2947] = 2809, - [2948] = 2948, - [2949] = 482, - [2950] = 483, - [2951] = 2624, - [2952] = 2625, - [2953] = 484, - [2954] = 2627, - [2955] = 2887, - [2956] = 2624, - [2957] = 2625, - [2958] = 2627, - [2959] = 2520, - [2960] = 2565, - [2961] = 2636, - [2962] = 2637, - [2963] = 2638, - [2964] = 2639, - [2965] = 2640, - [2966] = 2641, - [2967] = 2642, - [2968] = 2643, - [2969] = 2644, - [2970] = 2646, - [2971] = 2647, - [2972] = 2648, - [2973] = 2649, - [2974] = 2650, - [2975] = 1320, - [2976] = 2495, - [2977] = 2487, - [2978] = 2978, - [2979] = 2750, - [2980] = 2810, - [2981] = 2809, - [2982] = 2805, - [2983] = 2806, - [2984] = 2984, + [2808] = 2579, + [2809] = 2662, + [2810] = 445, + [2811] = 2811, + [2812] = 2583, + [2813] = 2681, + [2814] = 2814, + [2815] = 2584, + [2816] = 2585, + [2817] = 2667, + [2818] = 2745, + [2819] = 443, + [2820] = 2662, + [2821] = 1453, + [2822] = 448, + [2823] = 1454, + [2824] = 2584, + [2825] = 2585, + [2826] = 2662, + [2827] = 441, + [2828] = 2828, + [2829] = 2393, + [2830] = 449, + [2831] = 453, + [2832] = 2439, + [2833] = 2579, + [2834] = 2586, + [2835] = 2587, + [2836] = 2662, + [2837] = 2675, + [2838] = 2586, + [2839] = 2569, + [2840] = 2570, + [2841] = 2572, + [2842] = 2667, + [2843] = 2587, + [2844] = 2675, + [2845] = 2588, + [2846] = 2589, + [2847] = 2660, + [2848] = 2590, + [2849] = 2588, + [2850] = 1467, + [2851] = 2660, + [2852] = 2569, + [2853] = 1379, + [2854] = 2854, + [2855] = 2589, + [2856] = 2667, + [2857] = 2675, + [2858] = 2425, + [2859] = 2859, + [2860] = 451, + [2861] = 459, + [2862] = 452, + [2863] = 1480, + [2864] = 2681, + [2865] = 2592, + [2866] = 2593, + [2867] = 2594, + [2868] = 2595, + [2869] = 2681, + [2870] = 444, + [2871] = 2871, + [2872] = 450, + [2873] = 2873, + [2874] = 2874, + [2875] = 2633, + [2876] = 2876, + [2877] = 2634, + [2878] = 2636, + [2879] = 2639, + [2880] = 2873, + [2881] = 456, + [2882] = 2640, + [2883] = 2873, + [2884] = 451, + [2885] = 452, + [2886] = 2873, + [2887] = 2601, + [2888] = 460, + [2889] = 2873, + [2890] = 2873, + [2891] = 2873, + [2892] = 2602, + [2893] = 2873, + [2894] = 2873, + [2895] = 2895, + [2896] = 2873, + [2897] = 431, + [2898] = 2873, + [2899] = 2873, + [2900] = 2616, + [2901] = 2871, + [2902] = 2780, + [2903] = 2873, + [2904] = 445, + [2905] = 2760, + [2906] = 2765, + [2907] = 2456, + [2908] = 2562, + [2909] = 2563, + [2910] = 2564, + [2911] = 2620, + [2912] = 453, + [2913] = 2873, + [2914] = 448, + [2915] = 2873, + [2916] = 2873, + [2917] = 2917, + [2918] = 1295, + [2919] = 2873, + [2920] = 451, + [2921] = 445, + [2922] = 2646, + [2923] = 441, + [2924] = 2650, + [2925] = 2873, + [2926] = 2648, + [2927] = 2873, + [2928] = 445, + [2929] = 1300, + [2930] = 452, + [2931] = 2652, + [2932] = 2656, + [2933] = 2559, + [2934] = 2453, + [2935] = 2455, + [2936] = 453, + [2937] = 444, + [2938] = 2938, + [2939] = 444, + [2940] = 454, + [2941] = 2873, + [2942] = 432, + [2943] = 2871, + [2944] = 2873, + [2945] = 2873, + [2946] = 448, + [2947] = 2873, + [2948] = 451, + [2949] = 452, + [2950] = 450, + [2951] = 453, + [2952] = 431, + [2953] = 2780, + [2954] = 454, + [2955] = 2873, + [2956] = 2873, + [2957] = 2873, + [2958] = 1810, + [2959] = 1811, + [2960] = 2960, + [2961] = 2873, + [2962] = 441, + [2963] = 2873, + [2964] = 2873, + [2965] = 2917, + [2966] = 2807, + [2967] = 2811, + [2968] = 2625, + [2969] = 2630, + [2970] = 2633, + [2971] = 2873, + [2972] = 2634, + [2973] = 2636, + [2974] = 2639, + [2975] = 2640, + [2976] = 2646, + [2977] = 2648, + [2978] = 2652, + [2979] = 2656, + [2980] = 2559, + [2981] = 2453, + [2982] = 455, + [2983] = 456, + [2984] = 457, [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, + [2986] = 2455, + [2987] = 432, + [2988] = 1592, + [2989] = 2873, + [2990] = 2873, + [2991] = 432, + [2992] = 2873, + [2993] = 444, + [2994] = 451, + [2995] = 2760, + [2996] = 444, + [2997] = 454, + [2998] = 455, + [2999] = 456, + [3000] = 2873, + [3001] = 457, + [3002] = 2655, + [3003] = 2765, + [3004] = 2873, + [3005] = 2874, + [3006] = 2601, + [3007] = 2602, + [3008] = 2782, + [3009] = 2680, + [3010] = 2757, + [3011] = 2758, + [3012] = 2763, + [3013] = 2752, + [3014] = 2814, + [3015] = 2828, + [3016] = 2854, + [3017] = 2859, + [3018] = 2773, + [3019] = 2664, + [3020] = 2673, + [3021] = 455, + [3022] = 452, + [3023] = 1467, + [3024] = 1820, + [3025] = 2616, + [3026] = 2620, + [3027] = 2689, + [3028] = 2873, + [3029] = 450, + [3030] = 2579, + [3031] = 1821, + [3032] = 2873, + [3033] = 456, + [3034] = 2456, + [3035] = 1822, + [3036] = 1823, + [3037] = 1824, + [3038] = 1825, + [3039] = 1826, + [3040] = 1827, + [3041] = 457, + [3042] = 2649, + [3043] = 1828, + [3044] = 1829, + [3045] = 445, + [3046] = 2782, + [3047] = 1830, + [3048] = 2650, + [3049] = 1831, + [3050] = 2680, + [3051] = 1832, + [3052] = 1833, + [3053] = 1834, + [3054] = 1835, + [3055] = 1836, + [3056] = 1837, + [3057] = 2654, + [3058] = 2655, + [3059] = 1838, + [3060] = 2873, + [3061] = 2562, + [3062] = 1839, + [3063] = 2757, + [3064] = 2758, + [3065] = 2763, + [3066] = 2752, + [3067] = 2873, + [3068] = 441, + [3069] = 2873, + [3070] = 2876, + [3071] = 1480, + [3072] = 2814, + [3073] = 2828, + [3074] = 2854, + [3075] = 2859, + [3076] = 3076, + [3077] = 2873, + [3078] = 432, + [3079] = 431, + [3080] = 2873, + [3081] = 432, + [3082] = 431, + [3083] = 462, + [3084] = 2773, + [3085] = 2664, + [3086] = 2873, + [3087] = 2673, + [3088] = 2563, + [3089] = 2895, + [3090] = 2873, + [3091] = 453, + [3092] = 2564, + [3093] = 2873, + [3094] = 2873, + [3095] = 2582, + [3096] = 2583, + [3097] = 2584, + [3098] = 2585, + [3099] = 2586, + [3100] = 2587, [3101] = 2588, - [3102] = 3020, - [3103] = 2907, - [3104] = 3020, - [3105] = 2978, - [3106] = 3020, - [3107] = 2984, - [3108] = 3020, - [3109] = 469, - [3110] = 3020, - [3111] = 2866, - [3112] = 3020, - [3113] = 2629, - [3114] = 2985, - [3115] = 3020, - [3116] = 3116, - [3117] = 477, - [3118] = 3020, - [3119] = 2996, - [3120] = 2919, - [3121] = 3020, - [3122] = 2807, - [3123] = 2820, - [3124] = 3020, - [3125] = 2826, - [3126] = 3020, - [3127] = 2829, - [3128] = 3020, - [3129] = 471, - [3130] = 3020, - [3131] = 2835, - [3132] = 3020, - [3133] = 2836, - [3134] = 3020, - [3135] = 2837, - [3136] = 1320, - [3137] = 476, - [3138] = 460, - [3139] = 459, - [3140] = 479, - [3141] = 475, - [3142] = 460, - [3143] = 459, - [3144] = 469, - [3145] = 480, - [3146] = 481, - [3147] = 3020, - [3148] = 471, - [3149] = 3149, - [3150] = 3149, - [3151] = 491, - [3152] = 2595, - [3153] = 2596, - [3154] = 481, - [3155] = 3020, - [3156] = 2765, - [3157] = 2866, - [3158] = 3158, - [3159] = 2629, - [3160] = 3160, - [3161] = 3161, - [3162] = 476, - [3163] = 3163, - [3164] = 2902, - [3165] = 2905, + [3102] = 2589, + [3103] = 2590, + [3104] = 2592, + [3105] = 2593, + [3106] = 2594, + [3107] = 2595, + [3108] = 2597, + [3109] = 454, + [3110] = 3076, + [3111] = 2960, + [3112] = 450, + [3113] = 2873, + [3114] = 2689, + [3115] = 2874, + [3116] = 2569, + [3117] = 2570, + [3118] = 2572, + [3119] = 2873, + [3120] = 2876, + [3121] = 455, + [3122] = 2568, + [3123] = 2873, + [3124] = 2873, + [3125] = 2873, + [3126] = 431, + [3127] = 2917, + [3128] = 2873, + [3129] = 3076, + [3130] = 2895, + [3131] = 2874, + [3132] = 2876, + [3133] = 448, + [3134] = 2654, + [3135] = 448, + [3136] = 2873, + [3137] = 441, + [3138] = 3076, + [3139] = 2873, + [3140] = 3140, + [3141] = 2873, + [3142] = 2895, + [3143] = 2807, + [3144] = 457, + [3145] = 2649, + [3146] = 462, + [3147] = 2873, + [3148] = 2811, + [3149] = 2873, + [3150] = 2625, + [3151] = 2873, + [3152] = 2960, + [3153] = 2630, + [3154] = 2568, + [3155] = 3155, + [3156] = 1834, + [3157] = 1835, + [3158] = 1836, + [3159] = 1837, + [3160] = 1838, + [3161] = 1839, + [3162] = 1831, + [3163] = 432, + [3164] = 431, + [3165] = 3165, [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, + [3167] = 3155, + [3168] = 3168, + [3169] = 3155, + [3170] = 3170, + [3171] = 3171, + [3172] = 1832, + [3173] = 462, + [3174] = 1821, + [3175] = 1822, + [3176] = 1823, + [3177] = 431, + [3178] = 1480, + [3179] = 431, + [3180] = 1833, + [3181] = 1824, + [3182] = 1810, + [3183] = 1830, + [3184] = 1811, + [3185] = 432, + [3186] = 3165, + [3187] = 432, [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, + [3189] = 3168, + [3190] = 431, + [3191] = 1825, + [3192] = 3155, + [3193] = 3170, + [3194] = 3171, + [3195] = 1826, + [3196] = 1820, + [3197] = 431, + [3198] = 1827, + [3199] = 1828, + [3200] = 1829, + [3201] = 432, + [3202] = 3166, + [3203] = 431, + [3204] = 432, + [3205] = 431, + [3206] = 3170, + [3207] = 3165, + [3208] = 3171, + [3209] = 1467, + [3210] = 3168, + [3211] = 3165, + [3212] = 3166, + [3213] = 432, + [3214] = 3168, + [3215] = 3170, + [3216] = 3171, + [3217] = 432, + [3218] = 3218, + [3219] = 1010, + [3220] = 432, + [3221] = 436, + [3222] = 431, + [3223] = 1006, + [3224] = 3224, + [3225] = 1011, + [3226] = 793, + [3227] = 748, + [3228] = 1007, + [3229] = 3229, + [3230] = 3230, + [3231] = 437, + [3232] = 772, + [3233] = 3233, + [3234] = 438, + [3235] = 3224, + [3236] = 431, + [3237] = 3237, + [3238] = 435, + [3239] = 3224, + [3240] = 3240, + [3241] = 773, + [3242] = 432, + [3243] = 984, + [3244] = 985, + [3245] = 3224, + [3246] = 456, + [3247] = 3247, + [3248] = 3248, + [3249] = 452, + [3250] = 3247, + [3251] = 3247, + [3252] = 442, + [3253] = 431, + [3254] = 3247, + [3255] = 443, + [3256] = 3247, + [3257] = 449, + [3258] = 3247, + [3259] = 453, + [3260] = 3247, + [3261] = 446, + [3262] = 448, + [3263] = 3247, + [3264] = 3247, + [3265] = 3247, + [3266] = 3247, + [3267] = 3247, + [3268] = 3247, + [3269] = 3247, + [3270] = 454, + [3271] = 3247, + [3272] = 3247, + [3273] = 3247, + [3274] = 447, + [3275] = 455, + [3276] = 457, + [3277] = 3247, + [3278] = 445, + [3279] = 458, + [3280] = 444, + [3281] = 441, + [3282] = 3247, + [3283] = 3247, + [3284] = 432, + [3285] = 3247, + [3286] = 450, + [3287] = 3247, + [3288] = 3288, + [3289] = 3289, + [3290] = 3247, + [3291] = 451, + [3292] = 3292, + [3293] = 459, + [3294] = 3294, + [3295] = 3294, + [3296] = 460, + [3297] = 3294, + [3298] = 3294, [3299] = 3299, - [3300] = 3300, - [3301] = 473, - [3302] = 3299, - [3303] = 3300, - [3304] = 3304, - [3305] = 480, - [3306] = 3306, - [3307] = 3307, - [3308] = 460, - [3309] = 459, - [3310] = 3310, - [3311] = 460, - [3312] = 476, - [3313] = 469, - [3314] = 3307, - [3315] = 460, - [3316] = 479, - [3317] = 460, - [3318] = 459, - [3319] = 3306, - [3320] = 3299, - [3321] = 459, - [3322] = 3300, - [3323] = 3304, - [3324] = 3306, - [3325] = 3307, - [3326] = 3310, - [3327] = 3299, - [3328] = 3300, - [3329] = 477, - [3330] = 3304, - [3331] = 3306, - [3332] = 3307, - [3333] = 482, - [3334] = 3310, - [3335] = 485, - [3336] = 3304, - [3337] = 483, - [3338] = 459, - [3339] = 460, - [3340] = 484, - [3341] = 478, - [3342] = 486, - [3343] = 459, - [3344] = 475, - [3345] = 459, - [3346] = 470, - [3347] = 3310, - [3348] = 459, - [3349] = 1121, - [3350] = 3350, - [3351] = 818, - [3352] = 1122, - [3353] = 459, - [3354] = 465, - [3355] = 3350, - [3356] = 838, + [3300] = 1240, + [3301] = 3294, + [3302] = 3294, + [3303] = 3299, + [3304] = 3294, + [3305] = 3299, + [3306] = 431, + [3307] = 431, + [3308] = 3299, + [3309] = 3309, + [3310] = 1295, + [3311] = 1032, + [3312] = 1027, + [3313] = 1300, + [3314] = 3299, + [3315] = 3299, + [3316] = 3299, + [3317] = 3294, + [3318] = 3299, + [3319] = 432, + [3320] = 432, + [3321] = 3299, + [3322] = 3294, + [3323] = 3323, + [3324] = 3324, + [3325] = 432, + [3326] = 431, + [3327] = 3323, + [3328] = 3328, + [3329] = 3329, + [3330] = 3330, + [3331] = 3331, + [3332] = 3332, + [3333] = 3333, + [3334] = 3334, + [3335] = 3335, + [3336] = 3336, + [3337] = 3337, + [3338] = 3338, + [3339] = 3339, + [3340] = 3340, + [3341] = 3341, + [3342] = 1401, + [3343] = 3329, + [3344] = 3344, + [3345] = 3330, + [3346] = 3331, + [3347] = 3332, + [3348] = 3333, + [3349] = 3334, + [3350] = 3335, + [3351] = 3336, + [3352] = 3337, + [3353] = 3338, + [3354] = 3339, + [3355] = 3340, + [3356] = 3341, [3357] = 3357, - [3358] = 1020, - [3359] = 464, - [3360] = 572, - [3361] = 1015, - [3362] = 466, - [3363] = 488, - [3364] = 810, - [3365] = 3350, - [3366] = 3366, - [3367] = 3350, + [3358] = 1420, + [3359] = 1421, + [3360] = 432, + [3361] = 431, + [3362] = 3362, + [3363] = 3230, + [3364] = 3364, + [3365] = 3364, + [3366] = 432, + [3367] = 431, [3368] = 3368, - [3369] = 1320, + [3369] = 3369, [3370] = 3370, - [3371] = 3371, - [3372] = 463, - [3373] = 1021, - [3374] = 1096, - [3375] = 460, - [3376] = 817, - [3377] = 460, + [3371] = 3324, + [3372] = 1467, + [3373] = 432, + [3374] = 431, + [3375] = 1179, + [3376] = 3376, + [3377] = 3377, [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, - [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, + [3379] = 1480, + [3380] = 3380, + [3381] = 1187, + [3382] = 3382, + [3383] = 3376, + [3384] = 3378, + [3385] = 3329, + [3386] = 3330, + [3387] = 3331, + [3388] = 3332, + [3389] = 3333, + [3390] = 3334, + [3391] = 3335, + [3392] = 3336, + [3393] = 3337, + [3394] = 3338, + [3395] = 3339, + [3396] = 3340, + [3397] = 3341, + [3398] = 3376, + [3399] = 3399, + [3400] = 3378, + [3401] = 3376, + [3402] = 3402, + [3403] = 3378, + [3404] = 3376, + [3405] = 3378, + [3406] = 3376, + [3407] = 3378, + [3408] = 462, + [3409] = 3376, + [3410] = 3378, + [3411] = 3376, + [3412] = 3378, + [3413] = 3376, + [3414] = 3378, + [3415] = 3376, + [3416] = 3378, + [3417] = 3376, + [3418] = 3378, + [3419] = 3376, + [3420] = 3378, + [3421] = 3376, + [3422] = 3378, + [3423] = 3376, + [3424] = 3378, + [3425] = 3376, + [3426] = 3378, + [3427] = 3364, + [3428] = 3323, + [3429] = 3344, + [3430] = 3430, + [3431] = 3357, + [3432] = 3362, + [3433] = 3377, + [3434] = 3434, + [3435] = 3323, + [3436] = 3344, + [3437] = 3430, + [3438] = 3357, + [3439] = 3362, + [3440] = 3377, + [3441] = 3323, + [3442] = 3344, + [3443] = 3362, + [3444] = 3377, + [3445] = 3323, + [3446] = 3344, + [3447] = 3362, + [3448] = 3377, + [3449] = 3370, + [3450] = 3344, + [3451] = 3362, + [3452] = 3377, + [3453] = 3323, + [3454] = 3344, + [3455] = 3323, + [3456] = 3344, + [3457] = 3323, + [3458] = 3344, + [3459] = 3323, + [3460] = 3344, + [3461] = 3323, + [3462] = 3344, + [3463] = 3323, + [3464] = 3344, + [3465] = 3323, + [3466] = 3344, + [3467] = 3344, + [3468] = 3323, + [3469] = 3344, + [3470] = 3323, + [3471] = 3344, + [3472] = 3323, + [3473] = 3344, + [3474] = 3323, + [3475] = 3344, + [3476] = 3323, + [3477] = 3344, + [3478] = 3323, + [3479] = 3344, + [3480] = 3323, + [3481] = 3344, + [3482] = 3323, + [3483] = 3344, + [3484] = 3323, + [3485] = 3344, + [3486] = 3323, + [3487] = 3344, + [3488] = 3323, + [3489] = 3344, + [3490] = 3323, + [3491] = 3344, + [3492] = 3323, + [3493] = 3344, + [3494] = 3323, + [3495] = 3344, + [3496] = 3323, + [3497] = 3344, + [3498] = 3323, + [3499] = 3344, + [3500] = 3323, + [3501] = 3344, + [3502] = 3323, + [3503] = 3344, + [3504] = 3323, + [3505] = 3344, + [3506] = 3323, + [3507] = 3344, + [3508] = 3323, + [3509] = 3344, + [3510] = 3323, + [3511] = 3344, + [3512] = 3323, + [3513] = 3344, + [3514] = 3323, + [3515] = 3344, + [3516] = 3323, + [3517] = 3344, + [3518] = 3323, + [3519] = 3344, + [3520] = 3323, + [3521] = 3344, + [3522] = 3323, + [3523] = 3344, + [3524] = 3323, + [3525] = 3344, + [3526] = 3323, + [3527] = 3344, + [3528] = 3323, + [3529] = 3344, + [3530] = 3323, + [3531] = 3344, + [3532] = 3323, + [3533] = 3344, + [3534] = 3323, + [3535] = 3344, + [3536] = 3323, + [3537] = 3344, + [3538] = 3323, + [3539] = 3344, + [3540] = 3323, + [3541] = 3344, + [3542] = 3323, + [3543] = 3344, + [3544] = 3323, + [3545] = 3344, + [3546] = 3323, + [3547] = 3344, + [3548] = 3323, + [3549] = 3344, + [3550] = 3323, + [3551] = 3344, + [3552] = 3323, + [3553] = 3344, + [3554] = 3323, + [3555] = 3344, + [3556] = 3369, + [3557] = 3370, + [3558] = 3324, + [3559] = 3430, + [3560] = 3369, + [3561] = 3378, + [3562] = 3376, + [3563] = 3323, + [3564] = 431, + [3565] = 3565, + [3566] = 3566, + [3567] = 3567, + [3568] = 432, + [3569] = 3567, + [3570] = 431, + [3571] = 3565, + [3572] = 3566, + [3573] = 3567, + [3574] = 3565, + [3575] = 3566, + [3576] = 432, + [3577] = 3565, + [3578] = 3566, + [3579] = 431, + [3580] = 3580, + [3581] = 3565, + [3582] = 432, + [3583] = 3580, + [3584] = 431, + [3585] = 3566, + [3586] = 432, + [3587] = 3567, + [3588] = 3565, + [3589] = 3566, + [3590] = 3567, + [3591] = 3580, + [3592] = 3567, + [3593] = 3567, + [3594] = 3580, + [3595] = 3595, + [3596] = 3596, + [3597] = 3595, + [3598] = 3598, + [3599] = 3599, + [3600] = 3600, + [3601] = 3601, + [3602] = 3601, + [3603] = 3596, + [3604] = 3595, + [3605] = 3598, + [3606] = 3599, + [3607] = 3600, + [3608] = 3608, + [3609] = 3608, + [3610] = 3601, + [3611] = 3596, + [3612] = 3595, + [3613] = 3598, + [3614] = 3599, + [3615] = 3600, + [3616] = 3601, + [3617] = 3608, + [3618] = 3601, + [3619] = 3596, + [3620] = 3595, + [3621] = 3598, + [3622] = 3599, + [3623] = 3600, + [3624] = 3608, + [3625] = 3601, + [3626] = 3596, + [3627] = 3595, + [3628] = 3598, + [3629] = 3599, + [3630] = 3600, + [3631] = 3608, + [3632] = 3608, + [3633] = 3596, + [3634] = 3595, + [3635] = 3598, + [3636] = 3599, + [3637] = 3600, + [3638] = 3601, + [3639] = 3601, + [3640] = 3596, + [3641] = 3595, + [3642] = 3598, + [3643] = 3599, + [3644] = 3600, + [3645] = 3598, + [3646] = 3608, + [3647] = 3596, + [3648] = 3595, + [3649] = 3598, + [3650] = 3599, + [3651] = 3600, + [3652] = 3595, + [3653] = 3598, + [3654] = 3596, + [3655] = 3595, + [3656] = 3598, + [3657] = 3599, + [3658] = 3600, + [3659] = 3596, + [3660] = 3595, + [3661] = 3598, + [3662] = 3599, + [3663] = 3600, + [3664] = 3596, + [3665] = 3595, + [3666] = 3598, + [3667] = 3599, + [3668] = 3600, + [3669] = 3596, + [3670] = 3595, + [3671] = 3598, + [3672] = 3599, + [3673] = 3600, + [3674] = 3596, + [3675] = 3595, + [3676] = 3598, + [3677] = 3599, + [3678] = 3600, + [3679] = 3596, + [3680] = 3595, + [3681] = 3598, + [3682] = 3599, + [3683] = 3600, + [3684] = 3596, + [3685] = 3595, + [3686] = 3598, + [3687] = 3599, + [3688] = 3600, + [3689] = 3608, + [3690] = 3596, + [3691] = 3608, + [3692] = 3599, + [3693] = 3596, + [3694] = 3595, + [3695] = 3599, + [3696] = 3601, + [3697] = 3596, + [3698] = 3596, + [3699] = 3596, + [3700] = 3596, + [3701] = 3596, + [3702] = 3596, + [3703] = 3596, + [3704] = 3596, + [3705] = 3596, + [3706] = 3596, + [3707] = 3596, + [3708] = 3599, + [3709] = 3596, + [3710] = 3596, + [3711] = 3596, + [3712] = 3596, + [3713] = 3608, + [3714] = 3596, + [3715] = 3601, + [3716] = 3596, + [3717] = 3596, + [3718] = 3596, + [3719] = 3596, + [3720] = 3596, + [3721] = 3596, + [3722] = 3596, + [3723] = 3596, + [3724] = 3596, + [3725] = 3596, + [3726] = 3596, + [3727] = 3596, + [3728] = 3596, + [3729] = 3596, + [3730] = 3608, + [3731] = 3596, + [3732] = 3601, + [3733] = 3600, + [3734] = 3601, + [3735] = 3608, + [3736] = 3601, + [3737] = 3601, + [3738] = 3608, + [3739] = 3608, + [3740] = 3601, + [3741] = 3601, + [3742] = 3598, + [3743] = 3600, + [3744] = 3595, + [3745] = 3599, + [3746] = 3598, + [3747] = 3600, + [3748] = 3595, + [3749] = 3599, + [3750] = 3608, + [3751] = 3608, + [3752] = 3601, + [3753] = 3596, + [3754] = 3601, + [3755] = 3608, + [3756] = 3608, + [3757] = 3601, + [3758] = 3608, + [3759] = 3598, + [3760] = 3600, + [3761] = 3595, + [3762] = 3599, + [3763] = 3598, + [3764] = 3600, + [3765] = 3595, + [3766] = 3599, + [3767] = 3601, + [3768] = 3608, + [3769] = 3601, + [3770] = 3608, + [3771] = 3608, + [3772] = 3598, + [3773] = 3600, + [3774] = 3595, + [3775] = 3599, + [3776] = 3598, + [3777] = 3600, + [3778] = 3595, + [3779] = 3599, + [3780] = 3601, + [3781] = 3601, + [3782] = 3608, + [3783] = 3601, + [3784] = 3601, + [3785] = 3608, + [3786] = 3598, + [3787] = 3600, + [3788] = 3595, + [3789] = 3599, + [3790] = 3598, + [3791] = 3600, + [3792] = 3595, + [3793] = 3599, + [3794] = 3601, + [3795] = 3608, + [3796] = 3601, + [3797] = 3608, + [3798] = 3601, + [3799] = 3608, + [3800] = 3599, + [3801] = 3608, + [3802] = 3608, + [3803] = 3608, + [3804] = 3601, + [3805] = 3608, + [3806] = 3608, + [3807] = 3601, + [3808] = 3601, + [3809] = 3608, + [3810] = 3601, + [3811] = 3601, + [3812] = 3608, + [3813] = 3601, + [3814] = 3595, + [3815] = 3598, + [3816] = 3599, + [3817] = 3600, + [3818] = 3601, + [3819] = 3608, + [3820] = 438, + [3821] = 3608, + [3822] = 3601, + [3823] = 3608, + [3824] = 3601, + [3825] = 438, + [3826] = 3608, + [3827] = 3601, + [3828] = 3608, + [3829] = 3608, + [3830] = 3608, + [3831] = 3596, + [3832] = 3608, + [3833] = 3601, + [3834] = 3601, + [3835] = 3608, + [3836] = 3601, + [3837] = 3608, + [3838] = 3601, + [3839] = 3608, + [3840] = 3601, + [3841] = 3608, + [3842] = 3601, + [3843] = 3601, + [3844] = 3608, + [3845] = 3601, + [3846] = 3601, + [3847] = 3601, + [3848] = 3608, + [3849] = 3608, + [3850] = 3601, + [3851] = 3601, + [3852] = 3608, + [3853] = 3601, + [3854] = 3608, + [3855] = 3601, + [3856] = 3608, + [3857] = 3608, + [3858] = 3608, + [3859] = 3608, + [3860] = 3601, + [3861] = 3595, + [3862] = 3601, + [3863] = 3601, + [3864] = 3608, + [3865] = 3598, + [3866] = 3599, + [3867] = 3601, + [3868] = 3600, + [3869] = 3601, + [3870] = 3870, + [3871] = 3608, + [3872] = 3601, + [3873] = 3608, + [3874] = 3874, + [3875] = 3608, + [3876] = 3596, + [3877] = 3608, + [3878] = 3601, + [3879] = 3608, + [3880] = 3601, + [3881] = 3608, + [3882] = 3608, + [3883] = 3601, + [3884] = 3608, + [3885] = 3601, + [3886] = 3601, + [3887] = 3595, + [3888] = 3598, + [3889] = 3599, + [3890] = 3600, + [3891] = 3601, + [3892] = 3601, + [3893] = 3601, + [3894] = 3608, + [3895] = 3601, + [3896] = 3608, + [3897] = 3608, + [3898] = 3596, + [3899] = 3608, + [3900] = 3608, + [3901] = 3601, + [3902] = 3608, + [3903] = 3601, + [3904] = 3601, + [3905] = 3595, + [3906] = 3600, + [3907] = 3608, + [3908] = 3598, + [3909] = 3599, + [3910] = 3600, + [3911] = 3601, + [3912] = 3601, + [3913] = 3601, + [3914] = 3608, + [3915] = 3608, + [3916] = 3601, + [3917] = 3595, + [3918] = 3596, + [3919] = 3596, + [3920] = 3601, + [3921] = 3608, + [3922] = 3596, + [3923] = 3923, + [3924] = 3608, + [3925] = 3601, + [3926] = 3595, + [3927] = 3870, + [3928] = 3923, + [3929] = 3598, + [3930] = 3599, + [3931] = 3608, + [3932] = 3601, + [3933] = 3600, + [3934] = 3601, + [3935] = 3608, + [3936] = 3601, + [3937] = 3608, + [3938] = 3596, + [3939] = 3595, + [3940] = 3608, + [3941] = 3601, + [3942] = 3595, + [3943] = 3598, + [3944] = 3599, + [3945] = 3600, + [3946] = 3598, + [3947] = 3598, + [3948] = 3600, + [3949] = 3870, + [3950] = 3923, + [3951] = 3599, + [3952] = 3608, + [3953] = 3608, + [3954] = 3601, + [3955] = 3600, + [3956] = 3601, + [3957] = 3608, + [3958] = 3601, + [3959] = 3601, + [3960] = 3595, + [3961] = 3598, + [3962] = 3599, + [3963] = 3600, + [3964] = 3601, + [3965] = 3598, + [3966] = 3600, + [3967] = 3870, + [3968] = 3923, + [3969] = 3608, + [3970] = 3608, + [3971] = 3608, + [3972] = 3972, + [3973] = 1006, + [3974] = 1007, + [3975] = 1010, + [3976] = 1011, + [3977] = 3977, + [3978] = 793, + [3979] = 748, + [3980] = 772, + [3981] = 773, + [3982] = 3982, + [3983] = 3983, + [3984] = 435, + [3985] = 438, + [3986] = 436, + [3987] = 3987, + [3988] = 3988, + [3989] = 3989, + [3990] = 437, + [3991] = 3991, + [3992] = 437, + [3993] = 438, + [3994] = 3994, + [3995] = 435, + [3996] = 436, + [3997] = 3997, + [3998] = 437, + [3999] = 3999, + [4000] = 437, + [4001] = 984, + [4002] = 985, + [4003] = 432, + [4004] = 431, + [4005] = 438, + [4006] = 445, + [4007] = 456, + [4008] = 457, + [4009] = 448, + [4010] = 441, + [4011] = 1010, + [4012] = 1011, + [4013] = 3999, + [4014] = 438, + [4015] = 437, + [4016] = 453, + [4017] = 448, + [4018] = 444, + [4019] = 451, + [4020] = 454, + [4021] = 448, + [4022] = 435, + [4023] = 436, + [4024] = 438, + [4025] = 441, + [4026] = 748, + [4027] = 450, + [4028] = 437, + [4029] = 452, + [4030] = 438, + [4031] = 435, + [4032] = 4032, + [4033] = 451, + [4034] = 452, + [4035] = 3989, + [4036] = 1006, + [4037] = 1007, + [4038] = 436, + [4039] = 460, + [4040] = 437, + [4041] = 1010, + [4042] = 1011, + [4043] = 3991, + [4044] = 2338, + [4045] = 2438, + [4046] = 438, + [4047] = 1240, + [4048] = 1295, + [4049] = 793, + [4050] = 748, + [4051] = 445, + [4052] = 1027, + [4053] = 451, + [4054] = 452, + [4055] = 772, + [4056] = 443, + [4057] = 773, + [4058] = 449, + [4059] = 437, + [4060] = 441, + [4061] = 446, + [4062] = 2362, + [4063] = 2363, + [4064] = 1295, + [4065] = 459, + [4066] = 3997, + [4067] = 1300, + [4068] = 443, + [4069] = 449, + [4070] = 442, + [4071] = 453, + [4072] = 435, + [4073] = 444, + [4074] = 454, + [4075] = 450, + [4076] = 458, + [4077] = 442, + [4078] = 445, + [4079] = 453, + [4080] = 444, + [4081] = 984, + [4082] = 793, + [4083] = 454, + [4084] = 446, + [4085] = 455, + [4086] = 456, + [4087] = 457, + [4088] = 447, + [4089] = 450, + [4090] = 438, + [4091] = 460, + [4092] = 455, + [4093] = 455, + [4094] = 456, + [4095] = 457, + [4096] = 3994, + [4097] = 459, + [4098] = 772, + [4099] = 458, + [4100] = 3977, + [4101] = 448, + [4102] = 445, + [4103] = 441, + [4104] = 442, + [4105] = 444, + [4106] = 3972, + [4107] = 450, + [4108] = 451, + [4109] = 452, + [4110] = 453, + [4111] = 454, + [4112] = 773, + [4113] = 455, + [4114] = 456, + [4115] = 457, + [4116] = 3982, + [4117] = 447, + [4118] = 1027, + [4119] = 443, + [4120] = 449, + [4121] = 1300, + [4122] = 436, + [4123] = 446, + [4124] = 447, + [4125] = 1240, + [4126] = 447, + [4127] = 459, + [4128] = 443, + [4129] = 449, + [4130] = 4130, + [4131] = 458, + [4132] = 442, + [4133] = 459, + [4134] = 1032, + [4135] = 1032, + [4136] = 460, + [4137] = 438, + [4138] = 458, [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, - [4180] = 4180, - [4181] = 488, - [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, - [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, + [4140] = 1006, + [4141] = 1007, + [4142] = 438, + [4143] = 460, + [4144] = 446, + [4145] = 985, + [4146] = 446, + [4147] = 443, + [4148] = 449, + [4149] = 3977, + [4150] = 459, + [4151] = 441, + [4152] = 984, + [4153] = 1300, + [4154] = 985, + [4155] = 458, + [4156] = 442, + [4157] = 435, + [4158] = 436, + [4159] = 3982, + [4160] = 1295, + [4161] = 459, + [4162] = 446, + [4163] = 1006, + [4164] = 1007, + [4165] = 458, + [4166] = 435, + [4167] = 447, + [4168] = 436, + [4169] = 1027, + [4170] = 442, + [4171] = 438, + [4172] = 459, + [4173] = 1010, + [4174] = 1011, + [4175] = 460, + [4176] = 1032, + [4177] = 443, + [4178] = 446, + [4179] = 449, + [4180] = 447, + [4181] = 443, + [4182] = 445, + [4183] = 449, + [4184] = 3999, + [4185] = 4185, + [4186] = 4139, + [4187] = 458, + [4188] = 453, + [4189] = 4189, + [4190] = 2601, + [4191] = 442, + [4192] = 460, + [4193] = 2602, + [4194] = 3994, + [4195] = 444, + [4196] = 435, + [4197] = 454, + [4198] = 436, + [4199] = 450, + [4200] = 3977, + [4201] = 4130, + [4202] = 1032, + [4203] = 458, + [4204] = 1300, + [4205] = 772, + [4206] = 4206, + [4207] = 462, + [4208] = 773, + [4209] = 2616, + [4210] = 2620, + [4211] = 435, + [4212] = 447, + [4213] = 455, + [4214] = 436, + [4215] = 456, + [4216] = 457, + [4217] = 438, + [4218] = 448, + [4219] = 441, + [4220] = 793, + [4221] = 460, + [4222] = 793, + [4223] = 748, + [4224] = 1240, + [4225] = 438, + [4226] = 448, + [4227] = 1295, + [4228] = 441, + [4229] = 462, + [4230] = 437, + [4231] = 442, + [4232] = 1006, + [4233] = 3982, + [4234] = 451, + [4235] = 452, + [4236] = 448, + [4237] = 1300, + [4238] = 451, + [4239] = 452, + [4240] = 445, + [4241] = 3989, + [4242] = 441, + [4243] = 4243, + [4244] = 1010, + [4245] = 446, + [4246] = 1011, + [4247] = 451, + [4248] = 4032, + [4249] = 3997, + [4250] = 450, + [4251] = 445, + [4252] = 453, + [4253] = 772, + [4254] = 451, + [4255] = 444, + [4256] = 454, + [4257] = 452, + [4258] = 773, + [4259] = 447, + [4260] = 450, + [4261] = 453, + [4262] = 452, + [4263] = 445, + [4264] = 454, + [4265] = 453, + [4266] = 462, + [4267] = 984, + [4268] = 444, + [4269] = 454, + [4270] = 985, + [4271] = 450, + [4272] = 3991, + [4273] = 455, + [4274] = 435, + [4275] = 455, + [4276] = 456, + [4277] = 457, + [4278] = 456, + [4279] = 457, + [4280] = 455, + [4281] = 3999, + [4282] = 456, + [4283] = 457, + [4284] = 3991, + [4285] = 1027, + [4286] = 436, + [4287] = 438, + [4288] = 435, + [4289] = 3994, + [4290] = 3977, + [4291] = 443, + [4292] = 3972, + [4293] = 460, + [4294] = 1006, + [4295] = 1007, + [4296] = 1010, + [4297] = 1011, + [4298] = 793, + [4299] = 748, + [4300] = 772, + [4301] = 773, + [4302] = 438, + [4303] = 449, + [4304] = 1032, + [4305] = 3997, + [4306] = 436, + [4307] = 984, + [4308] = 985, + [4309] = 3994, + [4310] = 3989, + [4311] = 435, + [4312] = 3989, + [4313] = 3972, + [4314] = 3982, + [4315] = 436, + [4316] = 3997, + [4317] = 3972, + [4318] = 748, + [4319] = 1007, + [4320] = 462, + [4321] = 459, + [4322] = 3999, + [4323] = 3991, + [4324] = 1006, + [4325] = 1007, + [4326] = 1010, + [4327] = 1011, + [4328] = 793, + [4329] = 748, + [4330] = 772, + [4331] = 773, + [4332] = 1027, + [4333] = 448, + [4334] = 1295, + [4335] = 444, + [4336] = 435, + [4337] = 462, + [4338] = 985, + [4339] = 1032, + [4340] = 462, + [4341] = 462, + [4342] = 459, + [4343] = 4343, + [4344] = 1467, + [4345] = 1300, + [4346] = 435, + [4347] = 3972, + [4348] = 436, + [4349] = 438, + [4350] = 4350, + [4351] = 435, + [4352] = 455, + [4353] = 456, + [4354] = 436, + [4355] = 457, + [4356] = 1007, + [4357] = 443, + [4358] = 449, + [4359] = 4359, + [4360] = 4139, + [4361] = 1187, + [4362] = 4362, + [4363] = 4363, + [4364] = 435, + [4365] = 4365, + [4366] = 4362, + [4367] = 436, + [4368] = 4368, + [4369] = 4369, + [4370] = 1179, + [4371] = 793, + [4372] = 748, + [4373] = 4373, + [4374] = 4374, + [4375] = 1480, + [4376] = 4376, + [4377] = 451, + [4378] = 452, + [4379] = 1179, + [4380] = 4380, + [4381] = 437, + [4382] = 1295, + [4383] = 4206, + [4384] = 4384, + [4385] = 4243, + [4386] = 462, + [4387] = 435, + [4388] = 4369, + [4389] = 4369, + [4390] = 4390, + [4391] = 793, + [4392] = 748, + [4393] = 772, + [4394] = 773, + [4395] = 4395, + [4396] = 1010, + [4397] = 1011, + [4398] = 4398, + [4399] = 4399, + [4400] = 436, + [4401] = 446, + [4402] = 4376, + [4403] = 436, + [4404] = 772, + [4405] = 1027, + [4406] = 1006, + [4407] = 1007, + [4408] = 1010, + [4409] = 1011, + [4410] = 773, + [4411] = 4411, + [4412] = 4032, + [4413] = 1401, + [4414] = 460, + [4415] = 4415, + [4416] = 3977, + [4417] = 4417, + [4418] = 4032, + [4419] = 984, + [4420] = 3989, + [4421] = 1480, + [4422] = 4422, + [4423] = 1421, + [4424] = 4398, + [4425] = 4363, + [4426] = 447, + [4427] = 1420, + [4428] = 448, + [4429] = 4429, + [4430] = 458, + [4431] = 442, + [4432] = 3999, + [4433] = 1467, + [4434] = 3991, + [4435] = 441, + [4436] = 4139, + [4437] = 4437, + [4438] = 4438, + [4439] = 4130, + [4440] = 4384, + [4441] = 4441, + [4442] = 445, + [4443] = 4399, + [4444] = 4032, + [4445] = 1420, + [4446] = 1006, + [4447] = 1007, + [4448] = 1010, + [4449] = 1011, + [4450] = 793, + [4451] = 748, + [4452] = 772, + [4453] = 773, + [4454] = 1401, + [4455] = 4368, + [4456] = 453, + [4457] = 4365, + [4458] = 1421, + [4459] = 4359, + [4460] = 4460, + [4461] = 4395, + [4462] = 4462, + [4463] = 444, + [4464] = 4185, + [4465] = 4465, + [4466] = 1187, + [4467] = 454, + [4468] = 4437, + [4469] = 4469, + [4470] = 4130, + [4471] = 793, + [4472] = 748, + [4473] = 772, + [4474] = 773, + [4475] = 4475, + [4476] = 450, + [4477] = 4422, + [4478] = 436, + [4479] = 4343, + [4480] = 4411, + [4481] = 438, + [4482] = 4139, + [4483] = 1006, + [4484] = 1007, + [4485] = 1010, + [4486] = 1011, + [4487] = 435, + [4488] = 4130, + [4489] = 1006, + [4490] = 4438, + [4491] = 4189, + [4492] = 3997, + [4493] = 4493, + [4494] = 4494, + [4495] = 1480, + [4496] = 462, + [4497] = 4497, + [4498] = 4497, + [4499] = 4497, + [4500] = 4376, + [4501] = 4359, + [4502] = 4380, + [4503] = 4503, + [4504] = 4497, + [4505] = 4505, + [4506] = 4497, + [4507] = 4497, + [4508] = 4497, + [4509] = 1179, + [4510] = 4243, + [4511] = 4376, + [4512] = 4497, + [4513] = 4363, + [4514] = 4497, + [4515] = 1420, + [4516] = 4497, + [4517] = 1421, + [4518] = 4497, + [4519] = 1187, + [4520] = 4497, + [4521] = 4521, [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, + [4523] = 4497, + [4524] = 4497, + [4525] = 4206, + [4526] = 4497, + [4527] = 4497, + [4528] = 1179, + [4529] = 4363, + [4530] = 4497, + [4531] = 4531, + [4532] = 4497, + [4533] = 4533, + [4534] = 4497, + [4535] = 4497, + [4536] = 4368, + [4537] = 4497, + [4538] = 4538, + [4539] = 4539, + [4540] = 1187, + [4541] = 4497, + [4542] = 4365, + [4543] = 4543, [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, - [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, - [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, - [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, + [4545] = 4497, + [4546] = 4206, + [4547] = 4185, + [4548] = 4497, + [4549] = 4533, + [4550] = 4497, + [4551] = 4497, + [4552] = 4552, + [4553] = 4384, + [4554] = 4554, + [4555] = 4555, + [4556] = 4189, + [4557] = 4497, + [4558] = 4558, + [4559] = 4497, + [4560] = 4505, + [4561] = 4561, + [4562] = 4562, + [4563] = 4497, + [4564] = 4497, + [4565] = 4497, + [4566] = 4363, + [4567] = 4497, + [4568] = 4438, + [4569] = 4561, + [4570] = 4497, + [4571] = 4362, + [4572] = 4497, + [4573] = 4573, + [4574] = 4562, + [4575] = 4497, + [4576] = 4531, + [4577] = 459, + [4578] = 4578, + [4579] = 4362, + [4580] = 4497, + [4581] = 4343, + [4582] = 4398, + [4583] = 4497, + [4584] = 443, + [4585] = 449, + [4586] = 4206, + [4587] = 4398, + [4588] = 4343, + [4589] = 4497, + [4590] = 4497, + [4591] = 4497, + [4592] = 458, + [4593] = 4395, + [4594] = 4497, + [4595] = 4595, + [4596] = 4596, + [4597] = 442, + [4598] = 4497, + [4599] = 4599, + [4600] = 4497, + [4601] = 4578, + [4602] = 4497, + [4603] = 4497, + [4604] = 4185, + [4605] = 4497, + [4606] = 4497, + [4607] = 4497, + [4608] = 4497, + [4609] = 4497, + [4610] = 4189, + [4611] = 4497, + [4612] = 4497, + [4613] = 4497, + [4614] = 4497, + [4615] = 4497, + [4616] = 4497, + [4617] = 446, + [4618] = 4422, + [4619] = 4376, + [4620] = 4497, + [4621] = 447, + [4622] = 4494, + [4623] = 4497, + [4624] = 4437, + [4625] = 4625, + [4626] = 4493, + [4627] = 4539, + [4628] = 4422, + [4629] = 4629, + [4630] = 4497, + [4631] = 4422, + [4632] = 1467, + [4633] = 1401, + [4634] = 4343, + [4635] = 4398, + [4636] = 4185, + [4637] = 4189, + [4638] = 4497, + [4639] = 1467, + [4640] = 4395, + [4641] = 1179, + [4642] = 4437, + [4643] = 4365, + [4644] = 4538, + [4645] = 4497, + [4646] = 4243, + [4647] = 4599, + [4648] = 4494, + [4649] = 448, + [4650] = 445, + [4651] = 441, + [4652] = 1480, + [4653] = 4497, + [4654] = 444, + [4655] = 450, + [4656] = 4656, + [4657] = 451, + [4658] = 452, + [4659] = 4625, + [4660] = 4493, + [4661] = 4552, + [4662] = 4554, + [4663] = 4497, + [4664] = 435, + [4665] = 453, + [4666] = 436, + [4667] = 454, + [4668] = 1187, + [4669] = 4497, + [4670] = 4032, + [4671] = 4139, + [4672] = 4130, + [4673] = 4399, + [4674] = 4558, + [4675] = 4555, + [4676] = 4362, + [4677] = 1480, + [4678] = 4497, + [4679] = 4543, + [4680] = 4497, + [4681] = 455, + [4682] = 456, + [4683] = 457, + [4684] = 4395, + [4685] = 4437, + [4686] = 4365, + [4687] = 793, + [4688] = 748, + [4689] = 772, + [4690] = 773, + [4691] = 4691, + [4692] = 4497, + [4693] = 4544, + [4694] = 4694, + [4695] = 4243, + [4696] = 4595, + [4697] = 1006, + [4698] = 1007, + [4699] = 1010, + [4700] = 1011, + [4701] = 4469, + [4702] = 4497, + [4703] = 4625, + [4704] = 4691, + [4705] = 4694, + [4706] = 4521, + [4707] = 4522, + [4708] = 4497, + [4709] = 4411, + [4710] = 4629, + [4711] = 4503, + [4712] = 4573, + [4713] = 1467, + [4714] = 4596, + [4715] = 4497, + [4716] = 4716, + [4717] = 4596, + [4718] = 4365, + [4719] = 4398, [4720] = 4720, - [4721] = 4676, - [4722] = 4676, - [4723] = 4702, - [4724] = 4724, - [4725] = 4725, - [4726] = 4726, - [4727] = 4676, - [4728] = 4528, - [4729] = 4676, - [4730] = 4705, - [4731] = 4182, - [4732] = 4732, - [4733] = 4186, - [4734] = 4536, - [4735] = 1670, - [4736] = 4238, - [4737] = 4737, - [4738] = 4676, - [4739] = 4233, - [4740] = 475, - [4741] = 4269, - [4742] = 4286, - [4743] = 4522, - [4744] = 4288, - [4745] = 473, - [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, + [4721] = 4380, + [4722] = 1187, + [4723] = 4521, + [4724] = 4376, + [4725] = 4363, + [4726] = 4716, + [4727] = 4533, + [4728] = 4522, + [4729] = 4380, + [4730] = 4469, + [4731] = 4539, + [4732] = 1480, + [4733] = 4422, + [4734] = 438, + [4735] = 4595, + [4736] = 4380, + [4737] = 4538, + [4738] = 4437, + [4739] = 4720, + [4740] = 4740, + [4741] = 4573, + [4742] = 4691, + [4743] = 4694, + [4744] = 4554, + [4745] = 4656, + [4746] = 4362, + [4747] = 438, + [4748] = 4748, + [4749] = 4531, + [4750] = 4578, + [4751] = 4558, + [4752] = 4599, + [4753] = 4555, + [4754] = 438, + [4755] = 4543, + [4756] = 460, + [4757] = 4544, + [4758] = 4720, + [4759] = 4469, + [4760] = 4395, + [4761] = 4629, + [4762] = 1467, + [4763] = 4469, + [4764] = 4505, + [4765] = 4561, + [4766] = 4503, + [4767] = 1179, + [4768] = 4562, + [4769] = 4343, + [4770] = 4552, + [4771] = 4771, + [4772] = 1011, + [4773] = 4773, [4774] = 4774, - [4775] = 481, - [4776] = 4514, - [4777] = 4777, + [4775] = 4775, + [4776] = 4380, + [4777] = 772, [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, + [4779] = 4656, + [4780] = 4469, + [4781] = 435, + [4782] = 4782, + [4783] = 4429, + [4784] = 438, + [4785] = 4716, + [4786] = 773, + [4787] = 436, + [4788] = 4441, + [4789] = 4789, + [4790] = 4775, + [4791] = 4791, + [4792] = 435, + [4793] = 4793, + [4794] = 4794, + [4795] = 436, + [4796] = 437, + [4797] = 4773, + [4798] = 748, + [4799] = 4656, + [4800] = 437, + [4801] = 4778, + [4802] = 4802, + [4803] = 4803, + [4804] = 3989, + [4805] = 3972, + [4806] = 4806, + [4807] = 4773, + [4808] = 4808, + [4809] = 4774, + [4810] = 4771, + [4811] = 4789, + [4812] = 4775, + [4813] = 4782, + [4814] = 4808, [4815] = 4815, - [4816] = 4676, - [4817] = 4817, - [4818] = 4818, - [4819] = 4792, + [4816] = 438, + [4817] = 4802, + [4818] = 438, + [4819] = 438, [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, + [4821] = 4793, + [4822] = 4716, + [4823] = 1010, + [4824] = 4778, + [4825] = 3997, + [4826] = 4815, + [4827] = 4774, + [4828] = 4828, + [4829] = 4829, + [4830] = 462, + [4831] = 4803, + [4832] = 4793, + [4833] = 4802, + [4834] = 435, + [4835] = 4806, + [4836] = 4789, + [4837] = 984, + [4838] = 3977, + [4839] = 985, + [4840] = 435, + [4841] = 3997, + [4842] = 436, + [4843] = 438, + [4844] = 436, + [4845] = 4716, + [4846] = 4782, + [4847] = 4656, + [4848] = 435, + [4849] = 436, + [4850] = 438, + [4851] = 4803, + [4852] = 1006, + [4853] = 4806, + [4854] = 793, + [4855] = 4771, + [4856] = 3999, + [4857] = 3991, + [4858] = 1006, + [4859] = 1007, + [4860] = 1010, + [4861] = 1011, + [4862] = 793, + [4863] = 748, + [4864] = 772, + [4865] = 773, + [4866] = 1007, + [4867] = 4808, + [4868] = 4815, + [4869] = 3977, + [4870] = 1010, + [4871] = 4871, + [4872] = 4872, + [4873] = 442, + [4874] = 455, + [4875] = 456, + [4876] = 457, + [4877] = 4877, + [4878] = 448, + [4879] = 4879, + [4880] = 4880, + [4881] = 1027, + [4882] = 456, + [4883] = 446, + [4884] = 442, + [4885] = 4885, + [4886] = 450, + [4887] = 4887, + [4888] = 3977, + [4889] = 454, + [4890] = 457, + [4891] = 454, + [4892] = 446, + [4893] = 4893, + [4894] = 984, + [4895] = 443, + [4896] = 4896, + [4897] = 459, + [4898] = 445, + [4899] = 447, + [4900] = 4900, + [4901] = 3991, + [4902] = 1011, + [4903] = 435, + [4904] = 449, + [4905] = 4905, + [4906] = 436, + [4907] = 460, + [4908] = 772, + [4909] = 450, + [4910] = 4910, + [4911] = 985, + [4912] = 441, + [4913] = 4913, + [4914] = 3972, + [4915] = 772, + [4916] = 452, + [4917] = 748, + [4918] = 438, + [4919] = 453, + [4920] = 4920, + [4921] = 437, + [4922] = 4922, + [4923] = 4893, + [4924] = 4924, + [4925] = 4925, + [4926] = 773, + [4927] = 448, + [4928] = 447, + [4929] = 4929, + [4930] = 3989, + [4931] = 4931, + [4932] = 435, + [4933] = 436, + [4934] = 4893, + [4935] = 4935, + [4936] = 4032, + [4937] = 4139, + [4938] = 4130, + [4939] = 3997, + [4940] = 3999, + [4941] = 443, + [4942] = 435, + [4943] = 449, + [4944] = 445, + [4945] = 793, + [4946] = 444, + [4947] = 441, + [4948] = 437, + [4949] = 4949, + [4950] = 4950, + [4951] = 435, + [4952] = 451, + [4953] = 452, + [4954] = 436, + [4955] = 4955, + [4956] = 444, + [4957] = 436, + [4958] = 773, + [4959] = 1300, + [4960] = 3972, + [4961] = 4961, + [4962] = 4962, + [4963] = 1032, + [4964] = 459, + [4965] = 451, + [4966] = 793, + [4967] = 748, + [4968] = 772, + [4969] = 773, + [4970] = 4970, + [4971] = 455, + [4972] = 437, + [4973] = 1006, + [4974] = 4974, + [4975] = 458, + [4976] = 1007, + [4977] = 453, + [4978] = 1006, + [4979] = 1007, + [4980] = 1010, + [4981] = 1011, + [4982] = 793, + [4983] = 458, + [4984] = 748, + [4985] = 1295, + [4986] = 4986, + [4987] = 4987, + [4988] = 459, + [4989] = 445, + [4990] = 453, + [4991] = 437, + [4992] = 4992, + [4993] = 445, + [4994] = 453, + [4995] = 444, + [4996] = 4996, + [4997] = 4997, + [4998] = 444, [4999] = 4999, - [5000] = 465, - [5001] = 4536, - [5002] = 4725, - [5003] = 1153, - [5004] = 1670, - [5005] = 4593, - [5006] = 4546, - [5007] = 465, - [5008] = 4611, - [5009] = 4548, - [5010] = 4509, - [5011] = 4585, - [5012] = 4548, - [5013] = 4681, - [5014] = 3800, - [5015] = 4818, - [5016] = 4837, - [5017] = 3904, - [5018] = 4766, - [5019] = 465, - [5020] = 1020, - [5021] = 1021, - [5022] = 5022, - [5023] = 5023, - [5024] = 5024, - [5025] = 5025, - [5026] = 5026, + [5000] = 454, + [5001] = 454, + [5002] = 5002, + [5003] = 5003, + [5004] = 5004, + [5005] = 5005, + [5006] = 450, + [5007] = 5007, + [5008] = 5008, + [5009] = 448, + [5010] = 5010, + [5011] = 5011, + [5012] = 5012, + [5013] = 5013, + [5014] = 5014, + [5015] = 450, + [5016] = 454, + [5017] = 5017, + [5018] = 4139, + [5019] = 5019, + [5020] = 459, + [5021] = 5021, + [5022] = 446, + [5023] = 444, + [5024] = 455, + [5025] = 456, + [5026] = 457, [5027] = 5027, [5028] = 5028, - [5029] = 5029, - [5030] = 5030, - [5031] = 5031, - [5032] = 5032, - [5033] = 5033, - [5034] = 4147, - [5035] = 1015, - [5036] = 4161, - [5037] = 1096, - [5038] = 4152, - [5039] = 466, - [5040] = 463, - [5041] = 464, + [5029] = 458, + [5030] = 455, + [5031] = 456, + [5032] = 457, + [5033] = 4996, + [5034] = 5034, + [5035] = 5035, + [5036] = 5036, + [5037] = 5037, + [5038] = 442, + [5039] = 1006, + [5040] = 1007, + [5041] = 5041, [5042] = 5042, [5043] = 5043, - [5044] = 810, - [5045] = 838, - [5046] = 465, - [5047] = 817, - [5048] = 818, - [5049] = 4141, - [5050] = 491, - [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, - [5091] = 5091, - [5092] = 5052, - [5093] = 465, - [5094] = 3904, - [5095] = 5091, - [5096] = 5091, - [5097] = 5052, - [5098] = 4581, - [5099] = 4546, - [5100] = 465, - [5101] = 3904, + [5044] = 5044, + [5045] = 5045, + [5046] = 5046, + [5047] = 5047, + [5048] = 5048, + [5049] = 448, + [5050] = 448, + [5051] = 4185, + [5052] = 4189, + [5053] = 1010, + [5054] = 5054, + [5055] = 5055, + [5056] = 5056, + [5057] = 1011, + [5058] = 5058, + [5059] = 5059, + [5060] = 5060, + [5061] = 441, + [5062] = 4130, + [5063] = 441, + [5064] = 446, + [5065] = 5065, + [5066] = 5066, + [5067] = 5067, + [5068] = 1027, + [5069] = 5069, + [5070] = 4996, + [5071] = 5071, + [5072] = 5072, + [5073] = 5073, + [5074] = 5074, + [5075] = 5075, + [5076] = 453, + [5077] = 5077, + [5078] = 5078, + [5079] = 5079, + [5080] = 793, + [5081] = 748, + [5082] = 5082, + [5083] = 5083, + [5084] = 5084, + [5085] = 447, + [5086] = 445, + [5087] = 447, + [5088] = 5088, + [5089] = 5089, + [5090] = 1032, + [5091] = 4996, + [5092] = 772, + [5093] = 773, + [5094] = 5094, + [5095] = 5095, + [5096] = 5096, + [5097] = 5097, + [5098] = 5098, + [5099] = 1240, + [5100] = 450, + [5101] = 451, [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, - [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, - [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, + [5103] = 5103, + [5104] = 5104, + [5105] = 5105, + [5106] = 5106, + [5107] = 452, + [5108] = 451, + [5109] = 5109, + [5110] = 452, + [5111] = 5111, + [5112] = 5112, + [5113] = 5113, + [5114] = 4996, + [5115] = 460, + [5116] = 460, + [5117] = 4996, + [5118] = 455, + [5119] = 456, + [5120] = 4996, + [5121] = 457, + [5122] = 1295, + [5123] = 1027, + [5124] = 4996, + [5125] = 459, + [5126] = 443, + [5127] = 449, + [5128] = 441, + [5129] = 458, + [5130] = 442, + [5131] = 4748, + [5132] = 1300, + [5133] = 435, + [5134] = 451, + [5135] = 452, + [5136] = 1032, + [5137] = 436, + [5138] = 446, + [5139] = 447, + [5140] = 460, + [5141] = 4032, + [5142] = 460, + [5143] = 462, + [5144] = 443, + [5145] = 449, + [5146] = 443, + [5147] = 458, + [5148] = 442, + [5149] = 449, + [5150] = 5150, + [5151] = 444, + [5152] = 5152, + [5153] = 1187, + [5154] = 460, + [5155] = 5152, + [5156] = 5156, + [5157] = 447, + [5158] = 5158, + [5159] = 5159, + [5160] = 450, + [5161] = 5152, + [5162] = 5156, + [5163] = 1295, + [5164] = 448, + [5165] = 451, + [5166] = 452, + [5167] = 5152, + [5168] = 5156, + [5169] = 1300, + [5170] = 443, + [5171] = 5152, + [5172] = 5156, + [5173] = 455, + [5174] = 459, + [5175] = 454, + [5176] = 5152, + [5177] = 456, + [5178] = 5156, + [5179] = 4189, + [5180] = 1467, + [5181] = 457, + [5182] = 462, + [5183] = 5156, + [5184] = 449, + [5185] = 1027, + [5186] = 1179, + [5187] = 1480, + [5188] = 1032, + [5189] = 441, + [5190] = 446, + [5191] = 462, + [5192] = 462, + [5193] = 5193, + [5194] = 458, + [5195] = 438, + [5196] = 5196, + [5197] = 442, + [5198] = 462, + [5199] = 445, + [5200] = 4380, + [5201] = 5201, + [5202] = 4469, + [5203] = 453, + [5204] = 4185, + [5205] = 4343, + [5206] = 4362, + [5207] = 432, + [5208] = 4359, + [5209] = 4395, + [5210] = 1006, + [5211] = 1187, + [5212] = 1007, + [5213] = 1401, + [5214] = 5214, + [5215] = 4422, + [5216] = 793, + [5217] = 1010, + [5218] = 4469, + [5219] = 748, + [5220] = 4365, + [5221] = 4538, + [5222] = 1011, + [5223] = 4438, + [5224] = 5224, + [5225] = 462, + [5226] = 1467, + [5227] = 4368, + [5228] = 4376, + [5229] = 1179, + [5230] = 4363, + [5231] = 431, + [5232] = 1480, + [5233] = 1179, + [5234] = 1187, + [5235] = 4399, + [5236] = 4380, + [5237] = 772, + [5238] = 773, + [5239] = 4384, + [5240] = 4398, + [5241] = 3997, + [5242] = 5242, + [5243] = 435, + [5244] = 437, + [5245] = 1420, + [5246] = 4411, + [5247] = 1421, + [5248] = 436, + [5249] = 4437, + [5250] = 444, + [5251] = 458, + [5252] = 4533, + [5253] = 450, + [5254] = 1032, + [5255] = 4543, + [5256] = 1295, [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, - [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, + [5258] = 4552, + [5259] = 4554, + [5260] = 1187, + [5261] = 4343, + [5262] = 448, + [5263] = 5257, + [5264] = 446, + [5265] = 451, + [5266] = 4629, + [5267] = 4376, + [5268] = 452, + [5269] = 441, + [5270] = 1480, + [5271] = 5257, + [5272] = 4599, + [5273] = 4522, + [5274] = 442, + [5275] = 5257, + [5276] = 5257, + [5277] = 4531, + [5278] = 4578, + [5279] = 5257, + [5280] = 445, + [5281] = 5257, + [5282] = 4503, + [5283] = 4363, + [5284] = 1467, + [5285] = 4365, + [5286] = 4539, + [5287] = 4595, + [5288] = 4437, + [5289] = 4691, + [5290] = 4694, + [5291] = 4573, + [5292] = 4422, + [5293] = 4555, + [5294] = 1300, + [5295] = 453, + [5296] = 1027, + [5297] = 4596, + [5298] = 455, + [5299] = 456, + [5300] = 457, + [5301] = 4398, + [5302] = 4505, + [5303] = 4538, + [5304] = 4561, + [5305] = 4562, + [5306] = 447, + [5307] = 1179, + [5308] = 4544, + [5309] = 4521, + [5310] = 4558, + [5311] = 459, + [5312] = 4362, + [5313] = 460, + [5314] = 4395, + [5315] = 449, + [5316] = 5257, + [5317] = 454, + [5318] = 443, + [5319] = 5257, + [5320] = 462, + [5321] = 1480, + [5322] = 1467, + [5323] = 431, + [5324] = 1179, + [5325] = 1187, + [5326] = 432, + [5327] = 5327, + [5328] = 5328, + [5329] = 5329, + [5330] = 5330, + [5331] = 5330, + [5332] = 5330, + [5333] = 5329, + [5334] = 5329, + [5335] = 5329, + [5336] = 5330, + [5337] = 5329, + [5338] = 5329, + [5339] = 5329, + [5340] = 5330, + [5341] = 5329, + [5342] = 5330, + [5343] = 5330, + [5344] = 5329, + [5345] = 5329, + [5346] = 5330, + [5347] = 5329, + [5348] = 5330, + [5349] = 5329, + [5350] = 5330, + [5351] = 5330, + [5352] = 5329, + [5353] = 5329, + [5354] = 5330, + [5355] = 5329, + [5356] = 5330, + [5357] = 5330, + [5358] = 5329, + [5359] = 5330, + [5360] = 5329, + [5361] = 5329, + [5362] = 5330, + [5363] = 5330, + [5364] = 5329, + [5365] = 5329, + [5366] = 5330, + [5367] = 5329, [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, - [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, + [5369] = 5330, + [5370] = 5329, + [5371] = 5330, + [5372] = 5329, + [5373] = 5330, + [5374] = 5330, + [5375] = 5329, + [5376] = 5329, + [5377] = 5330, + [5378] = 5330, + [5379] = 5329, + [5380] = 5329, + [5381] = 5329, + [5382] = 5330, + [5383] = 5330, + [5384] = 5329, + [5385] = 5330, + [5386] = 5329, + [5387] = 5330, + [5388] = 5329, + [5389] = 5329, + [5390] = 5330, + [5391] = 5329, + [5392] = 5329, + [5393] = 5330, + [5394] = 5330, + [5395] = 5329, + [5396] = 5330, + [5397] = 5330, + [5398] = 5329, + [5399] = 5329, + [5400] = 5330, + [5401] = 5329, + [5402] = 5329, + [5403] = 5330, + [5404] = 5329, + [5405] = 5330, + [5406] = 5330, + [5407] = 5330, + [5408] = 5329, + [5409] = 5329, + [5410] = 5330, + [5411] = 5330, + [5412] = 5329, + [5413] = 5330, + [5414] = 5329, + [5415] = 5330, + [5416] = 5329, + [5417] = 5330, + [5418] = 5330, + [5419] = 5330, + [5420] = 5330, + [5421] = 5330, + [5422] = 5329, + [5423] = 5329, + [5424] = 5330, + [5425] = 5329, + [5426] = 5330, + [5427] = 5330, + [5428] = 5329, + [5429] = 5329, + [5430] = 5329, + [5431] = 5330, + [5432] = 5329, + [5433] = 5329, + [5434] = 5330, + [5435] = 5330, + [5436] = 5329, + [5437] = 5329, + [5438] = 5330, + [5439] = 5329, + [5440] = 5330, + [5441] = 5330, + [5442] = 5329, + [5443] = 5329, + [5444] = 5330, + [5445] = 5330, + [5446] = 5330, + [5447] = 5329, + [5448] = 5330, + [5449] = 5329, + [5450] = 5330, + [5451] = 5329, + [5452] = 5330, + [5453] = 5330, + [5454] = 5330, + [5455] = 5330, + [5456] = 5330, + [5457] = 5330, + [5458] = 5330, + [5459] = 5329, + [5460] = 5330, + [5461] = 5329, + [5462] = 5329, + [5463] = 5330, + [5464] = 5329, + [5465] = 5329, + [5466] = 5329, + [5467] = 5329, + [5468] = 5329, + [5469] = 5329, + [5470] = 5470, + [5471] = 5471, + [5472] = 5471, + [5473] = 5470, + [5474] = 5471, + [5475] = 5471, + [5476] = 5470, + [5477] = 5477, + [5478] = 5471, + [5479] = 5477, + [5480] = 5477, + [5481] = 5470, + [5482] = 5471, + [5483] = 5477, + [5484] = 5477, + [5485] = 5470, + [5486] = 5470, + [5487] = 5471, + [5488] = 5488, + [5489] = 5477, + [5490] = 5470, + [5491] = 5471, + [5492] = 5471, + [5493] = 5477, + [5494] = 5470, + [5495] = 5488, + [5496] = 5470, + [5497] = 5477, + [5498] = 5471, + [5499] = 5477, + [5500] = 5470, + [5501] = 5471, + [5502] = 5470, + [5503] = 5477, + [5504] = 5470, + [5505] = 5471, + [5506] = 5470, + [5507] = 5471, + [5508] = 5470, + [5509] = 5471, + [5510] = 5488, + [5511] = 5477, + [5512] = 5477, + [5513] = 5477, + [5514] = 5471, + [5515] = 5470, + [5516] = 5471, + [5517] = 5477, + [5518] = 5470, + [5519] = 5470, + [5520] = 5471, + [5521] = 5471, + [5522] = 5477, + [5523] = 5471, + [5524] = 5470, + [5525] = 5477, + [5526] = 5471, + [5527] = 5477, + [5528] = 5470, + [5529] = 5477, + [5530] = 5471, + [5531] = 5470, + [5532] = 5477, + [5533] = 5471, + [5534] = 5470, + [5535] = 5471, + [5536] = 5470, + [5537] = 5471, + [5538] = 5477, + [5539] = 5477, + [5540] = 5477, + [5541] = 5470, + [5542] = 5471, + [5543] = 5477, + [5544] = 5477, + [5545] = 5470, + [5546] = 5470, + [5547] = 5471, + [5548] = 5477, + [5549] = 5470, + [5550] = 5470, + [5551] = 5471, + [5552] = 5471, + [5553] = 5477, + [5554] = 5471, + [5555] = 5471, + [5556] = 5470, + [5557] = 5477, + [5558] = 5471, + [5559] = 5477, + [5560] = 5470, + [5561] = 5470, + [5562] = 5471, + [5563] = 5477, + [5564] = 5477, + [5565] = 5470, + [5566] = 5470, + [5567] = 5471, + [5568] = 5477, + [5569] = 5470, + [5570] = 5471, + [5571] = 5488, + [5572] = 5470, + [5573] = 5471, + [5574] = 5477, + [5575] = 5477, + [5576] = 5471, + [5577] = 5471, + [5578] = 5471, + [5579] = 5470, + [5580] = 5470, + [5581] = 5477, + [5582] = 5470, + [5583] = 5470, + [5584] = 5477, + [5585] = 5471, + [5586] = 5477, + [5587] = 5477, + [5588] = 5470, + [5589] = 5471, + [5590] = 5471, + [5591] = 5477, + [5592] = 5470, + [5593] = 5470, + [5594] = 5477, + [5595] = 5488, + [5596] = 5471, + [5597] = 5471, + [5598] = 5477, + [5599] = 5470, + [5600] = 5477, + [5601] = 5471, + [5602] = 5477, + [5603] = 5470, + [5604] = 5470, + [5605] = 5470, + [5606] = 5471, + [5607] = 5471, + [5608] = 5477, + [5609] = 5477, + [5610] = 5477, + [5611] = 5471, + [5612] = 5470, + [5613] = 5477, + [5614] = 5471, + [5615] = 5477, + [5616] = 5470, + [5617] = 5488, + [5618] = 5470, + [5619] = 5470, + [5620] = 5471, + [5621] = 5471, + [5622] = 5470, + [5623] = 5477, + [5624] = 5471, + [5625] = 5471, + [5626] = 5470, + [5627] = 5470, + [5628] = 5470, + [5629] = 5477, + [5630] = 5471, + [5631] = 5471, + [5632] = 5477, + [5633] = 5470, + [5634] = 5470, + [5635] = 5471, + [5636] = 5488, + [5637] = 5471, + [5638] = 5477, + [5639] = 5470, + [5640] = 5470, + [5641] = 5471, + [5642] = 5470, + [5643] = 5470, + [5644] = 5471, + [5645] = 5471, + [5646] = 5471, + [5647] = 5477, + [5648] = 5470, + [5649] = 5477, + [5650] = 5470, + [5651] = 5470, + [5652] = 5471, + [5653] = 5470, + [5654] = 5470, + [5655] = 5471, + [5656] = 5470, + [5657] = 5471, + [5658] = 5470, + [5659] = 5477, + [5660] = 5471, + [5661] = 5471, + [5662] = 5470, + [5663] = 5477, + [5664] = 5470, + [5665] = 5471, + [5666] = 5471, + [5667] = 5477, + [5668] = 5477, + [5669] = 5470, + [5670] = 5470, + [5671] = 5471, + [5672] = 5471, + [5673] = 5488, + [5674] = 5471, + [5675] = 5675, + [5676] = 5675, + [5677] = 5675, + [5678] = 5675, + [5679] = 451, + [5680] = 452, + [5681] = 5675, + [5682] = 5682, + [5683] = 5675, + [5684] = 5675, + [5685] = 5675, + [5686] = 5686, + [5687] = 5686, + [5688] = 5688, + [5689] = 5688, + [5690] = 5690, + [5691] = 5686, + [5692] = 5686, + [5693] = 5686, + [5694] = 5688, + [5695] = 5688, + [5696] = 5686, + [5697] = 5688, + [5698] = 5686, + [5699] = 5686, + [5700] = 5686, + [5701] = 5701, + [5702] = 5686, + [5703] = 5686, + [5704] = 5686, + [5705] = 5686, + [5706] = 5686, + [5707] = 5686, + [5708] = 5688, + [5709] = 5688, + [5710] = 5686, + [5711] = 5686, + [5712] = 5686, + [5713] = 5686, + [5714] = 5686, + [5715] = 5686, + [5716] = 5688, + [5717] = 5717, + [5718] = 5686, + [5719] = 5686, + [5720] = 5720, + [5721] = 5686, + [5722] = 5686, + [5723] = 5686, + [5724] = 5686, + [5725] = 5688, + [5726] = 455, + [5727] = 456, + [5728] = 454, + [5729] = 5729, + [5730] = 5730, + [5731] = 5731, + [5732] = 5732, + [5733] = 446, + [5734] = 5731, + [5735] = 5730, + [5736] = 457, + [5737] = 5731, + [5738] = 452, + [5739] = 5732, + [5740] = 5731, + [5741] = 5731, + [5742] = 5732, + [5743] = 5731, + [5744] = 5732, + [5745] = 5732, + [5746] = 5730, + [5747] = 5730, + [5748] = 5730, + [5749] = 5731, + [5750] = 5732, + [5751] = 5732, + [5752] = 5730, + [5753] = 453, + [5754] = 990, + [5755] = 5755, + [5756] = 447, + [5757] = 5731, + [5758] = 5758, + [5759] = 5730, + [5760] = 5732, + [5761] = 5730, + [5762] = 451, + [5763] = 438, + [5764] = 5764, + [5765] = 5765, + [5766] = 5766, + [5767] = 5767, + [5768] = 5768, + [5769] = 5769, + [5770] = 5770, + [5771] = 5771, + [5772] = 5769, + [5773] = 5769, [5774] = 5774, - [5775] = 5774, - [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, + [5775] = 5771, + [5776] = 5771, + [5777] = 5771, + [5778] = 5769, + [5779] = 436, + [5780] = 437, + [5781] = 435, + [5782] = 5782, + [5783] = 5783, + [5784] = 456, + [5785] = 457, + [5786] = 455, + [5787] = 456, + [5788] = 457, + [5789] = 5789, + [5790] = 448, + [5791] = 5789, + [5792] = 450, + [5793] = 446, + [5794] = 448, + [5795] = 5789, + [5796] = 458, + [5797] = 5797, + [5798] = 451, + [5799] = 452, + [5800] = 445, + [5801] = 441, + [5802] = 453, + [5803] = 455, + [5804] = 5804, + [5805] = 451, + [5806] = 452, + [5807] = 441, + [5808] = 454, + [5809] = 453, + [5810] = 453, + [5811] = 460, + [5812] = 454, + [5813] = 459, + [5814] = 5789, + [5815] = 444, + [5816] = 443, + [5817] = 454, + [5818] = 455, + [5819] = 456, + [5820] = 449, + [5821] = 447, + [5822] = 457, + [5823] = 442, + [5824] = 5824, + [5825] = 5825, + [5826] = 5826, + [5827] = 5827, + [5828] = 5828, + [5829] = 5827, + [5830] = 5830, + [5831] = 5827, + [5832] = 5827, + [5833] = 5827, + [5834] = 5827, + [5835] = 5827, + [5836] = 5836, + [5837] = 5827, + [5838] = 5838, + [5839] = 5827, + [5840] = 5827, + [5841] = 5827, + [5842] = 5842, + [5843] = 5843, + [5844] = 445, + [5845] = 5845, + [5846] = 5827, + [5847] = 5847, + [5848] = 5848, + [5849] = 5827, + [5850] = 438, + [5851] = 5827, + [5852] = 5852, + [5853] = 5848, + [5854] = 5827, + [5855] = 5855, + [5856] = 5856, + [5857] = 5827, + [5858] = 5858, + [5859] = 5827, + [5860] = 5827, + [5861] = 5827, + [5862] = 5827, + [5863] = 5863, + [5864] = 5827, + [5865] = 5827, + [5866] = 5827, + [5867] = 5827, + [5868] = 5827, + [5869] = 5869, + [5870] = 5870, + [5871] = 5827, + [5872] = 5827, + [5873] = 5827, + [5874] = 450, + [5875] = 5827, + [5876] = 5876, + [5877] = 5827, + [5878] = 5827, + [5879] = 5828, + [5880] = 5880, + [5881] = 5827, + [5882] = 5827, + [5883] = 5883, + [5884] = 5884, + [5885] = 5827, + [5886] = 5827, + [5887] = 5887, + [5888] = 5888, + [5889] = 5827, + [5890] = 5842, + [5891] = 5827, + [5892] = 5827, + [5893] = 5827, + [5894] = 5827, + [5895] = 5827, + [5896] = 5827, + [5897] = 462, + [5898] = 5898, + [5899] = 5827, + [5900] = 5848, + [5901] = 5827, + [5902] = 5827, + [5903] = 5827, + [5904] = 5904, + [5905] = 5827, + [5906] = 5906, + [5907] = 5827, + [5908] = 5827, + [5909] = 5909, + [5910] = 5910, + [5911] = 5827, + [5912] = 5827, + [5913] = 5827, + [5914] = 5827, + [5915] = 5827, + [5916] = 5827, + [5917] = 5828, + [5918] = 5827, + [5919] = 5919, + [5920] = 5848, + [5921] = 5842, + [5922] = 5827, + [5923] = 5923, + [5924] = 5924, + [5925] = 5827, + [5926] = 5926, + [5927] = 5927, + [5928] = 5827, + [5929] = 5842, + [5930] = 5827, + [5931] = 5931, + [5932] = 5827, + [5933] = 5933, + [5934] = 5934, + [5935] = 5935, + [5936] = 444, + [5937] = 5828, + [5938] = 5827, + [5939] = 5827, + [5940] = 5940, + [5941] = 5941, + [5942] = 5942, + [5943] = 5943, + [5944] = 5944, + [5945] = 5944, + [5946] = 5946, + [5947] = 5947, + [5948] = 5948, + [5949] = 5949, + [5950] = 5947, + [5951] = 5947, + [5952] = 5952, + [5953] = 5948, + [5954] = 5954, + [5955] = 5955, + [5956] = 5946, + [5957] = 5957, + [5958] = 5952, + [5959] = 5959, + [5960] = 5960, + [5961] = 5961, + [5962] = 5952, + [5963] = 5963, + [5964] = 5964, + [5965] = 5965, + [5966] = 5966, + [5967] = 5955, + [5968] = 5961, + [5969] = 5969, + [5970] = 5954, + [5971] = 5957, + [5972] = 5972, + [5973] = 5973, + [5974] = 5943, + [5975] = 5973, + [5976] = 5944, + [5977] = 5977, + [5978] = 5978, + [5979] = 5944, + [5980] = 5960, + [5981] = 2362, + [5982] = 5966, + [5983] = 5961, + [5984] = 455, + [5985] = 5985, + [5986] = 5948, + [5987] = 5965, + [5988] = 5988, + [5989] = 5989, + [5990] = 5990, + [5991] = 2363, + [5992] = 5992, + [5993] = 5993, + [5994] = 5994, + [5995] = 5969, + [5996] = 5996, + [5997] = 5946, + [5998] = 435, + [5999] = 5948, [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, + [6001] = 6001, + [6002] = 6002, + [6003] = 5946, + [6004] = 5947, + [6005] = 436, + [6006] = 5952, + [6007] = 5955, + [6008] = 6008, + [6009] = 5957, + [6010] = 5960, + [6011] = 5948, + [6012] = 5955, + [6013] = 5966, + [6014] = 6014, + [6015] = 5965, + [6016] = 5966, + [6017] = 5969, + [6018] = 5973, + [6019] = 5943, + [6020] = 437, + [6021] = 5943, + [6022] = 5944, + [6023] = 5947, + [6024] = 6024, + [6025] = 5952, + [6026] = 5955, + [6027] = 5973, + [6028] = 456, + [6029] = 457, + [6030] = 6030, + [6031] = 5965, + [6032] = 5969, + [6033] = 5948, + [6034] = 5946, + [6035] = 5954, + [6036] = 6036, + [6037] = 6037, + [6038] = 6038, + [6039] = 5957, + [6040] = 5946, + [6041] = 5947, + [6042] = 5952, + [6043] = 5954, + [6044] = 5955, + [6045] = 5957, + [6046] = 6046, + [6047] = 5960, + [6048] = 5966, + [6049] = 5969, + [6050] = 5973, + [6051] = 5960, [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, + [6053] = 5960, + [6054] = 5966, + [6055] = 5943, + [6056] = 5944, + [6057] = 5943, + [6058] = 2338, + [6059] = 5969, + [6060] = 5961, + [6061] = 6061, + [6062] = 6062, + [6063] = 5973, + [6064] = 2438, + [6065] = 5957, + [6066] = 452, + [6067] = 449, + [6068] = 6068, + [6069] = 456, + [6070] = 6070, + [6071] = 6071, + [6072] = 460, + [6073] = 2602, + [6074] = 6074, + [6075] = 457, + [6076] = 454, + [6077] = 6077, + [6078] = 451, + [6079] = 6079, + [6080] = 6080, + [6081] = 458, + [6082] = 6082, + [6083] = 448, + [6084] = 6084, + [6085] = 444, + [6086] = 447, + [6087] = 6087, + [6088] = 6088, + [6089] = 442, + [6090] = 460, + [6091] = 457, [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, + [6093] = 456, + [6094] = 443, + [6095] = 2601, + [6096] = 445, + [6097] = 441, + [6098] = 6098, + [6099] = 459, + [6100] = 455, + [6101] = 450, + [6102] = 445, + [6103] = 6103, + [6104] = 1421, + [6105] = 6105, + [6106] = 458, + [6107] = 444, + [6108] = 6108, + [6109] = 453, + [6110] = 6110, + [6111] = 6111, + [6112] = 456, + [6113] = 1420, + [6114] = 450, + [6115] = 6115, + [6116] = 451, + [6117] = 452, + [6118] = 457, + [6119] = 2616, + [6120] = 6120, + [6121] = 446, + [6122] = 453, + [6123] = 2620, + [6124] = 6124, + [6125] = 454, + [6126] = 6126, + [6127] = 455, + [6128] = 455, + [6129] = 6129, [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, + [6131] = 6130, + [6132] = 450, + [6133] = 6133, + [6134] = 6130, + [6135] = 6130, + [6136] = 6130, + [6137] = 6137, + [6138] = 6138, + [6139] = 6139, + [6140] = 6139, + [6141] = 450, + [6142] = 6142, + [6143] = 6130, + [6144] = 6144, + [6145] = 6139, + [6146] = 6146, [6147] = 6147, - [6148] = 480, - [6149] = 485, - [6150] = 479, - [6151] = 6151, - [6152] = 6152, - [6153] = 6153, - [6154] = 6154, - [6155] = 6154, - [6156] = 6154, + [6148] = 6148, + [6149] = 6149, + [6150] = 6130, + [6151] = 6129, + [6152] = 6138, + [6153] = 6130, + [6154] = 6062, + [6155] = 6130, + [6156] = 6138, [6157] = 6157, - [6158] = 6154, - [6159] = 6159, - [6160] = 6154, - [6161] = 6161, - [6162] = 6154, - [6163] = 6154, - [6164] = 6154, + [6158] = 6130, + [6159] = 6130, + [6160] = 6130, + [6161] = 6138, + [6162] = 6162, + [6163] = 6163, + [6164] = 6138, [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, + [6166] = 6138, + [6167] = 6130, + [6168] = 6129, + [6169] = 6138, + [6170] = 6170, + [6171] = 6138, + [6172] = 6130, + [6173] = 6138, + [6174] = 6138, + [6175] = 6130, + [6176] = 6138, + [6177] = 6138, + [6178] = 6138, + [6179] = 6179, + [6180] = 6180, + [6181] = 6138, + [6182] = 6182, + [6183] = 6183, + [6184] = 6138, + [6185] = 6130, + [6186] = 6186, + [6187] = 6130, + [6188] = 6138, + [6189] = 6130, [6190] = 6190, - [6191] = 6191, - [6192] = 6154, - [6193] = 6154, - [6194] = 6176, - [6195] = 6154, - [6196] = 6154, - [6197] = 6197, - [6198] = 465, + [6191] = 6130, + [6192] = 6192, + [6193] = 6193, + [6194] = 6130, + [6195] = 6195, + [6196] = 6196, + [6197] = 6130, + [6198] = 6198, [6199] = 6199, - [6200] = 6177, - [6201] = 6154, - [6202] = 6154, - [6203] = 6154, + [6200] = 6130, + [6201] = 6130, + [6202] = 6130, + [6203] = 6203, [6204] = 6204, - [6205] = 6205, - [6206] = 6206, - [6207] = 6154, + [6205] = 6130, + [6206] = 6129, + [6207] = 6130, [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, + [6209] = 6209, + [6210] = 6130, + [6211] = 6130, + [6212] = 6212, + [6213] = 6213, + [6214] = 6214, + [6215] = 6130, + [6216] = 6130, + [6217] = 6130, + [6218] = 6218, + [6219] = 6219, + [6220] = 455, + [6221] = 6221, + [6222] = 6130, [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, + [6224] = 6129, + [6225] = 6130, + [6226] = 6130, + [6227] = 6130, + [6228] = 6130, + [6229] = 6130, + [6230] = 6130, + [6231] = 6130, + [6232] = 456, + [6233] = 6233, + [6234] = 6130, + [6235] = 6235, + [6236] = 462, + [6237] = 457, + [6238] = 6138, + [6239] = 6062, + [6240] = 6130, + [6241] = 6130, + [6242] = 6130, + [6243] = 6243, + [6244] = 6130, + [6245] = 6130, + [6246] = 445, + [6247] = 2338, + [6248] = 2438, + [6249] = 6130, + [6250] = 6129, + [6251] = 2362, + [6252] = 6138, [6253] = 6253, - [6254] = 6154, - [6255] = 6154, - [6256] = 471, - [6257] = 6154, - [6258] = 6154, - [6259] = 6154, - [6260] = 6154, - [6261] = 6176, - [6262] = 6154, - [6263] = 6154, - [6264] = 6154, + [6254] = 6130, + [6255] = 6138, + [6256] = 6256, + [6257] = 6257, + [6258] = 6258, + [6259] = 445, + [6260] = 6130, + [6261] = 6138, + [6262] = 6262, + [6263] = 6263, + [6264] = 453, [6265] = 6265, - [6266] = 6154, - [6267] = 6267, - [6268] = 6154, - [6269] = 6154, - [6270] = 6181, - [6271] = 6154, - [6272] = 6272, - [6273] = 6154, - [6274] = 6154, + [6266] = 6266, + [6267] = 6130, + [6268] = 6129, + [6269] = 2363, + [6270] = 2261, + [6271] = 6130, + [6272] = 6130, + [6273] = 6137, + [6274] = 6274, [6275] = 6275, - [6276] = 2495, - [6277] = 6277, + [6276] = 6138, + [6277] = 444, [6278] = 6278, [6279] = 6279, - [6280] = 6280, - [6281] = 6281, + [6280] = 446, + [6281] = 6137, [6282] = 6282, - [6283] = 6283, - [6284] = 6284, - [6285] = 6285, + [6283] = 447, + [6284] = 6130, + [6285] = 6129, [6286] = 6286, - [6287] = 6287, - [6288] = 6288, - [6289] = 6289, + [6287] = 6130, + [6288] = 6130, + [6289] = 454, [6290] = 6290, - [6291] = 6287, - [6292] = 6292, - [6293] = 6279, - [6294] = 6294, - [6295] = 6295, - [6296] = 6296, - [6297] = 6288, - [6298] = 6289, - [6299] = 6290, + [6291] = 6138, + [6292] = 6138, + [6293] = 6293, + [6294] = 6130, + [6295] = 6130, + [6296] = 6130, + [6297] = 6130, + [6298] = 462, + [6299] = 444, [6300] = 6300, [6301] = 6301, - [6302] = 6279, - [6303] = 463, - [6304] = 483, - [6305] = 6305, - [6306] = 2565, + [6302] = 444, + [6303] = 6303, + [6304] = 6304, + [6305] = 2616, + [6306] = 442, [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, + [6308] = 6308, + [6309] = 445, + [6310] = 6301, + [6311] = 6303, + [6312] = 6301, + [6313] = 6303, + [6314] = 2439, + [6315] = 6308, + [6316] = 6303, + [6317] = 6303, + [6318] = 4343, + [6319] = 6084, + [6320] = 6303, + [6321] = 4437, + [6322] = 6322, + [6323] = 6303, + [6324] = 6324, + [6325] = 2620, + [6326] = 6303, + [6327] = 4398, + [6328] = 6328, + [6329] = 6303, + [6330] = 4376, + [6331] = 6331, + [6332] = 6303, + [6333] = 2601, + [6334] = 6307, + [6335] = 6105, + [6336] = 6336, + [6337] = 6301, + [6338] = 6303, + [6339] = 6307, + [6340] = 6303, [6341] = 6341, - [6342] = 6289, - [6343] = 6290, - [6344] = 6287, - [6345] = 6345, - [6346] = 6300, + [6342] = 6342, + [6343] = 6303, + [6344] = 6303, + [6345] = 450, + [6346] = 6308, [6347] = 6347, - [6348] = 6280, + [6348] = 6324, [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, + [6350] = 6105, + [6351] = 2345, + [6352] = 6084, + [6353] = 6303, + [6354] = 6307, + [6355] = 6324, + [6356] = 6303, + [6357] = 6115, + [6358] = 6303, + [6359] = 6359, + [6360] = 6360, + [6361] = 6308, + [6362] = 6303, + [6363] = 6301, + [6364] = 6303, + [6365] = 6324, + [6366] = 6303, + [6367] = 6115, + [6368] = 6368, + [6369] = 459, + [6370] = 6303, + [6371] = 6301, + [6372] = 6303, + [6373] = 6373, + [6374] = 6303, + [6375] = 2602, + [6376] = 6376, [6377] = 6377, - [6378] = 6284, + [6378] = 6378, [6379] = 6379, - [6380] = 6285, - [6381] = 6289, + [6380] = 6380, + [6381] = 6381, [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, + [6383] = 6383, + [6384] = 6384, + [6385] = 6385, + [6386] = 6384, + [6387] = 6387, + [6388] = 6376, + [6389] = 6377, + [6390] = 6381, + [6391] = 6391, + [6392] = 6380, + [6393] = 6393, + [6394] = 6387, + [6395] = 6378, + [6396] = 6384, [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, + [6398] = 6384, + [6399] = 6381, + [6400] = 6400, + [6401] = 6401, + [6402] = 6402, + [6403] = 6378, + [6404] = 6404, + [6405] = 6384, + [6406] = 6387, + [6407] = 6378, + [6408] = 6381, + [6409] = 6378, + [6410] = 6387, + [6411] = 6387, + [6412] = 6412, + [6413] = 6376, [6414] = 6414, - [6415] = 487, - [6416] = 6416, - [6417] = 6417, + [6415] = 6384, + [6416] = 6376, + [6417] = 6381, [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, + [6419] = 6380, + [6420] = 6379, + [6421] = 6391, + [6422] = 6378, + [6423] = 6377, + [6424] = 6424, + [6425] = 6380, + [6426] = 6381, + [6427] = 6427, + [6428] = 6377, + [6429] = 6384, + [6430] = 6376, + [6431] = 6387, + [6432] = 6376, [6433] = 6433, - [6434] = 1673, - [6435] = 6435, - [6436] = 2587, - [6437] = 6437, - [6438] = 1468, - [6439] = 6439, + [6434] = 6427, + [6435] = 6381, + [6436] = 6436, + [6437] = 6377, + [6438] = 6380, + [6439] = 6387, [6440] = 6440, [6441] = 6441, - [6442] = 6442, - [6443] = 6443, + [6442] = 6381, + [6443] = 6376, [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, + [6445] = 6445, + [6446] = 6380, + [6447] = 6378, + [6448] = 6384, + [6449] = 6381, + [6450] = 6404, + [6451] = 6380, + [6452] = 6452, + [6453] = 6387, + [6454] = 6454, + [6455] = 6376, + [6456] = 6381, + [6457] = 6380, + [6458] = 6378, + [6459] = 6391, + [6460] = 6460, + [6461] = 6377, + [6462] = 6377, + [6463] = 6381, + [6464] = 6427, + [6465] = 6465, + [6466] = 6444, + [6467] = 6384, + [6468] = 6377, + [6469] = 6460, + [6470] = 6381, + [6471] = 6465, + [6472] = 6387, + [6473] = 6387, + [6474] = 6377, [6475] = 6475, - [6476] = 6457, - [6477] = 6361, + [6476] = 6376, + [6477] = 6381, [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, + [6479] = 6379, + [6480] = 6393, + [6481] = 6481, + [6482] = 6376, + [6483] = 6380, + [6484] = 6381, + [6485] = 6378, + [6486] = 6384, + [6487] = 6478, + [6488] = 6379, + [6489] = 6475, + [6490] = 6481, + [6491] = 6381, + [6492] = 6387, + [6493] = 6376, + [6494] = 6380, + [6495] = 6393, + [6496] = 6376, + [6497] = 6377, + [6498] = 6381, + [6499] = 6377, + [6500] = 6378, + [6501] = 6384, + [6502] = 6412, + [6503] = 6387, + [6504] = 6376, + [6505] = 6381, + [6506] = 6380, + [6507] = 6387, + [6508] = 6508, + [6509] = 6380, + [6510] = 6378, + [6511] = 6384, + [6512] = 6381, + [6513] = 6384, + [6514] = 6377, + [6515] = 6387, + [6516] = 6376, + [6517] = 6380, [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, - [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, - [6567] = 6567, - [6568] = 6450, - [6569] = 473, - [6570] = 480, - [6571] = 6571, - [6572] = 6450, - [6573] = 6462, - [6574] = 469, - [6575] = 6575, - [6576] = 481, - [6577] = 471, - [6578] = 6578, - [6579] = 6579, - [6580] = 6580, - [6581] = 6450, - [6582] = 6450, - [6583] = 6462, - [6584] = 6584, - [6585] = 6585, - [6586] = 6450, - [6587] = 6457, - [6588] = 6457, - [6589] = 6589, - [6590] = 6590, - [6591] = 482, - [6592] = 6462, - [6593] = 483, - [6594] = 484, - [6595] = 6457, - [6596] = 6450, - [6597] = 6450, - [6598] = 6450, + [6519] = 6381, + [6520] = 6380, + [6521] = 6414, + [6522] = 6377, + [6523] = 6380, + [6524] = 6524, + [6525] = 6525, + [6526] = 6381, + [6527] = 6377, + [6528] = 6508, + [6529] = 6529, + [6530] = 6380, + [6531] = 6378, + [6532] = 6384, + [6533] = 6381, + [6534] = 6378, + [6535] = 6384, + [6536] = 6536, + [6537] = 6433, + [6538] = 6538, + [6539] = 6539, + [6540] = 6381, + [6541] = 6387, + [6542] = 6376, + [6543] = 6380, + [6544] = 6544, + [6545] = 6377, + [6546] = 6378, + [6547] = 6381, + [6548] = 6378, + [6549] = 6384, + [6550] = 6377, + [6551] = 6387, + [6552] = 6376, + [6553] = 6380, + [6554] = 6381, + [6555] = 6384, + [6556] = 6387, + [6557] = 6387, + [6558] = 6475, + [6559] = 6376, + [6560] = 6380, + [6561] = 6381, + [6562] = 6562, + [6563] = 6378, + [6564] = 6384, + [6565] = 6400, + [6566] = 6378, + [6567] = 6384, + [6568] = 6381, + [6569] = 6481, + [6570] = 6381, + [6571] = 6387, + [6572] = 6444, + [6573] = 6376, + [6574] = 6475, + [6575] = 6381, + [6576] = 6401, + [6577] = 6376, + [6578] = 6377, + [6579] = 6380, + [6580] = 6433, + [6581] = 6436, + [6582] = 6381, + [6583] = 6377, + [6584] = 6402, + [6585] = 6377, + [6586] = 6481, + [6587] = 6377, + [6588] = 6378, + [6589] = 6381, + [6590] = 6384, + [6591] = 6460, + [6592] = 6436, + [6593] = 6465, + [6594] = 6594, + [6595] = 6387, + [6596] = 6381, + [6597] = 6376, + [6598] = 6412, [6599] = 6599, - [6600] = 6450, - [6601] = 6450, - [6602] = 6602, - [6603] = 6450, - [6604] = 6462, - [6605] = 6605, - [6606] = 6450, - [6607] = 6457, - [6608] = 6457, - [6609] = 6609, - [6610] = 2520, - [6611] = 6611, - [6612] = 6450, - [6613] = 6450, - [6614] = 6614, - [6615] = 6615, - [6616] = 6450, - [6617] = 6617, - [6618] = 6462, + [6600] = 6378, + [6601] = 6601, + [6602] = 6384, + [6603] = 6381, + [6604] = 6378, + [6605] = 6378, + [6606] = 6384, + [6607] = 6384, + [6608] = 6387, + [6609] = 6376, + [6610] = 6381, + [6611] = 6414, + [6612] = 6612, + [6613] = 6387, + [6614] = 6376, + [6615] = 6380, + [6616] = 6616, + [6617] = 6381, + [6618] = 6387, [6619] = 6619, - [6620] = 6620, - [6621] = 6621, + [6620] = 6378, + [6621] = 6384, [6622] = 6622, - [6623] = 2565, - [6624] = 6457, - [6625] = 6450, - [6626] = 6450, - [6627] = 6450, - [6628] = 6439, - [6629] = 6629, - [6630] = 6630, - [6631] = 2588, - [6632] = 6630, - [6633] = 6633, - [6634] = 6633, - [6635] = 4536, - [6636] = 6633, - [6637] = 6633, - [6638] = 6638, - [6639] = 6639, - [6640] = 6640, - [6641] = 6633, - [6642] = 485, - [6643] = 2596, - [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, - [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, - [6705] = 6705, - [6706] = 6706, + [6623] = 6387, + [6624] = 6381, + [6625] = 6376, + [6626] = 6377, + [6627] = 6387, + [6628] = 6418, + [6629] = 6376, + [6630] = 6380, + [6631] = 6381, + [6632] = 6424, + [6633] = 6378, + [6634] = 6377, + [6635] = 6384, + [6636] = 6376, + [6637] = 6387, + [6638] = 6381, + [6639] = 6376, + [6640] = 6378, + [6641] = 6384, + [6642] = 6508, + [6643] = 6643, + [6644] = 6378, + [6645] = 6381, + [6646] = 6378, + [6647] = 6381, + [6648] = 6384, + [6649] = 6378, + [6650] = 6536, + [6651] = 6378, + [6652] = 6381, + [6653] = 6384, + [6654] = 6393, + [6655] = 6655, + [6656] = 6387, + [6657] = 6376, + [6658] = 6384, + [6659] = 6381, + [6660] = 6378, + [6661] = 6384, + [6662] = 6378, + [6663] = 6387, + [6664] = 6376, + [6665] = 6380, + [6666] = 6381, + [6667] = 6401, + [6668] = 6387, + [6669] = 6669, + [6670] = 6376, + [6671] = 6378, + [6672] = 6384, + [6673] = 6381, + [6674] = 6387, + [6675] = 6376, + [6676] = 6380, + [6677] = 6387, + [6678] = 6376, + [6679] = 6376, + [6680] = 6381, + [6681] = 6378, + [6682] = 6380, + [6683] = 6377, + [6684] = 6384, + [6685] = 6387, + [6686] = 6377, + [6687] = 6381, + [6688] = 6433, + [6689] = 6436, + [6690] = 6377, + [6691] = 6378, + [6692] = 6384, + [6693] = 6376, + [6694] = 6381, + [6695] = 6387, + [6696] = 6460, + [6697] = 6465, + [6698] = 6376, + [6699] = 6380, + [6700] = 6380, + [6701] = 6381, + [6702] = 6402, + [6703] = 6384, + [6704] = 6377, + [6705] = 6378, + [6706] = 6384, [6707] = 6707, - [6708] = 6708, - [6709] = 6706, - [6710] = 6710, - [6711] = 6711, - [6712] = 6712, - [6713] = 6713, - [6714] = 6705, - [6715] = 6715, - [6716] = 6716, - [6717] = 6716, - [6718] = 6718, - [6719] = 6710, + [6708] = 6387, + [6709] = 6376, + [6710] = 6387, + [6711] = 6376, + [6712] = 6380, + [6713] = 6378, + [6714] = 6384, + [6715] = 6378, + [6716] = 6384, + [6717] = 6387, + [6718] = 6387, + [6719] = 6376, [6720] = 6720, - [6721] = 6711, - [6722] = 6716, - [6723] = 6718, - [6724] = 6724, - [6725] = 6705, - [6726] = 6711, - [6727] = 6706, - [6728] = 6710, - [6729] = 6729, - [6730] = 6718, - [6731] = 6706, - [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, + [6721] = 6387, + [6722] = 6376, + [6723] = 6380, + [6724] = 6376, + [6725] = 6378, + [6726] = 6384, + [6727] = 6380, + [6728] = 6387, + [6729] = 6445, + [6730] = 6384, + [6731] = 6731, + [6732] = 6377, + [6733] = 6384, + [6734] = 6508, + [6735] = 6735, + [6736] = 6736, + [6737] = 6380, + [6738] = 6738, + [6739] = 6739, + [6740] = 6378, + [6741] = 6384, + [6742] = 6536, + [6743] = 6387, + [6744] = 6377, + [6745] = 6387, + [6746] = 6376, + [6747] = 6747, + [6748] = 6378, + [6749] = 6508, + [6750] = 6454, + [6751] = 6384, + [6752] = 6378, + [6753] = 6753, + [6754] = 6736, + [6755] = 6387, [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, - [6776] = 6776, - [6777] = 6777, - [6778] = 6732, - [6779] = 6779, - [6780] = 6710, - [6781] = 6716, - [6782] = 6718, - [6783] = 6732, + [6757] = 6757, + [6758] = 6758, + [6759] = 6376, + [6760] = 6380, + [6761] = 6384, + [6762] = 6762, + [6763] = 6643, + [6764] = 6378, + [6765] = 6765, + [6766] = 6384, + [6767] = 6378, + [6768] = 6387, + [6769] = 6377, + [6770] = 6376, + [6771] = 6384, + [6772] = 6384, + [6773] = 6773, + [6774] = 6387, + [6775] = 6377, + [6776] = 6441, + [6777] = 6376, + [6778] = 6384, + [6779] = 6378, + [6780] = 6441, + [6781] = 6384, + [6782] = 6782, + [6783] = 6387, [6784] = 6784, - [6785] = 6785, - [6786] = 6718, - [6787] = 6710, - [6788] = 6716, - [6789] = 6789, + [6785] = 6376, + [6786] = 6378, + [6787] = 6387, + [6788] = 6376, + [6789] = 6465, [6790] = 6790, - [6791] = 6711, - [6792] = 6792, - [6793] = 6705, - [6794] = 6710, - [6795] = 6706, - [6796] = 6718, - [6797] = 6716, - [6798] = 6732, + [6791] = 6753, + [6792] = 6381, + [6793] = 6793, + [6794] = 6380, + [6795] = 6387, + [6796] = 6387, + [6797] = 6508, + [6798] = 6377, [6799] = 6799, - [6800] = 6732, - [6801] = 6710, - [6802] = 6716, - [6803] = 6803, - [6804] = 6716, - [6805] = 6805, - [6806] = 6718, - [6807] = 6763, - [6808] = 6710, - [6809] = 6711, - [6810] = 6716, - [6811] = 6811, - [6812] = 6812, + [6800] = 6800, + [6801] = 6376, + [6802] = 6802, + [6803] = 6536, + [6804] = 6376, + [6805] = 6380, + [6806] = 6806, + [6807] = 6401, + [6808] = 6402, + [6809] = 6809, + [6810] = 6377, + [6811] = 6378, + [6812] = 6384, [6813] = 6813, - [6814] = 6814, - [6815] = 6710, - [6816] = 6718, - [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, + [6814] = 6387, + [6815] = 6376, + [6816] = 6380, + [6817] = 6377, + [6818] = 6380, + [6819] = 6378, + [6820] = 6820, + [6821] = 6387, + [6822] = 6757, + [6823] = 6400, + [6824] = 6377, + [6825] = 6381, + [6826] = 6384, + [6827] = 6827, + [6828] = 6377, + [6829] = 6820, [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, - [6856] = 6856, - [6857] = 6710, - [6858] = 6732, - [6859] = 6859, - [6860] = 6710, - [6861] = 6712, - [6862] = 6862, - [6863] = 6716, - [6864] = 6710, - [6865] = 6716, - [6866] = 6718, - [6867] = 6718, - [6868] = 6716, - [6869] = 6718, - [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, - [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, - [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, - [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, - [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, - [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, - [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, - [7102] = 7102, - [7103] = 6767, - [7104] = 7104, - [7105] = 7105, - [7106] = 6732, - [7107] = 6716, - [7108] = 6718, - [7109] = 6711, - [7110] = 6711, - [7111] = 6705, - [7112] = 6817, - [7113] = 6705, - [7114] = 6706, - [7115] = 6888, - [7116] = 6895, - [7117] = 7117, - [7118] = 6716, - [7119] = 6718, - [7120] = 6716, - [7121] = 6711, - [7122] = 6705, - [7123] = 6706, - [7124] = 6716, - [7125] = 6718, - [7126] = 6732, - [7127] = 6711, - [7128] = 6705, - [7129] = 7129, + [6831] = 6387, + [6832] = 6377, + [6833] = 6380, + [6834] = 6412, + [6835] = 6835, + [6836] = 6418, + [6837] = 6377, + [6838] = 6838, + [6839] = 6414, + [6840] = 6840, + [6841] = 6377, + [6842] = 6842, + [6843] = 6508, + [6844] = 6401, + [6845] = 6418, + [6846] = 6402, + [6847] = 6536, + [6848] = 6424, + [6849] = 6378, + [6850] = 6378, + [6851] = 6384, + [6852] = 6376, + [6853] = 6387, + [6854] = 6376, + [6855] = 6380, + [6856] = 6380, + [6857] = 6857, + [6858] = 6858, + [6859] = 6445, + [6860] = 6412, + [6861] = 6391, + [6862] = 6377, + [6863] = 6414, + [6864] = 6384, + [6865] = 6865, + [6866] = 6418, + [6867] = 6867, + [6868] = 6827, + [6869] = 6869, + [6870] = 6424, + [6871] = 6378, + [6872] = 6872, + [6873] = 6378, + [6874] = 6377, + [6875] = 6757, + [6876] = 6876, + [6877] = 6384, + [6878] = 6878, + [6879] = 6387, + [6880] = 6378, + [6881] = 6384, + [6882] = 6376, + [6883] = 6883, + [6884] = 6380, + [6885] = 6387, + [6886] = 6376, + [6887] = 6753, + [6888] = 6387, + [6889] = 6889, + [6890] = 6384, + [6891] = 6400, + [6892] = 6377, + [6893] = 6404, + [6894] = 6380, + [6895] = 6404, + [6896] = 6381, + [6897] = 6376, + [6898] = 6433, + [6899] = 6378, + [6900] = 6460, + [6901] = 6465, + [6902] = 6454, + [6903] = 6436, + [6904] = 6378, + [6905] = 6753, + [6906] = 6736, + [6907] = 6445, + [6908] = 6377, + [6909] = 6757, + [6910] = 6758, + [6911] = 6384, + [6912] = 6377, + [6913] = 6376, + [6914] = 6643, + [6915] = 6378, + [6916] = 6384, + [6917] = 6917, + [6918] = 6387, + [6919] = 6376, + [6920] = 6380, + [6921] = 6384, + [6922] = 6922, + [6923] = 6923, + [6924] = 6924, + [6925] = 6387, + [6926] = 6381, + [6927] = 6377, + [6928] = 6378, + [6929] = 6378, + [6930] = 6384, + [6931] = 6433, + [6932] = 6376, + [6933] = 6378, + [6934] = 6387, + [6935] = 6384, + [6936] = 6376, + [6937] = 6380, + [6938] = 6380, + [6939] = 6387, + [6940] = 6376, + [6941] = 6380, + [6942] = 6378, + [6943] = 6424, + [6944] = 6384, + [6945] = 6378, + [6946] = 6508, + [6947] = 6377, + [6948] = 6377, + [6949] = 6436, + [6950] = 6387, + [6951] = 6427, + [6952] = 6377, + [6953] = 6753, + [6954] = 6376, + [6955] = 6377, + [6956] = 6380, + [6957] = 6377, + [6958] = 6384, + [6959] = 6378, + [6960] = 6387, + [6961] = 6378, + [6962] = 6381, + [6963] = 6387, + [6964] = 6387, + [6965] = 6384, + [6966] = 6378, + [6967] = 6384, + [6968] = 6508, + [6969] = 6536, + [6970] = 6753, + [6971] = 6536, + [6972] = 6376, + [6973] = 6380, + [6974] = 6384, + [6975] = 6378, + [6976] = 6384, + [6977] = 6376, + [6978] = 6387, + [6979] = 6387, + [6980] = 6376, + [6981] = 6380, + [6982] = 6380, + [6983] = 6381, + [6984] = 6376, + [6985] = 6376, + [6986] = 6380, + [6987] = 6378, + [6988] = 6478, + [6989] = 6989, + [6990] = 6377, + [6991] = 6378, + [6992] = 6377, + [6993] = 6384, + [6994] = 6377, + [6995] = 6995, + [6996] = 6378, + [6997] = 6384, + [6998] = 6378, + [6999] = 6384, + [7000] = 6387, + [7001] = 6387, + [7002] = 7002, + [7003] = 6381, + [7004] = 6460, + [7005] = 6400, + [7006] = 6830, + [7007] = 6757, + [7008] = 6757, + [7009] = 6478, + [7010] = 6536, + [7011] = 6454, + [7012] = 6400, + [7013] = 6381, + [7014] = 6753, + [7015] = 6736, + [7016] = 6387, + [7017] = 6827, + [7018] = 6757, + [7019] = 6758, + [7020] = 6376, + [7021] = 6387, + [7022] = 6820, + [7023] = 6643, + [7024] = 6830, + [7025] = 6380, + [7026] = 6376, + [7027] = 6378, + [7028] = 6384, + [7029] = 7029, + [7030] = 6387, + [7031] = 6376, + [7032] = 6380, + [7033] = 6444, + [7034] = 6376, + [7035] = 6441, + [7036] = 6380, + [7037] = 6377, + [7038] = 6400, + [7039] = 6378, + [7040] = 7040, + [7041] = 6753, + [7042] = 6736, + [7043] = 6757, + [7044] = 6758, + [7045] = 6758, + [7046] = 6381, + [7047] = 6643, + [7048] = 6384, + [7049] = 6376, + [7050] = 6387, + [7051] = 7051, + [7052] = 7052, + [7053] = 7053, + [7054] = 6401, + [7055] = 6402, + [7056] = 6376, + [7057] = 6380, + [7058] = 6827, + [7059] = 6378, + [7060] = 6384, + [7061] = 6381, + [7062] = 6387, + [7063] = 6376, + [7064] = 6380, + [7065] = 6736, + [7066] = 6758, + [7067] = 6643, + [7068] = 6736, + [7069] = 6736, + [7070] = 6736, + [7071] = 6736, + [7072] = 6736, + [7073] = 6736, + [7074] = 6736, + [7075] = 6736, + [7076] = 6736, + [7077] = 6736, + [7078] = 6736, + [7079] = 6736, + [7080] = 6736, + [7081] = 6736, + [7082] = 6736, + [7083] = 6736, + [7084] = 6736, + [7085] = 6736, + [7086] = 6736, + [7087] = 6736, + [7088] = 6736, + [7089] = 6736, + [7090] = 6736, + [7091] = 6736, + [7092] = 6736, + [7093] = 6736, + [7094] = 6736, + [7095] = 6736, + [7096] = 6736, + [7097] = 6736, + [7098] = 6736, + [7099] = 6736, + [7100] = 6736, + [7101] = 6736, + [7102] = 6736, + [7103] = 6736, + [7104] = 6736, + [7105] = 6736, + [7106] = 6736, + [7107] = 6736, + [7108] = 6736, + [7109] = 6736, + [7110] = 6736, + [7111] = 6736, + [7112] = 6736, + [7113] = 6736, + [7114] = 6736, + [7115] = 6736, + [7116] = 6736, + [7117] = 6736, + [7118] = 6736, + [7119] = 6784, + [7120] = 6412, + [7121] = 6414, + [7122] = 6377, + [7123] = 6820, + [7124] = 6380, + [7125] = 6377, + [7126] = 6418, + [7127] = 6380, + [7128] = 6784, + [7129] = 6830, [7130] = 7130, - [7131] = 6732, - [7132] = 7132, - [7133] = 6729, - [7134] = 7134, - [7135] = 6716, - [7136] = 6759, - [7137] = 7137, - [7138] = 6718, - [7139] = 6732, - [7140] = 6779, - [7141] = 7141, - [7142] = 6711, - [7143] = 7143, - [7144] = 6856, - [7145] = 7145, - [7146] = 6960, - [7147] = 6705, - [7148] = 6716, - [7149] = 6718, - [7150] = 6928, - [7151] = 6716, - [7152] = 6711, - [7153] = 6776, - [7154] = 6777, - [7155] = 6732, - [7156] = 6705, - [7157] = 6706, - [7158] = 7158, - [7159] = 6785, - [7160] = 6965, - [7161] = 6716, - [7162] = 6789, - [7163] = 7163, - [7164] = 6732, - [7165] = 6792, - [7166] = 7166, - [7167] = 6718, - [7168] = 6716, - [7169] = 6718, - [7170] = 6718, - [7171] = 6711, - [7172] = 7172, - [7173] = 6803, - [7174] = 6705, - [7175] = 6805, - [7176] = 6716, - [7177] = 6763, - [7178] = 6718, - [7179] = 7179, - [7180] = 6813, - [7181] = 6814, - [7182] = 7182, - [7183] = 6711, - [7184] = 6716, - [7185] = 6718, - [7186] = 6705, - [7187] = 6734, - [7188] = 6769, - [7189] = 6823, - [7190] = 6711, - [7191] = 6705, - [7192] = 6711, - [7193] = 6718, - [7194] = 6711, - [7195] = 6830, - [7196] = 6831, - [7197] = 6711, - [7198] = 6705, - [7199] = 6716, - [7200] = 6718, - [7201] = 6706, - [7202] = 6711, - [7203] = 6705, - [7204] = 6705, - [7205] = 6965, - [7206] = 6706, - [7207] = 6706, - [7208] = 6732, - [7209] = 6706, - [7210] = 6732, - [7211] = 6732, - [7212] = 7212, - [7213] = 6716, - [7214] = 7214, - [7215] = 6718, - [7216] = 7216, - [7217] = 6711, - [7218] = 6705, - [7219] = 7219, - [7220] = 6732, - [7221] = 7221, - [7222] = 6777, - [7223] = 6711, - [7224] = 7224, - [7225] = 6767, - [7226] = 6705, - [7227] = 6711, - [7228] = 6716, - [7229] = 6716, - [7230] = 6718, - [7231] = 6785, - [7232] = 6817, - [7233] = 6718, - [7234] = 6705, - [7235] = 6711, - [7236] = 6705, - [7237] = 6716, - [7238] = 6716, - [7239] = 6718, - [7240] = 6706, - [7241] = 6711, - [7242] = 6705, - [7243] = 6706, - [7244] = 6718, - [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, - [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, - [7419] = 7419, - [7420] = 6965, - [7421] = 6710, - [7422] = 7145, - [7423] = 7423, - [7424] = 6705, - [7425] = 7425, - [7426] = 7426, - [7427] = 7427, - [7428] = 6732, - [7429] = 6732, - [7430] = 6803, - [7431] = 6732, - [7432] = 6716, - [7433] = 6716, - [7434] = 7141, - [7435] = 7141, - [7436] = 7141, - [7437] = 7141, - [7438] = 7141, - [7439] = 7141, - [7440] = 7141, - [7441] = 7141, - [7442] = 7141, - [7443] = 7141, - [7444] = 7141, - [7445] = 7141, - [7446] = 7141, - [7447] = 7141, - [7448] = 7141, - [7449] = 7141, - [7450] = 7141, - [7451] = 7141, - [7452] = 7141, - [7453] = 7141, - [7454] = 7141, - [7455] = 7141, - [7456] = 7141, - [7457] = 7141, - [7458] = 7141, - [7459] = 7141, - [7460] = 7141, - [7461] = 7141, - [7462] = 7141, - [7463] = 7141, - [7464] = 7141, - [7465] = 7141, - [7466] = 7141, - [7467] = 7141, - [7468] = 7141, - [7469] = 7141, - [7470] = 7141, - [7471] = 7141, - [7472] = 7141, - [7473] = 7141, - [7474] = 7141, - [7475] = 7141, - [7476] = 7141, - [7477] = 7141, - [7478] = 7141, - [7479] = 7141, - [7480] = 7141, - [7481] = 7141, - [7482] = 7141, - [7483] = 7141, - [7484] = 7141, - [7485] = 7141, - [7486] = 7141, - [7487] = 7141, - [7488] = 7141, - [7489] = 7141, - [7490] = 7141, - [7491] = 7141, - [7492] = 7141, - [7493] = 7381, - [7494] = 6718, - [7495] = 6718, - [7496] = 6831, - [7497] = 6711, - [7498] = 6705, - [7499] = 6779, - [7500] = 6776, - [7501] = 6706, - [7502] = 7381, - [7503] = 6710, - [7504] = 6716, - [7505] = 6830, - [7506] = 6767, - [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, + [7131] = 6424, + [7132] = 6377, + [7133] = 7133, + [7134] = 6377, + [7135] = 6784, + [7136] = 6784, + [7137] = 6784, + [7138] = 6784, + [7139] = 6784, + [7140] = 6784, + [7141] = 6784, + [7142] = 6784, + [7143] = 6784, + [7144] = 6784, + [7145] = 6784, + [7146] = 6784, + [7147] = 6784, + [7148] = 6784, + [7149] = 6784, + [7150] = 6784, + [7151] = 6784, + [7152] = 6784, + [7153] = 6784, + [7154] = 6784, + [7155] = 6784, + [7156] = 6784, + [7157] = 6784, + [7158] = 6784, + [7159] = 6784, + [7160] = 6784, + [7161] = 6784, + [7162] = 6784, + [7163] = 6784, + [7164] = 6784, + [7165] = 6784, + [7166] = 6784, + [7167] = 6784, + [7168] = 6784, + [7169] = 6784, + [7170] = 6784, + [7171] = 6784, + [7172] = 6784, + [7173] = 6784, + [7174] = 6784, + [7175] = 6784, + [7176] = 6784, + [7177] = 6784, + [7178] = 6784, + [7179] = 6784, + [7180] = 6784, + [7181] = 6784, + [7182] = 6784, + [7183] = 6784, + [7184] = 6784, + [7185] = 6784, + [7186] = 6784, + [7187] = 6784, + [7188] = 6784, + [7189] = 6376, }; static const TSSymbol ts_supertype_symbols[SUPERTYPE_COUNT] = { @@ -10361,720 +9986,720 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(541); + if (eof) ADVANCE(535); 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, + '!', 807, + '"', 775, + '#', 812, + '$', 768, + '%', 635, + '&', 589, + '\'', 479, + '(', 642, + ')', 643, + '*', 811, + '+', 756, + ',', 545, + '-', 754, + '.', 931, + '/', 630, + ':', 749, + ';', 542, + '<', 595, + '=', 814, + '>', 604, + '?', 824, + '@', 809, + '[', 662, + '\\', 293, + ']', 663, + '^', 583, + '_', 928, + '`', 843, + 'e', 938, + 'i', 937, + '{', 654, + '|', 580, + '}', 765, + '~', 758, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(539); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(769); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(533); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(761); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 1: - if (lookahead == '\n') SKIP(397); + if (lookahead == '\n') SKIP(391); END_STATE(); case 2: - if (lookahead == '\n') SKIP(412); + if (lookahead == '\n') SKIP(407); END_STATE(); case 3: - if (lookahead == '\n') SKIP(413); + if (lookahead == '\n') SKIP(406); END_STATE(); case 4: - if (lookahead == '\n') SKIP(414); + if (lookahead == '\n') SKIP(408); 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', 676, + '!', 658, + '"', 775, + '#', 849, + '$', 768, + '%', 637, + '&', 589, + '\'', 479, + '(', 641, + ')', 643, + '*', 626, + '+', 757, + '-', 755, + '/', 632, + '0', 789, + ';', 543, + '<', 595, + '=', 548, + '>', 604, + '?', 747, + '\\', 299, + '^', 584, + '`', 843, + '|', 580, + '~', 758, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); 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(791); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 7: - if (lookahead == '\n') SKIP(399); + if (lookahead == '\n') SKIP(409); END_STATE(); case 8: - if (lookahead == '\n') SKIP(415); + if (lookahead == '\n') SKIP(393); END_STATE(); case 9: - if (lookahead == '\n') SKIP(416); + if (lookahead == '\n') SKIP(410); END_STATE(); case 10: - if (lookahead == '\n') SKIP(400); + if (lookahead == '\n') SKIP(394); END_STATE(); case 11: - if (lookahead == '\n') SKIP(401); + if (lookahead == '\n') SKIP(395); 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', 677, + '!', 658, + '"', 775, + '#', 803, + '$', 768, + '%', 637, + '&', 589, + '\'', 479, + '(', 641, + ')', 643, + '*', 626, + '+', 618, + '-', 621, + '/', 632, + '0', 793, + ';', 543, + '<', 595, + '=', 548, + '>', 604, + '?', 747, + '@', 927, '\\', 14, - '^', 590, - '_', 938, - '`', 850, - '|', 586, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '^', 584, + '_', 929, + '`', 842, + '|', 580, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); 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(794); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(860); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 13: - if (lookahead == '\n') ADVANCE(875); + if (lookahead == '\n') ADVANCE(867); END_STATE(); case 14: - if (lookahead == '\n') ADVANCE(875); + if (lookahead == '\n') ADVANCE(867); if (lookahead == '\r') ADVANCE(13); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(12); - if (lookahead != 0) ADVANCE(949); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 15: - if (lookahead == '\n') ADVANCE(934); + if (lookahead == '\n') ADVANCE(925); END_STATE(); case 16: - if (lookahead == '\n') ADVANCE(934); + if (lookahead == '\n') ADVANCE(925); if (lookahead == '\r') ADVANCE(15); END_STATE(); case 17: - if (lookahead == '\n') ADVANCE(934); + if (lookahead == '\n') ADVANCE(925); if (lookahead == '\r') ADVANCE(15); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(949); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(940); END_STATE(); case 18: - if (lookahead == '\n') ADVANCE(913); + if (lookahead == '\n') ADVANCE(904); END_STATE(); case 19: - if (lookahead == '\n') ADVANCE(913); + if (lookahead == '\n') ADVANCE(904); if (lookahead == '\r') ADVANCE(18); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(398); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(392); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 20: if (lookahead == '\n') SKIP(156); END_STATE(); case 21: - if (lookahead == '\n') SKIP(420); + if (lookahead == '\n') SKIP(414); END_STATE(); case 22: - if (lookahead == '\n') SKIP(417); + if (lookahead == '\n') SKIP(411); END_STATE(); case 23: - if (lookahead == '\n') SKIP(236); + if (lookahead == '\n') SKIP(233); END_STATE(); case 24: - if (lookahead == '\n') SKIP(239); + if (lookahead == '\n') SKIP(236); END_STATE(); case 25: - if (lookahead == '\n') SKIP(242); + if (lookahead == '\n') SKIP(239); END_STATE(); case 26: - if (lookahead == '\n') SKIP(245); + if (lookahead == '\n') SKIP(242); END_STATE(); case 27: - if (lookahead == '\n') ADVANCE(877); + if (lookahead == '\n') ADVANCE(869); END_STATE(); case 28: - if (lookahead == '\n') ADVANCE(877); + if (lookahead == '\n') ADVANCE(869); if (lookahead == '\r') ADVANCE(27); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(216); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(213); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 29: - if (lookahead == '\n') ADVANCE(879); + if (lookahead == '\n') SKIP(245); 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') ADVANCE(871); END_STATE(); case 31: - if (lookahead == '\n') ADVANCE(881); + if (lookahead == '\n') ADVANCE(871); + if (lookahead == '\r') ADVANCE(30); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(232); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 32: - if (lookahead == '\n') ADVANCE(881); - if (lookahead == '\r') ADVANCE(31); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(238); - if (lookahead != 0) ADVANCE(949); + if (lookahead == '\n') ADVANCE(873); END_STATE(); case 33: - if (lookahead == '\n') SKIP(248); + if (lookahead == '\n') ADVANCE(873); + if (lookahead == '\r') ADVANCE(32); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(235); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 34: - if (lookahead == '\n') SKIP(251); + if (lookahead == '\n') SKIP(248); END_STATE(); case 35: - if (lookahead == '\n') ADVANCE(883); + if (lookahead == '\n') ADVANCE(875); END_STATE(); case 36: - if (lookahead == '\n') ADVANCE(883); + if (lookahead == '\n') ADVANCE(875); if (lookahead == '\r') ADVANCE(35); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(241); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(238); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 37: - if (lookahead == '\n') SKIP(254); + if (lookahead == '\n') SKIP(251); END_STATE(); case 38: - if (lookahead == '\n') ADVANCE(887); + if (lookahead == '\n') ADVANCE(879); END_STATE(); case 39: - if (lookahead == '\n') ADVANCE(887); + if (lookahead == '\n') ADVANCE(879); if (lookahead == '\r') ADVANCE(38); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(247); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(244); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 40: - if (lookahead == '\n') ADVANCE(891); + if (lookahead == '\n') ADVANCE(881); END_STATE(); case 41: - if (lookahead == '\n') ADVANCE(891); + if (lookahead == '\n') ADVANCE(881); if (lookahead == '\r') ADVANCE(40); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(253); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(247); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 42: if (lookahead == '\n') SKIP(257); END_STATE(); case 43: - if (lookahead == '\n') SKIP(451); + if (lookahead == '\n') ADVANCE(885); END_STATE(); case 44: - if (lookahead == '\n') SKIP(260); + if (lookahead == '\n') ADVANCE(885); + if (lookahead == '\r') ADVANCE(43); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(253); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 45: - if (lookahead == '\n') SKIP(455); + if (lookahead == '\n') SKIP(445); END_STATE(); case 46: - if (lookahead == '\n') ADVANCE(893); + if (lookahead == '\n') SKIP(260); 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(449); END_STATE(); case 48: - if (lookahead == '\n') ADVANCE(895); + if (lookahead == '\n') ADVANCE(889); END_STATE(); case 49: - if (lookahead == '\n') ADVANCE(895); + if (lookahead == '\n') ADVANCE(889); if (lookahead == '\r') ADVANCE(48); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(259); - if (lookahead != 0) ADVANCE(949); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 50: if (lookahead == '\n') SKIP(269); END_STATE(); case 51: - if (lookahead == '\n') ADVANCE(901); + if (lookahead == '\n') ADVANCE(893); END_STATE(); case 52: - if (lookahead == '\n') ADVANCE(901); + if (lookahead == '\n') ADVANCE(893); if (lookahead == '\r') ADVANCE(51); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(268); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(265); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 53: - if (lookahead == '\n') ADVANCE(904); + if (lookahead == '\n') ADVANCE(895); END_STATE(); case 54: - if (lookahead == '\n') ADVANCE(904); + if (lookahead == '\n') ADVANCE(895); if (lookahead == '\r') ADVANCE(53); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(273); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(268); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 55: - if (lookahead == '\n') SKIP(464); + if (lookahead == '\n') SKIP(458); END_STATE(); case 56: - if (lookahead == '\n') ADVANCE(915); + if (lookahead == '\n') ADVANCE(898); END_STATE(); case 57: - if (lookahead == '\n') ADVANCE(915); + if (lookahead == '\n') ADVANCE(898); if (lookahead == '\r') ADVANCE(56); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(405); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(274); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 58: - if (lookahead == '\n') ADVANCE(907); + if (lookahead == '\n') ADVANCE(906); END_STATE(); case 59: - if (lookahead == '\n') ADVANCE(907); + if (lookahead == '\n') ADVANCE(906); if (lookahead == '\r') ADVANCE(58); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(279); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(399); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 60: - if (lookahead == '\n') SKIP(458); + if (lookahead == '\n') SKIP(455); END_STATE(); case 61: - if (lookahead == '\n') ADVANCE(916); + if (lookahead == '\n') ADVANCE(907); END_STATE(); case 62: - if (lookahead == '\n') ADVANCE(916); + if (lookahead == '\n') ADVANCE(907); if (lookahead == '\r') ADVANCE(61); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(406); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(400); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 63: - if (lookahead == '\n') SKIP(454); + if (lookahead == '\n') SKIP(448); END_STATE(); case 64: - if (lookahead == '\n') ADVANCE(917); + if (lookahead == '\n') ADVANCE(908); END_STATE(); case 65: - if (lookahead == '\n') ADVANCE(917); + if (lookahead == '\n') ADVANCE(908); if (lookahead == '\r') ADVANCE(64); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(407); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(401); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 66: - if (lookahead == '\n') SKIP(452); + if (lookahead == '\n') SKIP(446); END_STATE(); case 67: - if (lookahead == '\n') ADVANCE(908); + if (lookahead == '\n') ADVANCE(900); END_STATE(); case 68: - if (lookahead == '\n') ADVANCE(908); + if (lookahead == '\n') ADVANCE(900); if (lookahead == '\r') ADVANCE(67); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(281); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(278); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 69: - if (lookahead == '\n') ADVANCE(924); + if (lookahead == '\n') ADVANCE(915); END_STATE(); case 70: - if (lookahead == '\n') ADVANCE(924); + if (lookahead == '\n') ADVANCE(915); if (lookahead == '\r') ADVANCE(69); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(424); + lookahead == ' ') SKIP(418); END_STATE(); case 71: - if (lookahead == '\n') ADVANCE(923); + if (lookahead == '\n') SKIP(452); 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(913); END_STATE(); case 73: - if (lookahead == '\n') SKIP(460); + if (lookahead == '\n') ADVANCE(913); + if (lookahead == '\r') ADVANCE(72); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(416); END_STATE(); case 74: - if (lookahead == '\n') SKIP(428); + if (lookahead == '\n') ADVANCE(909); END_STATE(); case 75: - if (lookahead == '\n') ADVANCE(918); + if (lookahead == '\n') ADVANCE(909); + if (lookahead == '\r') ADVANCE(74); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(402); + if (lookahead != 0) ADVANCE(940); 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') SKIP(422); END_STATE(); case 77: - if (lookahead == '\n') ADVANCE(922); + if (lookahead == '\n') ADVANCE(914); END_STATE(); case 78: - if (lookahead == '\n') ADVANCE(922); + if (lookahead == '\n') ADVANCE(914); if (lookahead == '\r') ADVANCE(77); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(422); + lookahead == ' ') SKIP(417); END_STATE(); case 79: - if (lookahead == '\n') SKIP(418); + if (lookahead == '\n') ADVANCE(917); END_STATE(); case 80: - if (lookahead == '\n') SKIP(429); + if (lookahead == '\n') ADVANCE(917); + if (lookahead == '\r') ADVANCE(79); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(420); END_STATE(); case 81: - if (lookahead == '\n') ADVANCE(926); + if (lookahead == '\n') SKIP(423); 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') SKIP(412); END_STATE(); case 83: - if (lookahead == '\n') SKIP(419); + if (lookahead == '\n') SKIP(413); END_STATE(); case 84: - if (lookahead == '\n') SKIP(431); + if (lookahead == '\n') SKIP(425); END_STATE(); case 85: - if (lookahead == '\n') SKIP(437); + if (lookahead == '\n') SKIP(431); END_STATE(); case 86: - if (lookahead == '\n') ADVANCE(914); + if (lookahead == '\n') SKIP(426); 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') ADVANCE(905); END_STATE(); case 88: - if (lookahead == '\n') SKIP(432); + if (lookahead == '\n') ADVANCE(905); + if (lookahead == '\r') ADVANCE(87); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(398); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 89: - if (lookahead == '\n') SKIP(294); + if (lookahead == '\n') SKIP(290); END_STATE(); case 90: - if (lookahead == '\n') SKIP(434); + if (lookahead == '\n') SKIP(428); END_STATE(); case 91: if (lookahead == '\n') SKIP(92); END_STATE(); case 92: ADVANCE_MAP( - '\n', 684, - '!', 500, - '#', 857, - '%', 644, - '&', 594, - '*', 633, - '+', 625, - ',', 550, - '-', 629, - '/', 639, - ';', 547, - '<', 609, - '=', 555, - '>', 614, + '\n', 678, + '!', 494, + '#', 849, + '%', 638, + '&', 588, + '*', 627, + '+', 619, + ',', 544, + '-', 623, + '/', 633, + ';', 541, + '<', 603, + '=', 549, + '>', 608, ); - if (lookahead == '\\') SKIP(361); - if (lookahead == '^') ADVANCE(591); - if (lookahead == '|') ADVANCE(588); + if (lookahead == '\\') SKIP(356); + if (lookahead == '^') ADVANCE(585); + if (lookahead == '|') ADVANCE(582); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(92); END_STATE(); case 93: ADVANCE_MAP( - '\n', 684, - '"', 783, - '#', 857, - '$', 780, - '&', 593, - '(', 647, - '+', 494, - ',', 550, - '-', 496, - '0', 804, - ';', 547, + '\n', 678, + '"', 775, + '#', 849, + '$', 772, + '&', 587, + '(', 641, + '+', 488, + ',', 544, + '-', 490, + '0', 796, + ';', 541, ); - if (lookahead == '\\') SKIP(375); - if (lookahead == '`') ADVANCE(850); + if (lookahead == '\\') SKIP(370); + if (lookahead == '`') ADVANCE(842); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(93); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(806); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(798); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(650); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(644); END_STATE(); case 94: ADVANCE_MAP( - '\n', 684, - '#', 857, - '$', 778, - '&', 483, - '(', 647, - '-', 498, - '0', 803, - ':', 756, - '<', 605, - '>', 612, + '\n', 678, + '#', 849, + '$', 770, + '&', 477, + '(', 641, + '-', 492, + '0', 795, + ':', 748, + '<', 599, + '>', 606, ); - if (lookahead == '\\') SKIP(385); - if (lookahead == '`') ADVANCE(850); - if (lookahead == '|') ADVANCE(510); - if (lookahead == '}') ADVANCE(813); + if (lookahead == '\\') SKIP(379); + if (lookahead == '`') ADVANCE(842); + if (lookahead == '|') ADVANCE(504); + if (lookahead == '}') ADVANCE(805); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(94); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(797); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(866); 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 == '\n') ADVANCE(678); + if (lookahead == '#') ADVANCE(849); + if (lookahead == '&') ADVANCE(590); + if (lookahead == ';') ADVANCE(542); + if (lookahead == '<') ADVANCE(600); + if (lookahead == '>') ADVANCE(606); + if (lookahead == '\\') SKIP(368); + if (lookahead == '`') ADVANCE(498); + if (lookahead == 'e') ADVANCE(502); + if (lookahead == '|') ADVANCE(581); if (('[' <= lookahead && lookahead <= ']') || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(781); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(773); 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 == '\n') ADVANCE(678); + if (lookahead == '#') ADVANCE(849); + if (lookahead == '&') ADVANCE(590); + if (lookahead == ';') ADVANCE(542); + if (lookahead == '<') ADVANCE(601); + if (lookahead == '>') ADVANCE(606); + if (lookahead == '\\') SKIP(369); + if (lookahead == '`') ADVANCE(498); + if (lookahead == 'e') ADVANCE(502); + if (lookahead == '|') ADVANCE(581); if (('[' <= lookahead && lookahead <= ']') || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(781); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(773); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(96); 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 == '\n') ADVANCE(678); + if (lookahead == '#') ADVANCE(849); + if (lookahead == '&') ADVANCE(477); + if (lookahead == '<') ADVANCE(599); + if (lookahead == '>') ADVANCE(606); + if (lookahead == '\\') SKIP(380); + if (lookahead == '`') ADVANCE(498); + if (lookahead == '|') ADVANCE(504); if (('[' <= lookahead && lookahead <= ']') || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(781); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(773); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(97); 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(678); + if (lookahead == '#') ADVANCE(849); + if (lookahead == '&') ADVANCE(587); + if (lookahead == ';') ADVANCE(543); + if (lookahead == '\\') SKIP(383); + if (lookahead == '`') ADVANCE(498); + if (lookahead == 'i') ADVANCE(501); if (('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(781); + lookahead == '}') ADVANCE(773); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(98); END_STATE(); case 99: - if (lookahead == '\n') ADVANCE(876); + if (lookahead == '\n') ADVANCE(868); END_STATE(); case 100: - if (lookahead == '\n') ADVANCE(876); + if (lookahead == '\n') ADVANCE(868); if (lookahead == '\r') ADVANCE(99); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(202); + lookahead == ' ') SKIP(199); END_STATE(); case 101: - if (lookahead == '\n') SKIP(436); + if (lookahead == '\n') SKIP(430); END_STATE(); case 102: - if (lookahead == '\n') SKIP(433); + if (lookahead == '\n') ADVANCE(872); END_STATE(); case 103: - if (lookahead == '\n') ADVANCE(880); + if (lookahead == '\n') ADVANCE(872); + if (lookahead == '\r') ADVANCE(102); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(234); END_STATE(); case 104: - if (lookahead == '\n') ADVANCE(880); - if (lookahead == '\r') ADVANCE(103); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(237); + if (lookahead == '\n') SKIP(427); END_STATE(); case 105: - if (lookahead == '\n') ADVANCE(882); + if (lookahead == '\n') SKIP(460); 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') ADVANCE(876); END_STATE(); case 107: - if (lookahead == '\n') SKIP(466); + if (lookahead == '\n') ADVANCE(876); + if (lookahead == '\r') ADVANCE(106); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(240); END_STATE(); case 108: - if (lookahead == '\n') ADVANCE(888); + if (lookahead == '\n') ADVANCE(878); END_STATE(); case 109: - if (lookahead == '\n') ADVANCE(888); + if (lookahead == '\n') ADVANCE(878); if (lookahead == '\r') ADVANCE(108); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(249); + lookahead == ' ') SKIP(243); END_STATE(); case 110: - if (lookahead == '\n') SKIP(296); + if (lookahead == '\n') SKIP(461); END_STATE(); case 111: - if (lookahead == '\n') SKIP(476); + if (lookahead == '\n') SKIP(291); END_STATE(); case 112: - if (lookahead == '\n') SKIP(467); + if (lookahead == '\n') SKIP(470); END_STATE(); case 113: - if (lookahead == '\n') SKIP(472); + if (lookahead == '\n') SKIP(466); END_STATE(); case 114: - if (lookahead == '\n') ADVANCE(911); + if (lookahead == '\n') ADVANCE(902); END_STATE(); case 115: - if (lookahead == '\n') ADVANCE(911); + if (lookahead == '\n') ADVANCE(902); if (lookahead == '\r') ADVANCE(114); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(287); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(282); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 116: - if (lookahead == '\n') SKIP(445); + if (lookahead == '\n') SKIP(439); END_STATE(); case 117: - if (lookahead == '\n') ADVANCE(927); + if (lookahead == '\n') ADVANCE(888); END_STATE(); case 118: - if (lookahead == '\n') ADVANCE(927); + if (lookahead == '\n') ADVANCE(888); if (lookahead == '\r') ADVANCE(117); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(438); + lookahead == ' ') SKIP(258); END_STATE(); case 119: - if (lookahead == '\n') ADVANCE(896); + if (lookahead == '\n') ADVANCE(918); END_STATE(); case 120: - if (lookahead == '\n') ADVANCE(896); + if (lookahead == '\n') ADVANCE(918); if (lookahead == '\r') ADVANCE(119); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(261); + lookahead == ' ') SKIP(432); END_STATE(); case 121: - if (lookahead == '\n') ADVANCE(928); + if (lookahead == '\n') ADVANCE(919); END_STATE(); case 122: - if (lookahead == '\n') ADVANCE(928); + if (lookahead == '\n') ADVANCE(919); if (lookahead == '\r') ADVANCE(121); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(439); + lookahead == ' ') SKIP(433); END_STATE(); case 123: - if (lookahead == '\n') ADVANCE(921); + if (lookahead == '\n') SKIP(467); 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(903); END_STATE(); case 125: - if (lookahead == '\n') SKIP(473); + if (lookahead == '\n') ADVANCE(903); + if (lookahead == '\r') ADVANCE(124); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(284); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 126: if (lookahead == '\n') ADVANCE(912); @@ -11083,8 +10708,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(912); if (lookahead == '\r') ADVANCE(126); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(289); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(405); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 128: if (lookahead == '\n') SKIP(95); @@ -11093,25 +10718,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') SKIP(93); END_STATE(); case 130: - if (lookahead == '\n') SKIP(468); + if (lookahead == '\n') SKIP(462); END_STATE(); case 131: - if (lookahead == '\n') SKIP(448); + if (lookahead == '\n') SKIP(442); END_STATE(); case 132: - if (lookahead == '\n') SKIP(480); + if (lookahead == '\n') SKIP(474); END_STATE(); case 133: - if (lookahead == '\n') SKIP(477); + if (lookahead == '\n') SKIP(463); END_STATE(); case 134: - if (lookahead == '\n') SKIP(478); + if (lookahead == '\n') SKIP(471); END_STATE(); case 135: - if (lookahead == '\n') SKIP(469); + if (lookahead == '\n') SKIP(472); END_STATE(); case 136: - if (lookahead == '\n') SKIP(481); + if (lookahead == '\n') SKIP(475); END_STATE(); case 137: if (lookahead == '\n') SKIP(94); @@ -11120,241 +10745,240 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') SKIP(97); END_STATE(); case 139: - if (lookahead == '\n') ADVANCE(902); + if (lookahead == '\n') ADVANCE(894); END_STATE(); case 140: - if (lookahead == '\n') ADVANCE(902); + if (lookahead == '\n') ADVANCE(894); if (lookahead == '\r') ADVANCE(139); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(270); + lookahead == ' ') SKIP(267); END_STATE(); case 141: - if (lookahead == '\n') ADVANCE(931); + if (lookahead == '\n') ADVANCE(922); END_STATE(); case 142: - if (lookahead == '\n') ADVANCE(931); + if (lookahead == '\n') ADVANCE(922); if (lookahead == '\r') ADVANCE(141); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(442); + lookahead == ' ') SKIP(436); END_STATE(); case 143: - if (lookahead == '\n') SKIP(449); + if (lookahead == '\n') SKIP(443); END_STATE(); case 144: - if (lookahead == '\n') ADVANCE(788); - if (lookahead == '\r') ADVANCE(785); + if (lookahead == '\n') ADVANCE(780); + if (lookahead == '\r') ADVANCE(777); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(788); - if (lookahead != 0) ADVANCE(792); + lookahead == ' ') ADVANCE(780); + if (lookahead != 0) ADVANCE(784); END_STATE(); case 145: - if (lookahead == '\n') ADVANCE(932); + if (lookahead == '\n') ADVANCE(923); END_STATE(); case 146: - if (lookahead == '\n') ADVANCE(932); + if (lookahead == '\n') ADVANCE(923); if (lookahead == '\r') ADVANCE(145); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(444); + lookahead == ' ') SKIP(438); END_STATE(); case 147: - if (lookahead == '\n') ADVANCE(789); - if (lookahead == '\r') ADVANCE(786); + if (lookahead == '\n') ADVANCE(781); + if (lookahead == '\r') ADVANCE(778); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(789); - if (lookahead != 0) ADVANCE(792); + lookahead == ' ') ADVANCE(781); + if (lookahead != 0) ADVANCE(784); END_STATE(); case 148: - if (lookahead == '\n') SKIP(479); + if (lookahead == '\n') SKIP(473); END_STATE(); case 149: - if (lookahead == '\n') ADVANCE(933); + if (lookahead == '\n') ADVANCE(924); END_STATE(); case 150: - if (lookahead == '\n') ADVANCE(933); + if (lookahead == '\n') ADVANCE(924); if (lookahead == '\r') ADVANCE(149); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(447); + lookahead == ' ') SKIP(441); END_STATE(); case 151: if (lookahead == '\n') SKIP(98); END_STATE(); case 152: - if (lookahead == '\n') SKIP(470); + if (lookahead == '\n') SKIP(464); END_STATE(); case 153: - if (lookahead == '\n') SKIP(471); + if (lookahead == '\n') SKIP(465); END_STATE(); case 154: - if (lookahead == '\n') SKIP(482); + if (lookahead == '\n') SKIP(476); END_STATE(); case 155: - if (lookahead == '\n') SKIP(402); + if (lookahead == '\n') SKIP(396); 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, + '\n', 679, + '!', 933, + '"', 775, + '#', 849, + '$', 768, + '%', 637, + '&', 589, + '\'', 479, + '(', 641, + ')', 643, + '*', 626, + '+', 618, + '-', 621, + '/', 632, + '0', 789, + ';', 543, + '<', 595, + '=', 548, + '>', 604, + '?', 747, + '\\', 307, + '^', 584, + '`', 843, + '|', 580, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(156); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); - if (lookahead != 0) ADVANCE(949); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(791); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 157: - if (lookahead == '\n') SKIP(233); + if (lookahead == '\n') SKIP(230); END_STATE(); case 158: - if (lookahead == '\n') SKIP(421); + if (lookahead == '\n') SKIP(415); END_STATE(); case 159: - if (lookahead == '\n') SKIP(274); + if (lookahead == '\n') SKIP(271); END_STATE(); case 160: - if (lookahead == '\n') SKIP(276); + if (lookahead == '\n') SKIP(273); END_STATE(); case 161: - if (lookahead == '\n') SKIP(278); + if (lookahead == '\n') SKIP(275); END_STATE(); case 162: - if (lookahead == '\n') SKIP(282); + if (lookahead == '\n') SKIP(279); END_STATE(); case 163: - if (lookahead == '\n') ADVANCE(885); + if (lookahead == '\n') SKIP(283); 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') ADVANCE(877); END_STATE(); case 165: - if (lookahead == '\n') SKIP(286); + if (lookahead == '\n') ADVANCE(877); + if (lookahead == '\r') ADVANCE(164); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(241); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 166: - if (lookahead == '\n') SKIP(291); + if (lookahead == '\n') SKIP(286); END_STATE(); case 167: - if (lookahead == '\n') ADVANCE(889); + if (lookahead == '\n') ADVANCE(883); END_STATE(); case 168: - if (lookahead == '\n') ADVANCE(889); + if (lookahead == '\n') ADVANCE(883); if (lookahead == '\r') ADVANCE(167); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(250); - if (lookahead != 0) ADVANCE(949); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 169: - if (lookahead == '\n') SKIP(280); + if (lookahead == '\n') SKIP(277); END_STATE(); case 170: - if (lookahead == '\n') SKIP(284); + if (lookahead == '\n') SKIP(281); END_STATE(); case 171: - if (lookahead == '\n') SKIP(290); + if (lookahead == '\n') SKIP(285); END_STATE(); case 172: - if (lookahead == '\n') SKIP(456); + if (lookahead == '\n') SKIP(450); END_STATE(); case 173: - if (lookahead == '\n') ADVANCE(899); + if (lookahead == '\n') ADVANCE(891); END_STATE(); case 174: - if (lookahead == '\n') ADVANCE(899); + if (lookahead == '\n') ADVANCE(891); if (lookahead == '\r') ADVANCE(173); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(265); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(262); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 175: - if (lookahead == '\n') SKIP(295); + if (lookahead == '\n') SKIP(459); END_STATE(); case 176: - if (lookahead == '\n') SKIP(465); + if (lookahead == '\n') SKIP(453); END_STATE(); case 177: - if (lookahead == '\n') SKIP(459); + if (lookahead == '\n') SKIP(451); END_STATE(); case 178: - if (lookahead == '\n') SKIP(457); + if (lookahead == '\n') ADVANCE(916); END_STATE(); case 179: - if (lookahead == '\n') ADVANCE(910); + if (lookahead == '\n') ADVANCE(916); + if (lookahead == '\r') ADVANCE(178); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(419); END_STATE(); case 180: - if (lookahead == '\n') ADVANCE(910); - if (lookahead == '\r') ADVANCE(179); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(285); - if (lookahead != 0) ADVANCE(949); + if (lookahead == '\n') SKIP(457); END_STATE(); case 181: - if (lookahead == '\n') ADVANCE(925); + if (lookahead == '\n') ADVANCE(870); END_STATE(); case 182: - if (lookahead == '\n') ADVANCE(925); + if (lookahead == '\n') ADVANCE(870); if (lookahead == '\r') ADVANCE(181); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(425); + lookahead == ' ') SKIP(231); END_STATE(); case 183: - if (lookahead == '\n') SKIP(462); + if (lookahead == '\n') SKIP(424); END_STATE(); case 184: - if (lookahead == '\n') ADVANCE(878); + if (lookahead == '\n') ADVANCE(874); END_STATE(); case 185: - if (lookahead == '\n') ADVANCE(878); + if (lookahead == '\n') ADVANCE(874); if (lookahead == '\r') ADVANCE(184); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(234); + lookahead == ' ') SKIP(237); END_STATE(); case 186: - if (lookahead == '\n') SKIP(430); + if (lookahead == '\n') ADVANCE(882); END_STATE(); case 187: - if (lookahead == '\n') ADVANCE(884); + if (lookahead == '\n') ADVANCE(882); + if (lookahead == '\r') ADVANCE(186); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(249); END_STATE(); case 188: if (lookahead == '\n') ADVANCE(884); - if (lookahead == '\r') ADVANCE(187); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(243); END_STATE(); case 189: - if (lookahead == '\n') ADVANCE(894); + if (lookahead == '\n') ADVANCE(884); + if (lookahead == '\r') ADVANCE(188); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(252); 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') SKIP(292); END_STATE(); case 191: if (lookahead == '\n') ADVANCE(890); @@ -11363,6441 +10987,6390 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(890); if (lookahead == '\r') ADVANCE(191); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(252); + lookahead == ' ') SKIP(261); END_STATE(); case 193: - if (lookahead == '\n') SKIP(297); + if (lookahead == '\n') ADVANCE(920); END_STATE(); case 194: - if (lookahead == '\n') ADVANCE(929); + if (lookahead == '\n') ADVANCE(920); + if (lookahead == '\r') ADVANCE(193); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(434); 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(921); END_STATE(); case 196: - if (lookahead == '\n') ADVANCE(898); + if (lookahead == '\n') ADVANCE(921); + if (lookahead == '\r') ADVANCE(195); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(435); 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') SKIP(96); END_STATE(); case 198: - if (lookahead == '\n') ADVANCE(930); + if (lookahead == '\n') SKIP(397); END_STATE(); case 199: - if (lookahead == '\n') ADVANCE(930); - if (lookahead == '\r') ADVANCE(198); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(441); - END_STATE(); - case 200: - if (lookahead == '\n') SKIP(96); - END_STATE(); - case 201: - if (lookahead == '\n') SKIP(403); - END_STATE(); - case 202: ADVANCE_MAP( - '\n', 686, - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '&', 596, - '*', 631, - '-', 626, - ';', 548, - '<', 606, - '>', 612, - '?', 754, - '@', 935, + '\n', 680, + '!', 657, + '"', 775, + '#', 803, + '$', 767, + '&', 590, + '*', 625, + '-', 620, + ';', 542, + '<', 600, + '>', 606, + '?', 746, + '@', 926, '\\', 100, - '_', 939, - 'e', 872, - '|', 587, + '_', 930, + 'e', 864, + '|', 581, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(202); + lookahead == ' ') SKIP(199); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); END_STATE(); - case 203: + case 200: + if (lookahead == '\n') SKIP(287); + END_STATE(); + case 201: if (lookahead == '\n') SKIP(288); END_STATE(); + case 202: + if (lookahead == '\n') SKIP(289); + END_STATE(); + case 203: + if (lookahead == '\n') ADVANCE(897); + END_STATE(); case 204: - if (lookahead == '\n') SKIP(292); + if (lookahead == '\n') ADVANCE(897); + if (lookahead == '\r') ADVANCE(203); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(272); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 205: - if (lookahead == '\n') SKIP(293); + if (lookahead == '\n') SKIP(456); END_STATE(); case 206: - if (lookahead == '\n') ADVANCE(905); + if (lookahead == '\n') SKIP(447); 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') ADVANCE(880); END_STATE(); case 208: - if (lookahead == '\n') SKIP(461); + if (lookahead == '\n') ADVANCE(880); + if (lookahead == '\r') ADVANCE(207); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(246); END_STATE(); case 209: - if (lookahead == '\n') SKIP(453); + if (lookahead == '\n') ADVANCE(892); END_STATE(); case 210: - if (lookahead == '\n') ADVANCE(886); + if (lookahead == '\n') ADVANCE(892); + if (lookahead == '\r') ADVANCE(209); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(264); END_STATE(); case 211: if (lookahead == '\n') ADVANCE(886); - if (lookahead == '\r') ADVANCE(210); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(246); END_STATE(); case 212: - if (lookahead == '\n') ADVANCE(900); - END_STATE(); - case 213: - if (lookahead == '\n') ADVANCE(900); - if (lookahead == '\r') ADVANCE(212); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(267); - END_STATE(); - case 214: - if (lookahead == '\n') ADVANCE(892); - END_STATE(); - case 215: - if (lookahead == '\n') ADVANCE(892); - if (lookahead == '\r') ADVANCE(214); + if (lookahead == '\n') ADVANCE(886); + if (lookahead == '\r') ADVANCE(211); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(255); END_STATE(); - case 216: + case 213: ADVANCE_MAP( - '\n', 687, - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 596, - '\'', 485, - '(', 647, - '*', 634, - '-', 630, - '0', 801, - ';', 548, - '<', 603, - '=', 943, - '>', 611, - '?', 755, - '@', 936, + '\n', 681, + '!', 660, + '"', 775, + '#', 803, + '$', 768, + '&', 590, + '\'', 479, + '(', 641, + '*', 628, + '-', 624, + '0', 793, + ';', 542, + '<', 597, + '=', 934, + '>', 605, + '?', 747, + '@', 927, '\\', 28, - '_', 938, - '`', 850, - 'e', 866, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '_', 929, + '`', 842, + 'e', 858, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(216); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + lookahead == ' ') SKIP(213); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead)) ADVANCE(949); + (lookahead < '&' || '*' < lookahead)) ADVANCE(940); END_STATE(); - case 217: + case 214: + if (lookahead == '\n') SKIP(254); + END_STATE(); + case 215: if (lookahead == '\n') SKIP(263); END_STATE(); + case 216: + if (lookahead == '\n') ADVANCE(887); + END_STATE(); + case 217: + if (lookahead == '\n') ADVANCE(887); + if (lookahead == '\r') ADVANCE(216); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(256); + if (lookahead != 0) ADVANCE(940); + END_STATE(); case 218: if (lookahead == '\n') SKIP(266); END_STATE(); case 219: - if (lookahead == '\n') SKIP(272); + if (lookahead == '\n') ADVANCE(896); END_STATE(); case 220: - if (lookahead == '\n') ADVANCE(897); + if (lookahead == '\n') ADVANCE(896); + if (lookahead == '\r') ADVANCE(219); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(270); + if (lookahead != 0) ADVANCE(940); 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(899); END_STATE(); case 222: - if (lookahead == '\n') ADVANCE(903); + if (lookahead == '\n') ADVANCE(899); + if (lookahead == '\r') ADVANCE(221); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(276); + if (lookahead != 0) ADVANCE(940); 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') SKIP(454); END_STATE(); case 224: - if (lookahead == '\n') ADVANCE(906); + if (lookahead == '\n') ADVANCE(910); END_STATE(); case 225: - if (lookahead == '\n') ADVANCE(906); + if (lookahead == '\n') ADVANCE(910); if (lookahead == '\r') ADVANCE(224); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(277); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(403); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 226: - if (lookahead == '\n') SKIP(463); + if (lookahead == '\n') ADVANCE(901); END_STATE(); case 227: - if (lookahead == '\n') ADVANCE(919); + if (lookahead == '\n') ADVANCE(901); + if (lookahead == '\r') ADVANCE(226); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(280); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 228: - if (lookahead == '\n') ADVANCE(919); - if (lookahead == '\r') ADVANCE(227); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(409); - if (lookahead != 0) ADVANCE(949); + if (lookahead == '\n') ADVANCE(911); END_STATE(); case 229: - if (lookahead == '\n') ADVANCE(909); + if (lookahead == '\n') ADVANCE(911); + if (lookahead == '\r') ADVANCE(228); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(404); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 230: - if (lookahead == '\n') ADVANCE(909); - if (lookahead == '\r') ADVANCE(229); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(283); - if (lookahead != 0) ADVANCE(949); + ADVANCE_MAP( + '\n', 682, + '!', 933, + '"', 775, + '#', 849, + '$', 768, + '%', 637, + '&', 589, + '\'', 479, + '(', 641, + ')', 643, + '*', 626, + '+', 618, + '-', 621, + '/', 632, + '0', 789, + ';', 543, + '<', 595, + '=', 548, + '>', 604, + '?', 747, + '\\', 308, + '^', 584, + '`', 842, + '|', 580, + '[', 773, + ']', 773, + '{', 773, + '}', 773, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(230); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(791); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 231: - if (lookahead == '\n') ADVANCE(920); + ADVANCE_MAP( + '\n', 683, + '!', 657, + '"', 775, + '#', 803, + '$', 767, + '&', 590, + '*', 625, + '-', 620, + ';', 542, + '<', 601, + '>', 606, + '?', 746, + '@', 926, + '\\', 182, + '_', 930, + 'e', 864, + '|', 581, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(231); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); 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); + ADVANCE_MAP( + '\n', 684, + '!', 660, + '"', 775, + '#', 803, + '$', 768, + '&', 590, + '\'', 479, + '*', 628, + '-', 624, + '0', 793, + ';', 542, + '<', 597, + '=', 934, + '>', 605, + '?', 747, + '@', 927, + '\\', 31, + '_', 929, + '`', 842, + 'e', 858, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(232); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead)) ADVANCE(940); 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, + '\n', 685, + '"', 775, + '#', 849, + '$', 768, + '&', 590, + '\'', 479, + '(', 641, + '-', 932, + '0', 789, + ';', 542, + '<', 597, + '=', 934, + '>', 605, + '\\', 312, + '`', 842, + 'e', 938, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(233); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); - if (lookahead != 0) ADVANCE(949); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(791); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(940); 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, + '\n', 686, + '!', 657, + '"', 775, + '#', 803, + '$', 767, + '&', 590, + '*', 625, + '-', 620, + ';', 542, + '<', 600, + '>', 606, + '?', 746, + '@', 926, + '\\', 103, + '_', 930, + '|', 581, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(234); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); 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, + '\n', 687, + '!', 660, + '"', 775, + '#', 803, + '$', 768, + '&', 590, + '\'', 479, + '(', 641, + '*', 628, + '-', 624, + '0', 793, + ';', 542, + '<', 597, + '=', 934, + '>', 605, + '?', 747, + '@', 927, + '\\', 33, + '_', 929, + '`', 842, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(235); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead)) ADVANCE(949); + (lookahead < '&' || '*' < lookahead)) ADVANCE(940); 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, + '\n', 688, + '"', 775, + '#', 849, + '$', 768, + '&', 590, + '\'', 479, + '(', 641, + '-', 932, + '0', 789, + ';', 542, + '<', 597, + '=', 934, + '>', 605, + '\\', 313, + '`', 842, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(236); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(791); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(949); + (lookahead < '&' || ')' < lookahead)) ADVANCE(940); END_STATE(); case 237: ADVANCE_MAP( - '\n', 692, - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '&', 596, - '*', 631, - '-', 626, - ';', 548, - '<', 606, - '>', 612, - '?', 754, - '@', 935, - '\\', 104, - '_', 939, - '|', 587, + '\n', 689, + '!', 657, + '"', 775, + '#', 803, + '$', 767, + '&', 590, + '*', 625, + '-', 620, + ';', 543, + '<', 600, + '>', 606, + '?', 746, + '@', 926, + '\\', 185, + '_', 930, + '|', 581, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(237); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); 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, + '\n', 690, + '!', 660, + '"', 775, + '#', 803, + '$', 768, + '&', 590, + '\'', 479, + '*', 628, + '-', 624, + '0', 793, + ';', 542, + '<', 597, + '=', 934, + '>', 605, + '?', 747, + '@', 927, + '\\', 36, + '_', 929, + '`', 842, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(238); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead)) ADVANCE(949); + (lookahead < '&' || '*' < lookahead)) ADVANCE(940); 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, + '\n', 691, + '"', 775, + '#', 849, + '$', 768, + '&', 590, + '\'', 479, + '(', 641, + ')', 643, + '-', 932, + '0', 789, + ';', 543, + '<', 597, + '=', 934, + '>', 605, + '\\', 314, + '`', 842, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(239); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(949); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(791); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 240: ADVANCE_MAP( - '\n', 695, - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '&', 596, - '*', 631, - '-', 626, - ';', 549, - '<', 606, - '>', 612, - '?', 754, - '@', 935, - '\\', 106, - '_', 939, - '`', 850, - '|', 587, + '\n', 692, + '!', 657, + '"', 775, + '#', 803, + '$', 767, + '&', 590, + '*', 625, + '-', 620, + ';', 543, + '<', 600, + '>', 606, + '?', 746, + '@', 926, + '\\', 107, + '_', 930, + '`', 842, + '|', 581, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(240); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); 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, + '\n', 693, + '!', 660, + '"', 775, + '#', 803, + '$', 768, + '&', 590, + '\'', 479, + '(', 641, + '*', 628, + '-', 624, + '0', 793, + ';', 543, + '<', 597, + '=', 934, + '>', 605, + '?', 747, + '@', 927, + '\\', 165, + '_', 929, + '`', 842, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(241); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead)) ADVANCE(949); + (lookahead < '&' || '*' < lookahead)) ADVANCE(940); 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, + '\n', 694, + '"', 775, + '#', 849, + '$', 768, + '&', 590, + '\'', 479, + '-', 932, + '0', 790, + ';', 542, + '<', 598, + '>', 605, + '\\', 315, + '`', 842, + 'e', 853, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(242); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); - if (lookahead != 0) ADVANCE(949); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(792); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(855); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(940); END_STATE(); case 243: ADVANCE_MAP( - '\n', 698, - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '&', 596, - '*', 631, - '-', 626, - ';', 548, - '<', 607, - '>', 612, - '?', 754, - '@', 935, - '\\', 188, - '_', 939, - '|', 587, + '\n', 695, + '!', 657, + '"', 775, + '#', 803, + '$', 767, + '&', 590, + ')', 643, + '*', 625, + '-', 620, + ';', 543, + '<', 600, + '>', 606, + '?', 746, + '@', 926, + '\\', 109, + '_', 930, + '|', 581, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(243); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); 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, + '\n', 696, + '!', 660, + '"', 775, + '#', 803, + '$', 768, + '&', 590, + '\'', 479, + '(', 641, + ')', 643, + '*', 628, + '-', 624, + '0', 793, + ';', 543, + '<', 597, + '=', 934, + '>', 605, + '?', 747, + '@', 927, + '\\', 39, + '_', 929, + '`', 842, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(244); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); - if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead)) ADVANCE(949); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); + if (lookahead != 0) ADVANCE(940); 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, + '\n', 697, + '"', 775, + '#', 849, + '$', 768, + '&', 590, + '\'', 479, + '-', 932, + '0', 790, + ';', 542, + '<', 598, + '>', 605, + '\\', 316, + '`', 842, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(245); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(800); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(792); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(863); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(855); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(949); + (lookahead < '&' || ')' < lookahead)) ADVANCE(940); END_STATE(); case 246: ADVANCE_MAP( - '\n', 701, - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '&', 596, - '*', 631, - '-', 626, - ';', 549, - '<', 606, - '>', 612, - '?', 754, - '@', 935, - '\\', 211, - '_', 939, - '|', 587, + '\n', 698, + '!', 657, + '"', 775, + '#', 803, + '$', 767, + '&', 590, + '*', 625, + '-', 620, + ';', 542, + '<', 601, + '>', 606, + '?', 746, + '@', 926, + '\\', 208, + '_', 930, + '|', 581, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(246); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); 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, + '\n', 699, + '!', 660, + '"', 775, + '#', 803, + '$', 768, + '&', 590, + '\'', 479, + ')', 643, + '*', 628, + '-', 624, + '0', 793, + ';', 543, + '<', 597, + '=', 934, + '>', 605, + '?', 747, + '@', 927, + '\\', 41, + '_', 929, + '`', 842, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(247); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); - if (lookahead != 0) ADVANCE(949); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead)) ADVANCE(940); 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, + '\n', 700, + '"', 775, + '#', 849, + '$', 768, + '&', 590, + '\'', 479, + ')', 643, + '-', 932, + '0', 790, + ';', 543, + '<', 598, + '>', 605, + '\\', 317, + '`', 842, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(248); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(800); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(792); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(863); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(855); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(949); + (lookahead < '&' || ')' < lookahead)) ADVANCE(940); 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', 701, + '!', 657, + '"', 775, + '#', 803, + '$', 767, + '&', 590, + '*', 625, + '-', 620, + ';', 543, + '<', 601, + '>', 606, + '?', 746, + '@', 926, + '\\', 187, + '_', 930, + '`', 842, + '|', 581, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(249); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); END_STATE(); case 250: ADVANCE_MAP( - '\n', 705, - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 596, - '\'', 485, - '*', 634, - '-', 630, - '0', 801, - ';', 549, - '<', 603, - '=', 943, - '>', 611, - '?', 755, - '@', 936, + '\n', 702, + '!', 660, + '"', 775, + '#', 803, + '$', 768, + '&', 590, + '\'', 479, + '*', 628, + '-', 624, + '0', 793, + ';', 543, + '<', 597, + '=', 934, + '>', 605, + '?', 747, + '@', 927, '\\', 168, - '_', 938, - '`', 850, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '_', 929, + '`', 842, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(250); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead)) ADVANCE(949); + (lookahead < '&' || '*' < lookahead)) ADVANCE(940); 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', 703, + '"', 775, + '#', 849, + '$', 768, + '&', 590, + '\'', 479, + '-', 932, + '0', 789, + ';', 542, + '<', 598, + '>', 605, + '\\', 318, + '`', 842, + 'e', 938, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(251); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(800); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(863); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(791); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(949); + (lookahead < '&' || ')' < lookahead)) ADVANCE(940); 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', 704, + '!', 657, + '"', 775, + '#', 803, + '$', 767, + '&', 590, + ')', 643, + '*', 625, + '-', 620, + ';', 543, + '<', 601, + '>', 606, + '?', 746, + '@', 926, + '\\', 189, + '_', 930, + '|', 581, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(252); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); 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', 705, + '!', 660, + '"', 775, + '#', 803, + '$', 768, + '&', 590, + '\'', 479, + '*', 628, + '-', 624, + '0', 793, + ';', 542, + '<', 597, + '>', 605, + '?', 747, + '@', 927, + '\\', 44, + '_', 929, + '`', 842, + 'e', 858, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(253); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead)) ADVANCE(949); + (lookahead < '&' || '*' < lookahead)) ADVANCE(940); 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', 706, + '"', 775, + '#', 849, + '$', 768, + '&', 590, + '\'', 479, + '-', 932, + '0', 789, + ';', 542, + '<', 597, + '>', 605, + '\\', 387, + '`', 842, + 'e', 938, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(254); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(791); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(949); + (lookahead < '&' || ')' < lookahead)) ADVANCE(940); END_STATE(); case 255: ADVANCE_MAP( - '\n', 710, - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '&', 596, - '*', 631, - '-', 626, - ';', 549, - '<', 607, - '>', 612, - '?', 754, - '@', 935, - '\\', 215, - '_', 939, - '|', 587, + '\n', 707, + '!', 657, + '"', 775, + '#', 803, + '$', 767, + '&', 590, + '*', 625, + '-', 620, + ';', 543, + '<', 601, + '>', 606, + '?', 746, + '@', 926, + '\\', 212, + '_', 930, + '|', 581, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(255); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); 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', 708, + '!', 660, + '"', 775, + '#', 803, + '$', 768, + '&', 590, + '\'', 479, + '*', 628, + '-', 624, + '0', 793, + ';', 542, + '<', 598, + '>', 605, + '?', 747, + '@', 927, + '\\', 217, + '_', 929, + '`', 842, + 'e', 858, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(256); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead)) ADVANCE(949); + (lookahead < '&' || '*' < lookahead)) ADVANCE(940); 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', 709, + '"', 775, + '#', 849, + '$', 768, + '&', 590, + '\'', 479, + '-', 932, + '0', 789, + ';', 542, + '<', 598, + '>', 605, + '\\', 319, + '`', 842, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(257); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(791); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(949); + (lookahead < '&' || ')' < lookahead)) ADVANCE(940); 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', 710, + '!', 657, + '"', 775, + '#', 803, + '$', 767, + '&', 477, + '*', 625, + '-', 620, + '<', 600, + '>', 606, + '?', 746, + '@', 926, + '\\', 118, + '_', 930, + '|', 581, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(258); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); END_STATE(); case 259: ADVANCE_MAP( - '\n', 714, - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 596, - '\'', 485, - '*', 634, - '-', 630, - '0', 801, - ';', 548, - '<', 603, - '>', 611, - '?', 755, - '@', 936, + '\n', 711, + '!', 660, + '"', 775, + '#', 803, + '$', 768, + '&', 590, + '\'', 479, + '*', 628, + '-', 624, + '0', 793, + ';', 542, + '<', 597, + '>', 605, + '?', 747, + '@', 927, '\\', 49, - '_', 938, - '`', 850, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '_', 929, + '`', 842, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(259); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead)) ADVANCE(949); + (lookahead < '&' || '*' < lookahead)) ADVANCE(940); 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', 712, + '"', 775, + '#', 849, + '$', 768, + '&', 590, + '\'', 479, + ')', 643, + '-', 932, + '0', 789, + ';', 543, + '<', 598, + '>', 605, + '\\', 321, + '`', 842, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(260); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(791); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(949); + (lookahead < '&' || ')' < lookahead)) ADVANCE(940); END_STATE(); case 261: ADVANCE_MAP( - '\n', 716, - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '&', 483, - '*', 631, - '-', 626, - '<', 606, - '>', 612, - '?', 754, - '@', 935, - '\\', 120, - '_', 939, - '|', 587, + '\n', 713, + '!', 657, + '"', 775, + '#', 803, + '$', 767, + '&', 477, + '*', 625, + '-', 620, + '<', 601, + '>', 606, + '?', 746, + '@', 926, + '\\', 192, + '_', 930, + '|', 581, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(261); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); 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', 714, + '!', 660, + '"', 775, + '#', 803, + '$', 768, + '&', 590, + '\'', 479, + '*', 628, + '-', 624, + '0', 793, + ';', 543, + '<', 597, + '>', 605, + '?', 747, + '@', 927, + '\\', 174, + '_', 929, + '`', 842, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(262); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead)) ADVANCE(949); + (lookahead < '&' || '*' < lookahead)) ADVANCE(940); 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', 715, + '"', 775, + '#', 849, + '$', 768, + '&', 590, + '\'', 479, + '-', 932, + '0', 789, + ';', 542, + '<', 597, + '>', 605, + '\\', 388, + '`', 842, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(263); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(791); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(949); + (lookahead < '&' || ')' < lookahead)) ADVANCE(940); END_STATE(); case 264: ADVANCE_MAP( - '\n', 719, - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '&', 483, - '*', 631, - '-', 626, - '<', 607, - '>', 612, - '?', 754, - '@', 935, - '\\', 197, - '_', 939, - '|', 587, + '\n', 716, + '!', 657, + '"', 775, + '#', 803, + '$', 767, + '&', 477, + '*', 625, + '-', 620, + '<', 599, + '>', 606, + '?', 746, + '@', 926, + '\\', 210, + '_', 930, + '|', 504, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(264); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); 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', 717, + '!', 660, + '"', 775, + '#', 803, + '$', 768, + '&', 477, + '\'', 479, + '(', 641, + '*', 628, + '-', 624, + '0', 793, + '<', 597, + '=', 934, + '>', 605, + '?', 747, + '@', 927, + '\\', 52, + '_', 929, + '`', 842, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(265); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead)) ADVANCE(949); + (lookahead < '&' || '*' < lookahead) && + (lookahead < ';' || ']' < lookahead)) ADVANCE(940); 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', 718, + '"', 775, + '#', 849, + '$', 768, + '&', 590, + '\'', 479, + ')', 643, + '-', 932, + '0', 789, + ';', 543, + '<', 597, + '>', 605, + '\\', 389, + '`', 842, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(266); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(791); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(949); + (lookahead < '&' || ')' < lookahead)) ADVANCE(940); END_STATE(); case 267: ADVANCE_MAP( - '\n', 722, - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '&', 483, - '*', 631, - '-', 626, - '<', 605, - '>', 612, - '?', 754, - '@', 935, - '\\', 213, - '_', 939, - '|', 510, + '\n', 719, + '!', 657, + '"', 775, + '#', 803, + '$', 767, + '&', 587, + '*', 625, + '-', 620, + ';', 543, + '?', 746, + '@', 926, + '\\', 140, + '_', 930, + 'i', 863, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(267); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); 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', 720, + '!', 660, + '"', 775, + '#', 803, + '$', 768, + '&', 590, + '\'', 479, + ')', 643, + '*', 628, + '-', 624, + '0', 793, + ';', 543, + '<', 597, + '>', 605, + '?', 747, + '@', 927, + '\\', 54, + '_', 929, + '`', 842, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(268); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead) && - (lookahead < ';' || ']' < lookahead)) ADVANCE(949); + (lookahead < '&' || '*' < lookahead)) ADVANCE(940); 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', 721, + '"', 775, + '#', 849, + '$', 768, + '&', 477, + '\'', 479, + '-', 932, + '0', 789, + '<', 596, + '>', 605, + '\\', 323, + '`', 842, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(269); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(791); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '<') ADVANCE(949); + lookahead != '<') ADVANCE(940); END_STATE(); case 270: ADVANCE_MAP( - '\n', 725, - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '&', 593, - '*', 631, - '-', 626, - ';', 549, - '?', 754, - '@', 935, - '\\', 140, - '_', 939, - 'i', 871, + '\n', 722, + '!', 660, + '"', 775, + '#', 803, + '$', 768, + '&', 590, + '\'', 479, + '*', 628, + '-', 624, + '0', 793, + ';', 542, + '<', 598, + '>', 605, + '?', 747, + '@', 927, + '\\', 220, + '_', 929, + '`', 842, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); 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(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead)) ADVANCE(940); 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', 723, + '"', 775, + '#', 849, + '$', 768, + '&', 590, + '\'', 479, + '(', 641, + '-', 932, + '0', 789, + ';', 542, + '<', 597, + '=', 934, + '>', 605, + '\\', 326, + '`', 843, + 'e', 938, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); 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 (('1' <= lookahead && lookahead <= '9')) ADVANCE(791); if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead)) ADVANCE(949); + (lookahead < '&' || ')' < lookahead)) ADVANCE(940); 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', 724, + '!', 660, + '"', 775, + '#', 803, + '$', 768, + '&', 590, + '\'', 479, + '*', 628, + '-', 624, + '0', 793, + ';', 543, + '<', 598, + '>', 605, + '?', 747, + '@', 927, + '\\', 204, + '_', 929, + '`', 842, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(272); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(949); + (lookahead < '&' || '*' < lookahead)) ADVANCE(940); 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', 725, + '"', 775, + '#', 849, + '$', 768, + '&', 590, + '\'', 479, + '(', 641, + '-', 932, + '0', 789, + ';', 542, + '<', 597, + '=', 934, + '>', 605, + '\\', 327, + '`', 843, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); 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(791); if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead)) ADVANCE(949); + (lookahead < '&' || ')' < lookahead)) ADVANCE(940); 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', 726, + '!', 660, + '"', 775, + '#', 803, + '$', 768, + '&', 477, + '\'', 479, + '*', 628, + '-', 624, + '0', 793, + '<', 597, + '=', 934, + '>', 605, + '?', 747, + '@', 927, + '\\', 57, + '_', 929, + '`', 842, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(274); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(949); + (lookahead < '&' || '*' < lookahead) && + (lookahead < ';' || ']' < lookahead)) ADVANCE(940); 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', 727, + '"', 775, + '#', 849, + '$', 768, + '&', 590, + '\'', 479, + '(', 641, + ')', 643, + '-', 932, + '0', 789, + ';', 543, + '<', 597, + '=', 934, + '>', 605, + '\\', 329, + '`', 843, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(275); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); - if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead)) ADVANCE(949); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(791); + if (lookahead != 0) ADVANCE(940); 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', 728, + '!', 660, + '"', 775, + '#', 803, + '$', 768, + '&', 590, + '\'', 479, + ')', 643, + '*', 628, + '-', 624, + '0', 793, + ';', 543, + '<', 598, + '>', 605, + '?', 747, + '@', 927, + '\\', 222, + '_', 929, + '`', 842, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(276); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(949); + (lookahead < '&' || '*' < lookahead)) ADVANCE(940); 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', 729, + '"', 775, + '#', 849, + '$', 768, + '&', 590, + '\'', 479, + '-', 932, + '0', 789, + ';', 542, + '<', 597, + '>', 605, + '\\', 332, + '`', 843, + 'e', 938, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); 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 (('1' <= lookahead && lookahead <= '9')) ADVANCE(791); if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead)) ADVANCE(949); + (lookahead < '&' || ')' < lookahead)) ADVANCE(940); 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', 730, + '!', 660, + '"', 775, + '#', 803, + '$', 768, + '&', 477, + '\'', 479, + '*', 628, + '-', 624, + '0', 793, + '<', 597, + '>', 605, + '?', 747, + '@', 927, + '\\', 68, + '_', 929, + '`', 842, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); 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(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead) && + lookahead != ';' && + lookahead != '<') ADVANCE(940); 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', 731, + '"', 775, + '#', 849, + '$', 768, + '&', 590, + '\'', 479, + '-', 932, + '0', 790, + ';', 542, + '<', 598, + '>', 605, + '\\', 333, + '`', 843, + 'e', 853, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(279); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(792); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(855); if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead) && - (lookahead < ';' || ']' < lookahead)) ADVANCE(949); + (lookahead < '&' || ')' < lookahead)) ADVANCE(940); 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', 732, + '!', 660, + '"', 775, + '#', 803, + '$', 768, + '&', 477, + '\'', 479, + '*', 628, + '-', 624, + '0', 793, + '<', 598, + '>', 605, + '?', 747, + '@', 927, + '\\', 227, + '_', 929, + '`', 842, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(280); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(949); + (lookahead < '&' || '*' < lookahead) && + lookahead != ';' && + lookahead != '<') ADVANCE(940); 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', 733, + '"', 775, + '#', 849, + '$', 768, + '&', 590, + '\'', 479, + '-', 932, + '0', 789, + ';', 542, + '<', 597, + '>', 605, + '\\', 335, + '`', 843, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(281); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(791); if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead) && - lookahead != ';' && - lookahead != '<') ADVANCE(949); + (lookahead < '&' || ')' < lookahead)) ADVANCE(940); 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', 734, + '!', 660, + '"', 775, + '#', 803, + '$', 768, + '&', 587, + '\'', 479, + '*', 628, + '-', 624, + '0', 793, + ';', 543, + '<', 483, + '>', 484, + '?', 747, + '@', 927, + '\\', 115, + '_', 929, + '`', 842, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(282); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(800); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(863); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(949); + (lookahead < '&' || '*' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(940); 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', 735, + '"', 775, + '#', 849, + '$', 768, + '&', 590, + '\'', 479, + '-', 932, + '0', 790, + ';', 542, + '<', 598, + '>', 605, + '\\', 337, + '`', 843, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(283); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(792); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(855); if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead) && - lookahead != ';' && - lookahead != '<') ADVANCE(949); + (lookahead < '&' || ')' < lookahead)) ADVANCE(940); 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', 736, + '!', 660, + '"', 775, + '#', 803, + '$', 768, + '\'', 479, + '*', 628, + '-', 624, + '0', 793, + '<', 483, + '>', 484, + '?', 747, + '@', 927, + '\\', 125, + '_', 929, + '`', 842, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(284); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(949); + (lookahead < '&' || '*' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '_' || '}' < lookahead)) ADVANCE(940); 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', 737, + '"', 775, + '#', 849, + '$', 768, + '&', 590, + '\'', 479, + ')', 643, + '-', 932, + '0', 789, + ';', 543, + '<', 597, + '>', 605, + '\\', 339, + '`', 843, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); 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(791); if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead) && - lookahead != ';' && - lookahead != '<') ADVANCE(949); + (lookahead < '&' || ')' < lookahead)) ADVANCE(940); 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', 738, + '"', 775, + '#', 849, + '$', 768, + '&', 590, + '\'', 479, + ')', 643, + '-', 932, + '0', 790, + ';', 543, + '<', 598, + '>', 605, + '\\', 340, + '`', 843, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(286); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(800); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(792); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(863); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(855); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(949); + (lookahead < '&' || ')' < lookahead)) ADVANCE(940); 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', 739, + '"', 775, + '#', 849, + '$', 768, + '&', 590, + '\'', 479, + '-', 932, + '0', 789, + ';', 542, + '<', 598, + '>', 605, + '\\', 341, + '`', 843, + 'e', 938, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(287); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(791); if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '&' || ')' < lookahead)) ADVANCE(940); 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', 740, + '"', 775, + '#', 849, + '$', 768, + '&', 590, + '\'', 479, + '-', 932, + '0', 789, + ';', 542, + '<', 598, + '>', 605, + '\\', 342, + '`', 843, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(288); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(791); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(949); + (lookahead < '&' || ')' < lookahead)) ADVANCE(940); 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', 741, + '"', 775, + '#', 849, + '$', 768, + '&', 590, + '\'', 479, + ')', 643, + '-', 932, + '0', 789, + ';', 543, + '<', 598, + '>', 605, + '\\', 345, + '`', 843, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(289); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(791); if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead) && - lookahead != ';' && - lookahead != '<' && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '&' || ')' < lookahead)) ADVANCE(940); 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', 742, + '"', 775, + '#', 849, + '$', 768, + '&', 587, + '\'', 479, + '(', 641, + '-', 932, + '0', 789, + ';', 543, + '<', 483, + '>', 484, + '\\', 350, + '`', 842, + 'e', 938, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(290); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(791); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(949); + (lookahead < '&' || ')' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(940); 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', 743, + '"', 775, + '#', 849, + '$', 768, + '&', 587, + '\'', 479, + '-', 932, + '0', 789, + ';', 543, + '<', 483, + '>', 484, + '\\', 363, + '`', 842, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(291); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(800); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(863); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(791); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(949); + (lookahead < '&' || ')' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(940); 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', 744, + '"', 775, + '#', 849, + '$', 768, + '&', 587, + '\'', 479, + '-', 932, + '0', 789, + ';', 543, + '<', 483, + '>', 484, + '\\', 372, + '`', 843, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(292); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(791); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(949); + (lookahead < '&' || ')' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(940); 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, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(293); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(949); + if (lookahead == '\r') SKIP(1); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(391); + if (lookahead != 0) ADVANCE(940); 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, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(294); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(949); + if (lookahead == '\r') ADVANCE(776); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') ADVANCE(782); + if (lookahead != 0) ADVANCE(784); 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, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(295); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '<') ADVANCE(949); + if (lookahead == '\r') ADVANCE(785); + if (lookahead != 0) ADVANCE(784); 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, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(296); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(949); + if (lookahead == '\r') SKIP(2); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(407); + if (lookahead != 0) ADVANCE(940); 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, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(297); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(949); + if (lookahead == '\r') SKIP(3); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(406); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 298: - if (lookahead == '\r') SKIP(1); + if (lookahead == '\r') SKIP(4); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(397); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(408); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 299: - if (lookahead == '\r') ADVANCE(784); + if (lookahead == '\r') SKIP(5); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(790); - if (lookahead != 0) ADVANCE(792); + lookahead == ' ') SKIP(6); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 300: - if (lookahead == '\r') ADVANCE(793); - if (lookahead != 0) ADVANCE(792); - END_STATE(); + if (lookahead == '\r') SKIP(7); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(409); + if (lookahead != 0) ADVANCE(940); + END_STATE(); case 301: - if (lookahead == '\r') SKIP(2); + if (lookahead == '\r') SKIP(8); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(412); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(393); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 302: - if (lookahead == '\r') SKIP(3); + if (lookahead == '\r') SKIP(9); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(413); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(410); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 303: - if (lookahead == '\r') SKIP(4); + if (lookahead == '\r') SKIP(155); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(414); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(396); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 304: - if (lookahead == '\r') SKIP(5); + if (lookahead == '\r') SKIP(10); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(6); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(394); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 305: - if (lookahead == '\r') SKIP(7); + if (lookahead == '\r') SKIP(11); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(399); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(395); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 306: - if (lookahead == '\r') SKIP(8); + if (lookahead == '\r') SKIP(198); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(415); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(397); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 307: - if (lookahead == '\r') SKIP(9); + if (lookahead == '\r') SKIP(20); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(416); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(156); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 308: - if (lookahead == '\r') SKIP(155); + if (lookahead == '\r') SKIP(157); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(402); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(230); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 309: - if (lookahead == '\r') SKIP(10); + if (lookahead == '\r') SKIP(21); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(400); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(414); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 310: - if (lookahead == '\r') SKIP(201); + if (lookahead == '\r') SKIP(158); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(403); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(415); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 311: - if (lookahead == '\r') SKIP(11); + if (lookahead == '\r') SKIP(22); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(401); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(411); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 312: - if (lookahead == '\r') SKIP(20); + if (lookahead == '\r') SKIP(23); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(156); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(233); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 313: - if (lookahead == '\r') SKIP(157); + if (lookahead == '\r') SKIP(24); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(233); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(236); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 314: - if (lookahead == '\r') SKIP(21); + if (lookahead == '\r') SKIP(25); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(420); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(239); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 315: - if (lookahead == '\r') SKIP(158); + if (lookahead == '\r') SKIP(26); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(421); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(242); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 316: - if (lookahead == '\r') SKIP(22); + if (lookahead == '\r') SKIP(29); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(417); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(245); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 317: - if (lookahead == '\r') SKIP(23); + if (lookahead == '\r') SKIP(34); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(236); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(248); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 318: - if (lookahead == '\r') SKIP(24); + if (lookahead == '\r') SKIP(37); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(239); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(251); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 319: - if (lookahead == '\r') SKIP(25); + if (lookahead == '\r') SKIP(42); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(242); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(257); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 320: - if (lookahead == '\r') SKIP(26); + if (lookahead == '\r') SKIP(45); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(245); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(445); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 321: - if (lookahead == '\r') SKIP(33); + if (lookahead == '\r') SKIP(46); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(248); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(260); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 322: - if (lookahead == '\r') SKIP(34); + if (lookahead == '\r') SKIP(47); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(251); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(449); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 323: - if (lookahead == '\r') SKIP(37); + if (lookahead == '\r') SKIP(50); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(254); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(269); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 324: - if (lookahead == '\r') SKIP(42); + if (lookahead == '\r') SKIP(55); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(257); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(458); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 325: - if (lookahead == '\r') SKIP(43); + if (lookahead == '\r') SKIP(60); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(451); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(455); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 326: - if (lookahead == '\r') SKIP(44); + if (lookahead == '\r') SKIP(159); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(260); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(271); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 327: - if (lookahead == '\r') SKIP(45); + if (lookahead == '\r') SKIP(160); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(455); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(273); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 328: - if (lookahead == '\r') SKIP(50); + if (lookahead == '\r') SKIP(63); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(269); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(448); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 329: - if (lookahead == '\r') SKIP(55); + if (lookahead == '\r') SKIP(161); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(464); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(275); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 330: - if (lookahead == '\r') SKIP(159); + if (lookahead == '\r') SKIP(66); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(274); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(446); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 331: - if (lookahead == '\r') SKIP(60); + if (lookahead == '\r') SKIP(71); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(458); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(452); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 332: - if (lookahead == '\r') SKIP(160); + if (lookahead == '\r') SKIP(169); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(276); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(277); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 333: - if (lookahead == '\r') SKIP(63); + if (lookahead == '\r') SKIP(162); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(454); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(279); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 334: - if (lookahead == '\r') SKIP(161); + if (lookahead == '\r') SKIP(76); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(278); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(422); END_STATE(); case 335: - if (lookahead == '\r') SKIP(66); + if (lookahead == '\r') SKIP(170); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(452); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(281); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 336: - if (lookahead == '\r') SKIP(169); + if (lookahead == '\r') SKIP(81); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(280); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(423); END_STATE(); case 337: - if (lookahead == '\r') SKIP(162); + if (lookahead == '\r') SKIP(163); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(282); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(283); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 338: - if (lookahead == '\r') SKIP(73); + if (lookahead == '\r') SKIP(82); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(460); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(412); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 339: - if (lookahead == '\r') SKIP(74); + if (lookahead == '\r') SKIP(171); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(428); + lookahead == ' ') SKIP(285); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 340: - if (lookahead == '\r') SKIP(79); + if (lookahead == '\r') SKIP(166); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(418); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(286); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 341: - if (lookahead == '\r') SKIP(170); + if (lookahead == '\r') SKIP(200); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(284); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(287); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 342: - if (lookahead == '\r') SKIP(165); + if (lookahead == '\r') SKIP(201); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(286); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(288); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 343: - if (lookahead == '\r') SKIP(80); + if (lookahead == '\r') SKIP(83); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(429); + lookahead == ' ') SKIP(413); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 344: - if (lookahead == '\r') SKIP(203); + if (lookahead == '\r') SKIP(172); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(288); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(450); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 345: - if (lookahead == '\r') SKIP(171); + if (lookahead == '\r') SKIP(202); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(290); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(289); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 346: - if (lookahead == '\r') SKIP(166); + if (lookahead == '\r') SKIP(84); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(291); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(425); END_STATE(); case 347: - if (lookahead == '\r') SKIP(204); + if (lookahead == '\r') SKIP(85); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(292); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(431); END_STATE(); case 348: - if (lookahead == '\r') SKIP(83); + if (lookahead == '\r') SKIP(176); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(419); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(453); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 349: - if (lookahead == '\r') SKIP(205); + if (lookahead == '\r') SKIP(86); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(293); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(426); END_STATE(); case 350: - if (lookahead == '\r') SKIP(172); + if (lookahead == '\r') SKIP(89); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(456); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(290); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 351: - if (lookahead == '\r') SKIP(84); + if (lookahead == '\r') SKIP(177); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(431); + lookahead == ' ') SKIP(451); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 352: - if (lookahead == '\r') SKIP(177); + if (lookahead == '\r') SKIP(175); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(459); - if (lookahead != 0) ADVANCE(949); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 353: - if (lookahead == '\r') SKIP(85); + if (lookahead == '\r') SKIP(205); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(437); + lookahead == ' ') SKIP(456); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 354: - if (lookahead == '\r') SKIP(88); + if (lookahead == '\r') SKIP(90); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(432); + lookahead == ' ') SKIP(428); END_STATE(); case 355: - if (lookahead == '\r') SKIP(89); + if (lookahead == '\r') SKIP(180); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(294); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(457); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 356: - if (lookahead == '\r') SKIP(176); + if (lookahead == '\r') SKIP(91); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(465); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(92); END_STATE(); case 357: - if (lookahead == '\r') SKIP(178); + if (lookahead == '\r') SKIP(101); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(457); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(430); END_STATE(); case 358: - if (lookahead == '\r') SKIP(208); + if (lookahead == '\r') SKIP(183); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(461); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(424); END_STATE(); case 359: - if (lookahead == '\r') SKIP(90); + if (lookahead == '\r') SKIP(104); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(434); + lookahead == ' ') SKIP(427); END_STATE(); case 360: - if (lookahead == '\r') SKIP(183); + if (lookahead == '\r') SKIP(105); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(462); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(460); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 361: - if (lookahead == '\r') SKIP(91); + if (lookahead == '\r') SKIP(110); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(92); + lookahead == ' ') SKIP(461); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 362: - if (lookahead == '\r') SKIP(101); + if (lookahead == '\r') SKIP(206); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(436); + lookahead == ' ') SKIP(447); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 363: - if (lookahead == '\r') SKIP(102); + if (lookahead == '\r') SKIP(111); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(433); + lookahead == ' ') SKIP(291); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 364: - if (lookahead == '\r') SKIP(186); + if (lookahead == '\r') SKIP(112); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(430); + lookahead == ' ') SKIP(470); END_STATE(); case 365: - if (lookahead == '\r') SKIP(175); + if (lookahead == '\r') SKIP(113); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(295); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(466); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 366: - if (lookahead == '\r') SKIP(107); + if (lookahead == '\r') SKIP(116); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(466); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(439); END_STATE(); case 367: - if (lookahead == '\r') SKIP(209); + if (lookahead == '\r') SKIP(123); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(453); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(467); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 368: - if (lookahead == '\r') SKIP(110); + if (lookahead == '\r') SKIP(128); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(296); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(95); END_STATE(); case 369: - if (lookahead == '\r') SKIP(111); + if (lookahead == '\r') SKIP(197); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(476); + lookahead == ' ') SKIP(96); END_STATE(); case 370: - if (lookahead == '\r') SKIP(112); + if (lookahead == '\r') SKIP(129); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(467); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(93); END_STATE(); case 371: - if (lookahead == '\r') SKIP(113); + if (lookahead == '\r') SKIP(130); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(472); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(462); END_STATE(); case 372: - if (lookahead == '\r') SKIP(116); + if (lookahead == '\r') SKIP(190); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(445); + lookahead == ' ') SKIP(292); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 373: - if (lookahead == '\r') SKIP(125); + if (lookahead == '\r') SKIP(131); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(473); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(442); END_STATE(); case 374: - if (lookahead == '\r') SKIP(128); + if (lookahead == '\r') SKIP(132); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(95); + lookahead == ' ') SKIP(474); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 375: - if (lookahead == '\r') SKIP(129); + if (lookahead == '\r') SKIP(133); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(93); + lookahead == ' ') SKIP(463); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 376: - if (lookahead == '\r') SKIP(200); + if (lookahead == '\r') SKIP(134); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(96); + lookahead == ' ') SKIP(471); END_STATE(); case 377: - if (lookahead == '\r') SKIP(130); + if (lookahead == '\r') SKIP(135); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(468); + lookahead == ' ') SKIP(472); END_STATE(); case 378: - if (lookahead == '\r') SKIP(193); + if (lookahead == '\r') SKIP(136); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(297); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(475); END_STATE(); case 379: - if (lookahead == '\r') SKIP(131); + if (lookahead == '\r') SKIP(137); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(448); + lookahead == ' ') SKIP(94); END_STATE(); case 380: - if (lookahead == '\r') SKIP(132); + if (lookahead == '\r') SKIP(138); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(480); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(97); END_STATE(); case 381: - if (lookahead == '\r') SKIP(133); + if (lookahead == '\r') SKIP(143); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(477); + lookahead == ' ') SKIP(443); END_STATE(); case 382: - if (lookahead == '\r') SKIP(134); + if (lookahead == '\r') SKIP(148); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(478); + lookahead == ' ') SKIP(473); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 383: - if (lookahead == '\r') SKIP(135); + if (lookahead == '\r') SKIP(151); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(469); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(98); END_STATE(); case 384: - if (lookahead == '\r') SKIP(136); + if (lookahead == '\r') SKIP(152); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(481); + lookahead == ' ') SKIP(464); END_STATE(); case 385: - if (lookahead == '\r') SKIP(137); + if (lookahead == '\r') SKIP(153); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(94); + lookahead == ' ') SKIP(465); END_STATE(); case 386: - if (lookahead == '\r') SKIP(138); + if (lookahead == '\r') SKIP(154); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(97); + lookahead == ' ') SKIP(476); END_STATE(); case 387: - if (lookahead == '\r') SKIP(143); + if (lookahead == '\r') SKIP(214); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(449); + lookahead == ' ') SKIP(254); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 388: - if (lookahead == '\r') SKIP(148); + if (lookahead == '\r') SKIP(215); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(479); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(263); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 389: - if (lookahead == '\r') SKIP(151); + if (lookahead == '\r') SKIP(218); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(98); + lookahead == ' ') SKIP(266); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 390: - if (lookahead == '\r') SKIP(152); + if (lookahead == '\r') SKIP(223); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(470); + lookahead == ' ') SKIP(454); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 391: - if (lookahead == '\r') SKIP(153); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(471); + ADVANCE_MAP( + '!', 658, + '"', 775, + '#', 803, + '$', 768, + '%', 635, + '&', 589, + '\'', 479, + '(', 642, + ')', 643, + '*', 626, + '+', 756, + ',', 545, + '-', 754, + '/', 630, + ':', 751, + ';', 542, + '<', 595, + '=', 551, + '>', 604, + '?', 747, + '@', 927, + '[', 662, + '\\', 293, + ']', 663, + '^', 583, + '_', 928, + '`', 843, + 'e', 938, + 'i', 937, + '{', 654, + '|', 580, + '}', 805, + '~', 758, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(391); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 392: - if (lookahead == '\r') SKIP(154); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(482); + ADVANCE_MAP( + '!', 658, + '"', 775, + '#', 803, + '$', 768, + '%', 637, + '&', 589, + '\'', 479, + '(', 641, + '*', 626, + '+', 618, + '-', 621, + '/', 632, + '0', 793, + '<', 595, + '=', 548, + '>', 604, + '?', 747, + '@', 927, + '\\', 19, + ']', 663, + '^', 584, + '_', 929, + '`', 842, + '|', 580, + '[', 773, + '{', 773, + '}', 773, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(392); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(860); + if (lookahead != 0 && + (lookahead < ' ' || '+' < lookahead) && + (lookahead < ';' || '}' < lookahead)) ADVANCE(940); END_STATE(); case 393: - if (lookahead == '\r') SKIP(217); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(263); - if (lookahead != 0) ADVANCE(949); + ADVANCE_MAP( + '!', 658, + '"', 775, + '#', 849, + '$', 768, + '%', 637, + '&', 589, + '\'', 479, + '(', 641, + '*', 626, + '+', 757, + '-', 755, + '/', 632, + '0', 789, + '<', 595, + '=', 548, + '>', 604, + '?', 747, + '\\', 301, + ']', 663, + '^', 584, + '`', 843, + '|', 580, + '~', 758, + '[', 773, + '{', 773, + '}', 773, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(393); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(791); + if (lookahead != 0 && + (lookahead < ' ' || '+' < lookahead) && + (lookahead < ';' || '?' < lookahead)) ADVANCE(940); END_STATE(); case 394: - if (lookahead == '\r') SKIP(218); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(266); - if (lookahead != 0) ADVANCE(949); + ADVANCE_MAP( + '!', 658, + '"', 775, + '#', 849, + '$', 768, + '%', 637, + '&', 588, + '\'', 479, + '(', 641, + ')', 643, + '*', 626, + '+', 757, + '-', 755, + '/', 632, + '0', 789, + '<', 602, + '=', 548, + '>', 607, + '?', 747, + '\\', 304, + '^', 584, + '`', 843, + '|', 582, + '~', 758, + '[', 773, + ']', 773, + '{', 773, + '}', 773, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(394); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(791); + if (lookahead != 0 && + (lookahead < ';' || '?' < lookahead)) ADVANCE(940); END_STATE(); case 395: - if (lookahead == '\r') SKIP(219); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(272); - if (lookahead != 0) ADVANCE(949); + ADVANCE_MAP( + '!', 658, + '"', 775, + '#', 849, + '$', 768, + '%', 637, + '&', 588, + '\'', 479, + '(', 641, + '*', 626, + '+', 757, + '-', 755, + '/', 632, + '0', 789, + ':', 751, + '<', 602, + '=', 548, + '>', 607, + '?', 747, + '\\', 305, + '^', 584, + '`', 843, + '|', 582, + '~', 758, + '[', 773, + ']', 773, + '{', 773, + '}', 773, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(395); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(791); + if (lookahead != 0 && + (lookahead < ' ' || '+' < lookahead) && + (lookahead < '/' || '?' < lookahead)) ADVANCE(940); END_STATE(); case 396: - if (lookahead == '\r') SKIP(226); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(463); - if (lookahead != 0) ADVANCE(949); + ADVANCE_MAP( + '!', 658, + '"', 775, + '#', 849, + '$', 768, + '%', 637, + '&', 588, + '\'', 479, + '(', 641, + '*', 626, + '+', 757, + '-', 755, + '/', 632, + '0', 789, + '<', 602, + '=', 548, + '>', 607, + '?', 747, + '\\', 303, + ']', 663, + '^', 584, + '`', 843, + '|', 582, + '~', 758, + '[', 773, + '{', 773, + '}', 773, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(396); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(791); + if (lookahead != 0 && + (lookahead < ' ' || '+' < lookahead) && + (lookahead < ';' || '?' < lookahead)) ADVANCE(940); 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, + '!', 658, + '"', 775, + '#', 849, + '$', 768, + '%', 637, + '&', 588, + '\'', 479, + '(', 641, + '*', 626, + '+', 757, + '-', 755, + '/', 632, + '0', 789, + '<', 602, + '=', 548, + '>', 607, + '?', 747, + '\\', 306, + ']', 774, + '^', 584, + '`', 843, + '|', 582, + '~', 758, + '[', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(397); - if (lookahead != 0) ADVANCE(949); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(791); + if (lookahead != 0 && + (lookahead < ' ' || '+' < lookahead) && + (lookahead < ';' || '?' < lookahead)) ADVANCE(940); 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, + '!', 660, + '"', 775, + '#', 803, + '$', 768, + '&', 496, + '\'', 479, + '*', 628, + '-', 624, + '0', 793, + '<', 596, + '>', 605, + '?', 747, + '@', 927, + '\\', 88, + '_', 929, + '`', 842, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(398); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(868); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); if (lookahead != 0 && - (lookahead < ' ' || '+' < lookahead) && - (lookahead < ';' || '}' < lookahead)) ADVANCE(949); + (lookahead < '&' || '*' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '_' || '}' < lookahead)) ADVANCE(940); 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, + '!', 660, + '"', 775, + '#', 803, + '$', 768, + '&', 477, + '\'', 479, + '(', 641, + '*', 628, + '-', 624, + '0', 793, + '<', 597, + '=', 934, + '>', 605, + '?', 747, + '@', 927, + '\\', 59, + '_', 929, + '`', 842, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(399); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); if (lookahead != 0 && - (lookahead < ' ' || '+' < lookahead) && - (lookahead < ';' || '?' < lookahead)) ADVANCE(949); + (lookahead < '&' || '*' < lookahead) && + (lookahead < ';' || ']' < lookahead)) ADVANCE(940); 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, + '!', 660, + '"', 775, + '#', 803, + '$', 768, + '&', 477, + '\'', 479, + '*', 628, + '-', 624, + '0', 793, + '<', 597, + '=', 934, + '>', 605, + '?', 747, + '@', 927, + '\\', 62, + '_', 929, + '`', 842, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(400); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); if (lookahead != 0 && - (lookahead < ';' || '?' < lookahead)) ADVANCE(949); + (lookahead < '&' || '*' < lookahead) && + (lookahead < ';' || ']' < lookahead)) ADVANCE(940); 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, + '!', 660, + '"', 775, + '#', 803, + '$', 768, + '&', 477, + '\'', 479, + '*', 628, + '-', 624, + '0', 793, + '<', 597, + '>', 605, + '?', 747, + '@', 927, + '\\', 65, + ']', 663, + '_', 929, + '`', 842, + '|', 581, + '[', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(401); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); if (lookahead != 0 && - (lookahead < ' ' || '+' < lookahead) && - (lookahead < '/' || '?' < lookahead)) ADVANCE(949); + (lookahead < '&' || '*' < lookahead) && + lookahead != ';' && + lookahead != '<') ADVANCE(940); END_STATE(); case 402: 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, + '!', 660, + '"', 775, + '#', 803, + '$', 768, + '&', 477, + '\'', 479, + '*', 628, + '-', 624, + '0', 793, + '<', 597, + '>', 605, + '?', 747, + '@', 927, + '\\', 75, + '_', 929, + '`', 842, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(402); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); if (lookahead != 0 && - (lookahead < ' ' || '+' < lookahead) && - (lookahead < ';' || '?' < lookahead)) ADVANCE(949); + (lookahead < '&' || '*' < lookahead) && + lookahead != ';' && + lookahead != '<') ADVANCE(940); END_STATE(); case 403: 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, + '!', 660, + '"', 775, + '#', 803, + '$', 768, + '&', 477, + '\'', 479, + '*', 628, + '-', 624, + '0', 793, + '<', 598, + '>', 605, + '?', 747, + '@', 927, + '\\', 225, + ']', 663, + '_', 929, + '`', 842, + '|', 581, + '[', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(403); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); if (lookahead != 0 && - (lookahead < ' ' || '+' < lookahead) && - (lookahead < ';' || '?' < lookahead)) ADVANCE(949); + (lookahead < '&' || '*' < lookahead) && + lookahead != ';' && + lookahead != '<') ADVANCE(940); END_STATE(); case 404: ADVANCE_MAP( - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 502, - '\'', 485, - '*', 634, - '-', 630, - '0', 801, - '<', 602, - '>', 611, - '?', 755, - '@', 936, - '\\', 87, - '_', 938, - '`', 850, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '!', 660, + '"', 775, + '#', 803, + '$', 768, + '&', 477, + '\'', 479, + '*', 628, + '-', 624, + '0', 793, + '<', 598, + '>', 605, + '?', 747, + '@', 927, + '\\', 229, + '_', 929, + '`', 842, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(404); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && lookahead != ';' && - lookahead != '<' && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + lookahead != '<') ADVANCE(940); END_STATE(); case 405: 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, + '!', 660, + '"', 775, + '#', 803, + '$', 768, + '\'', 479, + ')', 643, + '*', 628, + '-', 624, + '0', 793, + '<', 483, + '>', 484, + '?', 747, + '@', 927, + '\\', 127, + '_', 929, + '`', 842, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(405); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && - (lookahead < ';' || ']' < lookahead)) ADVANCE(949); + lookahead != ';' && + lookahead != '<' && + (lookahead < '_' || '}' < lookahead)) ADVANCE(940); END_STATE(); case 406: 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, + '!', 660, + '"', 775, + '#', 849, + '$', 768, + '&', 496, + '\'', 479, + '(', 642, + ')', 643, + '+', 757, + '-', 755, + '0', 789, + '<', 596, + '>', 605, + '[', 662, + '\\', 297, + '`', 842, + '{', 654, + '|', 578, + '~', 758, + ']', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(406); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(791); if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead) && - (lookahead < ';' || ']' < lookahead)) ADVANCE(949); + lookahead != ';' && + lookahead != '<') ADVANCE(940); END_STATE(); case 407: ADVANCE_MAP( - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 483, - '\'', 485, - '*', 634, - '-', 630, - '0', 801, - '<', 603, - '>', 611, - '?', 755, - '@', 936, - '\\', 65, - ']', 669, - '_', 938, - '`', 850, - '|', 587, - '[', 781, - '{', 781, - '}', 781, + '!', 660, + '"', 775, + '#', 849, + '$', 768, + '&', 496, + '\'', 479, + '(', 642, + ')', 643, + '-', 932, + '0', 789, + ';', 478, + '<', 596, + '>', 605, + '[', 662, + '\\', 296, + '`', 842, + '{', 654, + '|', 579, + ']', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(407); - 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 (('1' <= lookahead && lookahead <= '9')) ADVANCE(791); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 408: ADVANCE_MAP( - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 483, - '\'', 485, - '*', 634, - '-', 630, - '0', 801, - '<', 603, - '>', 611, - '?', 755, - '@', 936, - '\\', 76, - '_', 938, - '`', 850, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '!', 660, + '"', 775, + '#', 849, + '$', 768, + '&', 496, + '\'', 479, + '(', 642, + ')', 487, + '+', 757, + '-', 755, + '0', 789, + '<', 596, + '>', 605, + '[', 662, + '\\', 298, + ']', 663, + '`', 842, + '{', 654, + '}', 773, + '~', 758, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(408); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(791); if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead) && lookahead != ';' && - lookahead != '<') ADVANCE(949); + lookahead != '<' && + (lookahead < '{' || '~' < lookahead)) ADVANCE(940); END_STATE(); case 409: ADVANCE_MAP( - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 483, - '\'', 485, - '*', 634, - '-', 630, - '0', 801, - '<', 604, - '>', 611, - '?', 755, - '@', 936, - '\\', 228, - ']', 669, - '_', 938, - '`', 850, - '|', 587, - '[', 781, - '{', 781, - '}', 781, + '!', 660, + '"', 775, + '#', 849, + '$', 768, + '&', 496, + '\'', 479, + '(', 642, + '-', 932, + '0', 789, + ';', 478, + '<', 596, + '>', 605, + '[', 662, + '\\', 300, + '`', 842, + 'e', 938, + '{', 654, + ']', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(409); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(791); if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead) && - lookahead != ';' && - lookahead != '<') ADVANCE(949); + (lookahead < '&' || ')' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(940); END_STATE(); case 410: ADVANCE_MAP( - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 483, - '\'', 485, - '*', 634, - '-', 630, - '0', 801, - '<', 604, - '>', 611, - '?', 755, - '@', 936, - '\\', 232, - '_', 938, - '`', 850, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '!', 660, + '"', 775, + '#', 849, + '$', 768, + '&', 496, + '\'', 479, + '(', 642, + '-', 932, + '0', 789, + '<', 596, + '>', 605, + '[', 662, + '\\', 302, + ']', 773, + '`', 842, + '{', 654, + '}', 655, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(410); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(791); if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead) && + (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '<') ADVANCE(949); + lookahead != '<' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(940); END_STATE(); case 411: ADVANCE_MAP( - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '\'', 485, - ')', 649, - '*', 634, - '-', 630, - '0', 801, - '<', 489, - '>', 490, - '?', 755, - '@', 936, - '\\', 124, - '_', 938, - '`', 850, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '!', 660, + '"', 775, + '#', 849, + '$', 768, + '&', 496, + '\'', 479, + '(', 641, + '+', 757, + '-', 755, + '0', 789, + '<', 596, + '>', 605, + '[', 662, + '\\', 311, + '`', 842, + '~', 758, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(411); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(791); if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead) && + (lookahead < '&' || ')' < lookahead) && lookahead != ';' && lookahead != '<' && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '{' || '~' < lookahead)) ADVANCE(940); END_STATE(); case 412: ADVANCE_MAP( - '!', 666, - '"', 783, - '#', 857, - '$', 776, - '&', 502, - '\'', 485, - '(', 648, - ')', 649, - '-', 941, - '0', 797, - ';', 484, - '<', 602, - '>', 611, - '[', 668, - '\\', 301, - '`', 850, - '{', 660, - '|', 584, - ']', 781, - '}', 781, + '!', 660, + '"', 775, + '#', 849, + '$', 768, + '\'', 479, + '(', 642, + '+', 757, + '-', 755, + '0', 789, + '<', 483, + '>', 484, + '\\', 338, + '`', 842, + '{', 654, + '~', 758, + '[', 773, + ']', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(412); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); - if (lookahead != 0) ADVANCE(949); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(791); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '{' || '~' < lookahead)) ADVANCE(940); END_STATE(); case 413: ADVANCE_MAP( - '!', 666, - '"', 783, - '#', 857, - '$', 776, - '&', 502, - '\'', 485, - '(', 648, - ')', 493, - '+', 765, - '-', 763, - '0', 797, - '<', 602, - '>', 611, - '[', 668, - '\\', 302, - '`', 850, - '{', 660, - '|', 585, - '~', 766, - ']', 781, - '}', 781, + '!', 660, + '"', 775, + '#', 849, + '$', 768, + '\'', 479, + '(', 641, + '+', 757, + '-', 755, + '0', 789, + '<', 483, + '>', 484, + '\\', 343, + '`', 842, + '~', 758, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(413); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(791); if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '<') ADVANCE(949); + lookahead != '<' && + (lookahead < '{' || '~' < lookahead)) ADVANCE(940); END_STATE(); case 414: ADVANCE_MAP( - '!', 666, - '"', 783, - '#', 857, - '$', 776, - '&', 502, - '\'', 485, - '(', 648, - '+', 765, - '-', 763, - '0', 797, - '<', 602, - '>', 611, - '[', 668, - '\\', 303, - ']', 669, - '`', 850, - '{', 660, - '}', 781, - '~', 766, + '!', 933, + '"', 775, + '#', 849, + '$', 768, + '%', 637, + '&', 589, + '\'', 479, + '(', 641, + '*', 626, + '+', 618, + '-', 621, + '/', 632, + '0', 789, + '<', 595, + '=', 548, + '>', 604, + '?', 747, + '\\', 309, + ']', 663, + '^', 584, + '`', 843, + '|', 580, + '[', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(414); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(791); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '<' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(949); + (lookahead < ' ' || '+' < lookahead) && + (lookahead < ';' || '?' < lookahead)) ADVANCE(940); END_STATE(); case 415: ADVANCE_MAP( - '!', 666, - '"', 783, - '#', 857, - '$', 776, - '&', 502, - '\'', 485, - '(', 648, - '-', 941, - '0', 797, - ';', 484, - '<', 602, - '>', 611, - '[', 668, - '\\', 306, - '`', 850, - 'e', 947, - '{', 660, - ']', 781, - '}', 781, + '!', 933, + '"', 775, + '#', 849, + '$', 768, + '%', 637, + '&', 589, + '\'', 479, + '(', 641, + '*', 626, + '+', 618, + '-', 621, + '/', 632, + '0', 789, + '<', 595, + '=', 548, + '>', 604, + '?', 747, + '\\', 310, + ']', 663, + '^', 584, + '`', 842, + '|', 580, + '[', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(415); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(791); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(949); + (lookahead < ' ' || '+' < lookahead) && + (lookahead < ';' || '?' < lookahead)) ADVANCE(940); END_STATE(); case 416: ADVANCE_MAP( - '!', 666, - '"', 783, - '#', 857, - '$', 776, - '&', 502, - '\'', 485, - '(', 648, - '-', 941, - '0', 797, - '<', 602, - '>', 611, - '[', 668, - '\\', 307, - ']', 781, - '`', 850, - '{', 660, - '}', 661, + '!', 659, + '"', 775, + '#', 803, + '$', 767, + '%', 638, + '&', 588, + ')', 643, + '*', 627, + '+', 619, + '-', 622, + '/', 633, + '<', 603, + '=', 550, + '>', 608, + '?', 746, + '@', 926, + '\\', 73, + '^', 585, + '_', 930, + '|', 582, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(416); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '<' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(949); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); END_STATE(); case 417: ADVANCE_MAP( - '!', 666, - '"', 783, - '#', 857, - '$', 776, - '&', 502, - '\'', 485, - '(', 647, - '+', 765, - '-', 763, - '0', 797, - '<', 602, - '>', 611, - '[', 668, - '\\', 316, - '`', 850, - '~', 766, - ']', 781, - '{', 781, - '}', 781, + '!', 659, + '"', 775, + '#', 803, + '$', 767, + '%', 638, + '&', 588, + '*', 627, + '+', 619, + '-', 622, + '/', 633, + ':', 748, + '<', 603, + '=', 550, + '>', 608, + '?', 746, + '@', 926, + '\\', 78, + '^', 585, + '_', 930, + '|', 582, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(417); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '<' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(949); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); END_STATE(); case 418: ADVANCE_MAP( - '!', 666, - '"', 783, - '#', 857, - '$', 776, - '\'', 485, - '(', 648, - '+', 765, - '-', 763, - '0', 797, - '<', 489, - '>', 490, - '\\', 340, - '`', 850, - '{', 660, - '~', 766, - '[', 781, - ']', 781, - '}', 781, + '!', 659, + '"', 775, + '#', 803, + '$', 767, + '%', 638, + '&', 588, + '*', 627, + '+', 619, + '-', 622, + '/', 633, + '<', 603, + '=', 550, + '>', 608, + '?', 746, + '@', 926, + '\\', 70, + ']', 663, + '^', 585, + '_', 930, + '|', 582, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(418); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '<' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(949); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); END_STATE(); case 419: ADVANCE_MAP( - '!', 666, - '"', 783, - '#', 857, - '$', 776, - '\'', 485, - '(', 647, - '+', 765, - '-', 763, - '0', 797, - '<', 489, - '>', 490, - '\\', 348, - '`', 850, - '~', 766, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '!', 659, + '"', 775, + '#', 803, + '$', 767, + '%', 638, + '&', 588, + '*', 627, + '+', 619, + '-', 622, + '/', 633, + '<', 603, + '=', 550, + '>', 608, + '?', 746, + '@', 926, + '\\', 179, + ']', 497, + '^', 585, + '_', 930, + '|', 582, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(419); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '<' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(949); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); END_STATE(); case 420: 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, + '!', 659, + '"', 775, + '#', 803, + '$', 767, + '%', 638, + '&', 588, + '*', 627, + '+', 619, + '-', 622, + '/', 633, + '<', 603, + '=', 550, + '>', 608, + '?', 746, + '@', 926, + '\\', 80, + '^', 585, + '_', 930, + '|', 582, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(420); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); - if (lookahead != 0 && - (lookahead < ' ' || '+' < lookahead) && - (lookahead < ';' || '?' < lookahead)) ADVANCE(949); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); END_STATE(); case 421: 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, + '!', 494, + '"', 775, + '#', 849, + '$', 772, + '%', 638, + '&', 588, + ')', 643, + '*', 627, + '+', 619, + ',', 544, + '-', 622, + '.', 491, + '/', 633, + ':', 748, + ';', 478, + '<', 603, + '=', 550, + '>', 608, + '?', 746, ); + if (lookahead == '\\') SKIP(334); + if (lookahead == ']') ADVANCE(774); + if (lookahead == '^') ADVANCE(585); + if (lookahead == '`') ADVANCE(842); + if (lookahead == 'e') ADVANCE(502); + if (lookahead == 'i') ADVANCE(501); + if (lookahead == '|') ADVANCE(582); + if (lookahead == '[' || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(773); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(421); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); - if (lookahead != 0 && - (lookahead < ' ' || '+' < lookahead) && - (lookahead < ';' || '?' < lookahead)) ADVANCE(949); + lookahead == ' ') SKIP(422); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(762); END_STATE(); case 422: ADVANCE_MAP( - '!', 665, - '"', 783, - '#', 811, - '$', 775, - '%', 644, - '&', 594, - ')', 649, - '*', 633, - '+', 625, - '-', 628, - '/', 639, - '<', 609, - '=', 556, - '>', 614, - '?', 754, - '@', 935, - '\\', 78, - '^', 591, - '_', 939, - '|', 588, + '!', 494, + '"', 775, + '#', 849, + '$', 772, + '%', 638, + '&', 588, + ')', 643, + '*', 627, + '+', 619, + ',', 544, + '-', 622, + '/', 633, + ':', 748, + ';', 478, + '<', 603, + '=', 550, + '>', 608, + '?', 746, ); + if (lookahead == '\\') SKIP(334); + if (lookahead == ']') ADVANCE(774); + if (lookahead == '^') ADVANCE(585); + if (lookahead == '`') ADVANCE(842); + if (lookahead == 'e') ADVANCE(502); + if (lookahead == 'i') ADVANCE(501); + if (lookahead == '|') ADVANCE(582); + if (lookahead == '[' || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(773); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(422); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); END_STATE(); case 423: ADVANCE_MAP( - '!', 665, - '"', 783, - '#', 811, - '$', 775, - '%', 644, - '&', 594, - '*', 633, - '+', 625, - '-', 628, - '/', 639, - ':', 756, - '<', 609, - '=', 556, - '>', 614, - '?', 754, - '@', 935, - '\\', 72, - '^', 591, - '_', 939, - '|', 588, + '!', 494, + '"', 775, + '#', 849, + '$', 486, + '%', 638, + '&', 588, + '(', 482, + ')', 487, + '*', 627, + '+', 619, + ',', 544, + '-', 622, + '/', 633, + ':', 748, + '<', 603, + '=', 550, + '>', 608, + '?', 746, ); + if (lookahead == '\\') SKIP(336); + if (lookahead == ']') ADVANCE(663); + if (lookahead == '^') ADVANCE(585); + if (lookahead == '`') ADVANCE(842); + if (lookahead == '|') ADVANCE(582); + if (lookahead == '[' || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(773); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(423); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('A' <= lookahead && lookahead <= 'z')) ADVANCE(866); END_STATE(); case 424: ADVANCE_MAP( - '!', 665, - '"', 783, - '#', 811, - '$', 775, - '%', 644, - '&', 594, - '*', 633, - '+', 625, - '-', 628, - '/', 639, - '<', 609, - '=', 556, - '>', 614, - '?', 754, - '@', 935, - '\\', 70, - ']', 669, - '^', 591, - '_', 939, - '|', 588, + '!', 494, + '#', 849, + '%', 638, + '&', 588, + ')', 643, + '*', 627, + '+', 619, + ',', 544, + '-', 623, + '/', 633, + '<', 603, + '=', 549, + '>', 608, ); + if (lookahead == '\\') SKIP(358); + if (lookahead == '^') ADVANCE(585); + if (lookahead == '|') ADVANCE(582); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(424); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); END_STATE(); case 425: ADVANCE_MAP( - '!', 665, - '"', 783, - '#', 811, - '$', 775, - '%', 644, - '&', 594, - '*', 633, - '+', 625, - '-', 628, - '/', 639, - '<', 609, - '=', 556, - '>', 614, - '?', 754, - '@', 935, - '\\', 182, - ']', 503, - '^', 591, - '_', 939, - '|', 588, + '!', 494, + '#', 849, + '%', 638, + '&', 588, + ')', 643, + '*', 627, + '+', 619, + '-', 622, + '/', 633, + ':', 748, + '<', 603, + '=', 550, + '>', 608, + '?', 746, ); + if (lookahead == '\\') SKIP(346); + if (lookahead == ']') ADVANCE(774); + if (lookahead == '^') ADVANCE(585); + if (lookahead == '`') ADVANCE(498); + if (lookahead == '|') ADVANCE(582); + if (lookahead == '[' || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(773); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(425); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); END_STATE(); case 426: ADVANCE_MAP( - '!', 665, - '"', 783, - '#', 811, - '$', 775, - '%', 644, - '&', 594, - '*', 633, - '+', 625, - '-', 628, - '/', 639, - '<', 609, - '=', 556, - '>', 614, - '?', 754, - '@', 935, - '\\', 82, - '^', 591, - '_', 939, - '|', 588, + '!', 494, + '#', 849, + '%', 638, + '&', 588, + ')', 643, + '*', 627, + '+', 619, + '-', 622, + '/', 633, + ':', 748, + '<', 603, + '=', 550, + '>', 608, + '?', 746, ); + if (lookahead == '\\') SKIP(349); + if (lookahead == '^') ADVANCE(585); + if (lookahead == '`') ADVANCE(498); + if (lookahead == '|') ADVANCE(582); + if (('[' <= lookahead && lookahead <= ']') || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(773); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(426); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); END_STATE(); case 427: ADVANCE_MAP( - '!', 500, - '"', 783, - '#', 857, - '$', 780, - '%', 644, - '&', 594, - ')', 649, - '*', 633, - '+', 625, - ',', 550, - '-', 628, - '.', 497, - '/', 639, - ':', 756, - ';', 484, - '<', 609, - '=', 556, - '>', 614, - '?', 754, + '!', 494, + '#', 849, + '%', 638, + '&', 588, + ')', 643, + '*', 627, + '+', 619, + '-', 622, + '/', 633, + '<', 603, + '=', 550, + '>', 608, + '?', 746, + '[', 661, ); - 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 == '[' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(781); + if (lookahead == '\\') SKIP(359); + if (lookahead == '^') ADVANCE(585); + if (lookahead == '|') ADVANCE(582); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(428); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(770); + lookahead == ' ') SKIP(427); END_STATE(); case 428: ADVANCE_MAP( - '!', 500, - '"', 783, - '#', 857, - '$', 780, - '%', 644, - '&', 594, - ')', 649, - '*', 633, - '+', 625, - ',', 550, - '-', 628, - '/', 639, - ':', 756, - ';', 484, - '<', 609, - '=', 556, - '>', 614, - '?', 754, + '!', 494, + '#', 849, + '%', 638, + '&', 588, + ')', 487, + '*', 627, + '+', 619, + ',', 544, + '-', 622, + '/', 633, + ':', 748, + '<', 603, + '=', 550, + '>', 608, + '?', 746, + '[', 661, ); - 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 == '[' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(781); + if (lookahead == '\\') SKIP(354); + if (lookahead == ']') ADVANCE(663); + if (lookahead == '^') ADVANCE(585); + if (lookahead == '`') ADVANCE(498); + if (lookahead == '|') ADVANCE(582); + if (lookahead == '}') ADVANCE(805); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(428); END_STATE(); case 429: ADVANCE_MAP( - '!', 500, - '"', 783, - '#', 857, - '$', 492, - '%', 644, - '&', 594, - '(', 488, - ')', 493, - '*', 633, - '+', 625, - ',', 550, - '-', 628, - '/', 639, - ':', 756, - '<', 609, - '=', 556, - '>', 614, - '?', 754, + '!', 494, + '#', 849, + '%', 638, + '&', 588, + ')', 487, + '*', 627, + '+', 619, + ',', 544, + '-', 623, + '/', 633, + '<', 603, + '=', 549, + '>', 608, ); - if (lookahead == '\\') SKIP(343); - if (lookahead == ']') ADVANCE(669); - if (lookahead == '^') ADVANCE(591); - if (lookahead == '`') ADVANCE(850); - if (lookahead == '|') ADVANCE(588); - if (lookahead == '[' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(781); + if (lookahead == '\\') SKIP(357); + if (lookahead == '^') ADVANCE(585); + if (lookahead == '|') ADVANCE(582); + if (lookahead == '}') ADVANCE(765); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(429); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'z')) ADVANCE(874); + lookahead == ' ') SKIP(430); END_STATE(); case 430: ADVANCE_MAP( - '!', 500, - '#', 857, - '%', 644, - '&', 594, - ')', 649, - '*', 633, - '+', 625, - ',', 550, - '-', 629, - '/', 639, - '<', 609, - '=', 555, - '>', 614, + '!', 494, + '#', 849, + '%', 638, + '&', 588, + ')', 487, + '*', 627, + '+', 619, + ',', 544, + '-', 623, + '/', 633, + '<', 603, + '=', 549, + '>', 608, ); - if (lookahead == '\\') SKIP(364); - if (lookahead == '^') ADVANCE(591); - if (lookahead == '|') ADVANCE(588); + if (lookahead == '\\') SKIP(357); + if (lookahead == '^') ADVANCE(585); + if (lookahead == '|') ADVANCE(582); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(430); END_STATE(); case 431: ADVANCE_MAP( - '!', 500, - '#', 857, - '%', 644, - '&', 594, - ')', 649, - '*', 633, - '+', 625, - '-', 628, - '/', 639, - ':', 756, - '<', 609, - '=', 556, - '>', 614, - '?', 754, + '!', 494, + '#', 849, + '%', 638, + '&', 588, + '*', 627, + '+', 619, + '-', 622, + '/', 633, + '<', 603, + '=', 550, + '>', 608, + '?', 746, ); - if (lookahead == '\\') SKIP(351); - if (lookahead == ']') ADVANCE(782); - if (lookahead == '^') ADVANCE(591); - if (lookahead == '`') ADVANCE(504); - if (lookahead == '|') ADVANCE(588); + if (lookahead == '\\') SKIP(347); + if (lookahead == ']') ADVANCE(663); + if (lookahead == '^') ADVANCE(585); + if (lookahead == '`') ADVANCE(498); + if (lookahead == '|') ADVANCE(582); if (lookahead == '[' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(781); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(773); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(431); END_STATE(); case 432: ADVANCE_MAP( - '!', 500, - '#', 857, - '%', 644, - '&', 594, - ')', 649, - '*', 633, - '+', 625, - '-', 628, - '/', 639, - ':', 756, - '<', 609, - '=', 556, - '>', 614, - '?', 754, + '!', 657, + '"', 775, + '#', 803, + '$', 767, + '&', 477, + '*', 625, + '-', 620, + '<', 600, + '>', 606, + '?', 746, + '@', 926, + '\\', 120, + ']', 663, + '_', 930, + '|', 581, ); - if (lookahead == '\\') SKIP(354); - if (lookahead == '^') ADVANCE(591); - if (lookahead == '`') ADVANCE(504); - if (lookahead == '|') ADVANCE(588); - if (('[' <= lookahead && lookahead <= ']') || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(781); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(432); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); END_STATE(); case 433: ADVANCE_MAP( - '!', 500, - '#', 857, - '%', 644, - '&', 594, - ')', 649, - '*', 633, - '+', 625, - '-', 628, - '/', 639, - '<', 609, - '=', 556, - '>', 614, - '?', 754, - '[', 667, + '!', 657, + '"', 775, + '#', 803, + '$', 767, + '&', 477, + '*', 625, + '-', 620, + '<', 600, + '>', 606, + '?', 746, + '@', 926, + '\\', 122, + '_', 930, + '|', 581, ); - if (lookahead == '\\') SKIP(363); - if (lookahead == '^') ADVANCE(591); - if (lookahead == '|') ADVANCE(588); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(433); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); END_STATE(); case 434: ADVANCE_MAP( - '!', 500, - '#', 857, - '%', 644, - '&', 594, - ')', 493, - '*', 633, - '+', 625, - ',', 550, - '-', 628, - '/', 639, - ':', 756, - '<', 609, - '=', 556, - '>', 614, - '?', 754, - '[', 667, + '!', 657, + '"', 775, + '#', 803, + '$', 767, + '&', 477, + '*', 625, + '-', 620, + '<', 601, + '>', 606, + '?', 746, + '@', 926, + '\\', 194, + ']', 663, + '_', 930, + '|', 581, ); - 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 (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(434); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); END_STATE(); case 435: ADVANCE_MAP( - '!', 500, - '#', 857, - '%', 644, - '&', 594, - ')', 493, - '*', 633, - '+', 625, - ',', 550, - '-', 629, - '/', 639, - '<', 609, - '=', 555, - '>', 614, + '!', 657, + '"', 775, + '#', 803, + '$', 767, + '&', 477, + '*', 625, + '-', 620, + '<', 601, + '>', 606, + '?', 746, + '@', 926, + '\\', 196, + '_', 930, + '|', 581, ); - if (lookahead == '\\') SKIP(362); - if (lookahead == '^') ADVANCE(591); - if (lookahead == '|') ADVANCE(588); - if (lookahead == '}') ADVANCE(773); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(436); + lookahead == ' ') SKIP(435); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); END_STATE(); case 436: ADVANCE_MAP( - '!', 500, - '#', 857, - '%', 644, - '&', 594, - ')', 493, - '*', 633, - '+', 625, - ',', 550, - '-', 629, - '/', 639, - '<', 609, - '=', 555, - '>', 614, + '!', 657, + '"', 775, + '#', 803, + '$', 767, + ')', 643, + '*', 625, + '-', 620, + '?', 746, + '@', 926, + '\\', 142, + '_', 930, + '|', 578, ); - if (lookahead == '\\') SKIP(362); - if (lookahead == '^') ADVANCE(591); - if (lookahead == '|') ADVANCE(588); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(436); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); END_STATE(); case 437: ADVANCE_MAP( - '!', 500, - '#', 857, - '%', 644, - '&', 594, - '*', 633, - '+', 625, - '-', 628, - '/', 639, - '<', 609, - '=', 556, - '>', 614, - '?', 754, + '!', 657, + '"', 775, + '#', 803, + '$', 767, + '*', 625, + '-', 620, + '?', 746, + '@', 926, + '\\', 144, + '_', 930, ); - if (lookahead == '\\') SKIP(353); - if (lookahead == ']') ADVANCE(669); - if (lookahead == '^') ADVANCE(591); - if (lookahead == '`') ADVANCE(504); - if (lookahead == '|') ADVANCE(588); - if (lookahead == '[' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(781); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(437); + if (lookahead == '\n' || + lookahead == '\r') SKIP(437); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') ADVANCE(780); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); + if (lookahead != 0 && + (lookahead < '_' || 'z' < lookahead)) ADVANCE(784); END_STATE(); case 438: ADVANCE_MAP( - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '&', 483, - '*', 631, - '-', 626, - '<', 606, - '>', 612, - '?', 754, - '@', 935, - '\\', 118, - ']', 669, - '_', 939, - '|', 587, + '!', 657, + '"', 775, + '#', 803, + '$', 767, + '*', 625, + '-', 620, + '?', 746, + '@', 926, + '\\', 146, + '_', 930, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(438); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); END_STATE(); case 439: ADVANCE_MAP( - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '&', 483, - '*', 631, - '-', 626, - '<', 606, - '>', 612, - '?', 754, - '@', 935, - '\\', 122, - '_', 939, - '|', 587, + '!', 657, + '"', 775, + '#', 849, + '$', 772, + '&', 477, + '\'', 479, + '(', 641, + '+', 757, + '-', 755, + '0', 795, + '<', 600, + '>', 606, ); + if (lookahead == '\\') SKIP(366); + if (lookahead == ']') ADVANCE(663); + if (lookahead == '`') ADVANCE(842); + if (lookahead == '|') ADVANCE(581); + if (lookahead == '~') ADVANCE(758); + if (lookahead == '[' || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(773); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(439); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(797); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(866); END_STATE(); case 440: ADVANCE_MAP( - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '&', 483, - '*', 631, - '-', 626, - '<', 607, - '>', 612, - '?', 754, - '@', 935, - '\\', 195, - ']', 669, - '_', 939, - '|', 587, + '!', 657, + '#', 803, + '$', 767, + '*', 625, + '-', 620, + '?', 746, + '@', 926, + '\\', 147, + '_', 930, ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(440); + if (lookahead == '\n' || + lookahead == '\r') SKIP(440); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') ADVANCE(781); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); + if (lookahead != 0 && + (lookahead < ' ' || '$' < lookahead) && + (lookahead < '_' || 'z' < lookahead)) ADVANCE(784); END_STATE(); case 441: ADVANCE_MAP( - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '&', 483, - '*', 631, - '-', 626, - '<', 607, - '>', 612, - '?', 754, - '@', 935, - '\\', 199, - '_', 939, - '|', 587, + '!', 657, + '#', 803, + '$', 767, + '*', 625, + '-', 620, + '?', 746, + '@', 926, + '\\', 150, + '_', 930, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(441); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); END_STATE(); case 442: - ADVANCE_MAP( - '!', 663, - '"', 783, - '#', 811, - '$', 775, - ')', 649, - '*', 631, - '-', 626, - '?', 754, - '@', 935, - '\\', 142, - '_', 939, - '|', 584, - ); + if (lookahead == '!') ADVANCE(657); + if (lookahead == '#') ADVANCE(803); + if (lookahead == '$') ADVANCE(771); + if (lookahead == '*') ADVANCE(625); + if (lookahead == '-') ADVANCE(620); + if (lookahead == '?') ADVANCE(746); + if (lookahead == '@') ADVANCE(926); + if (lookahead == '\\') SKIP(373); + if (lookahead == '_') ADVANCE(930); + if (lookahead == '`') ADVANCE(842); + if (lookahead == '}') ADVANCE(805); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(442); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); END_STATE(); case 443: - ADVANCE_MAP( - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '*', 631, - '-', 626, - '?', 754, - '@', 935, - '\\', 144, - '_', 939, - ); - if (lookahead == '\n' || - lookahead == '\r') SKIP(443); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(788); + if (lookahead == '!') ADVANCE(657); + if (lookahead == '#') ADVANCE(803); + if (lookahead == '$') ADVANCE(771); + if (lookahead == '*') ADVANCE(625); + if (lookahead == '-') ADVANCE(620); + if (lookahead == '?') ADVANCE(746); + if (lookahead == '@') ADVANCE(926); + if (lookahead == '\\') SKIP(381); + if (lookahead == '_') ADVANCE(930); + if (lookahead == '`') ADVANCE(842); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(443); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); - if (lookahead != 0 && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(792); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); END_STATE(); case 444: ADVANCE_MAP( - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '*', 631, - '-', 626, - '?', 754, - '@', 935, - '\\', 146, - '_', 939, + '!', 806, + '#', 812, + '$', 771, + '*', 625, + '-', 620, + '=', 813, + '?', 746, + '@', 926, ); + if (lookahead == '\\') SKIP(373); + if (lookahead == '_') ADVANCE(930); + if (lookahead == '`') ADVANCE(842); + if (lookahead == '}') ADVANCE(805); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(444); + lookahead == ' ') SKIP(442); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); END_STATE(); case 445: ADVANCE_MAP( - '!', 663, - '"', 783, - '#', 857, - '$', 780, - '&', 483, - '\'', 485, - '(', 647, - '+', 765, - '-', 763, - '0', 803, - '<', 606, - '>', 612, + '"', 775, + '#', 849, + '$', 768, + '&', 496, + '\'', 479, + '(', 641, + '-', 932, + '0', 789, + '<', 596, + '>', 605, + '[', 662, + '\\', 320, + '`', 842, + ']', 773, + '{', 773, + '}', 773, ); - if (lookahead == '\\') SKIP(372); - if (lookahead == ']') ADVANCE(669); - if (lookahead == '`') ADVANCE(850); - if (lookahead == '|') ADVANCE(587); - if (lookahead == '~') ADVANCE(766); - if (lookahead == '[' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(781); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(445); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(874); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(791); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(940); END_STATE(); case 446: ADVANCE_MAP( - '!', 663, - '#', 811, - '$', 775, - '*', 631, - '-', 626, - '?', 754, - '@', 935, - '\\', 147, - '_', 939, + '"', 775, + '#', 849, + '$', 768, + '&', 496, + '\'', 479, + ')', 643, + '-', 932, + '0', 789, + '<', 596, + '>', 605, + '\\', 330, + '`', 842, + '|', 578, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); - if (lookahead == '\n' || - lookahead == '\r') SKIP(446); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(789); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(446); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(791); if (lookahead != 0 && - (lookahead < ' ' || '$' < lookahead) && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(792); + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<') ADVANCE(940); END_STATE(); case 447: ADVANCE_MAP( - '!', 663, - '#', 811, - '$', 775, - '*', 631, - '-', 626, - '?', 754, - '@', 935, - '\\', 150, - '_', 939, + '"', 775, + '#', 849, + '$', 768, + '&', 496, + '\'', 479, + ')', 643, + '-', 932, + '0', 789, + '<', 596, + '>', 605, + '\\', 362, + '`', 843, + '|', 578, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(447); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(791); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<') ADVANCE(940); 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); + ADVANCE_MAP( + '"', 775, + '#', 849, + '$', 768, + '&', 477, + '\'', 479, + '(', 641, + ')', 643, + '-', 932, + '0', 789, + '<', 598, + '>', 605, + '\\', 328, + '`', 842, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, + ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(448); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(791); + if (lookahead != 0 && + lookahead != ';' && + lookahead != '<') ADVANCE(940); 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); + ADVANCE_MAP( + '"', 775, + '#', 849, + '$', 768, + '&', 477, + '\'', 479, + '(', 641, + '-', 932, + '0', 789, + '<', 597, + '=', 934, + '>', 605, + '\\', 322, + '`', 842, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, + ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(449); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(791); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + (lookahead < ';' || '>' < lookahead)) ADVANCE(940); END_STATE(); case 450: ADVANCE_MAP( - '!', 814, - '#', 820, - '$', 779, - '*', 631, - '-', 626, - '=', 821, - '?', 754, - '@', 935, + '"', 775, + '#', 849, + '$', 768, + '&', 477, + '\'', 479, + '(', 641, + '-', 932, + '0', 789, + '<', 597, + '=', 934, + '>', 605, + '\\', 344, + '`', 843, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); - if (lookahead == '\\') SKIP(379); - if (lookahead == '_') ADVANCE(939); - if (lookahead == '`') ADVANCE(850); - if (lookahead == '}') ADVANCE(813); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(448); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + lookahead == ' ') SKIP(450); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(791); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + (lookahead < ';' || '>' < lookahead)) ADVANCE(940); END_STATE(); case 451: ADVANCE_MAP( - '"', 783, - '#', 857, - '$', 776, - '&', 502, - '\'', 485, - '(', 647, - '-', 941, - '0', 797, - '<', 602, - '>', 611, - '[', 668, - '\\', 325, - '`', 850, - ']', 781, - '{', 781, - '}', 781, + '"', 775, + '#', 849, + '$', 768, + '&', 477, + '\'', 479, + ')', 643, + '-', 932, + '0', 789, + '<', 597, + '>', 605, + '\\', 351, + '`', 843, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(451); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(791); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '<' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(949); + lookahead != '<') ADVANCE(940); END_STATE(); case 452: ADVANCE_MAP( - '"', 783, - '#', 857, - '$', 776, - '&', 502, - '\'', 485, - ')', 649, - '-', 941, - '0', 797, - '<', 602, - '>', 611, - '\\', 335, - '`', 850, - '|', 584, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '"', 775, + '#', 849, + '$', 768, + '&', 477, + '\'', 479, + '-', 932, + '0', 789, + '<', 597, + '>', 605, + '\\', 331, + '`', 842, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(452); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(791); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '<') ADVANCE(949); + lookahead != '<') ADVANCE(940); END_STATE(); case 453: ADVANCE_MAP( - '"', 783, - '#', 857, - '$', 776, - '&', 502, - '\'', 485, - ')', 649, - '-', 941, - '0', 797, - '<', 602, - '>', 611, - '\\', 367, - '`', 851, - '|', 584, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '"', 775, + '#', 849, + '$', 768, + '&', 477, + '\'', 479, + '-', 932, + '0', 789, + '<', 597, + '>', 605, + '\\', 348, + ']', 663, + '`', 843, + '|', 581, + '[', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(453); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(791); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '<') ADVANCE(949); + lookahead != '<') ADVANCE(940); END_STATE(); case 454: ADVANCE_MAP( - '"', 783, - '#', 857, - '$', 776, - '&', 483, - '\'', 485, - '(', 647, - ')', 649, - '-', 941, - '0', 797, - '<', 603, - '>', 611, - '\\', 333, - '`', 850, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '"', 775, + '#', 849, + '$', 768, + '&', 477, + '\'', 479, + '-', 932, + '0', 789, + '<', 597, + '>', 605, + '\\', 390, + ']', 663, + '`', 842, + '|', 581, + '[', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(454); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(791); if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '<') ADVANCE(949); + lookahead != '<') ADVANCE(940); END_STATE(); case 455: ADVANCE_MAP( - '"', 783, - '#', 857, - '$', 776, - '&', 483, - '\'', 485, - '(', 647, - '-', 941, - '0', 797, - '<', 603, - '=', 943, - '>', 611, - '\\', 327, - '`', 850, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '"', 775, + '#', 849, + '$', 768, + '&', 477, + '\'', 479, + '-', 932, + '0', 789, + '<', 598, + '>', 605, + '\\', 325, + ']', 663, + '`', 842, + '|', 581, + '[', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(455); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(791); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && - (lookahead < ';' || '>' < lookahead)) ADVANCE(949); + lookahead != ';' && + lookahead != '<') ADVANCE(940); END_STATE(); case 456: ADVANCE_MAP( - '"', 783, - '#', 857, - '$', 776, - '&', 483, - '\'', 485, - '(', 647, - '-', 941, - '0', 797, - '<', 603, - '=', 943, - '>', 611, - '\\', 350, - '`', 851, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '"', 775, + '#', 849, + '$', 768, + '&', 477, + '\'', 479, + '-', 932, + '0', 789, + '<', 598, + '>', 605, + '\\', 353, + ']', 663, + '`', 843, + '|', 581, + '[', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(456); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(791); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && - (lookahead < ';' || '>' < lookahead)) ADVANCE(949); + lookahead != ';' && + lookahead != '<') ADVANCE(940); END_STATE(); case 457: ADVANCE_MAP( - '"', 783, - '#', 857, - '$', 776, - '&', 483, - '\'', 485, - ')', 649, - '-', 941, - '0', 797, - '<', 603, - '>', 611, - '\\', 357, - '`', 851, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '"', 775, + '#', 849, + '$', 768, + '&', 477, + '\'', 479, + '-', 932, + '0', 789, + '<', 598, + '>', 605, + '\\', 355, + '`', 843, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(457); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(791); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '<') ADVANCE(949); + lookahead != '<') ADVANCE(940); END_STATE(); case 458: ADVANCE_MAP( - '"', 783, - '#', 857, - '$', 776, - '&', 483, - '\'', 485, - '-', 941, - '0', 797, - '<', 603, - '>', 611, - '\\', 331, - ']', 669, - '`', 850, - '|', 587, - '[', 781, - '{', 781, - '}', 781, + '"', 775, + '#', 849, + '$', 768, + '&', 477, + '\'', 479, + '-', 932, + '0', 790, + '<', 598, + '>', 605, + '\\', 324, + '`', 842, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(458); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(792); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(855); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '<') ADVANCE(949); + lookahead != '<') ADVANCE(940); END_STATE(); case 459: ADVANCE_MAP( - '"', 783, - '#', 857, - '$', 776, - '&', 483, - '\'', 485, - '-', 941, - '0', 797, - '<', 603, - '>', 611, + '"', 775, + '#', 849, + '$', 768, + '&', 477, + '\'', 479, + '-', 932, + '0', 790, + '<', 598, + '>', 605, '\\', 352, - ']', 669, - '`', 851, - '|', 587, - '[', 781, - '{', 781, - '}', 781, + '`', 843, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(459); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(792); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(855); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '<') ADVANCE(949); + lookahead != '<') ADVANCE(940); END_STATE(); case 460: ADVANCE_MAP( - '"', 783, - '#', 857, - '$', 776, - '&', 483, - '\'', 485, - '-', 941, - '0', 797, - '<', 604, - '>', 611, - '\\', 338, - '`', 850, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '"', 775, + '#', 849, + '$', 768, + '\'', 479, + '(', 641, + '-', 932, + '0', 789, + '<', 483, + '>', 484, + '\\', 360, + '`', 842, + 'e', 938, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(460); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(791); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '<') ADVANCE(949); + lookahead != '<' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(940); END_STATE(); case 461: ADVANCE_MAP( - '"', 783, - '#', 857, - '$', 776, - '&', 483, - '\'', 485, - '-', 941, - '0', 797, - '<', 604, - '>', 611, - '\\', 358, - ']', 669, - '`', 851, - '|', 587, - '[', 781, - '{', 781, - '}', 781, + '"', 775, + '#', 849, + '$', 768, + '\'', 479, + '(', 641, + '-', 932, + '0', 789, + '<', 483, + '>', 484, + '\\', 361, + '`', 842, + '}', 805, + '[', 773, + ']', 773, + '{', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(461); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(791); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '<') ADVANCE(949); + lookahead != '<' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(940); END_STATE(); case 462: ADVANCE_MAP( - '"', 783, - '#', 857, - '$', 776, - '&', 483, - '\'', 485, - '-', 941, - '0', 797, - '<', 604, - '>', 611, - '\\', 360, - '`', 851, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '"', 775, + '#', 849, + '$', 772, + '&', 477, + '(', 641, + ')', 487, + '+', 489, + '-', 490, + '0', 796, + '<', 601, + '=', 547, + '>', 606, ); + if (lookahead == '\\') SKIP(371); + if (lookahead == ']') ADVANCE(663); + if (lookahead == '`') ADVANCE(842); + if (lookahead == '|') ADVANCE(581); + if (lookahead == '[' || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(773); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(462); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '<') ADVANCE(949); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(798); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(644); END_STATE(); case 463: ADVANCE_MAP( - '"', 783, - '#', 857, - '$', 776, - '&', 483, - '\'', 485, - '-', 941, - '0', 797, - '<', 604, - '>', 611, - '\\', 396, - ']', 669, - '`', 850, - '|', 587, - '[', 781, - '{', 781, - '}', 781, + '"', 775, + '#', 849, + '$', 769, + '\'', 479, + '(', 641, + ')', 643, + '<', 483, + '>', 484, + '\\', 375, + '`', 842, + '|', 578, + '}', 805, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(463); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '<') ADVANCE(949); + lookahead != '<' && + (lookahead < '[' || ']' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(940); END_STATE(); case 464: ADVANCE_MAP( - '"', 783, - '#', 857, - '$', 776, - '&', 483, - '\'', 485, - '-', 941, - '0', 798, - '<', 604, - '>', 611, - '\\', 329, - '`', 850, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '"', 775, + '#', 849, + '$', 485, + '%', 634, + '*', 625, + '+', 617, + '-', 620, + '/', 629, + ':', 748, ); + if (lookahead == '\\') SKIP(384); + if (lookahead == '`') ADVANCE(842); + if (lookahead == '}') ADVANCE(805); + if (('[' <= lookahead && lookahead <= ']') || + lookahead == '{') ADVANCE(773); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(464); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(800); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(863); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '<') ADVANCE(949); END_STATE(); case 465: - ADVANCE_MAP( - '"', 783, - '#', 857, - '$', 776, - '&', 483, - '\'', 485, - '-', 941, - '0', 798, - '<', 604, - '>', 611, - '\\', 356, - '`', 851, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, - ); + if (lookahead == '"') ADVANCE(775); + if (lookahead == '#') ADVANCE(849); + if (lookahead == '\'') ADVANCE(479); + if (lookahead == ')') ADVANCE(643); + if (lookahead == '\\') SKIP(385); + if (lookahead == '}') ADVANCE(805); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(465); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(800); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(863); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '<') ADVANCE(949); + lookahead == ' ') ADVANCE(829); END_STATE(); case 466: ADVANCE_MAP( - '"', 783, - '#', 857, - '$', 776, - '\'', 485, - '(', 647, - '-', 941, - '0', 797, - '<', 489, - '>', 490, - '\\', 366, - '`', 850, - 'e', 947, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '"', 775, + '#', 850, + '$', 768, + '\'', 479, + '(', 641, + '-', 932, + '0', 789, + '<', 483, + '>', 484, + '\\', 365, + '`', 842, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(466); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(791); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && lookahead != '<' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(949); + (lookahead < '{' || '}' < lookahead)) ADVANCE(940); END_STATE(); case 467: ADVANCE_MAP( - '"', 783, - '#', 857, - '$', 776, - '\'', 485, - '(', 647, - '-', 941, - '0', 797, - '<', 489, - '>', 490, - '\\', 370, - '`', 850, - '}', 813, - '[', 781, - ']', 781, - '{', 781, + '"', 775, + '#', 850, + '$', 768, + '\'', 479, + '-', 932, + '0', 789, + '<', 483, + '>', 484, + '\\', 367, + ']', 663, + '`', 842, + '[', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(467); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(791); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && lookahead != '<' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(949); + (lookahead < '{' || '}' < lookahead)) ADVANCE(940); END_STATE(); case 468: - ADVANCE_MAP( - '"', 783, - '#', 857, - '$', 780, - '&', 483, - '(', 647, - ')', 493, - '+', 495, - '-', 496, - '0', 804, - '<', 607, - '=', 553, - '>', 612, - ); - if (lookahead == '\\') SKIP(377); - if (lookahead == ']') ADVANCE(669); - if (lookahead == '`') ADVANCE(850); - if (lookahead == '|') ADVANCE(587); - if (lookahead == '[' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(781); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(468); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(806); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(650); + if (lookahead == '"') ADVANCE(775); + if (lookahead == '#') ADVANCE(783); + if (lookahead == '$') ADVANCE(770); + if (lookahead == '\\') ADVANCE(294); + if (lookahead == '`') ADVANCE(842); + if (lookahead == '\n' || + lookahead == '\r') SKIP(468); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') ADVANCE(782); + if (lookahead != 0) ADVANCE(784); END_STATE(); case 469: ADVANCE_MAP( - '"', 783, - '#', 857, - '$', 777, - '\'', 485, - '(', 647, - ')', 649, - '<', 489, - '>', 490, - '\\', 383, - '`', 850, - '|', 584, - '}', 813, + '#', 803, + '%', 636, + '*', 810, + '+', 820, + ',', 546, + '-', 817, + '/', 631, + ':', 750, + '=', 813, + '?', 823, + '@', 808, + '[', 661, ); + if (lookahead == '\\') SKIP(364); + if (lookahead == '^') ADVANCE(586); + if (lookahead == '}') ADVANCE(805); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(469); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '<' && - (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(949); + lookahead == ' ') SKIP(470); END_STATE(); case 470: - ADVANCE_MAP( - '"', 783, - '#', 857, - '$', 491, - '%', 640, - '*', 631, - '+', 623, - '-', 626, - '/', 635, - ':', 756, - ); - if (lookahead == '\\') SKIP(390); - if (lookahead == '`') ADVANCE(850); - if (lookahead == '}') ADVANCE(813); - if (('[' <= lookahead && lookahead <= ']') || - lookahead == '{') ADVANCE(781); + if (lookahead == '#') ADVANCE(803); + if (lookahead == '%') ADVANCE(636); + if (lookahead == ',') ADVANCE(546); + if (lookahead == '/') ADVANCE(631); + if (lookahead == ':') ADVANCE(748); + if (lookahead == '[') ADVANCE(661); + if (lookahead == '\\') SKIP(364); + if (lookahead == '^') ADVANCE(586); + if (lookahead == '}') ADVANCE(805); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(470); 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); + if (lookahead == '#') ADVANCE(849); + if (lookahead == '$') ADVANCE(503); + if (lookahead == '&') ADVANCE(477); + if (lookahead == '-') ADVANCE(492); + if (lookahead == '0') ADVANCE(795); + if (lookahead == '<') ADVANCE(601); + if (lookahead == '>') ADVANCE(606); + if (lookahead == '\\') SKIP(376); + if (lookahead == ']') ADVANCE(663); + if (lookahead == '`') ADVANCE(498); + if (lookahead == '|') ADVANCE(581); + if (lookahead == '[' || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(773); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(837); + lookahead == ' ') SKIP(471); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(797); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(866); END_STATE(); case 472: ADVANCE_MAP( - '"', 783, - '#', 858, - '$', 776, - '\'', 485, - '(', 647, - '-', 941, - '0', 797, - '<', 489, - '>', 490, - '\\', 371, - '`', 850, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '#', 849, + '%', 634, + '&', 477, + '*', 625, + '+', 617, + '-', 620, + '/', 629, + '<', 600, + '>', 606, ); + if (lookahead == '\\') SKIP(377); + if (lookahead == '`') ADVANCE(498); + if (lookahead == '|') ADVANCE(581); + if (('[' <= lookahead && lookahead <= ']') || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(773); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(472); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '<' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(949); END_STATE(); case 473: ADVANCE_MAP( - '"', 783, - '#', 858, - '$', 776, - '\'', 485, - '-', 941, - '0', 797, - '<', 489, - '>', 490, - '\\', 373, - ']', 669, - '`', 850, - '[', 781, - '{', 781, - '}', 781, + '#', 849, + '&', 496, + '(', 642, + ';', 541, + '<', 599, + '>', 606, + '[', 662, + '\\', 382, + '{', 654, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(473); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); if (lookahead != 0 && + (lookahead < '"' || '$' < lookahead) && (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '<' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(949); + (lookahead < '[' || ']' < lookahead) && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(940); END_STATE(); case 474: - if (lookahead == '"') ADVANCE(783); - if (lookahead == '#') ADVANCE(791); - if (lookahead == '$') ADVANCE(778); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == '`') ADVANCE(850); - if (lookahead == '\n' || - lookahead == '\r') SKIP(474); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(790); - if (lookahead != 0) ADVANCE(792); - END_STATE(); - case 475: ADVANCE_MAP( - '#', 811, - '%', 642, - '*', 818, - '+', 828, - ',', 552, - '-', 825, - '/', 637, - ':', 758, - '=', 821, - '?', 831, - '@', 816, - '[', 667, + '#', 849, + '&', 477, + '<', 600, + '>', 606, + '\\', 374, + ']', 663, + '`', 498, + '|', 581, + '[', 773, + '{', 773, + '}', 773, ); - if (lookahead == '\\') SKIP(369); - if (lookahead == '^') ADVANCE(592); - if (lookahead == '}') ADVANCE(813); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(476); + lookahead == ' ') SKIP(474); + if (lookahead != 0 && + (lookahead < '"' || '$' < lookahead) && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<') ADVANCE(940); + END_STATE(); + case 475: + if (lookahead == '#') ADVANCE(849); + if (lookahead == '&') ADVANCE(477); + if (lookahead == '<') ADVANCE(601); + if (lookahead == '>') ADVANCE(606); + if (lookahead == '\\') SKIP(378); + if (lookahead == '`') ADVANCE(498); + if (lookahead == '|') ADVANCE(581); + if (('[' <= lookahead && lookahead <= ']') || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(773); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(475); 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); + if (lookahead == '#') ADVANCE(849); + if (lookahead == '+') ADVANCE(495); + if (lookahead == '/') ADVANCE(629); + if (lookahead == '=') ADVANCE(547); + if (lookahead == '[') ADVANCE(661); + if (lookahead == '\\') SKIP(386); + if (lookahead == '`') ADVANCE(498); + if (lookahead == '}') ADVANCE(805); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(476); 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); - if (('[' <= lookahead && lookahead <= ']') || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(781); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(477); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(874); + if (lookahead == '&') ADVANCE(576); + if (lookahead == '>') ADVANCE(668); END_STATE(); case 478: - ADVANCE_MAP( - '#', 857, - '%', 640, - '&', 483, - '*', 631, - '+', 623, - '-', 626, - '/', 635, - '<', 606, - '>', 612, - ); - if (lookahead == '\\') SKIP(382); - if (lookahead == '`') ADVANCE(504); - if (lookahead == '|') ADVANCE(587); - if (('[' <= lookahead && lookahead <= ']') || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(781); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(478); + if (lookahead == '&') ADVANCE(652); + if (lookahead == ';') ADVANCE(651); END_STATE(); case 479: - ADVANCE_MAP( - '#', 857, - '&', 502, - '(', 648, - ';', 547, - '<', 605, - '>', 612, - '[', 668, - '\\', 388, - '{', 660, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(479); - if (lookahead != 0 && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '&' || ')' < lookahead) && - (lookahead < '[' || ']' < lookahead) && - lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(949); + if (lookahead == '\'') ADVANCE(786); + if (lookahead != 0) ADVANCE(479); END_STATE(); case 480: - ADVANCE_MAP( - '#', 857, - '&', 483, - '<', 606, - '>', 612, - '\\', 380, - ']', 669, - '`', 504, - '|', 587, - '[', 781, - '{', 781, - '}', 781, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(480); - if (lookahead != 0 && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '<') ADVANCE(949); + if (lookahead == '\'') ADVANCE(787); + if (lookahead == '\\') ADVANCE(481); + if (lookahead != 0) ADVANCE(480); END_STATE(); case 481: - if (lookahead == '#') ADVANCE(857); - if (lookahead == '&') ADVANCE(483); - if (lookahead == '<') ADVANCE(607); - if (lookahead == '>') ADVANCE(612); - if (lookahead == '\\') SKIP(384); - if (lookahead == ']') ADVANCE(669); - if (lookahead == '`') ADVANCE(504); - if (lookahead == '|') ADVANCE(587); - if (lookahead == '[' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(781); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(481); + if (lookahead == '\'') ADVANCE(788); + if (lookahead == '\\') ADVANCE(481); + if (lookahead != 0) ADVANCE(480); 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); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(482); + if (lookahead == '(') ADVANCE(539); END_STATE(); case 483: - if (lookahead == '&') ADVANCE(582); - if (lookahead == '>') ADVANCE(674); + if (lookahead == '(') ADVANCE(845); END_STATE(); case 484: - if (lookahead == '&') ADVANCE(658); - if (lookahead == ';') ADVANCE(657); + if (lookahead == '(') ADVANCE(846); END_STATE(); case 485: - if (lookahead == '\'') ADVANCE(794); - if (lookahead != 0) ADVANCE(485); + if (lookahead == '(') ADVANCE(840); + if (lookahead == '`') ADVANCE(844); END_STATE(); case 486: - if (lookahead == '\'') ADVANCE(795); - if (lookahead == '\\') ADVANCE(487); - if (lookahead != 0) ADVANCE(486); + if (lookahead == '(') ADVANCE(840); + if (lookahead == '`') ADVANCE(844); + if (lookahead == '{') ADVANCE(804); END_STATE(); case 487: - if (lookahead == '\'') ADVANCE(796); - if (lookahead == '\\') ADVANCE(487); - if (lookahead != 0) ADVANCE(486); + if (lookahead == ')') ADVANCE(540); END_STATE(); case 488: - if (lookahead == '(') ADVANCE(545); + if (lookahead == '+') ADVANCE(552); END_STATE(); case 489: - if (lookahead == '(') ADVANCE(853); + if (lookahead == '+') ADVANCE(552); + if (lookahead == '=') ADVANCE(556); END_STATE(); case 490: - if (lookahead == '(') ADVANCE(854); + if (lookahead == '-') ADVANCE(554); + if (lookahead == '0') ADVANCE(796); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(798); END_STATE(); case 491: - if (lookahead == '(') ADVANCE(848); - if (lookahead == '`') ADVANCE(852); + if (lookahead == '.') ADVANCE(763); END_STATE(); case 492: - if (lookahead == '(') ADVANCE(848); - if (lookahead == '`') ADVANCE(852); - if (lookahead == '{') ADVANCE(812); + if (lookahead == '0') ADVANCE(796); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(798); END_STATE(); case 493: - if (lookahead == ')') ADVANCE(546); + if (lookahead == '<') ADVANCE(745); END_STATE(); case 494: - if (lookahead == '+') ADVANCE(558); + if (lookahead == '=') ADVANCE(593); END_STATE(); case 495: - if (lookahead == '+') ADVANCE(558); - if (lookahead == '=') ADVANCE(562); + if (lookahead == '=') ADVANCE(556); END_STATE(); case 496: - if (lookahead == '-') ADVANCE(560); - if (lookahead == '0') ADVANCE(804); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(806); + if (lookahead == '>') ADVANCE(668); END_STATE(); case 497: - if (lookahead == '.') ADVANCE(771); + if (lookahead == ']') ADVANCE(665); END_STATE(); case 498: - if (lookahead == '0') ADVANCE(804); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(806); + if (lookahead == '`') ADVANCE(766); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(498); END_STATE(); case 499: - if (lookahead == '<') ADVANCE(753); + if (lookahead == 'a') ADVANCE(500); END_STATE(); case 500: - if (lookahead == '=') ADVANCE(599); + if (lookahead == 'c') ADVANCE(645); END_STATE(); case 501: - if (lookahead == '=') ADVANCE(562); + if (lookahead == 'n') ADVANCE(536); END_STATE(); case 502: - if (lookahead == '>') ADVANCE(674); + if (lookahead == 's') ADVANCE(499); END_STATE(); case 503: - if (lookahead == ']') ADVANCE(671); + if (lookahead == '{') ADVANCE(804); END_STATE(); case 504: - if (lookahead == '`') ADVANCE(774); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(504); + if (lookahead == '|') ADVANCE(574); END_STATE(); case 505: - if (lookahead == 'a') ADVANCE(506); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(798); END_STATE(); case 506: - if (lookahead == 'c') ADVANCE(651); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(940); END_STATE(); case 507: - if (lookahead == 'n') ADVANCE(542); + if (eof) ADVANCE(535); + if (lookahead == '\n') ADVANCE(678); + if (lookahead == '#') ADVANCE(849); + if (lookahead == '&') ADVANCE(590); + if (lookahead == ')') ADVANCE(643); + if (lookahead == ';') ADVANCE(543); + if (lookahead == '<') ADVANCE(600); + if (lookahead == '>') ADVANCE(606); + if (lookahead == '\\') SKIP(529); + if (lookahead == '`') ADVANCE(843); + if (lookahead == '|') ADVANCE(581); + if (('[' <= lookahead && lookahead <= ']') || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(773); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(507); END_STATE(); case 508: - if (lookahead == 's') ADVANCE(505); + if (eof) ADVANCE(535); + if (lookahead == '\n') ADVANCE(678); + if (lookahead == '#') ADVANCE(849); + if (lookahead == '&') ADVANCE(590); + if (lookahead == ')') ADVANCE(643); + if (lookahead == ';') ADVANCE(543); + if (lookahead == '<') ADVANCE(600); + if (lookahead == '>') ADVANCE(606); + if (lookahead == '\\') SKIP(531); + if (lookahead == '`') ADVANCE(842); + if (lookahead == '|') ADVANCE(581); + if (('[' <= lookahead && lookahead <= ']') || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(773); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(508); END_STATE(); case 509: - if (lookahead == '{') ADVANCE(812); + if (eof) ADVANCE(535); + if (lookahead == '\n') ADVANCE(678); + if (lookahead == '#') ADVANCE(849); + if (lookahead == '&') ADVANCE(590); + if (lookahead == ')') ADVANCE(643); + if (lookahead == ';') ADVANCE(543); + if (lookahead == '<') ADVANCE(601); + if (lookahead == '>') ADVANCE(606); + if (lookahead == '\\') SKIP(530); + if (lookahead == '`') ADVANCE(843); + if (lookahead == '|') ADVANCE(581); + if (('[' <= lookahead && lookahead <= ']') || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(773); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(509); END_STATE(); case 510: - if (lookahead == '|') ADVANCE(580); + if (eof) ADVANCE(535); + if (lookahead == '\n') ADVANCE(678); + if (lookahead == '#') ADVANCE(849); + if (lookahead == '&') ADVANCE(590); + if (lookahead == ')') ADVANCE(643); + if (lookahead == ';') ADVANCE(543); + if (lookahead == '<') ADVANCE(601); + if (lookahead == '>') ADVANCE(606); + if (lookahead == '\\') SKIP(532); + if (lookahead == '`') ADVANCE(842); + if (lookahead == '|') ADVANCE(581); + if (('[' <= lookahead && lookahead <= ']') || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(773); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(510); END_STATE(); case 511: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(806); + if (eof) ADVANCE(535); + if (lookahead == '\n') SKIP(507); END_STATE(); case 512: - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(949); + if (eof) ADVANCE(535); + if (lookahead == '\n') SKIP(509); 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); - if (('[' <= lookahead && lookahead <= ']') || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(781); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(513); + if (eof) ADVANCE(535); + if (lookahead == '\n') SKIP(508); 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); - if (('[' <= lookahead && lookahead <= ']') || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(781); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(514); + if (eof) ADVANCE(535); + if (lookahead == '\n') SKIP(510); 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); - if (('[' <= lookahead && lookahead <= ']') || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(781); + if (eof) ADVANCE(535); + ADVANCE_MAP( + '\n', 689, + '!', 657, + '"', 775, + '#', 803, + '$', 767, + '&', 590, + '*', 625, + '-', 620, + ';', 543, + '<', 600, + '>', 606, + '?', 746, + '@', 926, + '\\', 185, + '_', 930, + '|', 581, + ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(515); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); 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); - if (('[' <= lookahead && lookahead <= ']') || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(781); + if (eof) ADVANCE(535); + ADVANCE_MAP( + '\n', 691, + '"', 775, + '#', 849, + '$', 768, + '&', 590, + '\'', 479, + '(', 641, + ')', 643, + '-', 932, + '0', 789, + ';', 543, + '<', 597, + '=', 934, + '>', 605, + '\\', 314, + '`', 842, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, + ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(516); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(791); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 517: - if (eof) ADVANCE(541); - if (lookahead == '\n') SKIP(513); + if (eof) ADVANCE(535); + ADVANCE_MAP( + '\n', 693, + '!', 660, + '"', 775, + '#', 803, + '$', 768, + '&', 590, + '\'', 479, + '(', 641, + '*', 628, + '-', 624, + '0', 793, + ';', 543, + '<', 597, + '=', 934, + '>', 605, + '?', 747, + '@', 927, + '\\', 165, + '_', 929, + '`', 842, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(517); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead)) ADVANCE(940); END_STATE(); case 518: - if (eof) ADVANCE(541); - if (lookahead == '\n') SKIP(515); + if (eof) ADVANCE(535); + ADVANCE_MAP( + '\n', 700, + '"', 775, + '#', 849, + '$', 768, + '&', 590, + '\'', 479, + ')', 643, + '-', 932, + '0', 790, + ';', 543, + '<', 598, + '>', 605, + '\\', 317, + '`', 842, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(518); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(792); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(855); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(940); END_STATE(); case 519: - if (eof) ADVANCE(541); - if (lookahead == '\n') SKIP(514); + if (eof) ADVANCE(535); + ADVANCE_MAP( + '\n', 702, + '!', 660, + '"', 775, + '#', 803, + '$', 768, + '&', 590, + '\'', 479, + '*', 628, + '-', 624, + '0', 793, + ';', 543, + '<', 597, + '=', 934, + '>', 605, + '?', 747, + '@', 927, + '\\', 168, + '_', 929, + '`', 842, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(519); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead)) ADVANCE(940); END_STATE(); case 520: - if (eof) ADVANCE(541); - if (lookahead == '\n') SKIP(516); + if (eof) ADVANCE(535); + ADVANCE_MAP( + '\n', 707, + '!', 657, + '"', 775, + '#', 803, + '$', 767, + '&', 590, + '*', 625, + '-', 620, + ';', 543, + '<', 601, + '>', 606, + '?', 746, + '@', 926, + '\\', 212, + '_', 930, + '|', 581, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(520); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); END_STATE(); case 521: - if (eof) ADVANCE(541); + if (eof) ADVANCE(535); 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, + '\n', 712, + '"', 775, + '#', 849, + '$', 768, + '&', 590, + '\'', 479, + ')', 643, + '-', 932, + '0', 789, + ';', 543, + '<', 598, + '>', 605, + '\\', 321, + '`', 842, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(521); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); - if (lookahead != 0) ADVANCE(949); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(791); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(940); END_STATE(); case 522: - if (eof) ADVANCE(541); + if (eof) ADVANCE(535); 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', 714, + '!', 660, + '"', 775, + '#', 803, + '$', 768, + '&', 590, + '\'', 479, + '*', 628, + '-', 624, + '0', 793, + ';', 543, + '<', 597, + '>', 605, + '?', 747, + '@', 927, + '\\', 174, + '_', 929, + '`', 842, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(522); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead)) ADVANCE(949); + (lookahead < '&' || '*' < lookahead)) ADVANCE(940); END_STATE(); case 523: - if (eof) ADVANCE(541); + if (eof) ADVANCE(535); ADVANCE_MAP( - '\n', 701, - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '&', 596, - '*', 631, - '-', 626, - ';', 549, - '<', 606, - '>', 612, - '?', 754, - '@', 935, - '\\', 211, - '_', 939, - '|', 587, + '\n', 718, + '"', 775, + '#', 849, + '$', 768, + '&', 590, + '\'', 479, + ')', 643, + '-', 932, + '0', 789, + ';', 543, + '<', 597, + '>', 605, + '\\', 389, + '`', 842, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(523); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(791); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(940); END_STATE(); case 524: - if (eof) ADVANCE(541); + if (eof) ADVANCE(535); 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', 724, + '!', 660, + '"', 775, + '#', 803, + '$', 768, + '&', 590, + '\'', 479, + '*', 628, + '-', 624, + '0', 793, + ';', 543, + '<', 598, + '>', 605, + '?', 747, + '@', 927, + '\\', 204, + '_', 929, + '`', 842, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(524); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead)) ADVANCE(949); + (lookahead < '&' || '*' < lookahead)) ADVANCE(940); END_STATE(); case 525: - if (eof) ADVANCE(541); + if (eof) ADVANCE(535); ADVANCE_MAP( - '\n', 706, - '"', 783, - '#', 857, - '$', 776, - '&', 596, - '\'', 485, - ')', 649, - '-', 941, - '0', 798, - ';', 549, - '<', 604, - '>', 611, - '\\', 322, - '`', 850, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '\n', 727, + '"', 775, + '#', 849, + '$', 768, + '&', 590, + '\'', 479, + '(', 641, + ')', 643, + '-', 932, + '0', 789, + ';', 543, + '<', 597, + '=', 934, + '>', 605, + '\\', 329, + '`', 843, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(525); - 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 (('1' <= lookahead && lookahead <= '9')) ADVANCE(791); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 526: - if (eof) ADVANCE(541); + if (eof) ADVANCE(535); ADVANCE_MAP( - '\n', 710, - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '&', 596, - '*', 631, - '-', 626, - ';', 549, - '<', 607, - '>', 612, - '?', 754, - '@', 935, - '\\', 215, - '_', 939, - '|', 587, + '\n', 737, + '"', 775, + '#', 849, + '$', 768, + '&', 590, + '\'', 479, + ')', 643, + '-', 932, + '0', 789, + ';', 543, + '<', 597, + '>', 605, + '\\', 339, + '`', 843, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(526); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(791); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(940); END_STATE(); case 527: - if (eof) ADVANCE(541); + if (eof) ADVANCE(535); ADVANCE_MAP( - '\n', 715, - '"', 783, - '#', 857, - '$', 776, - '&', 596, - '\'', 485, - ')', 649, - '-', 941, - '0', 797, - ';', 549, - '<', 603, - '>', 611, - '\\', 326, - '`', 850, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '\n', 738, + '"', 775, + '#', 849, + '$', 768, + '&', 590, + '\'', 479, + ')', 643, + '-', 932, + '0', 790, + ';', 543, + '<', 598, + '>', 605, + '\\', 340, + '`', 843, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(527); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(792); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(855); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(949); + (lookahead < '&' || ')' < lookahead)) ADVANCE(940); END_STATE(); case 528: - if (eof) ADVANCE(541); + if (eof) ADVANCE(535); 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', 741, + '"', 775, + '#', 849, + '$', 768, + '&', 590, + '\'', 479, + ')', 643, + '-', 932, + '0', 789, + ';', 543, + '<', 598, + '>', 605, + '\\', 345, + '`', 843, + '|', 581, + '[', 773, + ']', 773, + '{', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(528); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(791); if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead)) ADVANCE(949); + (lookahead < '&' || ')' < lookahead)) ADVANCE(940); END_STATE(); case 529: - if (eof) ADVANCE(541); - ADVANCE_MAP( - '\n', 727, - '"', 783, - '#', 857, - '$', 776, - '&', 596, - '\'', 485, - ')', 649, - '-', 941, - '0', 797, - ';', 549, - '<', 604, - '>', 611, - '\\', 395, - '`', 850, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(529); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(949); + if (eof) ADVANCE(535); + if (lookahead == '\r') SKIP(511); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(507); END_STATE(); case 530: - if (eof) ADVANCE(541); - 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, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(530); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); - if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead)) ADVANCE(949); + if (eof) ADVANCE(535); + if (lookahead == '\r') SKIP(512); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(509); END_STATE(); case 531: - if (eof) ADVANCE(541); - 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, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(531); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); - if (lookahead != 0) ADVANCE(949); + if (eof) ADVANCE(535); + if (lookahead == '\r') SKIP(513); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(508); END_STATE(); case 532: - if (eof) ADVANCE(541); - ADVANCE_MAP( - '\n', 745, - '"', 783, - '#', 857, - '$', 776, - '&', 596, - '\'', 485, - ')', 649, - '-', 941, - '0', 797, - ';', 549, - '<', 603, - '>', 611, - '\\', 345, - '`', 851, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(532); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(949); + if (eof) ADVANCE(535); + if (lookahead == '\r') SKIP(514); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(510); END_STATE(); case 533: - if (eof) ADVANCE(541); + if (eof) ADVANCE(535); ADVANCE_MAP( - '\n', 746, - '"', 783, - '#', 857, - '$', 776, - '&', 596, - '\'', 485, - ')', 649, - '-', 941, - '0', 798, - ';', 549, - '<', 604, - '>', 611, - '\\', 346, - '`', 851, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '!', 658, + '"', 775, + '#', 803, + '$', 768, + '%', 635, + '&', 589, + '\'', 479, + '(', 642, + ')', 643, + '*', 626, + '+', 756, + ',', 545, + '-', 754, + '/', 630, + ':', 751, + ';', 542, + '<', 595, + '=', 551, + '>', 604, + '?', 747, + '@', 927, + '[', 662, + '\\', 293, + ']', 663, + '^', 583, + '_', 928, + '`', 843, + 'e', 938, + 'i', 937, + '{', 654, + '|', 580, + '}', 805, + '~', 758, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(533); - 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 != 0) ADVANCE(940); END_STATE(); case 534: - if (eof) ADVANCE(541); + if (eof) ADVANCE(535); ADVANCE_MAP( - '\n', 748, - '"', 783, - '#', 857, - '$', 776, - '&', 596, - '\'', 485, - ')', 649, - '-', 941, - '0', 797, - ';', 549, - '<', 604, - '>', 611, - '\\', 349, - '`', 851, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '!', 660, + '"', 775, + '#', 849, + '$', 768, + '&', 496, + '\'', 479, + '(', 642, + ')', 643, + '-', 932, + '0', 789, + ';', 478, + '<', 596, + '>', 605, + '[', 662, + '\\', 296, + '`', 842, + '{', 654, + '|', 579, + ']', 773, + '}', 773, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(534); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(949); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(791); + if (lookahead != 0) ADVANCE(940); END_STATE(); case 535: - if (eof) ADVANCE(541); - if (lookahead == '\r') SKIP(517); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(513); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 536: - if (eof) ADVANCE(541); - if (lookahead == '\r') SKIP(518); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(515); + ACCEPT_TOKEN(anon_sym_in); END_STATE(); case 537: - if (eof) ADVANCE(541); - if (lookahead == '\r') SKIP(519); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(514); + ACCEPT_TOKEN(anon_sym_in); + if (lookahead == '\\') ADVANCE(506); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); case 538: - if (eof) ADVANCE(541); - if (lookahead == '\r') SKIP(520); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(516); + ACCEPT_TOKEN(anon_sym_in); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); END_STATE(); case 539: - if (eof) ADVANCE(541); - 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(539); - if (lookahead != 0) ADVANCE(949); + ACCEPT_TOKEN(anon_sym_LPAREN_LPAREN); END_STATE(); case 540: - if (eof) ADVANCE(541); - ADVANCE_MAP( - '!', 666, - '"', 783, - '#', 857, - '$', 776, - '&', 502, - '\'', 485, - '(', 648, - ')', 649, - '-', 941, - '0', 797, - ';', 484, - '<', 602, - '>', 611, - '[', 668, - '\\', 301, - '`', 850, - '{', 660, - '|', 584, - ']', 781, - '}', 781, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(540); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); - if (lookahead != 0) ADVANCE(949); + ACCEPT_TOKEN(anon_sym_RPAREN_RPAREN); END_STATE(); case 541: - ACCEPT_TOKEN(ts_builtin_sym_end); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 542: - ACCEPT_TOKEN(anon_sym_in); + ACCEPT_TOKEN(anon_sym_SEMI); + if (lookahead == '&') ADVANCE(652); + if (lookahead == ';') ADVANCE(651); END_STATE(); case 543: - ACCEPT_TOKEN(anon_sym_in); - if (lookahead == '\\') ADVANCE(512); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + ACCEPT_TOKEN(anon_sym_SEMI); + if (lookahead == ';') ADVANCE(650); END_STATE(); case 544: - ACCEPT_TOKEN(anon_sym_in); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 545: - ACCEPT_TOKEN(anon_sym_LPAREN_LPAREN); + ACCEPT_TOKEN(anon_sym_COMMA); + if (lookahead == ',') ADVANCE(837); + if (lookahead == '\\') ADVANCE(506); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); case 546: - ACCEPT_TOKEN(anon_sym_RPAREN_RPAREN); + ACCEPT_TOKEN(anon_sym_COMMA); + if (lookahead == ',') ADVANCE(836); END_STATE(); case 547: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); case 548: - ACCEPT_TOKEN(anon_sym_SEMI); - if (lookahead == '&') ADVANCE(658); - if (lookahead == ';') ADVANCE(657); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(592); + if (lookahead == '\\') ADVANCE(506); + if (lookahead == '~') ADVANCE(667); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); case 549: - ACCEPT_TOKEN(anon_sym_SEMI); - if (lookahead == ';') ADVANCE(656); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(591); END_STATE(); case 550: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(591); + if (lookahead == '~') ADVANCE(666); END_STATE(); case 551: - 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); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '\\') ADVANCE(506); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); case 552: - ACCEPT_TOKEN(anon_sym_COMMA); - if (lookahead == ',') ADVANCE(844); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); case 553: - ACCEPT_TOKEN(anon_sym_EQ); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + if (lookahead == '\\') ADVANCE(506); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); case 554: - 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); + ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); case 555: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(597); + ACCEPT_TOKEN(anon_sym_DASH_DASH); + if (lookahead == '\\') ADVANCE(506); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); case 556: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(597); - if (lookahead == '~') ADVANCE(672); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 557: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '\\') ADVANCE(512); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); + if (lookahead == '\\') ADVANCE(506); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); case 558: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 559: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); - if (lookahead == '\\') ADVANCE(512); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + ACCEPT_TOKEN(anon_sym_DASH_EQ); + if (lookahead == '\\') ADVANCE(506); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); case 560: - ACCEPT_TOKEN(anon_sym_DASH_DASH); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 561: - ACCEPT_TOKEN(anon_sym_DASH_DASH); - if (lookahead == '\\') ADVANCE(512); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + ACCEPT_TOKEN(anon_sym_STAR_EQ); + if (lookahead == '\\') ADVANCE(506); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); case 562: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 563: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); - if (lookahead == '\\') ADVANCE(512); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); + if (lookahead == '\\') ADVANCE(506); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); case 564: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); case 565: - ACCEPT_TOKEN(anon_sym_DASH_EQ); - if (lookahead == '\\') ADVANCE(512); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + if (lookahead == '\\') ADVANCE(506); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); case 566: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); END_STATE(); case 567: - ACCEPT_TOKEN(anon_sym_STAR_EQ); - if (lookahead == '\\') ADVANCE(512); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); + if (lookahead == '\\') ADVANCE(506); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); case 568: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); case 569: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); - if (lookahead == '\\') ADVANCE(512); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); case 570: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); case 571: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); - if (lookahead == '\\') ADVANCE(512); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); case 572: - ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); + ACCEPT_TOKEN(anon_sym_CARET_EQ); + if (lookahead == '\\') ADVANCE(506); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); case 573: - 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); + ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); case 574: - ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); case 575: - ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + ACCEPT_TOKEN(anon_sym_DASHo); END_STATE(); case 576: - ACCEPT_TOKEN(anon_sym_AMP_EQ); + ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); case 577: - ACCEPT_TOKEN(anon_sym_CARET_EQ); + ACCEPT_TOKEN(anon_sym_DASHa); END_STATE(); case 578: - ACCEPT_TOKEN(anon_sym_CARET_EQ); - if (lookahead == '\\') ADVANCE(512); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 579: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '&') ADVANCE(656); END_STATE(); case 580: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '&') ADVANCE(656); + if (lookahead == '=') ADVANCE(573); + if (lookahead == '|') ADVANCE(574); END_STATE(); case 581: - ACCEPT_TOKEN(anon_sym_DASHo); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '&') ADVANCE(656); + if (lookahead == '|') ADVANCE(574); END_STATE(); case 582: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(573); + if (lookahead == '|') ADVANCE(574); END_STATE(); case 583: - ACCEPT_TOKEN(anon_sym_DASHa); + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(572); + if (lookahead == '\\') ADVANCE(506); + if (lookahead == '^') ADVANCE(839); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); case 584: - ACCEPT_TOKEN(anon_sym_PIPE); + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(572); + if (lookahead == '\\') ADVANCE(506); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); case 585: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '&') ADVANCE(662); + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(571); END_STATE(); case 586: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '&') ADVANCE(662); - if (lookahead == '=') ADVANCE(579); - if (lookahead == '|') ADVANCE(580); + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '^') ADVANCE(838); END_STATE(); case 587: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '&') ADVANCE(662); - if (lookahead == '|') ADVANCE(580); + ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); case 588: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(579); - if (lookahead == '|') ADVANCE(580); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(576); + if (lookahead == '=') ADVANCE(570); END_STATE(); case 589: - 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); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(576); + if (lookahead == '=') ADVANCE(570); + if (lookahead == '>') ADVANCE(668); END_STATE(); case 590: - 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); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(576); + if (lookahead == '>') ADVANCE(668); END_STATE(); case 591: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(577); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 592: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '^') ADVANCE(846); + ACCEPT_TOKEN(anon_sym_EQ_EQ); + if (lookahead == '\\') ADVANCE(506); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); case 593: - ACCEPT_TOKEN(anon_sym_AMP); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 594: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(582); - if (lookahead == '=') ADVANCE(576); + ACCEPT_TOKEN(anon_sym_BANG_EQ); + if (lookahead == '\\') ADVANCE(506); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); case 595: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(582); - if (lookahead == '=') ADVANCE(576); - if (lookahead == '>') ADVANCE(674); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '&') ADVANCE(670); + if (lookahead == '(') ADVANCE(845); + if (lookahead == '<') ADVANCE(613); + if (lookahead == '=') ADVANCE(609); END_STATE(); case 596: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(582); - if (lookahead == '>') ADVANCE(674); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '&') ADVANCE(670); + if (lookahead == '(') ADVANCE(845); + if (lookahead == '<') ADVANCE(493); END_STATE(); case 597: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '&') ADVANCE(670); + if (lookahead == '(') ADVANCE(845); + if (lookahead == '<') ADVANCE(612); END_STATE(); case 598: - ACCEPT_TOKEN(anon_sym_EQ_EQ); - if (lookahead == '\\') ADVANCE(512); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '&') ADVANCE(670); + if (lookahead == '(') ADVANCE(845); + if (lookahead == '<') ADVANCE(611); END_STATE(); case 599: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '&') ADVANCE(670); + if (lookahead == '<') ADVANCE(493); END_STATE(); case 600: - ACCEPT_TOKEN(anon_sym_BANG_EQ); - if (lookahead == '\\') ADVANCE(512); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '&') ADVANCE(670); + if (lookahead == '<') ADVANCE(612); END_STATE(); case 601: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(676); - if (lookahead == '(') ADVANCE(853); - if (lookahead == '<') ADVANCE(619); - if (lookahead == '=') ADVANCE(615); + if (lookahead == '&') ADVANCE(670); + if (lookahead == '<') ADVANCE(611); END_STATE(); case 602: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(676); - if (lookahead == '(') ADVANCE(853); - if (lookahead == '<') ADVANCE(499); + if (lookahead == '(') ADVANCE(845); + if (lookahead == '<') ADVANCE(614); + if (lookahead == '=') ADVANCE(609); END_STATE(); case 603: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(676); - if (lookahead == '(') ADVANCE(853); - if (lookahead == '<') ADVANCE(618); + if (lookahead == '<') ADVANCE(614); + if (lookahead == '=') ADVANCE(609); END_STATE(); case 604: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(676); - if (lookahead == '(') ADVANCE(853); - if (lookahead == '<') ADVANCE(617); - END_STATE(); - case 605: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(676); - if (lookahead == '<') ADVANCE(499); - END_STATE(); - case 606: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(676); - if (lookahead == '<') ADVANCE(618); - END_STATE(); - case 607: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(676); - if (lookahead == '<') ADVANCE(617); - END_STATE(); - case 608: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '(') ADVANCE(853); - if (lookahead == '<') ADVANCE(620); - if (lookahead == '=') ADVANCE(615); - END_STATE(); - case 609: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(620); - if (lookahead == '=') ADVANCE(615); - END_STATE(); - case 610: 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(671); + if (lookahead == '(') ADVANCE(846); + if (lookahead == '=') ADVANCE(610); + if (lookahead == '>') ADVANCE(616); + if (lookahead == '|') ADVANCE(672); END_STATE(); - case 611: + case 605: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '&') ADVANCE(677); - if (lookahead == '(') ADVANCE(854); - if (lookahead == '>') ADVANCE(621); - if (lookahead == '|') ADVANCE(678); + if (lookahead == '&') ADVANCE(671); + if (lookahead == '(') ADVANCE(846); + if (lookahead == '>') ADVANCE(615); + if (lookahead == '|') ADVANCE(672); END_STATE(); - case 612: + case 606: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '&') ADVANCE(677); - if (lookahead == '>') ADVANCE(621); - if (lookahead == '|') ADVANCE(678); + if (lookahead == '&') ADVANCE(671); + if (lookahead == '>') ADVANCE(615); + if (lookahead == '|') ADVANCE(672); END_STATE(); - case 613: + case 607: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '(') ADVANCE(854); - if (lookahead == '=') ADVANCE(616); - if (lookahead == '>') ADVANCE(622); + if (lookahead == '(') ADVANCE(846); + if (lookahead == '=') ADVANCE(610); + if (lookahead == '>') ADVANCE(616); END_STATE(); - case 614: + case 608: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(616); - if (lookahead == '>') ADVANCE(622); + if (lookahead == '=') ADVANCE(610); + if (lookahead == '>') ADVANCE(616); END_STATE(); - case 615: + case 609: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 616: + case 610: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 617: + case 611: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '-') ADVANCE(681); + if (lookahead == '-') ADVANCE(675); END_STATE(); - case 618: + case 612: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '-') ADVANCE(681); - if (lookahead == '<') ADVANCE(753); + if (lookahead == '-') ADVANCE(675); + if (lookahead == '<') ADVANCE(745); END_STATE(); - case 619: + case 613: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '-') ADVANCE(681); - if (lookahead == '<') ADVANCE(753); - if (lookahead == '=') ADVANCE(574); + if (lookahead == '-') ADVANCE(675); + if (lookahead == '<') ADVANCE(745); + if (lookahead == '=') ADVANCE(568); END_STATE(); - case 620: + case 614: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(574); + if (lookahead == '=') ADVANCE(568); END_STATE(); - case 621: + case 615: ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); - case 622: + case 616: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(575); + if (lookahead == '=') ADVANCE(569); END_STATE(); - case 623: + case 617: ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); - case 624: + case 618: 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(553); + if (lookahead == '=') ADVANCE(557); + if (lookahead == '\\') ADVANCE(506); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); - case 625: + case 619: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(558); - if (lookahead == '=') ADVANCE(562); + if (lookahead == '+') ADVANCE(552); + if (lookahead == '=') ADVANCE(556); END_STATE(); - case 626: + case 620: ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); - case 627: + case 621: 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(555); + if (lookahead == '0') ADVANCE(789); + if (lookahead == '=') ADVANCE(559); + if (lookahead == '\\') ADVANCE(506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(791); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); - case 628: + case 622: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(560); - if (lookahead == '=') ADVANCE(564); + if (lookahead == '-') ADVANCE(554); + if (lookahead == '=') ADVANCE(558); END_STATE(); - case 629: + case 623: 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(554); + if (lookahead == '=') ADVANCE(558); + if (lookahead == 'a') ADVANCE(577); + if (lookahead == 'o') ADVANCE(575); END_STATE(); - case 630: + case 624: 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(789); + if (lookahead == '\\') ADVANCE(506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(791); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); - case 631: + case 625: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 632: + case 626: 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(639); + if (lookahead == '=') ADVANCE(561); + if (lookahead == '\\') ADVANCE(506); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); - case 633: + case 627: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(646); - if (lookahead == '=') ADVANCE(566); + if (lookahead == '*') ADVANCE(640); + if (lookahead == '=') ADVANCE(560); END_STATE(); - case 634: + case 628: 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(506); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); - case 635: + case 629: ACCEPT_TOKEN(anon_sym_SLASH); END_STATE(); - case 636: + case 630: 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(833); + if (lookahead == '%') ADVANCE(835); + if (lookahead == '/') ADVANCE(831); + if (lookahead == '=') ADVANCE(563); + if (lookahead == '\\') ADVANCE(506); + if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(940); END_STATE(); - case 637: + case 631: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '#') ADVANCE(840); - if (lookahead == '%') ADVANCE(842); - if (lookahead == '/') ADVANCE(838); + if (lookahead == '#') ADVANCE(832); + if (lookahead == '%') ADVANCE(834); + if (lookahead == '/') ADVANCE(830); END_STATE(); - case 638: + case 632: 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(563); + if (lookahead == '\\') ADVANCE(506); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); - case 639: + case 633: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '=') ADVANCE(568); + if (lookahead == '=') ADVANCE(562); END_STATE(); - case 640: + case 634: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 641: + case 635: 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(828); + if (lookahead == '=') ADVANCE(565); + if (lookahead == '\\') ADVANCE(506); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); - case 642: + case 636: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '%') ADVANCE(835); + if (lookahead == '%') ADVANCE(827); END_STATE(); - case 643: + case 637: 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(565); + if (lookahead == '\\') ADVANCE(506); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); - case 644: + case 638: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(570); + if (lookahead == '=') ADVANCE(564); END_STATE(); - case 645: + case 639: 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(567); + if (lookahead == '\\') ADVANCE(506); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); - case 646: + case 640: ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == '=') ADVANCE(572); + if (lookahead == '=') ADVANCE(566); END_STATE(); - case 647: + case 641: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 648: + case 642: ACCEPT_TOKEN(anon_sym_LPAREN); - if (lookahead == '(') ADVANCE(545); + if (lookahead == '(') ADVANCE(539); END_STATE(); - case 649: + case 643: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 650: + case 644: 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(644); END_STATE(); - case 651: + case 645: ACCEPT_TOKEN(anon_sym_esac); END_STATE(); - case 652: + case 646: ACCEPT_TOKEN(anon_sym_esac); - if (lookahead == '\\') ADVANCE(512); + if (lookahead == '\\') ADVANCE(506); 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(855); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); - case 653: + case 647: 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(506); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); - case 654: + case 648: 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(860); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); - case 655: + case 649: 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(866); END_STATE(); - case 656: + case 650: ACCEPT_TOKEN(anon_sym_SEMI_SEMI); END_STATE(); - case 657: + case 651: ACCEPT_TOKEN(anon_sym_SEMI_SEMI); - if (lookahead == '&') ADVANCE(659); + if (lookahead == '&') ADVANCE(653); END_STATE(); - case 658: + case 652: ACCEPT_TOKEN(anon_sym_SEMI_AMP); END_STATE(); - case 659: + case 653: ACCEPT_TOKEN(anon_sym_SEMI_SEMI_AMP); END_STATE(); - case 660: + case 654: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 661: + case 655: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 662: + case 656: ACCEPT_TOKEN(anon_sym_PIPE_AMP); END_STATE(); - case 663: + case 657: ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); - case 664: + case 658: 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(594); + if (lookahead == '\\') ADVANCE(506); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); - case 665: + case 659: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(599); + if (lookahead == '=') ADVANCE(593); END_STATE(); - case 666: + case 660: 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(506); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); - case 667: + case 661: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 668: + case 662: ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '[') ADVANCE(670); + if (lookahead == '[') ADVANCE(664); END_STATE(); - case 669: + case 663: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 670: + case 664: ACCEPT_TOKEN(anon_sym_LBRACK_LBRACK); END_STATE(); - case 671: + case 665: ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK); END_STATE(); - case 672: + case 666: ACCEPT_TOKEN(anon_sym_EQ_TILDE); END_STATE(); - case 673: + case 667: 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(506); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); - case 674: + case 668: ACCEPT_TOKEN(anon_sym_AMP_GT); - if (lookahead == '>') ADVANCE(675); + if (lookahead == '>') ADVANCE(669); END_STATE(); - case 675: + case 669: ACCEPT_TOKEN(anon_sym_AMP_GT_GT); END_STATE(); - case 676: + case 670: ACCEPT_TOKEN(anon_sym_LT_AMP); - if (lookahead == '-') ADVANCE(679); + if (lookahead == '-') ADVANCE(673); END_STATE(); - case 677: + case 671: ACCEPT_TOKEN(anon_sym_GT_AMP); - if (lookahead == '-') ADVANCE(680); + if (lookahead == '-') ADVANCE(674); END_STATE(); - case 678: + case 672: ACCEPT_TOKEN(anon_sym_GT_PIPE); END_STATE(); - case 679: + case 673: ACCEPT_TOKEN(anon_sym_LT_AMP_DASH); END_STATE(); - case 680: + case 674: ACCEPT_TOKEN(anon_sym_GT_AMP_DASH); END_STATE(); - case 681: + case 675: ACCEPT_TOKEN(anon_sym_LT_LT_DASH); END_STATE(); + case 676: + ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); + if (lookahead == '\n') ADVANCE(676); + if (lookahead == '+') ADVANCE(757); + if (lookahead == '-') ADVANCE(755); + if (lookahead == '\\') ADVANCE(299); + if (lookahead == '~') ADVANCE(758); + END_STATE(); + case 677: + ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); + if (lookahead == '\n') ADVANCE(677); + if (lookahead == '\\') ADVANCE(14); + END_STATE(); + case 678: + ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); + if (lookahead == '\n') ADVANCE(678); + END_STATE(); + case 679: + ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); + if (lookahead == '\n') ADVANCE(679); + if (lookahead == '\\') ADVANCE(307); + END_STATE(); + case 680: + ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); + if (lookahead == '\n') ADVANCE(680); + if (lookahead == '\\') ADVANCE(100); + END_STATE(); + case 681: + ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); + if (lookahead == '\n') ADVANCE(681); + if (lookahead == '\\') ADVANCE(28); + END_STATE(); case 682: 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 == '\\') ADVANCE(308); END_STATE(); case 683: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(683); - if (lookahead == '\\') ADVANCE(14); + if (lookahead == '\\') ADVANCE(182); END_STATE(); case 684: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(684); + if (lookahead == '\\') ADVANCE(31); END_STATE(); case 685: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); @@ -17807,12 +17380,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 686: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(686); - if (lookahead == '\\') ADVANCE(100); + if (lookahead == '\\') ADVANCE(103); END_STATE(); case 687: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(687); - if (lookahead == '\\') ADVANCE(28); + if (lookahead == '\\') ADVANCE(33); END_STATE(); case 688: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); @@ -17827,247 +17400,247 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 690: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(690); - if (lookahead == '\\') ADVANCE(30); + if (lookahead == '\\') ADVANCE(36); END_STATE(); case 691: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(691); - if (lookahead == '\\') ADVANCE(317); + if (lookahead == '\\') ADVANCE(314); END_STATE(); case 692: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(692); - if (lookahead == '\\') ADVANCE(104); + if (lookahead == '\\') ADVANCE(107); END_STATE(); case 693: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(693); - if (lookahead == '\\') ADVANCE(32); + if (lookahead == '\\') ADVANCE(165); END_STATE(); case 694: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(694); - if (lookahead == '\\') ADVANCE(318); + if (lookahead == '\\') ADVANCE(315); END_STATE(); case 695: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(695); - if (lookahead == '\\') ADVANCE(106); + if (lookahead == '\\') ADVANCE(109); END_STATE(); case 696: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(696); - if (lookahead == '\\') ADVANCE(36); + if (lookahead == '\\') ADVANCE(39); END_STATE(); case 697: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(697); - if (lookahead == '\\') ADVANCE(319); + if (lookahead == '\\') ADVANCE(316); END_STATE(); case 698: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(698); - if (lookahead == '\\') ADVANCE(188); + if (lookahead == '\\') ADVANCE(208); END_STATE(); case 699: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(699); - if (lookahead == '\\') ADVANCE(164); + if (lookahead == '\\') ADVANCE(41); END_STATE(); case 700: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(700); - if (lookahead == '\\') ADVANCE(320); + if (lookahead == '\\') ADVANCE(317); END_STATE(); case 701: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(701); - if (lookahead == '\\') ADVANCE(211); + if (lookahead == '\\') ADVANCE(187); END_STATE(); case 702: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(702); - if (lookahead == '\\') ADVANCE(39); + if (lookahead == '\\') ADVANCE(168); END_STATE(); case 703: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(703); - if (lookahead == '\\') ADVANCE(321); + if (lookahead == '\\') ADVANCE(318); END_STATE(); case 704: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(704); - if (lookahead == '\\') ADVANCE(109); + if (lookahead == '\\') ADVANCE(189); END_STATE(); case 705: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(705); - if (lookahead == '\\') ADVANCE(168); + if (lookahead == '\\') ADVANCE(44); END_STATE(); case 706: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(706); - if (lookahead == '\\') ADVANCE(322); + if (lookahead == '\\') ADVANCE(387); END_STATE(); case 707: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(707); - if (lookahead == '\\') ADVANCE(192); + if (lookahead == '\\') ADVANCE(212); END_STATE(); case 708: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(708); - if (lookahead == '\\') ADVANCE(41); + if (lookahead == '\\') ADVANCE(217); END_STATE(); case 709: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(709); - if (lookahead == '\\') ADVANCE(323); + if (lookahead == '\\') ADVANCE(319); END_STATE(); case 710: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(710); - if (lookahead == '\\') ADVANCE(215); + if (lookahead == '\\') ADVANCE(118); END_STATE(); case 711: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(711); - if (lookahead == '\\') ADVANCE(47); + if (lookahead == '\\') ADVANCE(49); END_STATE(); case 712: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(712); - if (lookahead == '\\') ADVANCE(324); + if (lookahead == '\\') ADVANCE(321); END_STATE(); case 713: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(713); - if (lookahead == '\\') ADVANCE(190); + if (lookahead == '\\') ADVANCE(192); END_STATE(); case 714: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(714); - if (lookahead == '\\') ADVANCE(49); + if (lookahead == '\\') ADVANCE(174); END_STATE(); case 715: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(715); - if (lookahead == '\\') ADVANCE(326); + if (lookahead == '\\') ADVANCE(388); END_STATE(); case 716: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(716); - if (lookahead == '\\') ADVANCE(120); + if (lookahead == '\\') ADVANCE(210); END_STATE(); case 717: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(717); - if (lookahead == '\\') ADVANCE(221); + if (lookahead == '\\') ADVANCE(52); END_STATE(); case 718: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(718); - if (lookahead == '\\') ADVANCE(393); + if (lookahead == '\\') ADVANCE(389); END_STATE(); case 719: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(719); - if (lookahead == '\\') ADVANCE(197); + if (lookahead == '\\') ADVANCE(140); END_STATE(); case 720: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(720); - if (lookahead == '\\') ADVANCE(174); + if (lookahead == '\\') ADVANCE(54); END_STATE(); case 721: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(721); - if (lookahead == '\\') ADVANCE(394); + if (lookahead == '\\') ADVANCE(323); END_STATE(); case 722: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(722); - if (lookahead == '\\') ADVANCE(213); + if (lookahead == '\\') ADVANCE(220); END_STATE(); case 723: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(723); - if (lookahead == '\\') ADVANCE(52); + if (lookahead == '\\') ADVANCE(326); END_STATE(); case 724: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(724); - if (lookahead == '\\') ADVANCE(328); + if (lookahead == '\\') ADVANCE(204); END_STATE(); case 725: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(725); - if (lookahead == '\\') ADVANCE(140); + if (lookahead == '\\') ADVANCE(327); END_STATE(); case 726: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(726); - if (lookahead == '\\') ADVANCE(223); + if (lookahead == '\\') ADVANCE(57); END_STATE(); case 727: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(727); - if (lookahead == '\\') ADVANCE(395); + if (lookahead == '\\') ADVANCE(329); END_STATE(); case 728: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(728); - if (lookahead == '\\') ADVANCE(54); + if (lookahead == '\\') ADVANCE(222); END_STATE(); case 729: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(729); - if (lookahead == '\\') ADVANCE(330); + if (lookahead == '\\') ADVANCE(332); END_STATE(); case 730: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(730); - if (lookahead == '\\') ADVANCE(207); + if (lookahead == '\\') ADVANCE(68); END_STATE(); case 731: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(731); - if (lookahead == '\\') ADVANCE(332); + if (lookahead == '\\') ADVANCE(333); END_STATE(); case 732: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(732); - if (lookahead == '\\') ADVANCE(225); + if (lookahead == '\\') ADVANCE(227); END_STATE(); case 733: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(733); - if (lookahead == '\\') ADVANCE(334); + if (lookahead == '\\') ADVANCE(335); END_STATE(); case 734: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(734); - if (lookahead == '\\') ADVANCE(59); + if (lookahead == '\\') ADVANCE(115); END_STATE(); case 735: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(735); - if (lookahead == '\\') ADVANCE(336); + if (lookahead == '\\') ADVANCE(337); END_STATE(); case 736: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(736); - if (lookahead == '\\') ADVANCE(68); + if (lookahead == '\\') ADVANCE(125); END_STATE(); case 737: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(737); - if (lookahead == '\\') ADVANCE(337); + if (lookahead == '\\') ADVANCE(339); END_STATE(); case 738: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(738); - if (lookahead == '\\') ADVANCE(230); + if (lookahead == '\\') ADVANCE(340); END_STATE(); case 739: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); @@ -18077,2685 +17650,2611 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 740: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(740); - if (lookahead == '\\') ADVANCE(180); + if (lookahead == '\\') ADVANCE(342); END_STATE(); case 741: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(741); - if (lookahead == '\\') ADVANCE(342); + if (lookahead == '\\') ADVANCE(345); END_STATE(); case 742: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(742); - if (lookahead == '\\') ADVANCE(115); + if (lookahead == '\\') ADVANCE(350); END_STATE(); case 743: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(743); - if (lookahead == '\\') ADVANCE(344); + if (lookahead == '\\') ADVANCE(363); END_STATE(); case 744: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(744); - if (lookahead == '\\') ADVANCE(127); + if (lookahead == '\\') ADVANCE(372); END_STATE(); case 745: - ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(745); - if (lookahead == '\\') ADVANCE(345); - END_STATE(); - case 746: - ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(746); - if (lookahead == '\\') ADVANCE(346); - END_STATE(); - case 747: - ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(747); - if (lookahead == '\\') ADVANCE(347); - END_STATE(); - case 748: - ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(748); - if (lookahead == '\\') ADVANCE(349); - END_STATE(); - case 749: - ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(749); - if (lookahead == '\\') ADVANCE(355); - END_STATE(); - case 750: - ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(750); - if (lookahead == '\\') ADVANCE(365); - END_STATE(); - case 751: - ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(751); - if (lookahead == '\\') ADVANCE(368); - END_STATE(); - case 752: - ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(752); - if (lookahead == '\\') ADVANCE(378); - END_STATE(); - case 753: ACCEPT_TOKEN(anon_sym_LT_LT_LT); END_STATE(); - case 754: + case 746: ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); - case 755: + case 747: 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(506); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); - case 756: + case 748: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 757: + case 749: 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(822); + if (lookahead == '-') ADVANCE(819); + if (lookahead == '=') ADVANCE(816); + if (lookahead == '?') ADVANCE(826); + if (lookahead == '\\') ADVANCE(506); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); - case 758: + case 750: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '+') ADVANCE(829); - if (lookahead == '-') ADVANCE(826); - if (lookahead == '=') ADVANCE(823); - if (lookahead == '?') ADVANCE(833); + if (lookahead == '+') ADVANCE(821); + if (lookahead == '-') ADVANCE(818); + if (lookahead == '=') ADVANCE(815); + if (lookahead == '?') ADVANCE(825); END_STATE(); - case 759: + case 751: 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(506); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); - case 760: + case 752: ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); END_STATE(); - case 761: + case 753: ACCEPT_TOKEN(anon_sym_DASH_DASH2); END_STATE(); - case 762: + case 754: ACCEPT_TOKEN(anon_sym_DASH2); END_STATE(); - case 763: + case 755: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(761); + if (lookahead == '-') ADVANCE(753); END_STATE(); - case 764: + case 756: ACCEPT_TOKEN(anon_sym_PLUS2); END_STATE(); - case 765: + case 757: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(760); + if (lookahead == '+') ADVANCE(752); END_STATE(); - case 766: + case 758: ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); - case 767: + case 759: ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN_LPAREN); END_STATE(); - case 768: + case 760: ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACK); END_STATE(); - case 769: + case 761: 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(506); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(761); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); - case 770: + case 762: ACCEPT_TOKEN(aux_sym_brace_expression_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(770); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(762); END_STATE(); - case 771: + case 763: ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); - case 772: + case 764: 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(506); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); - case 773: + case 765: ACCEPT_TOKEN(anon_sym_RBRACE2); END_STATE(); - case 774: + case 766: ACCEPT_TOKEN(aux_sym_concatenation_token1); END_STATE(); - case 775: + case 767: ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); - case 776: + case 768: 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(480); + if (lookahead == '(') ADVANCE(841); + if (lookahead == '[') ADVANCE(760); + if (lookahead == '`') ADVANCE(844); + if (lookahead == '{') ADVANCE(804); END_STATE(); - case 777: + case 769: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '\'') ADVANCE(486); - if (lookahead == '(') ADVANCE(848); - if (lookahead == '`') ADVANCE(852); - if (lookahead == '{') ADVANCE(812); + if (lookahead == '\'') ADVANCE(480); + if (lookahead == '(') ADVANCE(840); + if (lookahead == '`') ADVANCE(844); + if (lookahead == '{') ADVANCE(804); END_STATE(); - case 778: + case 770: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '(') ADVANCE(849); - if (lookahead == '[') ADVANCE(768); - if (lookahead == '`') ADVANCE(852); - if (lookahead == '{') ADVANCE(812); + if (lookahead == '(') ADVANCE(841); + if (lookahead == '[') ADVANCE(760); + if (lookahead == '`') ADVANCE(844); + if (lookahead == '{') ADVANCE(804); END_STATE(); - case 779: + case 771: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '(') ADVANCE(848); - if (lookahead == '`') ADVANCE(852); + if (lookahead == '(') ADVANCE(840); + if (lookahead == '`') ADVANCE(844); END_STATE(); - case 780: + case 772: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '(') ADVANCE(848); - if (lookahead == '`') ADVANCE(852); - if (lookahead == '{') ADVANCE(812); + if (lookahead == '(') ADVANCE(840); + if (lookahead == '`') ADVANCE(844); + if (lookahead == '{') ADVANCE(804); END_STATE(); - case 781: + case 773: ACCEPT_TOKEN(sym__special_character); END_STATE(); - case 782: + case 774: ACCEPT_TOKEN(sym__special_character); - if (lookahead == ']') ADVANCE(671); + if (lookahead == ']') ADVANCE(665); END_STATE(); - case 783: + case 775: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 784: + case 776: ACCEPT_TOKEN(sym_string_content); - if (lookahead == '\n') ADVANCE(790); - if (lookahead == '\\') ADVANCE(300); + if (lookahead == '\n') ADVANCE(782); + if (lookahead == '\\') ADVANCE(295); if (lookahead != 0 && lookahead != '\r' && lookahead != '"' && lookahead != '$' && - lookahead != '`') ADVANCE(792); + lookahead != '`') ADVANCE(784); END_STATE(); - case 785: + case 777: ACCEPT_TOKEN(sym_string_content); - if (lookahead == '\n') ADVANCE(788); - if (lookahead == '\\') ADVANCE(300); + if (lookahead == '\n') ADVANCE(780); + if (lookahead == '\\') ADVANCE(295); if (lookahead != 0 && lookahead != '\r' && lookahead != '"' && lookahead != '$' && - lookahead != '`') ADVANCE(792); + lookahead != '`') ADVANCE(784); END_STATE(); - case 786: + case 778: ACCEPT_TOKEN(sym_string_content); - if (lookahead == '\n') ADVANCE(789); - if (lookahead == '\\') ADVANCE(300); + if (lookahead == '\n') ADVANCE(781); + if (lookahead == '\\') ADVANCE(295); if (lookahead != 0 && lookahead != '\r' && lookahead != '"' && lookahead != '$' && - lookahead != '`') ADVANCE(792); + lookahead != '`') ADVANCE(784); END_STATE(); - case 787: + case 779: ACCEPT_TOKEN(sym_string_content); - if (lookahead == '\n') ADVANCE(792); - if (lookahead == '\\') ADVANCE(855); + if (lookahead == '\n') ADVANCE(784); + if (lookahead == '\\') ADVANCE(847); if (lookahead != 0 && lookahead != '\r' && lookahead != '"' && lookahead != '$' && - lookahead != '`') ADVANCE(791); + lookahead != '`') ADVANCE(783); END_STATE(); - case 788: + case 780: ACCEPT_TOKEN(sym_string_content); ADVANCE_MAP( - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '*', 631, - '-', 626, - '?', 754, - '@', 935, + '!', 657, + '"', 775, + '#', 803, + '$', 767, + '*', 625, + '-', 620, + '?', 746, + '@', 926, '\\', 144, - '_', 939, + '_', 930, ); if (lookahead == '\n' || - lookahead == '\r') SKIP(443); + lookahead == '\r') SKIP(437); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(788); + lookahead == ' ') ADVANCE(780); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); if (lookahead != 0 && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(792); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(784); END_STATE(); - case 789: + case 781: ACCEPT_TOKEN(sym_string_content); ADVANCE_MAP( - '!', 663, - '#', 811, - '$', 775, - '*', 631, - '-', 626, - '?', 754, - '@', 935, + '!', 657, + '#', 803, + '$', 767, + '*', 625, + '-', 620, + '?', 746, + '@', 926, '\\', 147, - '_', 939, + '_', 930, ); if (lookahead == '\n' || - lookahead == '\r') SKIP(446); + lookahead == '\r') SKIP(440); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(789); + lookahead == ' ') ADVANCE(781); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(792); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(784); END_STATE(); - case 790: + case 782: 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(775); + if (lookahead == '#') ADVANCE(783); + if (lookahead == '$') ADVANCE(770); + if (lookahead == '\\') ADVANCE(294); + if (lookahead == '`') ADVANCE(842); if (lookahead == '\n' || - lookahead == '\r') SKIP(474); + lookahead == '\r') SKIP(468); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(790); - if (lookahead != 0) ADVANCE(792); + lookahead == ' ') ADVANCE(782); + if (lookahead != 0) ADVANCE(784); END_STATE(); - case 791: + case 783: ACCEPT_TOKEN(sym_string_content); - if (lookahead == '\\') ADVANCE(855); + if (lookahead == '\\') ADVANCE(847); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && lookahead != '$' && - lookahead != '`') ADVANCE(791); + lookahead != '`') ADVANCE(783); END_STATE(); - case 792: + case 784: ACCEPT_TOKEN(sym_string_content); - if (lookahead == '\\') ADVANCE(300); + if (lookahead == '\\') ADVANCE(295); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && lookahead != '$' && - lookahead != '`') ADVANCE(792); + lookahead != '`') ADVANCE(784); END_STATE(); - case 793: + case 785: ACCEPT_TOKEN(sym_string_content); - if (lookahead == '\\') ADVANCE(300); + if (lookahead == '\\') ADVANCE(295); if (lookahead != 0 && lookahead != '\r' && lookahead != '"' && lookahead != '$' && - lookahead != '`') ADVANCE(792); + lookahead != '`') ADVANCE(784); END_STATE(); - case 794: + case 786: ACCEPT_TOKEN(sym_raw_string); END_STATE(); - case 795: + case 787: ACCEPT_TOKEN(sym_ansi_c_string); END_STATE(); - case 796: + case 788: ACCEPT_TOKEN(sym_ansi_c_string); - if (lookahead == '\'') ADVANCE(795); - if (lookahead == '\\') ADVANCE(487); - if (lookahead != 0) ADVANCE(486); + if (lookahead == '\'') ADVANCE(787); + if (lookahead == '\\') ADVANCE(481); + if (lookahead != 0) ADVANCE(480); END_STATE(); - case 797: + case 789: 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(801); + if (lookahead == '\\') ADVANCE(506); + if (lookahead == 'x') ADVANCE(939); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(791); + if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(940); END_STATE(); - case 798: + case 790: 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(801); + if (lookahead == '\\') ADVANCE(506); + if (lookahead == 'x') ADVANCE(854); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(792); 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(855); + if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(940); END_STATE(); - case 799: + case 791: 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(801); + if (lookahead == '\\') ADVANCE(506); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(791); + if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(940); END_STATE(); - case 800: + case 792: ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(809); - if (lookahead == '\\') ADVANCE(512); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(800); + if (lookahead == '#') ADVANCE(801); + if (lookahead == '\\') ADVANCE(506); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(792); 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(855); + if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(940); END_STATE(); - case 801: + case 793: ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(809); + if (lookahead == '#') ADVANCE(801); if (lookahead == '\\') ADVANCE(17); - if (lookahead == 'x') ADVANCE(867); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(802); + if (lookahead == 'x') ADVANCE(859); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(794); 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(860); + if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(940); END_STATE(); - case 802: + case 794: ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(809); + if (lookahead == '#') ADVANCE(801); if (lookahead == '\\') ADVANCE(17); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(802); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(794); 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(860); + if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(940); END_STATE(); - case 803: + case 795: 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(802); + if (lookahead == 'x') ADVANCE(865); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(797); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); END_STATE(); - case 804: + case 796: 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(802); + if (lookahead == 'x') ADVANCE(505); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(798); END_STATE(); - case 805: + case 797: ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(810); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(805); + if (lookahead == '#') ADVANCE(802); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(797); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); END_STATE(); - case 806: + case 798: ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(810); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(806); + if (lookahead == '#') ADVANCE(802); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(798); END_STATE(); - case 807: + case 799: ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '\\') ADVANCE(512); + if (lookahead == '\\') ADVANCE(506); 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(799); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); - case 808: + case 800: 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(800); END_STATE(); - case 809: + case 801: ACCEPT_TOKEN(aux_sym_number_token2); - if (lookahead == '\\') ADVANCE(512); + if (lookahead == '\\') ADVANCE(506); 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(799); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); - case 810: + case 802: 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(800); END_STATE(); - case 811: + case 803: ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); - case 812: + case 804: ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); END_STATE(); - case 813: + case 805: ACCEPT_TOKEN(anon_sym_RBRACE3); END_STATE(); - case 814: + case 806: ACCEPT_TOKEN(anon_sym_BANG2); END_STATE(); - case 815: + case 807: 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(594); + if (lookahead == '\\') ADVANCE(506); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); - case 816: + case 808: ACCEPT_TOKEN(anon_sym_AT); END_STATE(); - case 817: + case 809: 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(506); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); - case 818: + case 810: ACCEPT_TOKEN(anon_sym_STAR2); END_STATE(); - case 819: + case 811: 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(639); + if (lookahead == '=') ADVANCE(561); + if (lookahead == '\\') ADVANCE(506); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); - case 820: + case 812: ACCEPT_TOKEN(anon_sym_POUND2); END_STATE(); - case 821: + case 813: ACCEPT_TOKEN(anon_sym_EQ2); END_STATE(); - case 822: + case 814: 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(506); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); - case 823: + case 815: ACCEPT_TOKEN(anon_sym_COLON_EQ); END_STATE(); - case 824: + case 816: 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(506); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); - case 825: + case 817: ACCEPT_TOKEN(anon_sym_DASH3); END_STATE(); - case 826: + case 818: ACCEPT_TOKEN(anon_sym_COLON_DASH); END_STATE(); - case 827: + case 819: 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(506); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); - case 828: + case 820: ACCEPT_TOKEN(anon_sym_PLUS3); END_STATE(); - case 829: + case 821: ACCEPT_TOKEN(anon_sym_COLON_PLUS); END_STATE(); - case 830: + case 822: 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(506); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); - case 831: + case 823: ACCEPT_TOKEN(anon_sym_QMARK2); END_STATE(); - case 832: + case 824: 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(506); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); - case 833: + case 825: ACCEPT_TOKEN(anon_sym_COLON_QMARK); END_STATE(); - case 834: + case 826: 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(506); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); - case 835: + case 827: ACCEPT_TOKEN(anon_sym_PERCENT_PERCENT); END_STATE(); - case 836: + case 828: 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(506); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); - case 837: + case 829: ACCEPT_TOKEN(aux_sym__expansion_regex_token1); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(837); + lookahead == ' ') ADVANCE(829); END_STATE(); - case 838: + case 830: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); END_STATE(); - case 839: + case 831: 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(506); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); - case 840: + case 832: ACCEPT_TOKEN(anon_sym_SLASH_POUND); END_STATE(); - case 841: + case 833: 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(506); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); - case 842: + case 834: ACCEPT_TOKEN(anon_sym_SLASH_PERCENT); END_STATE(); - case 843: + case 835: 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(506); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); - case 844: + case 836: ACCEPT_TOKEN(anon_sym_COMMA_COMMA); END_STATE(); - case 845: + case 837: 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(506); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); - case 846: + case 838: ACCEPT_TOKEN(anon_sym_CARET_CARET); END_STATE(); - case 847: + case 839: 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(506); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); - case 848: + case 840: ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN); END_STATE(); - case 849: + case 841: ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN); - if (lookahead == '(') ADVANCE(767); + if (lookahead == '(') ADVANCE(759); END_STATE(); - case 850: + case 842: ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); - case 851: + case 843: ACCEPT_TOKEN(anon_sym_BQUOTE); - if (lookahead == '`') ADVANCE(774); + if (lookahead == '`') ADVANCE(766); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(504); + lookahead == ' ') ADVANCE(498); END_STATE(); - case 852: + case 844: ACCEPT_TOKEN(anon_sym_DOLLAR_BQUOTE); END_STATE(); - case 853: + case 845: ACCEPT_TOKEN(anon_sym_LT_LPAREN); END_STATE(); - case 854: + case 846: ACCEPT_TOKEN(anon_sym_GT_LPAREN); END_STATE(); - case 855: + case 847: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\n') ADVANCE(792); - if (lookahead == '\r') ADVANCE(787); - if (lookahead != 0) ADVANCE(791); + if (lookahead == '\n') ADVANCE(784); + if (lookahead == '\r') ADVANCE(779); + if (lookahead != 0) ADVANCE(783); END_STATE(); - case 856: + case 848: ACCEPT_TOKEN(sym_comment); if (lookahead == '\t' || - (0x0b <= lookahead && lookahead <= '\r')) ADVANCE(857); + (0x0b <= lookahead && lookahead <= '\r')) ADVANCE(849); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(858); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(850); END_STATE(); - case 857: + case 849: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(857); + lookahead != '\n') ADVANCE(849); END_STATE(); - case 858: + case 850: 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(848); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(850); END_STATE(); - case 859: + case 851: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(512); - if (lookahead == 'a') ADVANCE(860); + if (lookahead == '\\') ADVANCE(506); + if (lookahead == 'a') ADVANCE(852); 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(855); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); - case 860: + case 852: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(512); - if (lookahead == 'c') ADVANCE(652); + if (lookahead == '\\') ADVANCE(506); + if (lookahead == 'c') ADVANCE(646); 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(855); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); - case 861: + case 853: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(512); - if (lookahead == 's') ADVANCE(859); + if (lookahead == '\\') ADVANCE(506); + if (lookahead == 's') ADVANCE(851); 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(855); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); - case 862: + case 854: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(512); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(800); + if (lookahead == '\\') ADVANCE(506); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(792); 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(855); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); - case 863: + case 855: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(512); + if (lookahead == '\\') ADVANCE(506); 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(855); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); - case 864: + case 856: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); if (lookahead == '\\') ADVANCE(17); - if (lookahead == 'a') ADVANCE(865); + if (lookahead == 'a') ADVANCE(857); 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(860); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); - case 865: + case 857: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); if (lookahead == '\\') ADVANCE(17); - if (lookahead == 'c') ADVANCE(654); + if (lookahead == 'c') ADVANCE(648); 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(860); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); - case 866: + case 858: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); if (lookahead == '\\') ADVANCE(17); - if (lookahead == 's') ADVANCE(864); + if (lookahead == 's') ADVANCE(856); 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(860); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); - case 867: + case 859: 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(794); 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(860); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); - case 868: + case 860: 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(860); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); - case 869: + case 861: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == 'a') ADVANCE(870); + if (lookahead == 'a') ADVANCE(862); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(866); END_STATE(); - case 870: + case 862: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == 'c') ADVANCE(655); + if (lookahead == 'c') ADVANCE(649); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); END_STATE(); - case 871: + case 863: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == 'n') ADVANCE(544); + if (lookahead == 'n') ADVANCE(538); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); END_STATE(); - case 872: + case 864: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == 's') ADVANCE(869); + if (lookahead == 's') ADVANCE(861); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); END_STATE(); - case 873: + case 865: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(805); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(797); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); END_STATE(); - case 874: + case 866: 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(866); END_STATE(); - case 875: + case 867: 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', 677, + '!', 658, + '"', 775, + '#', 803, + '$', 768, + '%', 637, + '&', 589, + '\'', 479, + '(', 641, + ')', 643, + '*', 626, + '+', 618, + '-', 621, + '/', 632, + '0', 793, + ';', 543, + '<', 595, + '=', 548, + '>', 604, + '?', 747, + '@', 927, '\\', 14, - '^', 590, - '_', 938, - '`', 850, - '|', 586, + '^', 584, + '_', 929, + '`', 842, + '|', 580, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(12); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); if (lookahead != 0 && - (lookahead < ';' || '}' < lookahead)) ADVANCE(949); + (lookahead < ';' || '}' < lookahead)) ADVANCE(940); END_STATE(); - case 876: + case 868: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 686, - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '&', 596, - '*', 631, - '-', 626, - ';', 548, - '<', 606, - '>', 612, - '?', 754, - '@', 935, + '\n', 680, + '!', 657, + '"', 775, + '#', 803, + '$', 767, + '&', 590, + '*', 625, + '-', 620, + ';', 542, + '<', 600, + '>', 606, + '?', 746, + '@', 926, '\\', 100, - '_', 939, - 'e', 872, - '|', 587, + '_', 930, + 'e', 864, + '|', 581, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(202); + lookahead == ' ') SKIP(199); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); END_STATE(); - case 877: + case 869: 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', 681, + '!', 660, + '"', 775, + '#', 803, + '$', 768, + '&', 590, + '\'', 479, + '(', 641, + '*', 628, + '-', 624, + '0', 793, + ';', 542, + '<', 597, + '=', 934, + '>', 605, + '?', 747, + '@', 927, '\\', 28, - '_', 938, - '`', 850, - 'e', 866, - '|', 587, + '_', 929, + '`', 842, + 'e', 858, + '|', 581, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(216); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + lookahead == ' ') SKIP(213); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && (lookahead < ';' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '_' || '}' < lookahead)) ADVANCE(940); END_STATE(); - case 878: + case 870: 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', 683, + '!', 657, + '"', 775, + '#', 803, + '$', 767, + '&', 590, + '*', 625, + '-', 620, + ';', 542, + '<', 601, + '>', 606, + '?', 746, + '@', 926, + '\\', 182, + '_', 930, + 'e', 864, + '|', 581, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(231); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); + END_STATE(); + case 871: + ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); + ADVANCE_MAP( + '\n', 684, + '!', 660, + '"', 775, + '#', 803, + '$', 768, + '&', 590, + '\'', 479, + '*', 628, + '-', 624, + '0', 793, + ';', 542, + '<', 597, + '=', 934, + '>', 605, + '?', 747, + '@', 927, + '\\', 31, + '_', 929, + '`', 842, + 'e', 858, + '|', 581, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(232); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead) && + (lookahead < ';' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(940); + END_STATE(); + case 872: + ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); + ADVANCE_MAP( + '\n', 686, + '!', 657, + '"', 775, + '#', 803, + '$', 767, + '&', 590, + '*', 625, + '-', 620, + ';', 542, + '<', 600, + '>', 606, + '?', 746, + '@', 926, + '\\', 103, + '_', 930, + '|', 581, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(234); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); END_STATE(); - case 879: + case 873: 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', 687, + '!', 660, + '"', 775, + '#', 803, + '$', 768, + '&', 590, + '\'', 479, + '(', 641, + '*', 628, + '-', 624, + '0', 793, + ';', 542, + '<', 597, + '=', 934, + '>', 605, + '?', 747, + '@', 927, + '\\', 33, + '_', 929, + '`', 842, + '|', 581, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(235); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && (lookahead < ';' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '_' || '}' < lookahead)) ADVANCE(940); END_STATE(); - case 880: + case 874: 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', 689, + '!', 657, + '"', 775, + '#', 803, + '$', 767, + '&', 590, + '*', 625, + '-', 620, + ';', 543, + '<', 600, + '>', 606, + '?', 746, + '@', 926, + '\\', 185, + '_', 930, + '|', 581, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(237); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); END_STATE(); - case 881: + case 875: 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', 690, + '!', 660, + '"', 775, + '#', 803, + '$', 768, + '&', 590, + '\'', 479, + '*', 628, + '-', 624, + '0', 793, + ';', 542, + '<', 597, + '=', 934, + '>', 605, + '?', 747, + '@', 927, + '\\', 36, + '_', 929, + '`', 842, + '|', 581, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(238); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && (lookahead < ';' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '_' || '}' < lookahead)) ADVANCE(940); END_STATE(); - case 882: + case 876: 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', 692, + '!', 657, + '"', 775, + '#', 803, + '$', 767, + '&', 590, + '*', 625, + '-', 620, + ';', 543, + '<', 600, + '>', 606, + '?', 746, + '@', 926, + '\\', 107, + '_', 930, + '`', 842, + '|', 581, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(240); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); END_STATE(); - case 883: + case 877: 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, - '\\', 36, - '_', 938, - '`', 850, - '|', 587, + '\n', 693, + '!', 660, + '"', 775, + '#', 803, + '$', 768, + '&', 590, + '\'', 479, + '(', 641, + '*', 628, + '-', 624, + '0', 793, + ';', 543, + '<', 597, + '=', 934, + '>', 605, + '?', 747, + '@', 927, + '\\', 165, + '_', 929, + '`', 842, + '|', 581, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(241); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && (lookahead < ';' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '_' || '}' < lookahead)) ADVANCE(940); END_STATE(); - case 884: + case 878: 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', 695, + '!', 657, + '"', 775, + '#', 803, + '$', 767, + '&', 590, + ')', 643, + '*', 625, + '-', 620, + ';', 543, + '<', 600, + '>', 606, + '?', 746, + '@', 926, + '\\', 109, + '_', 930, + '|', 581, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(243); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); END_STATE(); - case 885: + case 879: 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', 696, + '!', 660, + '"', 775, + '#', 803, + '$', 768, + '&', 590, + '\'', 479, + '(', 641, + ')', 643, + '*', 628, + '-', 624, + '0', 793, + ';', 543, + '<', 597, + '=', 934, + '>', 605, + '?', 747, + '@', 927, + '\\', 39, + '_', 929, + '`', 842, + '|', 581, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(244); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead) && (lookahead < ';' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '_' || '}' < lookahead)) ADVANCE(940); END_STATE(); - case 886: + case 880: 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', 698, + '!', 657, + '"', 775, + '#', 803, + '$', 767, + '&', 590, + '*', 625, + '-', 620, + ';', 542, + '<', 601, + '>', 606, + '?', 746, + '@', 926, + '\\', 208, + '_', 930, + '|', 581, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(246); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); END_STATE(); - case 887: + case 881: 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', 699, + '!', 660, + '"', 775, + '#', 803, + '$', 768, + '&', 590, + '\'', 479, + ')', 643, + '*', 628, + '-', 624, + '0', 793, + ';', 543, + '<', 597, + '=', 934, + '>', 605, + '?', 747, + '@', 927, + '\\', 41, + '_', 929, + '`', 842, + '|', 581, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(247); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead) && (lookahead < ';' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '_' || '}' < lookahead)) ADVANCE(940); END_STATE(); - case 888: + case 882: 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', 701, + '!', 657, + '"', 775, + '#', 803, + '$', 767, + '&', 590, + '*', 625, + '-', 620, + ';', 543, + '<', 601, + '>', 606, + '?', 746, + '@', 926, + '\\', 187, + '_', 930, + '`', 842, + '|', 581, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(249); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); END_STATE(); - case 889: + case 883: 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, + '\n', 702, + '!', 660, + '"', 775, + '#', 803, + '$', 768, + '&', 590, + '\'', 479, + '*', 628, + '-', 624, + '0', 793, + ';', 543, + '<', 597, + '=', 934, + '>', 605, + '?', 747, + '@', 927, '\\', 168, - '_', 938, - '`', 850, - '|', 587, + '_', 929, + '`', 842, + '|', 581, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(250); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && (lookahead < ';' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '_' || '}' < lookahead)) ADVANCE(940); END_STATE(); - case 890: + case 884: 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', 704, + '!', 657, + '"', 775, + '#', 803, + '$', 767, + '&', 590, + ')', 643, + '*', 625, + '-', 620, + ';', 543, + '<', 601, + '>', 606, + '?', 746, + '@', 926, + '\\', 189, + '_', 930, + '|', 581, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(252); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); END_STATE(); - case 891: + case 885: 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', 705, + '!', 660, + '"', 775, + '#', 803, + '$', 768, + '&', 590, + '\'', 479, + '*', 628, + '-', 624, + '0', 793, + ';', 542, + '<', 597, + '>', 605, + '?', 747, + '@', 927, + '\\', 44, + '_', 929, + '`', 842, + 'e', 858, + '|', 581, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(253); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && - (lookahead < ';' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '>' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(940); END_STATE(); - case 892: + case 886: 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', 707, + '!', 657, + '"', 775, + '#', 803, + '$', 767, + '&', 590, + '*', 625, + '-', 620, + ';', 543, + '<', 601, + '>', 606, + '?', 746, + '@', 926, + '\\', 212, + '_', 930, + '|', 581, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(255); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); END_STATE(); - case 893: + case 887: 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', 708, + '!', 660, + '"', 775, + '#', 803, + '$', 768, + '&', 590, + '\'', 479, + '*', 628, + '-', 624, + '0', 793, + ';', 542, + '<', 598, + '>', 605, + '?', 747, + '@', 927, + '\\', 217, + '_', 929, + '`', 842, + 'e', 858, + '|', 581, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(256); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && (lookahead < '>' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '_' || '}' < lookahead)) ADVANCE(940); END_STATE(); - case 894: + case 888: 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', 710, + '!', 657, + '"', 775, + '#', 803, + '$', 767, + '&', 477, + '*', 625, + '-', 620, + '<', 600, + '>', 606, + '?', 746, + '@', 926, + '\\', 118, + '_', 930, + '|', 581, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(258); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); END_STATE(); - case 895: + case 889: 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, + '\n', 711, + '!', 660, + '"', 775, + '#', 803, + '$', 768, + '&', 590, + '\'', 479, + '*', 628, + '-', 624, + '0', 793, + ';', 542, + '<', 597, + '>', 605, + '?', 747, + '@', 927, '\\', 49, - '_', 938, - '`', 850, - '|', 587, + '_', 929, + '`', 842, + '|', 581, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(259); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && (lookahead < '>' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '_' || '}' < lookahead)) ADVANCE(940); END_STATE(); - case 896: + case 890: 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', 713, + '!', 657, + '"', 775, + '#', 803, + '$', 767, + '&', 477, + '*', 625, + '-', 620, + '<', 601, + '>', 606, + '?', 746, + '@', 926, + '\\', 192, + '_', 930, + '|', 581, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(261); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); END_STATE(); - case 897: + case 891: 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', 714, + '!', 660, + '"', 775, + '#', 803, + '$', 768, + '&', 590, + '\'', 479, + '*', 628, + '-', 624, + '0', 793, + ';', 543, + '<', 597, + '>', 605, + '?', 747, + '@', 927, + '\\', 174, + '_', 929, + '`', 842, + '|', 581, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(262); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && (lookahead < '>' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '_' || '}' < lookahead)) ADVANCE(940); END_STATE(); - case 898: + case 892: 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', 716, + '!', 657, + '"', 775, + '#', 803, + '$', 767, + '&', 477, + '*', 625, + '-', 620, + '<', 599, + '>', 606, + '?', 746, + '@', 926, + '\\', 210, + '_', 930, + '|', 504, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(264); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); - END_STATE(); - case 899: - 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, - ); - 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) && - (lookahead < '>' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); END_STATE(); - case 900: - 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, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(267); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); - END_STATE(); - case 901: + case 893: 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, + '\n', 717, + '!', 660, + '"', 775, + '#', 803, + '$', 768, + '&', 477, + '\'', 479, + '(', 641, + '*', 628, + '-', 624, + '0', 793, + '<', 597, + '=', 934, + '>', 605, + '?', 747, + '@', 927, '\\', 52, - '_', 938, - '`', 850, - '|', 587, + '_', 929, + '`', 842, + '|', 581, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(268); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + lookahead == ' ') SKIP(265); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && (lookahead < ';' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '_' || '}' < lookahead)) ADVANCE(940); END_STATE(); - case 902: + case 894: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 725, - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '&', 593, - '*', 631, - '-', 626, - ';', 549, - '?', 754, - '@', 935, + '\n', 719, + '!', 657, + '"', 775, + '#', 803, + '$', 767, + '&', 587, + '*', 625, + '-', 620, + ';', 543, + '?', 746, + '@', 926, '\\', 140, - '_', 939, - 'i', 871, + '_', 930, + 'i', 863, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(270); + lookahead == ' ') SKIP(267); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); END_STATE(); - case 903: - 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, - ); - 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) && - (lookahead < '>' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); - END_STATE(); - case 904: + case 895: 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, + '\n', 720, + '!', 660, + '"', 775, + '#', 803, + '$', 768, + '&', 590, + '\'', 479, + ')', 643, + '*', 628, + '-', 624, + '0', 793, + ';', 543, + '<', 597, + '>', 605, + '?', 747, + '@', 927, '\\', 54, - '_', 938, - '`', 850, - '|', 587, + '_', 929, + '`', 842, + '|', 581, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(273); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + lookahead == ' ') SKIP(268); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && (lookahead < '>' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '_' || '}' < lookahead)) ADVANCE(940); END_STATE(); - case 905: + case 896: 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', 722, + '!', 660, + '"', 775, + '#', 803, + '$', 768, + '&', 590, + '\'', 479, + '*', 628, + '-', 624, + '0', 793, + ';', 542, + '<', 598, + '>', 605, + '?', 747, + '@', 927, + '\\', 220, + '_', 929, + '`', 842, + '|', 581, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(275); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + lookahead == ' ') SKIP(270); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && (lookahead < '>' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '_' || '}' < lookahead)) ADVANCE(940); END_STATE(); - case 906: + case 897: 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', 724, + '!', 660, + '"', 775, + '#', 803, + '$', 768, + '&', 590, + '\'', 479, + '*', 628, + '-', 624, + '0', 793, + ';', 543, + '<', 598, + '>', 605, + '?', 747, + '@', 927, + '\\', 204, + '_', 929, + '`', 842, + '|', 581, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(277); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + lookahead == ' ') SKIP(272); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && (lookahead < '>' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '_' || '}' < lookahead)) ADVANCE(940); END_STATE(); - case 907: + case 898: 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', 726, + '!', 660, + '"', 775, + '#', 803, + '$', 768, + '&', 477, + '\'', 479, + '*', 628, + '-', 624, + '0', 793, + '<', 597, + '=', 934, + '>', 605, + '?', 747, + '@', 927, + '\\', 57, + '_', 929, + '`', 842, + '|', 581, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(279); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + lookahead == ' ') SKIP(274); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && (lookahead < ';' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '_' || '}' < lookahead)) ADVANCE(940); END_STATE(); - case 908: + case 899: 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', 728, + '!', 660, + '"', 775, + '#', 803, + '$', 768, + '&', 590, + '\'', 479, + ')', 643, + '*', 628, + '-', 624, + '0', 793, + ';', 543, + '<', 598, + '>', 605, + '?', 747, + '@', 927, + '\\', 222, + '_', 929, + '`', 842, + '|', 581, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(281); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + lookahead == ' ') SKIP(276); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && - lookahead != ';' && - lookahead != '<' && (lookahead < '>' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '_' || '}' < lookahead)) ADVANCE(940); END_STATE(); - case 909: + case 900: 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', 730, + '!', 660, + '"', 775, + '#', 803, + '$', 768, + '&', 477, + '\'', 479, + '*', 628, + '-', 624, + '0', 793, + '<', 597, + '>', 605, + '?', 747, + '@', 927, + '\\', 68, + '_', 929, + '`', 842, + '|', 581, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(283); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + lookahead == ' ') SKIP(278); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && lookahead != ';' && lookahead != '<' && (lookahead < '>' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '_' || '}' < lookahead)) ADVANCE(940); END_STATE(); - case 910: + case 901: 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', 732, + '!', 660, + '"', 775, + '#', 803, + '$', 768, + '&', 477, + '\'', 479, + '*', 628, + '-', 624, + '0', 793, + '<', 598, + '>', 605, + '?', 747, + '@', 927, + '\\', 227, + '_', 929, + '`', 842, + '|', 581, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(285); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + lookahead == ' ') SKIP(280); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && lookahead != ';' && lookahead != '<' && (lookahead < '>' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '_' || '}' < lookahead)) ADVANCE(940); END_STATE(); - case 911: + case 902: 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, + '\n', 734, + '!', 660, + '"', 775, + '#', 803, + '$', 768, + '&', 587, + '\'', 479, + '*', 628, + '-', 624, + '0', 793, + ';', 543, + '<', 483, + '>', 484, + '?', 747, + '@', 927, '\\', 115, - '_', 938, - '`', 850, + '_', 929, + '`', 842, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(287); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + lookahead == ' ') SKIP(282); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && (lookahead < '>' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '_' || '}' < lookahead)) ADVANCE(940); END_STATE(); - case 912: + case 903: 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', 736, + '!', 660, + '"', 775, + '#', 803, + '$', 768, + '\'', 479, + '*', 628, + '-', 624, + '0', 793, + '<', 483, + '>', 484, + '?', 747, + '@', 927, + '\\', 125, + '_', 929, + '`', 842, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(289); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + lookahead == ' ') SKIP(284); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && lookahead != ';' && lookahead != '<' && (lookahead < '>' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '_' || '}' < lookahead)) ADVANCE(940); END_STATE(); - case 913: + case 904: 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, + '!', 658, + '"', 775, + '#', 803, + '$', 768, + '%', 637, + '&', 589, + '\'', 479, + '(', 641, + '*', 626, + '+', 618, + '-', 621, + '/', 632, + '0', 793, + '<', 595, + '=', 548, + '>', 604, + '?', 747, + '@', 927, '\\', 19, - ']', 669, - '^', 590, - '_', 938, - '`', 850, - '|', 586, + ']', 663, + '^', 584, + '_', 929, + '`', 842, + '|', 580, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(398); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + lookahead == ' ') SKIP(392); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); if (lookahead != 0 && (lookahead < ' ' || '+' < lookahead) && - (lookahead < ';' || '}' < lookahead)) ADVANCE(949); + (lookahead < ';' || '}' < lookahead)) ADVANCE(940); END_STATE(); - case 914: + case 905: 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, + '!', 660, + '"', 775, + '#', 803, + '$', 768, + '&', 496, + '\'', 479, + '*', 628, + '-', 624, + '0', 793, + '<', 596, + '>', 605, + '?', 747, + '@', 927, + '\\', 88, + '_', 929, + '`', 842, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(404); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + lookahead == ' ') SKIP(398); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && lookahead != ';' && lookahead != '<' && (lookahead < '>' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '_' || '}' < lookahead)) ADVANCE(940); END_STATE(); - case 915: + case 906: 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, + '!', 660, + '"', 775, + '#', 803, + '$', 768, + '&', 477, + '\'', 479, + '(', 641, + '*', 628, + '-', 624, + '0', 793, + '<', 597, + '=', 934, + '>', 605, + '?', 747, + '@', 927, + '\\', 59, + '_', 929, + '`', 842, + '|', 581, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(405); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + lookahead == ' ') SKIP(399); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && (lookahead < ';' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '_' || '}' < lookahead)) ADVANCE(940); END_STATE(); - case 916: + case 907: 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, + '!', 660, + '"', 775, + '#', 803, + '$', 768, + '&', 477, + '\'', 479, + '*', 628, + '-', 624, + '0', 793, + '<', 597, + '=', 934, + '>', 605, + '?', 747, + '@', 927, '\\', 62, - '_', 938, - '`', 850, - '|', 587, + '_', 929, + '`', 842, + '|', 581, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(406); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + lookahead == ' ') SKIP(400); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && (lookahead < ';' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '_' || '}' < lookahead)) ADVANCE(940); END_STATE(); - case 917: + case 908: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 483, - '\'', 485, - '*', 634, - '-', 630, - '0', 801, - '<', 603, - '>', 611, - '?', 755, - '@', 936, + '!', 660, + '"', 775, + '#', 803, + '$', 768, + '&', 477, + '\'', 479, + '*', 628, + '-', 624, + '0', 793, + '<', 597, + '>', 605, + '?', 747, + '@', 927, '\\', 65, - ']', 669, - '_', 938, - '`', 850, - '|', 587, + ']', 663, + '_', 929, + '`', 842, + '|', 581, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(407); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + lookahead == ' ') SKIP(401); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && lookahead != ';' && lookahead != '<' && (lookahead < '>' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '_' || '}' < lookahead)) ADVANCE(940); END_STATE(); - case 918: + case 909: 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, + '!', 660, + '"', 775, + '#', 803, + '$', 768, + '&', 477, + '\'', 479, + '*', 628, + '-', 624, + '0', 793, + '<', 597, + '>', 605, + '?', 747, + '@', 927, + '\\', 75, + '_', 929, + '`', 842, + '|', 581, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(408); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + lookahead == ' ') SKIP(402); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && lookahead != ';' && lookahead != '<' && (lookahead < '>' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '_' || '}' < lookahead)) ADVANCE(940); END_STATE(); - case 919: + case 910: 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, + '!', 660, + '"', 775, + '#', 803, + '$', 768, + '&', 477, + '\'', 479, + '*', 628, + '-', 624, + '0', 793, + '<', 598, + '>', 605, + '?', 747, + '@', 927, + '\\', 225, + ']', 663, + '_', 929, + '`', 842, + '|', 581, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(409); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + lookahead == ' ') SKIP(403); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && lookahead != ';' && lookahead != '<' && (lookahead < '>' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '_' || '}' < lookahead)) ADVANCE(940); END_STATE(); - case 920: + case 911: 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, + '!', 660, + '"', 775, + '#', 803, + '$', 768, + '&', 477, + '\'', 479, + '*', 628, + '-', 624, + '0', 793, + '<', 598, + '>', 605, + '?', 747, + '@', 927, + '\\', 229, + '_', 929, + '`', 842, + '|', 581, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(410); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + lookahead == ' ') SKIP(404); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && lookahead != ';' && lookahead != '<' && (lookahead < '>' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '_' || '}' < lookahead)) ADVANCE(940); END_STATE(); - case 921: + case 912: 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, + '!', 660, + '"', 775, + '#', 803, + '$', 768, + '\'', 479, + ')', 643, + '*', 628, + '-', 624, + '0', 793, + '<', 483, + '>', 484, + '?', 747, + '@', 927, + '\\', 127, + '_', 929, + '`', 842, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(411); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + lookahead == ' ') SKIP(405); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(794); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(860); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && lookahead != ';' && lookahead != '<' && (lookahead < '>' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '_' || '}' < lookahead)) ADVANCE(940); END_STATE(); - case 922: + case 913: 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, + '!', 659, + '"', 775, + '#', 803, + '$', 767, + '%', 638, + '&', 588, + ')', 643, + '*', 627, + '+', 619, + '-', 622, + '/', 633, + '<', 603, + '=', 550, + '>', 608, + '?', 746, + '@', 926, + '\\', 73, + '^', 585, + '_', 930, + '|', 582, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(422); + lookahead == ' ') SKIP(416); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); END_STATE(); - case 923: + case 914: 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, + '!', 659, + '"', 775, + '#', 803, + '$', 767, + '%', 638, + '&', 588, + '*', 627, + '+', 619, + '-', 622, + '/', 633, + ':', 748, + '<', 603, + '=', 550, + '>', 608, + '?', 746, + '@', 926, + '\\', 78, + '^', 585, + '_', 930, + '|', 582, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(423); + lookahead == ' ') SKIP(417); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); END_STATE(); - case 924: + case 915: 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, + '!', 659, + '"', 775, + '#', 803, + '$', 767, + '%', 638, + '&', 588, + '*', 627, + '+', 619, + '-', 622, + '/', 633, + '<', 603, + '=', 550, + '>', 608, + '?', 746, + '@', 926, '\\', 70, - ']', 669, - '^', 591, - '_', 939, - '|', 588, + ']', 663, + '^', 585, + '_', 930, + '|', 582, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(424); + lookahead == ' ') SKIP(418); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); END_STATE(); - case 925: + case 916: 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, + '!', 659, + '"', 775, + '#', 803, + '$', 767, + '%', 638, + '&', 588, + '*', 627, + '+', 619, + '-', 622, + '/', 633, + '<', 603, + '=', 550, + '>', 608, + '?', 746, + '@', 926, + '\\', 179, + ']', 497, + '^', 585, + '_', 930, + '|', 582, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(425); + lookahead == ' ') SKIP(419); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); END_STATE(); - case 926: + case 917: 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, + '!', 659, + '"', 775, + '#', 803, + '$', 767, + '%', 638, + '&', 588, + '*', 627, + '+', 619, + '-', 622, + '/', 633, + '<', 603, + '=', 550, + '>', 608, + '?', 746, + '@', 926, + '\\', 80, + '^', 585, + '_', 930, + '|', 582, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(426); + lookahead == ' ') SKIP(420); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); END_STATE(); - case 927: + case 918: 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, + '!', 657, + '"', 775, + '#', 803, + '$', 767, + '&', 477, + '*', 625, + '-', 620, + '<', 600, + '>', 606, + '?', 746, + '@', 926, + '\\', 120, + ']', 663, + '_', 930, + '|', 581, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(438); + lookahead == ' ') SKIP(432); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); END_STATE(); - case 928: + case 919: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '&', 483, - '*', 631, - '-', 626, - '<', 606, - '>', 612, - '?', 754, - '@', 935, + '!', 657, + '"', 775, + '#', 803, + '$', 767, + '&', 477, + '*', 625, + '-', 620, + '<', 600, + '>', 606, + '?', 746, + '@', 926, '\\', 122, - '_', 939, - '|', 587, + '_', 930, + '|', 581, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(439); + lookahead == ' ') SKIP(433); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); END_STATE(); - case 929: + case 920: 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, + '!', 657, + '"', 775, + '#', 803, + '$', 767, + '&', 477, + '*', 625, + '-', 620, + '<', 601, + '>', 606, + '?', 746, + '@', 926, + '\\', 194, + ']', 663, + '_', 930, + '|', 581, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(440); + lookahead == ' ') SKIP(434); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); END_STATE(); - case 930: + case 921: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '&', 483, - '*', 631, - '-', 626, - '<', 607, - '>', 612, - '?', 754, - '@', 935, - '\\', 199, - '_', 939, - '|', 587, + '!', 657, + '"', 775, + '#', 803, + '$', 767, + '&', 477, + '*', 625, + '-', 620, + '<', 601, + '>', 606, + '?', 746, + '@', 926, + '\\', 196, + '_', 930, + '|', 581, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(441); + lookahead == ' ') SKIP(435); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); END_STATE(); - case 931: + case 922: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '!', 663, - '"', 783, - '#', 811, - '$', 775, - ')', 649, - '*', 631, - '-', 626, - '?', 754, - '@', 935, + '!', 657, + '"', 775, + '#', 803, + '$', 767, + ')', 643, + '*', 625, + '-', 620, + '?', 746, + '@', 926, '\\', 142, - '_', 939, - '|', 584, + '_', 930, + '|', 578, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(442); + lookahead == ' ') SKIP(436); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); END_STATE(); - case 932: + case 923: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '*', 631, - '-', 626, - '?', 754, - '@', 935, + '!', 657, + '"', 775, + '#', 803, + '$', 767, + '*', 625, + '-', 620, + '?', 746, + '@', 926, '\\', 146, - '_', 939, + '_', 930, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(444); + lookahead == ' ') SKIP(438); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); END_STATE(); - case 933: + case 924: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '!', 663, - '#', 811, - '$', 775, - '*', 631, - '-', 626, - '?', 754, - '@', 935, + '!', 657, + '#', 803, + '$', 767, + '*', 625, + '-', 620, + '?', 746, + '@', 926, '\\', 150, - '_', 939, + '_', 930, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(447); + lookahead == ' ') SKIP(441); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(866); END_STATE(); - case 934: + case 925: 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(925); END_STATE(); - case 935: + case 926: ACCEPT_TOKEN(anon_sym_AT2); END_STATE(); - case 936: + case 927: 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(506); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); - case 937: + case 928: 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(506); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); - case 938: + case 929: 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(860); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); - case 939: + case 930: 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(866); END_STATE(); - case 940: + case 931: 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(764); + if (lookahead == '\\') ADVANCE(506); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); - case 941: + case 932: 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(789); + if (lookahead == '\\') ADVANCE(506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(791); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); - case 942: + case 933: 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(594); + if (lookahead == '\\') ADVANCE(506); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); - case 943: + case 934: 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(592); + if (lookahead == '\\') ADVANCE(506); + if (lookahead == '~') ADVANCE(667); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); - case 944: + case 935: 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(506); + if (lookahead == 'a') ADVANCE(936); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); - case 945: + case 936: 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(506); + if (lookahead == 'c') ADVANCE(647); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); - case 946: + case 937: 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(506); + if (lookahead == 'n') ADVANCE(537); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); - case 947: + case 938: 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(506); + if (lookahead == 's') ADVANCE(935); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); - case 948: + case 939: 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(506); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(791); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); - case 949: + case 940: 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(506); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(940); END_STATE(); default: return false; @@ -21111,7576 +20610,7195 @@ 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 = 534, .external_lex_state = 2}, + [2] = {.lex_state = 406, .external_lex_state = 2}, + [3] = {.lex_state = 406, .external_lex_state = 2}, + [4] = {.lex_state = 406, .external_lex_state = 2}, + [5] = {.lex_state = 408, .external_lex_state = 3}, + [6] = {.lex_state = 408, .external_lex_state = 3}, + [7] = {.lex_state = 408, .external_lex_state = 3}, + [8] = {.lex_state = 408, .external_lex_state = 3}, + [9] = {.lex_state = 408, .external_lex_state = 3}, + [10] = {.lex_state = 408, .external_lex_state = 3}, + [11] = {.lex_state = 408, .external_lex_state = 3}, + [12] = {.lex_state = 408, .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}, + [14] = {.lex_state = 534, .external_lex_state = 2}, + [15] = {.lex_state = 534, .external_lex_state = 2}, + [16] = {.lex_state = 534, .external_lex_state = 2}, + [17] = {.lex_state = 534, .external_lex_state = 2}, + [18] = {.lex_state = 534, .external_lex_state = 2}, + [19] = {.lex_state = 534, .external_lex_state = 2}, + [20] = {.lex_state = 534, .external_lex_state = 2}, + [21] = {.lex_state = 534, .external_lex_state = 2}, + [22] = {.lex_state = 409, .external_lex_state = 5}, + [23] = {.lex_state = 409, .external_lex_state = 5}, + [24] = {.lex_state = 409, .external_lex_state = 5}, + [25] = {.lex_state = 534, .external_lex_state = 2}, + [26] = {.lex_state = 409, .external_lex_state = 5}, + [27] = {.lex_state = 393, .external_lex_state = 6}, + [28] = {.lex_state = 409, .external_lex_state = 5}, + [29] = {.lex_state = 409, .external_lex_state = 5}, + [30] = {.lex_state = 409, .external_lex_state = 5}, + [31] = {.lex_state = 409, .external_lex_state = 5}, + [32] = {.lex_state = 409, .external_lex_state = 5}, + [33] = {.lex_state = 409, .external_lex_state = 5}, + [34] = {.lex_state = 409, .external_lex_state = 5}, + [35] = {.lex_state = 409, .external_lex_state = 5}, + [36] = {.lex_state = 534, .external_lex_state = 2}, + [37] = {.lex_state = 534, .external_lex_state = 2}, + [38] = {.lex_state = 534, .external_lex_state = 2}, + [39] = {.lex_state = 534, .external_lex_state = 2}, + [40] = {.lex_state = 534, .external_lex_state = 2}, + [41] = {.lex_state = 534, .external_lex_state = 2}, + [42] = {.lex_state = 534, .external_lex_state = 2}, + [43] = {.lex_state = 534, .external_lex_state = 2}, + [44] = {.lex_state = 534, .external_lex_state = 2}, + [45] = {.lex_state = 534, .external_lex_state = 2}, + [46] = {.lex_state = 534, .external_lex_state = 2}, + [47] = {.lex_state = 534, .external_lex_state = 2}, + [48] = {.lex_state = 534, .external_lex_state = 2}, + [49] = {.lex_state = 534, .external_lex_state = 2}, + [50] = {.lex_state = 534, .external_lex_state = 2}, + [51] = {.lex_state = 534, .external_lex_state = 2}, + [52] = {.lex_state = 534, .external_lex_state = 2}, + [53] = {.lex_state = 534, .external_lex_state = 2}, + [54] = {.lex_state = 534, .external_lex_state = 2}, + [55] = {.lex_state = 534, .external_lex_state = 2}, + [56] = {.lex_state = 534, .external_lex_state = 2}, + [57] = {.lex_state = 534, .external_lex_state = 2}, + [58] = {.lex_state = 534, .external_lex_state = 2}, + [59] = {.lex_state = 534, .external_lex_state = 2}, + [60] = {.lex_state = 534, .external_lex_state = 2}, + [61] = {.lex_state = 534, .external_lex_state = 2}, + [62] = {.lex_state = 410, .external_lex_state = 2}, + [63] = {.lex_state = 534, .external_lex_state = 2}, + [64] = {.lex_state = 410, .external_lex_state = 2}, + [65] = {.lex_state = 534, .external_lex_state = 2}, + [66] = {.lex_state = 410, .external_lex_state = 2}, + [67] = {.lex_state = 410, .external_lex_state = 2}, + [68] = {.lex_state = 534, .external_lex_state = 2}, + [69] = {.lex_state = 410, .external_lex_state = 2}, + [70] = {.lex_state = 534, .external_lex_state = 2}, + [71] = {.lex_state = 410, .external_lex_state = 2}, + [72] = {.lex_state = 534, .external_lex_state = 2}, + [73] = {.lex_state = 534, .external_lex_state = 2}, + [74] = {.lex_state = 534, .external_lex_state = 2}, + [75] = {.lex_state = 410, .external_lex_state = 2}, + [76] = {.lex_state = 410, .external_lex_state = 2}, + [77] = {.lex_state = 534, .external_lex_state = 2}, + [78] = {.lex_state = 534, .external_lex_state = 2}, + [79] = {.lex_state = 410, .external_lex_state = 2}, + [80] = {.lex_state = 410, .external_lex_state = 2}, + [81] = {.lex_state = 534, .external_lex_state = 2}, + [82] = {.lex_state = 534, .external_lex_state = 2}, + [83] = {.lex_state = 410, .external_lex_state = 2}, + [84] = {.lex_state = 534, .external_lex_state = 2}, + [85] = {.lex_state = 534, .external_lex_state = 2}, + [86] = {.lex_state = 534, .external_lex_state = 2}, + [87] = {.lex_state = 410, .external_lex_state = 2}, + [88] = {.lex_state = 410, .external_lex_state = 2}, + [89] = {.lex_state = 534, .external_lex_state = 2}, + [90] = {.lex_state = 534, .external_lex_state = 2}, + [91] = {.lex_state = 410, .external_lex_state = 2}, + [92] = {.lex_state = 534, .external_lex_state = 2}, + [93] = {.lex_state = 410, .external_lex_state = 2}, + [94] = {.lex_state = 534, .external_lex_state = 2}, + [95] = {.lex_state = 534, .external_lex_state = 2}, + [96] = {.lex_state = 410, .external_lex_state = 2}, + [97] = {.lex_state = 534, .external_lex_state = 2}, + [98] = {.lex_state = 410, .external_lex_state = 2}, + [99] = {.lex_state = 534, .external_lex_state = 2}, + [100] = {.lex_state = 534, .external_lex_state = 2}, + [101] = {.lex_state = 410, .external_lex_state = 2}, + [102] = {.lex_state = 534, .external_lex_state = 2}, + [103] = {.lex_state = 534, .external_lex_state = 2}, + [104] = {.lex_state = 534, .external_lex_state = 2}, + [105] = {.lex_state = 534, .external_lex_state = 2}, + [106] = {.lex_state = 534, .external_lex_state = 2}, + [107] = {.lex_state = 534, .external_lex_state = 2}, + [108] = {.lex_state = 534, .external_lex_state = 2}, + [109] = {.lex_state = 534, .external_lex_state = 2}, + [110] = {.lex_state = 534, .external_lex_state = 2}, + [111] = {.lex_state = 534, .external_lex_state = 2}, + [112] = {.lex_state = 534, .external_lex_state = 2}, + [113] = {.lex_state = 534, .external_lex_state = 2}, + [114] = {.lex_state = 534, .external_lex_state = 2}, + [115] = {.lex_state = 534, .external_lex_state = 2}, + [116] = {.lex_state = 534, .external_lex_state = 2}, + [117] = {.lex_state = 534, .external_lex_state = 2}, + [118] = {.lex_state = 534, .external_lex_state = 2}, + [119] = {.lex_state = 534, .external_lex_state = 2}, + [120] = {.lex_state = 534, .external_lex_state = 2}, + [121] = {.lex_state = 534, .external_lex_state = 2}, + [122] = {.lex_state = 534, .external_lex_state = 2}, + [123] = {.lex_state = 534, .external_lex_state = 2}, + [124] = {.lex_state = 534, .external_lex_state = 2}, + [125] = {.lex_state = 534, .external_lex_state = 2}, + [126] = {.lex_state = 534, .external_lex_state = 2}, + [127] = {.lex_state = 534, .external_lex_state = 2}, + [128] = {.lex_state = 534, .external_lex_state = 2}, + [129] = {.lex_state = 534, .external_lex_state = 2}, + [130] = {.lex_state = 534, .external_lex_state = 2}, + [131] = {.lex_state = 534, .external_lex_state = 2}, + [132] = {.lex_state = 534, .external_lex_state = 2}, + [133] = {.lex_state = 534, .external_lex_state = 2}, + [134] = {.lex_state = 534, .external_lex_state = 2}, + [135] = {.lex_state = 534, .external_lex_state = 2}, + [136] = {.lex_state = 534, .external_lex_state = 2}, + [137] = {.lex_state = 534, .external_lex_state = 2}, + [138] = {.lex_state = 534, .external_lex_state = 2}, + [139] = {.lex_state = 534, .external_lex_state = 2}, + [140] = {.lex_state = 534, .external_lex_state = 2}, + [141] = {.lex_state = 534, .external_lex_state = 2}, + [142] = {.lex_state = 534, .external_lex_state = 2}, + [143] = {.lex_state = 534, .external_lex_state = 2}, + [144] = {.lex_state = 534, .external_lex_state = 2}, + [145] = {.lex_state = 534, .external_lex_state = 2}, + [146] = {.lex_state = 534, .external_lex_state = 2}, + [147] = {.lex_state = 534, .external_lex_state = 2}, + [148] = {.lex_state = 534, .external_lex_state = 2}, + [149] = {.lex_state = 534, .external_lex_state = 2}, + [150] = {.lex_state = 534, .external_lex_state = 2}, + [151] = {.lex_state = 534, .external_lex_state = 2}, + [152] = {.lex_state = 534, .external_lex_state = 2}, + [153] = {.lex_state = 534, .external_lex_state = 2}, + [154] = {.lex_state = 534, .external_lex_state = 2}, + [155] = {.lex_state = 534, .external_lex_state = 2}, + [156] = {.lex_state = 534, .external_lex_state = 2}, + [157] = {.lex_state = 534, .external_lex_state = 2}, + [158] = {.lex_state = 534, .external_lex_state = 2}, + [159] = {.lex_state = 534, .external_lex_state = 2}, + [160] = {.lex_state = 534, .external_lex_state = 2}, + [161] = {.lex_state = 534, .external_lex_state = 2}, + [162] = {.lex_state = 534, .external_lex_state = 2}, + [163] = {.lex_state = 534, .external_lex_state = 2}, + [164] = {.lex_state = 534, .external_lex_state = 2}, + [165] = {.lex_state = 534, .external_lex_state = 2}, + [166] = {.lex_state = 534, .external_lex_state = 2}, + [167] = {.lex_state = 534, .external_lex_state = 2}, + [168] = {.lex_state = 534, .external_lex_state = 2}, + [169] = {.lex_state = 534, .external_lex_state = 2}, + [170] = {.lex_state = 534, .external_lex_state = 2}, + [171] = {.lex_state = 534, .external_lex_state = 2}, + [172] = {.lex_state = 534, .external_lex_state = 2}, + [173] = {.lex_state = 534, .external_lex_state = 2}, + [174] = {.lex_state = 534, .external_lex_state = 2}, + [175] = {.lex_state = 534, .external_lex_state = 2}, + [176] = {.lex_state = 534, .external_lex_state = 2}, + [177] = {.lex_state = 534, .external_lex_state = 2}, + [178] = {.lex_state = 534, .external_lex_state = 2}, + [179] = {.lex_state = 534, .external_lex_state = 2}, + [180] = {.lex_state = 534, .external_lex_state = 2}, + [181] = {.lex_state = 534, .external_lex_state = 2}, + [182] = {.lex_state = 534, .external_lex_state = 2}, + [183] = {.lex_state = 534, .external_lex_state = 2}, + [184] = {.lex_state = 534, .external_lex_state = 2}, + [185] = {.lex_state = 534, .external_lex_state = 2}, + [186] = {.lex_state = 534, .external_lex_state = 2}, + [187] = {.lex_state = 534, .external_lex_state = 2}, + [188] = {.lex_state = 534, .external_lex_state = 2}, + [189] = {.lex_state = 534, .external_lex_state = 2}, + [190] = {.lex_state = 534, .external_lex_state = 2}, + [191] = {.lex_state = 534, .external_lex_state = 2}, + [192] = {.lex_state = 534, .external_lex_state = 2}, + [193] = {.lex_state = 534, .external_lex_state = 2}, + [194] = {.lex_state = 534, .external_lex_state = 2}, + [195] = {.lex_state = 534, .external_lex_state = 2}, + [196] = {.lex_state = 534, .external_lex_state = 2}, + [197] = {.lex_state = 534, .external_lex_state = 2}, + [198] = {.lex_state = 534, .external_lex_state = 2}, + [199] = {.lex_state = 534, .external_lex_state = 2}, + [200] = {.lex_state = 534, .external_lex_state = 2}, + [201] = {.lex_state = 534, .external_lex_state = 2}, + [202] = {.lex_state = 534, .external_lex_state = 2}, + [203] = {.lex_state = 534, .external_lex_state = 2}, + [204] = {.lex_state = 534, .external_lex_state = 2}, + [205] = {.lex_state = 534, .external_lex_state = 2}, + [206] = {.lex_state = 534, .external_lex_state = 2}, + [207] = {.lex_state = 534, .external_lex_state = 2}, + [208] = {.lex_state = 534, .external_lex_state = 2}, + [209] = {.lex_state = 534, .external_lex_state = 2}, + [210] = {.lex_state = 534, .external_lex_state = 2}, + [211] = {.lex_state = 534, .external_lex_state = 2}, + [212] = {.lex_state = 534, .external_lex_state = 2}, + [213] = {.lex_state = 534, .external_lex_state = 2}, + [214] = {.lex_state = 534, .external_lex_state = 2}, + [215] = {.lex_state = 534, .external_lex_state = 2}, + [216] = {.lex_state = 534, .external_lex_state = 2}, + [217] = {.lex_state = 534, .external_lex_state = 2}, + [218] = {.lex_state = 534, .external_lex_state = 2}, + [219] = {.lex_state = 534, .external_lex_state = 2}, + [220] = {.lex_state = 534, .external_lex_state = 2}, + [221] = {.lex_state = 534, .external_lex_state = 2}, + [222] = {.lex_state = 534, .external_lex_state = 2}, + [223] = {.lex_state = 534, .external_lex_state = 2}, + [224] = {.lex_state = 534, .external_lex_state = 2}, + [225] = {.lex_state = 534, .external_lex_state = 2}, + [226] = {.lex_state = 534, .external_lex_state = 2}, + [227] = {.lex_state = 534, .external_lex_state = 2}, + [228] = {.lex_state = 534, .external_lex_state = 2}, + [229] = {.lex_state = 534, .external_lex_state = 2}, + [230] = {.lex_state = 534, .external_lex_state = 2}, + [231] = {.lex_state = 534, .external_lex_state = 2}, + [232] = {.lex_state = 534, .external_lex_state = 2}, + [233] = {.lex_state = 534, .external_lex_state = 2}, + [234] = {.lex_state = 534, .external_lex_state = 2}, + [235] = {.lex_state = 534, .external_lex_state = 2}, + [236] = {.lex_state = 534, .external_lex_state = 2}, + [237] = {.lex_state = 534, .external_lex_state = 2}, + [238] = {.lex_state = 534, .external_lex_state = 2}, + [239] = {.lex_state = 534, .external_lex_state = 2}, + [240] = {.lex_state = 534, .external_lex_state = 2}, + [241] = {.lex_state = 534, .external_lex_state = 2}, + [242] = {.lex_state = 534, .external_lex_state = 2}, + [243] = {.lex_state = 534, .external_lex_state = 2}, + [244] = {.lex_state = 534, .external_lex_state = 2}, + [245] = {.lex_state = 534, .external_lex_state = 2}, + [246] = {.lex_state = 534, .external_lex_state = 2}, + [247] = {.lex_state = 534, .external_lex_state = 2}, + [248] = {.lex_state = 534, .external_lex_state = 2}, + [249] = {.lex_state = 534, .external_lex_state = 2}, + [250] = {.lex_state = 534, .external_lex_state = 2}, + [251] = {.lex_state = 534, .external_lex_state = 2}, + [252] = {.lex_state = 534, .external_lex_state = 2}, + [253] = {.lex_state = 534, .external_lex_state = 2}, + [254] = {.lex_state = 534, .external_lex_state = 2}, + [255] = {.lex_state = 534, .external_lex_state = 2}, + [256] = {.lex_state = 534, .external_lex_state = 2}, + [257] = {.lex_state = 534, .external_lex_state = 2}, + [258] = {.lex_state = 534, .external_lex_state = 2}, + [259] = {.lex_state = 534, .external_lex_state = 2}, + [260] = {.lex_state = 534, .external_lex_state = 2}, + [261] = {.lex_state = 534, .external_lex_state = 2}, + [262] = {.lex_state = 534, .external_lex_state = 2}, + [263] = {.lex_state = 534, .external_lex_state = 2}, + [264] = {.lex_state = 534, .external_lex_state = 2}, + [265] = {.lex_state = 534, .external_lex_state = 2}, + [266] = {.lex_state = 534, .external_lex_state = 2}, + [267] = {.lex_state = 534, .external_lex_state = 2}, + [268] = {.lex_state = 534, .external_lex_state = 2}, + [269] = {.lex_state = 534, .external_lex_state = 2}, + [270] = {.lex_state = 534, .external_lex_state = 2}, + [271] = {.lex_state = 534, .external_lex_state = 2}, + [272] = {.lex_state = 534, .external_lex_state = 2}, + [273] = {.lex_state = 534, .external_lex_state = 2}, + [274] = {.lex_state = 534, .external_lex_state = 2}, + [275] = {.lex_state = 534, .external_lex_state = 2}, + [276] = {.lex_state = 534, .external_lex_state = 2}, + [277] = {.lex_state = 534, .external_lex_state = 2}, + [278] = {.lex_state = 534, .external_lex_state = 2}, + [279] = {.lex_state = 534, .external_lex_state = 2}, + [280] = {.lex_state = 534, .external_lex_state = 2}, + [281] = {.lex_state = 534, .external_lex_state = 2}, + [282] = {.lex_state = 534, .external_lex_state = 2}, + [283] = {.lex_state = 534, .external_lex_state = 2}, + [284] = {.lex_state = 534, .external_lex_state = 2}, + [285] = {.lex_state = 534, .external_lex_state = 2}, + [286] = {.lex_state = 534, .external_lex_state = 2}, + [287] = {.lex_state = 534, .external_lex_state = 2}, + [288] = {.lex_state = 534, .external_lex_state = 2}, + [289] = {.lex_state = 534, .external_lex_state = 2}, + [290] = {.lex_state = 534, .external_lex_state = 2}, + [291] = {.lex_state = 534, .external_lex_state = 2}, + [292] = {.lex_state = 534, .external_lex_state = 2}, + [293] = {.lex_state = 534, .external_lex_state = 2}, + [294] = {.lex_state = 534, .external_lex_state = 2}, + [295] = {.lex_state = 534, .external_lex_state = 2}, + [296] = {.lex_state = 534, .external_lex_state = 2}, + [297] = {.lex_state = 534, .external_lex_state = 2}, + [298] = {.lex_state = 534, .external_lex_state = 2}, + [299] = {.lex_state = 534, .external_lex_state = 2}, + [300] = {.lex_state = 534, .external_lex_state = 2}, + [301] = {.lex_state = 534, .external_lex_state = 2}, + [302] = {.lex_state = 534, .external_lex_state = 2}, + [303] = {.lex_state = 534, .external_lex_state = 2}, + [304] = {.lex_state = 534, .external_lex_state = 2}, + [305] = {.lex_state = 534, .external_lex_state = 2}, + [306] = {.lex_state = 534, .external_lex_state = 2}, + [307] = {.lex_state = 534, .external_lex_state = 2}, + [308] = {.lex_state = 534, .external_lex_state = 2}, + [309] = {.lex_state = 534, .external_lex_state = 2}, + [310] = {.lex_state = 534, .external_lex_state = 2}, + [311] = {.lex_state = 534, .external_lex_state = 2}, + [312] = {.lex_state = 534, .external_lex_state = 2}, + [313] = {.lex_state = 534, .external_lex_state = 2}, + [314] = {.lex_state = 534, .external_lex_state = 2}, + [315] = {.lex_state = 534, .external_lex_state = 2}, + [316] = {.lex_state = 534, .external_lex_state = 2}, + [317] = {.lex_state = 534, .external_lex_state = 2}, + [318] = {.lex_state = 534, .external_lex_state = 2}, + [319] = {.lex_state = 534, .external_lex_state = 2}, + [320] = {.lex_state = 534, .external_lex_state = 2}, + [321] = {.lex_state = 534, .external_lex_state = 2}, + [322] = {.lex_state = 534, .external_lex_state = 2}, + [323] = {.lex_state = 534, .external_lex_state = 2}, + [324] = {.lex_state = 534, .external_lex_state = 2}, + [325] = {.lex_state = 534, .external_lex_state = 2}, + [326] = {.lex_state = 534, .external_lex_state = 2}, + [327] = {.lex_state = 534, .external_lex_state = 2}, + [328] = {.lex_state = 534, .external_lex_state = 2}, + [329] = {.lex_state = 534, .external_lex_state = 2}, + [330] = {.lex_state = 534, .external_lex_state = 2}, + [331] = {.lex_state = 534, .external_lex_state = 2}, + [332] = {.lex_state = 534, .external_lex_state = 2}, + [333] = {.lex_state = 534, .external_lex_state = 2}, + [334] = {.lex_state = 534, .external_lex_state = 2}, + [335] = {.lex_state = 534, .external_lex_state = 2}, + [336] = {.lex_state = 534, .external_lex_state = 2}, + [337] = {.lex_state = 534, .external_lex_state = 2}, + [338] = {.lex_state = 534, .external_lex_state = 2}, + [339] = {.lex_state = 534, .external_lex_state = 2}, + [340] = {.lex_state = 534, .external_lex_state = 2}, + [341] = {.lex_state = 534, .external_lex_state = 2}, + [342] = {.lex_state = 534, .external_lex_state = 2}, + [343] = {.lex_state = 534, .external_lex_state = 2}, + [344] = {.lex_state = 534, .external_lex_state = 2}, + [345] = {.lex_state = 534, .external_lex_state = 2}, + [346] = {.lex_state = 534, .external_lex_state = 2}, + [347] = {.lex_state = 534, .external_lex_state = 2}, + [348] = {.lex_state = 534, .external_lex_state = 2}, + [349] = {.lex_state = 534, .external_lex_state = 2}, + [350] = {.lex_state = 534, .external_lex_state = 2}, + [351] = {.lex_state = 534, .external_lex_state = 2}, + [352] = {.lex_state = 534, .external_lex_state = 2}, + [353] = {.lex_state = 534, .external_lex_state = 2}, + [354] = {.lex_state = 534, .external_lex_state = 2}, + [355] = {.lex_state = 534, .external_lex_state = 2}, + [356] = {.lex_state = 534, .external_lex_state = 2}, + [357] = {.lex_state = 534, .external_lex_state = 2}, + [358] = {.lex_state = 534, .external_lex_state = 2}, + [359] = {.lex_state = 534, .external_lex_state = 2}, + [360] = {.lex_state = 534, .external_lex_state = 2}, + [361] = {.lex_state = 534, .external_lex_state = 2}, + [362] = {.lex_state = 534, .external_lex_state = 2}, + [363] = {.lex_state = 534, .external_lex_state = 2}, + [364] = {.lex_state = 534, .external_lex_state = 2}, + [365] = {.lex_state = 534, .external_lex_state = 2}, + [366] = {.lex_state = 534, .external_lex_state = 2}, + [367] = {.lex_state = 534, .external_lex_state = 2}, + [368] = {.lex_state = 534, .external_lex_state = 2}, + [369] = {.lex_state = 534, .external_lex_state = 2}, + [370] = {.lex_state = 534, .external_lex_state = 2}, + [371] = {.lex_state = 534, .external_lex_state = 2}, + [372] = {.lex_state = 534, .external_lex_state = 2}, + [373] = {.lex_state = 534, .external_lex_state = 2}, + [374] = {.lex_state = 534, .external_lex_state = 2}, + [375] = {.lex_state = 534, .external_lex_state = 2}, + [376] = {.lex_state = 534, .external_lex_state = 2}, + [377] = {.lex_state = 534, .external_lex_state = 2}, + [378] = {.lex_state = 534, .external_lex_state = 2}, + [379] = {.lex_state = 534, .external_lex_state = 2}, + [380] = {.lex_state = 534, .external_lex_state = 2}, + [381] = {.lex_state = 534, .external_lex_state = 2}, + [382] = {.lex_state = 534, .external_lex_state = 2}, + [383] = {.lex_state = 534, .external_lex_state = 2}, + [384] = {.lex_state = 534, .external_lex_state = 2}, + [385] = {.lex_state = 410, .external_lex_state = 2}, + [386] = {.lex_state = 534, .external_lex_state = 2}, + [387] = {.lex_state = 534, .external_lex_state = 2}, + [388] = {.lex_state = 534, .external_lex_state = 2}, + [389] = {.lex_state = 534, .external_lex_state = 2}, + [390] = {.lex_state = 534, .external_lex_state = 2}, + [391] = {.lex_state = 534, .external_lex_state = 2}, + [392] = {.lex_state = 534, .external_lex_state = 2}, + [393] = {.lex_state = 534, .external_lex_state = 2}, + [394] = {.lex_state = 534, .external_lex_state = 2}, + [395] = {.lex_state = 534, .external_lex_state = 2}, + [396] = {.lex_state = 534, .external_lex_state = 2}, + [397] = {.lex_state = 534, .external_lex_state = 2}, + [398] = {.lex_state = 534, .external_lex_state = 2}, + [399] = {.lex_state = 534, .external_lex_state = 2}, + [400] = {.lex_state = 534, .external_lex_state = 2}, + [401] = {.lex_state = 534, .external_lex_state = 2}, + [402] = {.lex_state = 534, .external_lex_state = 2}, + [403] = {.lex_state = 534, .external_lex_state = 2}, + [404] = {.lex_state = 534, .external_lex_state = 2}, + [405] = {.lex_state = 534, .external_lex_state = 2}, + [406] = {.lex_state = 534, .external_lex_state = 2}, + [407] = {.lex_state = 534, .external_lex_state = 2}, + [408] = {.lex_state = 534, .external_lex_state = 2}, + [409] = {.lex_state = 534, .external_lex_state = 2}, + [410] = {.lex_state = 534, .external_lex_state = 2}, + [411] = {.lex_state = 534, .external_lex_state = 2}, + [412] = {.lex_state = 534, .external_lex_state = 2}, + [413] = {.lex_state = 534, .external_lex_state = 2}, + [414] = {.lex_state = 534, .external_lex_state = 2}, + [415] = {.lex_state = 534, .external_lex_state = 2}, + [416] = {.lex_state = 534, .external_lex_state = 2}, + [417] = {.lex_state = 534, .external_lex_state = 2}, + [418] = {.lex_state = 534, .external_lex_state = 2}, + [419] = {.lex_state = 396, .external_lex_state = 7}, + [420] = {.lex_state = 396, .external_lex_state = 7}, + [421] = {.lex_state = 394, .external_lex_state = 8}, + [422] = {.lex_state = 396, .external_lex_state = 7}, + [423] = {.lex_state = 396, .external_lex_state = 7}, + [424] = {.lex_state = 396, .external_lex_state = 7}, + [425] = {.lex_state = 396, .external_lex_state = 7}, + [426] = {.lex_state = 396, .external_lex_state = 7}, + [427] = {.lex_state = 396, .external_lex_state = 7}, + [428] = {.lex_state = 395, .external_lex_state = 8}, + [429] = {.lex_state = 397, .external_lex_state = 8}, + [430] = {.lex_state = 394, .external_lex_state = 8}, + [431] = {.lex_state = 12, .external_lex_state = 9}, + [432] = {.lex_state = 12, .external_lex_state = 9}, + [433] = {.lex_state = 392, .external_lex_state = 10}, + [434] = {.lex_state = 392, .external_lex_state = 10}, + [435] = {.lex_state = 156, .external_lex_state = 4}, + [436] = {.lex_state = 156, .external_lex_state = 4}, + [437] = {.lex_state = 156, .external_lex_state = 4}, + [438] = {.lex_state = 156, .external_lex_state = 4}, + [439] = {.lex_state = 156, .external_lex_state = 4}, + [440] = {.lex_state = 156, .external_lex_state = 4}, + [441] = {.lex_state = 156, .external_lex_state = 4}, + [442] = {.lex_state = 156, .external_lex_state = 4}, + [443] = {.lex_state = 156, .external_lex_state = 4}, + [444] = {.lex_state = 156, .external_lex_state = 4}, + [445] = {.lex_state = 156, .external_lex_state = 4}, + [446] = {.lex_state = 156, .external_lex_state = 4}, + [447] = {.lex_state = 156, .external_lex_state = 4}, + [448] = {.lex_state = 156, .external_lex_state = 4}, + [449] = {.lex_state = 156, .external_lex_state = 4}, + [450] = {.lex_state = 156, .external_lex_state = 4}, + [451] = {.lex_state = 156, .external_lex_state = 4}, + [452] = {.lex_state = 156, .external_lex_state = 4}, + [453] = {.lex_state = 156, .external_lex_state = 4}, + [454] = {.lex_state = 156, .external_lex_state = 4}, + [455] = {.lex_state = 156, .external_lex_state = 4}, + [456] = {.lex_state = 156, .external_lex_state = 4}, + [457] = {.lex_state = 156, .external_lex_state = 4}, + [458] = {.lex_state = 156, .external_lex_state = 4}, + [459] = {.lex_state = 156, .external_lex_state = 4}, + [460] = {.lex_state = 230, .external_lex_state = 11}, + [461] = {.lex_state = 230, .external_lex_state = 11}, + [462] = {.lex_state = 230, .external_lex_state = 11}, + [463] = {.lex_state = 230, .external_lex_state = 11}, + [464] = {.lex_state = 414, .external_lex_state = 6}, + [465] = {.lex_state = 414, .external_lex_state = 6}, + [466] = {.lex_state = 414, .external_lex_state = 6}, + [467] = {.lex_state = 414, .external_lex_state = 6}, + [468] = {.lex_state = 414, .external_lex_state = 6}, + [469] = {.lex_state = 414, .external_lex_state = 6}, + [470] = {.lex_state = 414, .external_lex_state = 6}, + [471] = {.lex_state = 414, .external_lex_state = 6}, + [472] = {.lex_state = 414, .external_lex_state = 6}, + [473] = {.lex_state = 414, .external_lex_state = 6}, + [474] = {.lex_state = 414, .external_lex_state = 6}, + [475] = {.lex_state = 414, .external_lex_state = 6}, + [476] = {.lex_state = 414, .external_lex_state = 6}, + [477] = {.lex_state = 414, .external_lex_state = 6}, + [478] = {.lex_state = 414, .external_lex_state = 6}, + [479] = {.lex_state = 414, .external_lex_state = 6}, + [480] = {.lex_state = 414, .external_lex_state = 6}, + [481] = {.lex_state = 414, .external_lex_state = 6}, + [482] = {.lex_state = 414, .external_lex_state = 6}, + [483] = {.lex_state = 414, .external_lex_state = 6}, + [484] = {.lex_state = 414, .external_lex_state = 6}, + [485] = {.lex_state = 414, .external_lex_state = 6}, + [486] = {.lex_state = 414, .external_lex_state = 6}, + [487] = {.lex_state = 414, .external_lex_state = 6}, + [488] = {.lex_state = 414, .external_lex_state = 6}, + [489] = {.lex_state = 415, .external_lex_state = 12}, + [490] = {.lex_state = 415, .external_lex_state = 12}, + [491] = {.lex_state = 415, .external_lex_state = 12}, + [492] = {.lex_state = 415, .external_lex_state = 12}, + [493] = {.lex_state = 411, .external_lex_state = 2}, + [494] = {.lex_state = 411, .external_lex_state = 2}, + [495] = {.lex_state = 233, .external_lex_state = 13}, + [496] = {.lex_state = 233, .external_lex_state = 13}, + [497] = {.lex_state = 236, .external_lex_state = 11}, + [498] = {.lex_state = 236, .external_lex_state = 11}, + [499] = {.lex_state = 233, .external_lex_state = 14}, + [500] = {.lex_state = 516, .external_lex_state = 11}, + [501] = {.lex_state = 233, .external_lex_state = 14}, + [502] = {.lex_state = 233, .external_lex_state = 14}, + [503] = {.lex_state = 516, .external_lex_state = 11}, + [504] = {.lex_state = 516, .external_lex_state = 11}, + [505] = {.lex_state = 516, .external_lex_state = 11}, + [506] = {.lex_state = 242, .external_lex_state = 15}, + [507] = {.lex_state = 236, .external_lex_state = 16}, + [508] = {.lex_state = 242, .external_lex_state = 15}, + [509] = {.lex_state = 236, .external_lex_state = 16}, + [510] = {.lex_state = 213, .external_lex_state = 17}, + [511] = {.lex_state = 516, .external_lex_state = 11}, + [512] = {.lex_state = 236, .external_lex_state = 16}, + [513] = {.lex_state = 213, .external_lex_state = 17}, + [514] = {.lex_state = 516, .external_lex_state = 11}, + [515] = {.lex_state = 516, .external_lex_state = 11}, + [516] = {.lex_state = 242, .external_lex_state = 15}, + [517] = {.lex_state = 516, .external_lex_state = 11}, + [518] = {.lex_state = 245, .external_lex_state = 18}, + [519] = {.lex_state = 245, .external_lex_state = 18}, + [520] = {.lex_state = 516, .external_lex_state = 16}, + [521] = {.lex_state = 516, .external_lex_state = 16}, + [522] = {.lex_state = 516, .external_lex_state = 16}, + [523] = {.lex_state = 245, .external_lex_state = 18}, + [524] = {.lex_state = 516, .external_lex_state = 16}, + [525] = {.lex_state = 516, .external_lex_state = 16}, + [526] = {.lex_state = 232, .external_lex_state = 19}, + [527] = {.lex_state = 235, .external_lex_state = 9}, + [528] = {.lex_state = 235, .external_lex_state = 9}, + [529] = {.lex_state = 232, .external_lex_state = 19}, + [530] = {.lex_state = 516, .external_lex_state = 16}, + [531] = {.lex_state = 518, .external_lex_state = 18}, + [532] = {.lex_state = 238, .external_lex_state = 20}, + [533] = {.lex_state = 517, .external_lex_state = 9}, + [534] = {.lex_state = 251, .external_lex_state = 21}, + [535] = {.lex_state = 518, .external_lex_state = 18}, + [536] = {.lex_state = 516, .external_lex_state = 16}, + [537] = {.lex_state = 517, .external_lex_state = 9}, + [538] = {.lex_state = 518, .external_lex_state = 18}, + [539] = {.lex_state = 534, .external_lex_state = 2}, + [540] = {.lex_state = 518, .external_lex_state = 18}, + [541] = {.lex_state = 244, .external_lex_state = 9}, + [542] = {.lex_state = 244, .external_lex_state = 9}, + [543] = {.lex_state = 518, .external_lex_state = 18}, + [544] = {.lex_state = 251, .external_lex_state = 21}, + [545] = {.lex_state = 518, .external_lex_state = 18}, + [546] = {.lex_state = 516, .external_lex_state = 16}, + [547] = {.lex_state = 516, .external_lex_state = 16}, + [548] = {.lex_state = 516, .external_lex_state = 16}, + [549] = {.lex_state = 516, .external_lex_state = 16}, + [550] = {.lex_state = 251, .external_lex_state = 21}, + [551] = {.lex_state = 238, .external_lex_state = 20}, + [552] = {.lex_state = 247, .external_lex_state = 20}, + [553] = {.lex_state = 409, .external_lex_state = 5}, + [554] = {.lex_state = 254, .external_lex_state = 15}, + [555] = {.lex_state = 254, .external_lex_state = 15}, + [556] = {.lex_state = 519, .external_lex_state = 20}, + [557] = {.lex_state = 534, .external_lex_state = 2}, + [558] = {.lex_state = 519, .external_lex_state = 20}, + [559] = {.lex_state = 242, .external_lex_state = 21}, + [560] = {.lex_state = 518, .external_lex_state = 18}, + [561] = {.lex_state = 517, .external_lex_state = 9}, + [562] = {.lex_state = 257, .external_lex_state = 22}, + [563] = {.lex_state = 242, .external_lex_state = 21}, + [564] = {.lex_state = 517, .external_lex_state = 9}, + [565] = {.lex_state = 518, .external_lex_state = 18}, + [566] = {.lex_state = 518, .external_lex_state = 18}, + [567] = {.lex_state = 409, .external_lex_state = 5}, + [568] = {.lex_state = 236, .external_lex_state = 11}, + [569] = {.lex_state = 518, .external_lex_state = 18}, + [570] = {.lex_state = 247, .external_lex_state = 20}, + [571] = {.lex_state = 534, .external_lex_state = 2}, + [572] = {.lex_state = 257, .external_lex_state = 22}, + [573] = {.lex_state = 236, .external_lex_state = 11}, + [574] = {.lex_state = 257, .external_lex_state = 22}, + [575] = {.lex_state = 242, .external_lex_state = 21}, + [576] = {.lex_state = 518, .external_lex_state = 18}, + [577] = {.lex_state = 253, .external_lex_state = 15}, + [578] = {.lex_state = 445, .external_lex_state = 2}, + [579] = {.lex_state = 254, .external_lex_state = 21}, + [580] = {.lex_state = 445, .external_lex_state = 2}, + [581] = {.lex_state = 245, .external_lex_state = 22}, + [582] = {.lex_state = 254, .external_lex_state = 21}, + [583] = {.lex_state = 521, .external_lex_state = 22}, + [584] = {.lex_state = 445, .external_lex_state = 2}, + [585] = {.lex_state = 449, .external_lex_state = 23}, + [586] = {.lex_state = 521, .external_lex_state = 22}, + [587] = {.lex_state = 445, .external_lex_state = 2}, + [588] = {.lex_state = 519, .external_lex_state = 20}, + [589] = {.lex_state = 445, .external_lex_state = 2}, + [590] = {.lex_state = 263, .external_lex_state = 18}, + [591] = {.lex_state = 519, .external_lex_state = 20}, + [592] = {.lex_state = 263, .external_lex_state = 18}, + [593] = {.lex_state = 445, .external_lex_state = 2}, + [594] = {.lex_state = 521, .external_lex_state = 22}, + [595] = {.lex_state = 445, .external_lex_state = 2}, + [596] = {.lex_state = 449, .external_lex_state = 23}, + [597] = {.lex_state = 521, .external_lex_state = 22}, + [598] = {.lex_state = 245, .external_lex_state = 22}, + [599] = {.lex_state = 521, .external_lex_state = 22}, + [600] = {.lex_state = 521, .external_lex_state = 22}, + [601] = {.lex_state = 445, .external_lex_state = 2}, + [602] = {.lex_state = 245, .external_lex_state = 22}, + [603] = {.lex_state = 253, .external_lex_state = 15}, + [604] = {.lex_state = 256, .external_lex_state = 15}, + [605] = {.lex_state = 518, .external_lex_state = 22}, + [606] = {.lex_state = 251, .external_lex_state = 21}, + [607] = {.lex_state = 251, .external_lex_state = 21}, + [608] = {.lex_state = 518, .external_lex_state = 22}, + [609] = {.lex_state = 523, .external_lex_state = 18}, + [610] = {.lex_state = 518, .external_lex_state = 22}, + [611] = {.lex_state = 251, .external_lex_state = 21}, + [612] = {.lex_state = 251, .external_lex_state = 21}, + [613] = {.lex_state = 523, .external_lex_state = 18}, + [614] = {.lex_state = 263, .external_lex_state = 22}, + [615] = {.lex_state = 263, .external_lex_state = 22}, + [616] = {.lex_state = 518, .external_lex_state = 22}, + [617] = {.lex_state = 518, .external_lex_state = 22}, + [618] = {.lex_state = 256, .external_lex_state = 15}, + [619] = {.lex_state = 256, .external_lex_state = 15}, + [620] = {.lex_state = 256, .external_lex_state = 15}, + [621] = {.lex_state = 256, .external_lex_state = 15}, + [622] = {.lex_state = 256, .external_lex_state = 15}, + [623] = {.lex_state = 259, .external_lex_state = 18}, + [624] = {.lex_state = 259, .external_lex_state = 18}, + [625] = {.lex_state = 521, .external_lex_state = 22}, + [626] = {.lex_state = 521, .external_lex_state = 22}, + [627] = {.lex_state = 236, .external_lex_state = 16}, + [628] = {.lex_state = 521, .external_lex_state = 22}, + [629] = {.lex_state = 236, .external_lex_state = 16}, + [630] = {.lex_state = 236, .external_lex_state = 16}, + [631] = {.lex_state = 523, .external_lex_state = 18}, + [632] = {.lex_state = 518, .external_lex_state = 22}, + [633] = {.lex_state = 523, .external_lex_state = 18}, + [634] = {.lex_state = 257, .external_lex_state = 22}, + [635] = {.lex_state = 269, .external_lex_state = 24}, + [636] = {.lex_state = 522, .external_lex_state = 18}, + [637] = {.lex_state = 522, .external_lex_state = 18}, + [638] = {.lex_state = 534, .external_lex_state = 2}, + [639] = {.lex_state = 269, .external_lex_state = 24}, + [640] = {.lex_state = 269, .external_lex_state = 24}, + [641] = {.lex_state = 269, .external_lex_state = 24}, + [642] = {.lex_state = 269, .external_lex_state = 24}, + [643] = {.lex_state = 269, .external_lex_state = 24}, + [644] = {.lex_state = 534, .external_lex_state = 2}, + [645] = {.lex_state = 269, .external_lex_state = 24}, + [646] = {.lex_state = 269, .external_lex_state = 24}, + [647] = {.lex_state = 449, .external_lex_state = 25}, + [648] = {.lex_state = 523, .external_lex_state = 22}, + [649] = {.lex_state = 523, .external_lex_state = 22}, + [650] = {.lex_state = 257, .external_lex_state = 22}, + [651] = {.lex_state = 257, .external_lex_state = 22}, + [652] = {.lex_state = 257, .external_lex_state = 22}, + [653] = {.lex_state = 265, .external_lex_state = 9}, + [654] = {.lex_state = 265, .external_lex_state = 9}, + [655] = {.lex_state = 269, .external_lex_state = 24}, + [656] = {.lex_state = 534, .external_lex_state = 2}, + [657] = {.lex_state = 449, .external_lex_state = 25}, + [658] = {.lex_state = 410, .external_lex_state = 2}, + [659] = {.lex_state = 268, .external_lex_state = 18}, + [660] = {.lex_state = 449, .external_lex_state = 25}, + [661] = {.lex_state = 268, .external_lex_state = 18}, + [662] = {.lex_state = 270, .external_lex_state = 18}, + [663] = {.lex_state = 270, .external_lex_state = 18}, + [664] = {.lex_state = 270, .external_lex_state = 18}, + [665] = {.lex_state = 269, .external_lex_state = 24}, + [666] = {.lex_state = 269, .external_lex_state = 24}, + [667] = {.lex_state = 518, .external_lex_state = 22}, + [668] = {.lex_state = 523, .external_lex_state = 22}, + [669] = {.lex_state = 269, .external_lex_state = 24}, + [670] = {.lex_state = 523, .external_lex_state = 22}, + [671] = {.lex_state = 518, .external_lex_state = 22}, + [672] = {.lex_state = 518, .external_lex_state = 22}, + [673] = {.lex_state = 270, .external_lex_state = 18}, + [674] = {.lex_state = 245, .external_lex_state = 18}, + [675] = {.lex_state = 245, .external_lex_state = 18}, + [676] = {.lex_state = 518, .external_lex_state = 22}, + [677] = {.lex_state = 518, .external_lex_state = 22}, + [678] = {.lex_state = 523, .external_lex_state = 18}, + [679] = {.lex_state = 523, .external_lex_state = 18}, + [680] = {.lex_state = 245, .external_lex_state = 18}, + [681] = {.lex_state = 270, .external_lex_state = 18}, + [682] = {.lex_state = 270, .external_lex_state = 18}, + [683] = {.lex_state = 523, .external_lex_state = 22}, + [684] = {.lex_state = 458, .external_lex_state = 26}, + [685] = {.lex_state = 521, .external_lex_state = 22}, + [686] = {.lex_state = 524, .external_lex_state = 18}, + [687] = {.lex_state = 274, .external_lex_state = 20}, + [688] = {.lex_state = 274, .external_lex_state = 20}, + [689] = {.lex_state = 276, .external_lex_state = 18}, + [690] = {.lex_state = 458, .external_lex_state = 26}, + [691] = {.lex_state = 523, .external_lex_state = 22}, + [692] = {.lex_state = 521, .external_lex_state = 22}, + [693] = {.lex_state = 521, .external_lex_state = 22}, + [694] = {.lex_state = 458, .external_lex_state = 26}, + [695] = {.lex_state = 521, .external_lex_state = 22}, + [696] = {.lex_state = 534, .external_lex_state = 2}, + [697] = {.lex_state = 534, .external_lex_state = 2}, + [698] = {.lex_state = 276, .external_lex_state = 18}, + [699] = {.lex_state = 276, .external_lex_state = 18}, + [700] = {.lex_state = 276, .external_lex_state = 18}, + [701] = {.lex_state = 521, .external_lex_state = 22}, + [702] = {.lex_state = 534, .external_lex_state = 2}, + [703] = {.lex_state = 276, .external_lex_state = 18}, + [704] = {.lex_state = 399, .external_lex_state = 27}, + [705] = {.lex_state = 399, .external_lex_state = 27}, + [706] = {.lex_state = 524, .external_lex_state = 18}, + [707] = {.lex_state = 276, .external_lex_state = 18}, + [708] = {.lex_state = 523, .external_lex_state = 22}, + [709] = {.lex_state = 523, .external_lex_state = 22}, + [710] = {.lex_state = 524, .external_lex_state = 18}, + [711] = {.lex_state = 524, .external_lex_state = 18}, + [712] = {.lex_state = 521, .external_lex_state = 22}, + [713] = {.lex_state = 521, .external_lex_state = 22}, + [714] = {.lex_state = 522, .external_lex_state = 18}, + [715] = {.lex_state = 524, .external_lex_state = 18}, + [716] = {.lex_state = 522, .external_lex_state = 18}, + [717] = {.lex_state = 524, .external_lex_state = 18}, + [718] = {.lex_state = 521, .external_lex_state = 22}, + [719] = {.lex_state = 524, .external_lex_state = 18}, + [720] = {.lex_state = 521, .external_lex_state = 22}, + [721] = {.lex_state = 521, .external_lex_state = 22}, + [722] = {.lex_state = 455, .external_lex_state = 28}, + [723] = {.lex_state = 400, .external_lex_state = 29}, + [724] = {.lex_state = 521, .external_lex_state = 22}, + [725] = {.lex_state = 521, .external_lex_state = 22}, + [726] = {.lex_state = 271, .external_lex_state = 30}, + [727] = {.lex_state = 455, .external_lex_state = 28}, + [728] = {.lex_state = 271, .external_lex_state = 30}, + [729] = {.lex_state = 455, .external_lex_state = 28}, + [730] = {.lex_state = 524, .external_lex_state = 18}, + [731] = {.lex_state = 271, .external_lex_state = 30}, + [732] = {.lex_state = 521, .external_lex_state = 22}, + [733] = {.lex_state = 257, .external_lex_state = 22}, + [734] = {.lex_state = 524, .external_lex_state = 18}, + [735] = {.lex_state = 524, .external_lex_state = 18}, + [736] = {.lex_state = 524, .external_lex_state = 18}, + [737] = {.lex_state = 257, .external_lex_state = 22}, + [738] = {.lex_state = 400, .external_lex_state = 29}, + [739] = {.lex_state = 521, .external_lex_state = 22}, + [740] = {.lex_state = 524, .external_lex_state = 18}, + [741] = {.lex_state = 257, .external_lex_state = 22}, + [742] = {.lex_state = 271, .external_lex_state = 30}, + [743] = {.lex_state = 271, .external_lex_state = 30}, + [744] = {.lex_state = 271, .external_lex_state = 30}, + [745] = {.lex_state = 271, .external_lex_state = 30}, + [746] = {.lex_state = 245, .external_lex_state = 22}, + [747] = {.lex_state = 271, .external_lex_state = 30}, + [748] = {.lex_state = 271, .external_lex_state = 31}, + [749] = {.lex_state = 271, .external_lex_state = 30}, + [750] = {.lex_state = 271, .external_lex_state = 30}, + [751] = {.lex_state = 271, .external_lex_state = 30}, + [752] = {.lex_state = 271, .external_lex_state = 31}, + [753] = {.lex_state = 271, .external_lex_state = 31}, + [754] = {.lex_state = 271, .external_lex_state = 30}, + [755] = {.lex_state = 271, .external_lex_state = 31}, + [756] = {.lex_state = 271, .external_lex_state = 31}, + [757] = {.lex_state = 271, .external_lex_state = 30}, + [758] = {.lex_state = 271, .external_lex_state = 30}, + [759] = {.lex_state = 273, .external_lex_state = 4}, + [760] = {.lex_state = 254, .external_lex_state = 15}, + [761] = {.lex_state = 273, .external_lex_state = 4}, + [762] = {.lex_state = 273, .external_lex_state = 4}, + [763] = {.lex_state = 271, .external_lex_state = 31}, + [764] = {.lex_state = 454, .external_lex_state = 32}, + [765] = {.lex_state = 448, .external_lex_state = 33}, + [766] = {.lex_state = 273, .external_lex_state = 4}, + [767] = {.lex_state = 271, .external_lex_state = 30}, + [768] = {.lex_state = 271, .external_lex_state = 30}, + [769] = {.lex_state = 271, .external_lex_state = 30}, + [770] = {.lex_state = 271, .external_lex_state = 30}, + [771] = {.lex_state = 271, .external_lex_state = 30}, + [772] = {.lex_state = 271, .external_lex_state = 31}, + [773] = {.lex_state = 271, .external_lex_state = 31}, + [774] = {.lex_state = 271, .external_lex_state = 30}, + [775] = {.lex_state = 245, .external_lex_state = 22}, + [776] = {.lex_state = 271, .external_lex_state = 30}, + [777] = {.lex_state = 254, .external_lex_state = 15}, + [778] = {.lex_state = 271, .external_lex_state = 30}, + [779] = {.lex_state = 273, .external_lex_state = 4}, + [780] = {.lex_state = 273, .external_lex_state = 4}, + [781] = {.lex_state = 245, .external_lex_state = 22}, [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}, + [783] = {.lex_state = 254, .external_lex_state = 15}, + [784] = {.lex_state = 454, .external_lex_state = 32}, + [785] = {.lex_state = 271, .external_lex_state = 31}, + [786] = {.lex_state = 448, .external_lex_state = 33}, + [787] = {.lex_state = 273, .external_lex_state = 4}, + [788] = {.lex_state = 271, .external_lex_state = 31}, + [789] = {.lex_state = 448, .external_lex_state = 33}, + [790] = {.lex_state = 271, .external_lex_state = 31}, + [791] = {.lex_state = 271, .external_lex_state = 30}, + [792] = {.lex_state = 271, .external_lex_state = 30}, + [793] = {.lex_state = 271, .external_lex_state = 31}, + [794] = {.lex_state = 263, .external_lex_state = 18}, + [795] = {.lex_state = 271, .external_lex_state = 30}, + [796] = {.lex_state = 263, .external_lex_state = 18}, + [797] = {.lex_state = 271, .external_lex_state = 30}, + [798] = {.lex_state = 271, .external_lex_state = 31}, + [799] = {.lex_state = 401, .external_lex_state = 32}, + [800] = {.lex_state = 273, .external_lex_state = 34}, + [801] = {.lex_state = 273, .external_lex_state = 34}, + [802] = {.lex_state = 273, .external_lex_state = 34}, + [803] = {.lex_state = 273, .external_lex_state = 34}, + [804] = {.lex_state = 525, .external_lex_state = 4}, + [805] = {.lex_state = 446, .external_lex_state = 35}, + [806] = {.lex_state = 233, .external_lex_state = 13}, + [807] = {.lex_state = 446, .external_lex_state = 35}, + [808] = {.lex_state = 233, .external_lex_state = 13}, + [809] = {.lex_state = 525, .external_lex_state = 4}, + [810] = {.lex_state = 271, .external_lex_state = 31}, + [811] = {.lex_state = 271, .external_lex_state = 31}, + [812] = {.lex_state = 525, .external_lex_state = 4}, + [813] = {.lex_state = 271, .external_lex_state = 31}, + [814] = {.lex_state = 271, .external_lex_state = 31}, + [815] = {.lex_state = 271, .external_lex_state = 31}, + [816] = {.lex_state = 525, .external_lex_state = 4}, + [817] = {.lex_state = 271, .external_lex_state = 31}, + [818] = {.lex_state = 271, .external_lex_state = 31}, + [819] = {.lex_state = 273, .external_lex_state = 4}, + [820] = {.lex_state = 273, .external_lex_state = 4}, + [821] = {.lex_state = 525, .external_lex_state = 4}, + [822] = {.lex_state = 273, .external_lex_state = 4}, + [823] = {.lex_state = 273, .external_lex_state = 4}, + [824] = {.lex_state = 273, .external_lex_state = 4}, + [825] = {.lex_state = 273, .external_lex_state = 4}, + [826] = {.lex_state = 273, .external_lex_state = 4}, + [827] = {.lex_state = 525, .external_lex_state = 4}, + [828] = {.lex_state = 271, .external_lex_state = 31}, + [829] = {.lex_state = 271, .external_lex_state = 31}, + [830] = {.lex_state = 273, .external_lex_state = 34}, + [831] = {.lex_state = 273, .external_lex_state = 34}, + [832] = {.lex_state = 273, .external_lex_state = 34}, + [833] = {.lex_state = 271, .external_lex_state = 31}, + [834] = {.lex_state = 525, .external_lex_state = 4}, + [835] = {.lex_state = 278, .external_lex_state = 18}, + [836] = {.lex_state = 278, .external_lex_state = 18}, + [837] = {.lex_state = 273, .external_lex_state = 34}, + [838] = {.lex_state = 273, .external_lex_state = 4}, + [839] = {.lex_state = 273, .external_lex_state = 4}, + [840] = {.lex_state = 525, .external_lex_state = 4}, + [841] = {.lex_state = 273, .external_lex_state = 4}, + [842] = {.lex_state = 273, .external_lex_state = 4}, + [843] = {.lex_state = 271, .external_lex_state = 31}, + [844] = {.lex_state = 271, .external_lex_state = 31}, + [845] = {.lex_state = 271, .external_lex_state = 31}, + [846] = {.lex_state = 401, .external_lex_state = 32}, + [847] = {.lex_state = 271, .external_lex_state = 31}, + [848] = {.lex_state = 271, .external_lex_state = 31}, + [849] = {.lex_state = 271, .external_lex_state = 31}, + [850] = {.lex_state = 271, .external_lex_state = 31}, + [851] = {.lex_state = 446, .external_lex_state = 35}, + [852] = {.lex_state = 273, .external_lex_state = 4}, + [853] = {.lex_state = 273, .external_lex_state = 4}, + [854] = {.lex_state = 273, .external_lex_state = 4}, + [855] = {.lex_state = 273, .external_lex_state = 4}, + [856] = {.lex_state = 273, .external_lex_state = 4}, + [857] = {.lex_state = 273, .external_lex_state = 4}, + [858] = {.lex_state = 273, .external_lex_state = 4}, + [859] = {.lex_state = 273, .external_lex_state = 4}, + [860] = {.lex_state = 263, .external_lex_state = 18}, + [861] = {.lex_state = 446, .external_lex_state = 35}, + [862] = {.lex_state = 446, .external_lex_state = 35}, + [863] = {.lex_state = 273, .external_lex_state = 34}, + [864] = {.lex_state = 273, .external_lex_state = 34}, + [865] = {.lex_state = 263, .external_lex_state = 18}, + [866] = {.lex_state = 263, .external_lex_state = 18}, + [867] = {.lex_state = 273, .external_lex_state = 34}, + [868] = {.lex_state = 273, .external_lex_state = 34}, + [869] = {.lex_state = 263, .external_lex_state = 18}, + [870] = {.lex_state = 454, .external_lex_state = 28}, + [871] = {.lex_state = 454, .external_lex_state = 28}, + [872] = {.lex_state = 458, .external_lex_state = 33}, + [873] = {.lex_state = 525, .external_lex_state = 4}, + [874] = {.lex_state = 418, .external_lex_state = 36}, + [875] = {.lex_state = 418, .external_lex_state = 36}, + [876] = {.lex_state = 452, .external_lex_state = 26}, + [877] = {.lex_state = 452, .external_lex_state = 26}, + [878] = {.lex_state = 446, .external_lex_state = 35}, + [879] = {.lex_state = 525, .external_lex_state = 4}, + [880] = {.lex_state = 525, .external_lex_state = 4}, + [881] = {.lex_state = 458, .external_lex_state = 33}, + [882] = {.lex_state = 525, .external_lex_state = 4}, + [883] = {.lex_state = 525, .external_lex_state = 4}, + [884] = {.lex_state = 446, .external_lex_state = 35}, + [885] = {.lex_state = 525, .external_lex_state = 4}, + [886] = {.lex_state = 446, .external_lex_state = 35}, + [887] = {.lex_state = 458, .external_lex_state = 33}, + [888] = {.lex_state = 263, .external_lex_state = 22}, + [889] = {.lex_state = 263, .external_lex_state = 22}, + [890] = {.lex_state = 271, .external_lex_state = 31}, + [891] = {.lex_state = 273, .external_lex_state = 34}, + [892] = {.lex_state = 280, .external_lex_state = 18}, + [893] = {.lex_state = 280, .external_lex_state = 18}, + [894] = {.lex_state = 280, .external_lex_state = 18}, + [895] = {.lex_state = 277, .external_lex_state = 37}, + [896] = {.lex_state = 279, .external_lex_state = 37}, + [897] = {.lex_state = 525, .external_lex_state = 4}, + [898] = {.lex_state = 525, .external_lex_state = 4}, + [899] = {.lex_state = 523, .external_lex_state = 18}, + [900] = {.lex_state = 525, .external_lex_state = 4}, + [901] = {.lex_state = 525, .external_lex_state = 4}, + [902] = {.lex_state = 525, .external_lex_state = 4}, + [903] = {.lex_state = 523, .external_lex_state = 18}, + [904] = {.lex_state = 273, .external_lex_state = 34}, + [905] = {.lex_state = 273, .external_lex_state = 34}, + [906] = {.lex_state = 233, .external_lex_state = 13}, + [907] = {.lex_state = 416, .external_lex_state = 38}, + [908] = {.lex_state = 416, .external_lex_state = 38}, + [909] = {.lex_state = 233, .external_lex_state = 14}, + [910] = {.lex_state = 525, .external_lex_state = 34}, + [911] = {.lex_state = 525, .external_lex_state = 4}, + [912] = {.lex_state = 279, .external_lex_state = 37}, + [913] = {.lex_state = 233, .external_lex_state = 14}, + [914] = {.lex_state = 233, .external_lex_state = 14}, + [915] = {.lex_state = 279, .external_lex_state = 37}, + [916] = {.lex_state = 273, .external_lex_state = 34}, + [917] = {.lex_state = 273, .external_lex_state = 34}, + [918] = {.lex_state = 280, .external_lex_state = 18}, + [919] = {.lex_state = 280, .external_lex_state = 18}, + [920] = {.lex_state = 523, .external_lex_state = 18}, + [921] = {.lex_state = 402, .external_lex_state = 26}, + [922] = {.lex_state = 402, .external_lex_state = 26}, + [923] = {.lex_state = 525, .external_lex_state = 4}, + [924] = {.lex_state = 273, .external_lex_state = 34}, + [925] = {.lex_state = 273, .external_lex_state = 34}, + [926] = {.lex_state = 273, .external_lex_state = 34}, + [927] = {.lex_state = 273, .external_lex_state = 34}, + [928] = {.lex_state = 273, .external_lex_state = 34}, + [929] = {.lex_state = 273, .external_lex_state = 34}, + [930] = {.lex_state = 525, .external_lex_state = 4}, + [931] = {.lex_state = 273, .external_lex_state = 34}, + [932] = {.lex_state = 525, .external_lex_state = 4}, + [933] = {.lex_state = 525, .external_lex_state = 4}, + [934] = {.lex_state = 523, .external_lex_state = 18}, + [935] = {.lex_state = 525, .external_lex_state = 4}, + [936] = {.lex_state = 525, .external_lex_state = 4}, + [937] = {.lex_state = 525, .external_lex_state = 4}, + [938] = {.lex_state = 525, .external_lex_state = 4}, + [939] = {.lex_state = 403, .external_lex_state = 32}, + [940] = {.lex_state = 236, .external_lex_state = 11}, + [941] = {.lex_state = 525, .external_lex_state = 4}, + [942] = {.lex_state = 403, .external_lex_state = 32}, + [943] = {.lex_state = 525, .external_lex_state = 4}, + [944] = {.lex_state = 525, .external_lex_state = 4}, + [945] = {.lex_state = 525, .external_lex_state = 4}, + [946] = {.lex_state = 525, .external_lex_state = 4}, + [947] = {.lex_state = 523, .external_lex_state = 18}, + [948] = {.lex_state = 525, .external_lex_state = 34}, + [949] = {.lex_state = 525, .external_lex_state = 34}, + [950] = {.lex_state = 525, .external_lex_state = 4}, + [951] = {.lex_state = 236, .external_lex_state = 11}, + [952] = {.lex_state = 525, .external_lex_state = 4}, + [953] = {.lex_state = 523, .external_lex_state = 18}, + [954] = {.lex_state = 525, .external_lex_state = 34}, + [955] = {.lex_state = 525, .external_lex_state = 34}, + [956] = {.lex_state = 525, .external_lex_state = 34}, + [957] = {.lex_state = 525, .external_lex_state = 4}, + [958] = {.lex_state = 525, .external_lex_state = 4}, + [959] = {.lex_state = 525, .external_lex_state = 34}, + [960] = {.lex_state = 523, .external_lex_state = 18}, + [961] = {.lex_state = 525, .external_lex_state = 34}, + [962] = {.lex_state = 525, .external_lex_state = 34}, + [963] = {.lex_state = 525, .external_lex_state = 34}, + [964] = {.lex_state = 525, .external_lex_state = 34}, + [965] = {.lex_state = 525, .external_lex_state = 4}, + [966] = {.lex_state = 525, .external_lex_state = 4}, + [967] = {.lex_state = 419, .external_lex_state = 38}, + [968] = {.lex_state = 419, .external_lex_state = 38}, + [969] = {.lex_state = 525, .external_lex_state = 4}, + [970] = {.lex_state = 525, .external_lex_state = 34}, + [971] = {.lex_state = 525, .external_lex_state = 34}, + [972] = {.lex_state = 525, .external_lex_state = 34}, + [973] = {.lex_state = 525, .external_lex_state = 34}, + [974] = {.lex_state = 455, .external_lex_state = 28}, + [975] = {.lex_state = 273, .external_lex_state = 34}, + [976] = {.lex_state = 455, .external_lex_state = 28}, + [977] = {.lex_state = 525, .external_lex_state = 34}, + [978] = {.lex_state = 525, .external_lex_state = 34}, + [979] = {.lex_state = 525, .external_lex_state = 34}, + [980] = {.lex_state = 525, .external_lex_state = 4}, + [981] = {.lex_state = 525, .external_lex_state = 4}, + [982] = {.lex_state = 525, .external_lex_state = 4}, + [983] = {.lex_state = 525, .external_lex_state = 4}, + [984] = {.lex_state = 277, .external_lex_state = 37}, + [985] = {.lex_state = 277, .external_lex_state = 37}, + [986] = {.lex_state = 525, .external_lex_state = 4}, + [987] = {.lex_state = 233, .external_lex_state = 13}, + [988] = {.lex_state = 279, .external_lex_state = 37}, + [989] = {.lex_state = 279, .external_lex_state = 37}, + [990] = {.lex_state = 421, .external_lex_state = 39}, + [991] = {.lex_state = 273, .external_lex_state = 34}, + [992] = {.lex_state = 525, .external_lex_state = 4}, + [993] = {.lex_state = 525, .external_lex_state = 4}, + [994] = {.lex_state = 273, .external_lex_state = 34}, + [995] = {.lex_state = 417, .external_lex_state = 38}, + [996] = {.lex_state = 417, .external_lex_state = 38}, + [997] = {.lex_state = 277, .external_lex_state = 37}, + [998] = {.lex_state = 525, .external_lex_state = 34}, + [999] = {.lex_state = 525, .external_lex_state = 34}, + [1000] = {.lex_state = 525, .external_lex_state = 34}, + [1001] = {.lex_state = 525, .external_lex_state = 34}, + [1002] = {.lex_state = 523, .external_lex_state = 18}, + [1003] = {.lex_state = 525, .external_lex_state = 4}, + [1004] = {.lex_state = 273, .external_lex_state = 34}, + [1005] = {.lex_state = 273, .external_lex_state = 34}, + [1006] = {.lex_state = 277, .external_lex_state = 37}, + [1007] = {.lex_state = 277, .external_lex_state = 37}, + [1008] = {.lex_state = 277, .external_lex_state = 37}, + [1009] = {.lex_state = 277, .external_lex_state = 37}, + [1010] = {.lex_state = 277, .external_lex_state = 37}, + [1011] = {.lex_state = 277, .external_lex_state = 37}, + [1012] = {.lex_state = 277, .external_lex_state = 37}, + [1013] = {.lex_state = 277, .external_lex_state = 37}, + [1014] = {.lex_state = 525, .external_lex_state = 4}, + [1015] = {.lex_state = 277, .external_lex_state = 37}, + [1016] = {.lex_state = 525, .external_lex_state = 4}, + [1017] = {.lex_state = 525, .external_lex_state = 4}, + [1018] = {.lex_state = 525, .external_lex_state = 4}, + [1019] = {.lex_state = 277, .external_lex_state = 37}, + [1020] = {.lex_state = 452, .external_lex_state = 33}, + [1021] = {.lex_state = 452, .external_lex_state = 33}, + [1022] = {.lex_state = 525, .external_lex_state = 4}, + [1023] = {.lex_state = 525, .external_lex_state = 4}, + [1024] = {.lex_state = 525, .external_lex_state = 4}, + [1025] = {.lex_state = 273, .external_lex_state = 34}, + [1026] = {.lex_state = 525, .external_lex_state = 4}, + [1027] = {.lex_state = 233, .external_lex_state = 14}, + [1028] = {.lex_state = 525, .external_lex_state = 4}, + [1029] = {.lex_state = 279, .external_lex_state = 37}, + [1030] = {.lex_state = 525, .external_lex_state = 4}, + [1031] = {.lex_state = 525, .external_lex_state = 34}, + [1032] = {.lex_state = 233, .external_lex_state = 14}, + [1033] = {.lex_state = 279, .external_lex_state = 37}, + [1034] = {.lex_state = 279, .external_lex_state = 37}, + [1035] = {.lex_state = 257, .external_lex_state = 22}, + [1036] = {.lex_state = 257, .external_lex_state = 22}, + [1037] = {.lex_state = 273, .external_lex_state = 34}, + [1038] = {.lex_state = 280, .external_lex_state = 18}, + [1039] = {.lex_state = 257, .external_lex_state = 22}, + [1040] = {.lex_state = 257, .external_lex_state = 22}, + [1041] = {.lex_state = 525, .external_lex_state = 4}, + [1042] = {.lex_state = 418, .external_lex_state = 40}, + [1043] = {.lex_state = 418, .external_lex_state = 40}, + [1044] = {.lex_state = 525, .external_lex_state = 34}, + [1045] = {.lex_state = 277, .external_lex_state = 37}, + [1046] = {.lex_state = 525, .external_lex_state = 34}, + [1047] = {.lex_state = 525, .external_lex_state = 34}, + [1048] = {.lex_state = 277, .external_lex_state = 37}, + [1049] = {.lex_state = 277, .external_lex_state = 37}, + [1050] = {.lex_state = 236, .external_lex_state = 16}, + [1051] = {.lex_state = 277, .external_lex_state = 37}, + [1052] = {.lex_state = 277, .external_lex_state = 37}, + [1053] = {.lex_state = 525, .external_lex_state = 34}, + [1054] = {.lex_state = 277, .external_lex_state = 37}, + [1055] = {.lex_state = 279, .external_lex_state = 37}, + [1056] = {.lex_state = 279, .external_lex_state = 37}, + [1057] = {.lex_state = 236, .external_lex_state = 16}, + [1058] = {.lex_state = 279, .external_lex_state = 37}, + [1059] = {.lex_state = 279, .external_lex_state = 37}, + [1060] = {.lex_state = 277, .external_lex_state = 37}, + [1061] = {.lex_state = 279, .external_lex_state = 37}, + [1062] = {.lex_state = 277, .external_lex_state = 37}, + [1063] = {.lex_state = 277, .external_lex_state = 37}, + [1064] = {.lex_state = 277, .external_lex_state = 37}, + [1065] = {.lex_state = 277, .external_lex_state = 37}, + [1066] = {.lex_state = 277, .external_lex_state = 37}, + [1067] = {.lex_state = 279, .external_lex_state = 37}, + [1068] = {.lex_state = 279, .external_lex_state = 37}, + [1069] = {.lex_state = 279, .external_lex_state = 37}, + [1070] = {.lex_state = 279, .external_lex_state = 37}, + [1071] = {.lex_state = 279, .external_lex_state = 37}, + [1072] = {.lex_state = 420, .external_lex_state = 38}, + [1073] = {.lex_state = 281, .external_lex_state = 41}, + [1074] = {.lex_state = 420, .external_lex_state = 38}, + [1075] = {.lex_state = 277, .external_lex_state = 37}, + [1076] = {.lex_state = 233, .external_lex_state = 14}, + [1077] = {.lex_state = 236, .external_lex_state = 16}, + [1078] = {.lex_state = 279, .external_lex_state = 42}, + [1079] = {.lex_state = 279, .external_lex_state = 37}, + [1080] = {.lex_state = 279, .external_lex_state = 42}, + [1081] = {.lex_state = 279, .external_lex_state = 42}, + [1082] = {.lex_state = 277, .external_lex_state = 37}, + [1083] = {.lex_state = 279, .external_lex_state = 37}, + [1084] = {.lex_state = 277, .external_lex_state = 37}, + [1085] = {.lex_state = 279, .external_lex_state = 37}, + [1086] = {.lex_state = 516, .external_lex_state = 11}, + [1087] = {.lex_state = 404, .external_lex_state = 26}, + [1088] = {.lex_state = 404, .external_lex_state = 26}, + [1089] = {.lex_state = 516, .external_lex_state = 11}, + [1090] = {.lex_state = 423, .external_lex_state = 43}, + [1091] = {.lex_state = 279, .external_lex_state = 37}, + [1092] = {.lex_state = 279, .external_lex_state = 37}, + [1093] = {.lex_state = 279, .external_lex_state = 42}, + [1094] = {.lex_state = 236, .external_lex_state = 11}, + [1095] = {.lex_state = 523, .external_lex_state = 18}, + [1096] = {.lex_state = 516, .external_lex_state = 11}, + [1097] = {.lex_state = 523, .external_lex_state = 18}, + [1098] = {.lex_state = 283, .external_lex_state = 41}, + [1099] = {.lex_state = 283, .external_lex_state = 41}, + [1100] = {.lex_state = 404, .external_lex_state = 26}, + [1101] = {.lex_state = 404, .external_lex_state = 26}, + [1102] = {.lex_state = 523, .external_lex_state = 18}, + [1103] = {.lex_state = 233, .external_lex_state = 14}, + [1104] = {.lex_state = 233, .external_lex_state = 14}, + [1105] = {.lex_state = 404, .external_lex_state = 26}, + [1106] = {.lex_state = 404, .external_lex_state = 26}, + [1107] = {.lex_state = 236, .external_lex_state = 16}, + [1108] = {.lex_state = 236, .external_lex_state = 16}, + [1109] = {.lex_state = 233, .external_lex_state = 14}, + [1110] = {.lex_state = 412, .external_lex_state = 44}, + [1111] = {.lex_state = 523, .external_lex_state = 18}, + [1112] = {.lex_state = 523, .external_lex_state = 18}, + [1113] = {.lex_state = 277, .external_lex_state = 37}, + [1114] = {.lex_state = 525, .external_lex_state = 34}, + [1115] = {.lex_state = 525, .external_lex_state = 34}, + [1116] = {.lex_state = 525, .external_lex_state = 34}, + [1117] = {.lex_state = 412, .external_lex_state = 44}, + [1118] = {.lex_state = 277, .external_lex_state = 37}, + [1119] = {.lex_state = 412, .external_lex_state = 44}, + [1120] = {.lex_state = 523, .external_lex_state = 18}, + [1121] = {.lex_state = 412, .external_lex_state = 44}, + [1122] = {.lex_state = 279, .external_lex_state = 37}, + [1123] = {.lex_state = 412, .external_lex_state = 44}, + [1124] = {.lex_state = 279, .external_lex_state = 37}, + [1125] = {.lex_state = 281, .external_lex_state = 41}, + [1126] = {.lex_state = 281, .external_lex_state = 41}, + [1127] = {.lex_state = 525, .external_lex_state = 34}, + [1128] = {.lex_state = 525, .external_lex_state = 34}, + [1129] = {.lex_state = 525, .external_lex_state = 34}, + [1130] = {.lex_state = 525, .external_lex_state = 34}, + [1131] = {.lex_state = 525, .external_lex_state = 34}, + [1132] = {.lex_state = 281, .external_lex_state = 41}, + [1133] = {.lex_state = 281, .external_lex_state = 41}, + [1134] = {.lex_state = 525, .external_lex_state = 34}, + [1135] = {.lex_state = 525, .external_lex_state = 34}, + [1136] = {.lex_state = 525, .external_lex_state = 34}, + [1137] = {.lex_state = 525, .external_lex_state = 34}, + [1138] = {.lex_state = 525, .external_lex_state = 34}, + [1139] = {.lex_state = 283, .external_lex_state = 41}, + [1140] = {.lex_state = 525, .external_lex_state = 34}, + [1141] = {.lex_state = 277, .external_lex_state = 37}, + [1142] = {.lex_state = 525, .external_lex_state = 34}, + [1143] = {.lex_state = 277, .external_lex_state = 37}, + [1144] = {.lex_state = 525, .external_lex_state = 34}, + [1145] = {.lex_state = 525, .external_lex_state = 34}, + [1146] = {.lex_state = 525, .external_lex_state = 34}, + [1147] = {.lex_state = 525, .external_lex_state = 34}, + [1148] = {.lex_state = 523, .external_lex_state = 18}, + [1149] = {.lex_state = 283, .external_lex_state = 41}, + [1150] = {.lex_state = 236, .external_lex_state = 11}, + [1151] = {.lex_state = 281, .external_lex_state = 41}, + [1152] = {.lex_state = 281, .external_lex_state = 41}, + [1153] = {.lex_state = 525, .external_lex_state = 34}, + [1154] = {.lex_state = 525, .external_lex_state = 34}, + [1155] = {.lex_state = 525, .external_lex_state = 34}, + [1156] = {.lex_state = 283, .external_lex_state = 41}, + [1157] = {.lex_state = 525, .external_lex_state = 34}, + [1158] = {.lex_state = 283, .external_lex_state = 41}, + [1159] = {.lex_state = 283, .external_lex_state = 41}, + [1160] = {.lex_state = 525, .external_lex_state = 34}, + [1161] = {.lex_state = 525, .external_lex_state = 34}, + [1162] = {.lex_state = 525, .external_lex_state = 34}, + [1163] = {.lex_state = 525, .external_lex_state = 34}, + [1164] = {.lex_state = 281, .external_lex_state = 41}, + [1165] = {.lex_state = 525, .external_lex_state = 34}, + [1166] = {.lex_state = 525, .external_lex_state = 34}, + [1167] = {.lex_state = 448, .external_lex_state = 33}, + [1168] = {.lex_state = 448, .external_lex_state = 33}, + [1169] = {.lex_state = 279, .external_lex_state = 37}, + [1170] = {.lex_state = 279, .external_lex_state = 37}, + [1171] = {.lex_state = 448, .external_lex_state = 33}, + [1172] = {.lex_state = 448, .external_lex_state = 33}, + [1173] = {.lex_state = 523, .external_lex_state = 18}, + [1174] = {.lex_state = 523, .external_lex_state = 18}, + [1175] = {.lex_state = 525, .external_lex_state = 34}, + [1176] = {.lex_state = 283, .external_lex_state = 41}, + [1177] = {.lex_state = 516, .external_lex_state = 11}, + [1178] = {.lex_state = 279, .external_lex_state = 42}, + [1179] = {.lex_state = 233, .external_lex_state = 14}, + [1180] = {.lex_state = 279, .external_lex_state = 42}, + [1181] = {.lex_state = 525, .external_lex_state = 34}, + [1182] = {.lex_state = 525, .external_lex_state = 34}, + [1183] = {.lex_state = 525, .external_lex_state = 34}, + [1184] = {.lex_state = 525, .external_lex_state = 34}, + [1185] = {.lex_state = 525, .external_lex_state = 34}, + [1186] = {.lex_state = 525, .external_lex_state = 34}, + [1187] = {.lex_state = 233, .external_lex_state = 14}, + [1188] = {.lex_state = 525, .external_lex_state = 34}, + [1189] = {.lex_state = 525, .external_lex_state = 34}, + [1190] = {.lex_state = 525, .external_lex_state = 34}, + [1191] = {.lex_state = 525, .external_lex_state = 34}, + [1192] = {.lex_state = 525, .external_lex_state = 34}, + [1193] = {.lex_state = 525, .external_lex_state = 34}, + [1194] = {.lex_state = 523, .external_lex_state = 18}, + [1195] = {.lex_state = 281, .external_lex_state = 41}, + [1196] = {.lex_state = 525, .external_lex_state = 34}, + [1197] = {.lex_state = 281, .external_lex_state = 41}, + [1198] = {.lex_state = 281, .external_lex_state = 41}, + [1199] = {.lex_state = 525, .external_lex_state = 34}, + [1200] = {.lex_state = 525, .external_lex_state = 34}, + [1201] = {.lex_state = 281, .external_lex_state = 41}, + [1202] = {.lex_state = 525, .external_lex_state = 34}, + [1203] = {.lex_state = 281, .external_lex_state = 41}, + [1204] = {.lex_state = 281, .external_lex_state = 41}, + [1205] = {.lex_state = 412, .external_lex_state = 44}, + [1206] = {.lex_state = 283, .external_lex_state = 45}, + [1207] = {.lex_state = 526, .external_lex_state = 41}, + [1208] = {.lex_state = 526, .external_lex_state = 41}, + [1209] = {.lex_state = 423, .external_lex_state = 46}, + [1210] = {.lex_state = 527, .external_lex_state = 41}, + [1211] = {.lex_state = 283, .external_lex_state = 41}, + [1212] = {.lex_state = 527, .external_lex_state = 41}, + [1213] = {.lex_state = 283, .external_lex_state = 41}, + [1214] = {.lex_state = 283, .external_lex_state = 41}, + [1215] = {.lex_state = 527, .external_lex_state = 41}, + [1216] = {.lex_state = 527, .external_lex_state = 41}, + [1217] = {.lex_state = 527, .external_lex_state = 41}, + [1218] = {.lex_state = 527, .external_lex_state = 41}, + [1219] = {.lex_state = 283, .external_lex_state = 41}, + [1220] = {.lex_state = 526, .external_lex_state = 41}, + [1221] = {.lex_state = 527, .external_lex_state = 41}, + [1222] = {.lex_state = 516, .external_lex_state = 16}, + [1223] = {.lex_state = 527, .external_lex_state = 41}, + [1224] = {.lex_state = 516, .external_lex_state = 16}, + [1225] = {.lex_state = 279, .external_lex_state = 42}, + [1226] = {.lex_state = 281, .external_lex_state = 41}, + [1227] = {.lex_state = 281, .external_lex_state = 41}, + [1228] = {.lex_state = 281, .external_lex_state = 41}, + [1229] = {.lex_state = 279, .external_lex_state = 42}, + [1230] = {.lex_state = 516, .external_lex_state = 16}, + [1231] = {.lex_state = 279, .external_lex_state = 42}, + [1232] = {.lex_state = 516, .external_lex_state = 11}, + [1233] = {.lex_state = 279, .external_lex_state = 42}, + [1234] = {.lex_state = 281, .external_lex_state = 41}, + [1235] = {.lex_state = 281, .external_lex_state = 41}, + [1236] = {.lex_state = 279, .external_lex_state = 42}, + [1237] = {.lex_state = 283, .external_lex_state = 41}, + [1238] = {.lex_state = 283, .external_lex_state = 41}, + [1239] = {.lex_state = 526, .external_lex_state = 41}, + [1240] = {.lex_state = 254, .external_lex_state = 15}, + [1241] = {.lex_state = 283, .external_lex_state = 41}, + [1242] = {.lex_state = 526, .external_lex_state = 41}, + [1243] = {.lex_state = 283, .external_lex_state = 41}, + [1244] = {.lex_state = 526, .external_lex_state = 41}, + [1245] = {.lex_state = 526, .external_lex_state = 41}, + [1246] = {.lex_state = 279, .external_lex_state = 42}, + [1247] = {.lex_state = 526, .external_lex_state = 41}, + [1248] = {.lex_state = 279, .external_lex_state = 42}, + [1249] = {.lex_state = 526, .external_lex_state = 41}, + [1250] = {.lex_state = 287, .external_lex_state = 42}, + [1251] = {.lex_state = 526, .external_lex_state = 41}, + [1252] = {.lex_state = 242, .external_lex_state = 15}, + [1253] = {.lex_state = 526, .external_lex_state = 41}, + [1254] = {.lex_state = 526, .external_lex_state = 41}, + [1255] = {.lex_state = 526, .external_lex_state = 41}, + [1256] = {.lex_state = 527, .external_lex_state = 41}, + [1257] = {.lex_state = 527, .external_lex_state = 41}, + [1258] = {.lex_state = 527, .external_lex_state = 41}, + [1259] = {.lex_state = 281, .external_lex_state = 41}, + [1260] = {.lex_state = 527, .external_lex_state = 41}, + [1261] = {.lex_state = 516, .external_lex_state = 11}, + [1262] = {.lex_state = 287, .external_lex_state = 42}, + [1263] = {.lex_state = 527, .external_lex_state = 41}, + [1264] = {.lex_state = 242, .external_lex_state = 15}, + [1265] = {.lex_state = 527, .external_lex_state = 41}, + [1266] = {.lex_state = 281, .external_lex_state = 41}, + [1267] = {.lex_state = 287, .external_lex_state = 42}, + [1268] = {.lex_state = 279, .external_lex_state = 42}, + [1269] = {.lex_state = 281, .external_lex_state = 41}, + [1270] = {.lex_state = 283, .external_lex_state = 41}, + [1271] = {.lex_state = 527, .external_lex_state = 41}, + [1272] = {.lex_state = 527, .external_lex_state = 41}, + [1273] = {.lex_state = 281, .external_lex_state = 41}, + [1274] = {.lex_state = 279, .external_lex_state = 42}, + [1275] = {.lex_state = 283, .external_lex_state = 41}, + [1276] = {.lex_state = 283, .external_lex_state = 41}, + [1277] = {.lex_state = 526, .external_lex_state = 41}, + [1278] = {.lex_state = 279, .external_lex_state = 42}, + [1279] = {.lex_state = 281, .external_lex_state = 41}, + [1280] = {.lex_state = 516, .external_lex_state = 16}, + [1281] = {.lex_state = 279, .external_lex_state = 42}, + [1282] = {.lex_state = 516, .external_lex_state = 11}, + [1283] = {.lex_state = 279, .external_lex_state = 42}, + [1284] = {.lex_state = 283, .external_lex_state = 45}, + [1285] = {.lex_state = 516, .external_lex_state = 16}, + [1286] = {.lex_state = 283, .external_lex_state = 41}, + [1287] = {.lex_state = 283, .external_lex_state = 41}, + [1288] = {.lex_state = 283, .external_lex_state = 41}, + [1289] = {.lex_state = 526, .external_lex_state = 41}, + [1290] = {.lex_state = 526, .external_lex_state = 41}, + [1291] = {.lex_state = 526, .external_lex_state = 41}, + [1292] = {.lex_state = 236, .external_lex_state = 16}, + [1293] = {.lex_state = 283, .external_lex_state = 45}, + [1294] = {.lex_state = 236, .external_lex_state = 16}, + [1295] = {.lex_state = 254, .external_lex_state = 15}, + [1296] = {.lex_state = 236, .external_lex_state = 16}, + [1297] = {.lex_state = 283, .external_lex_state = 41}, + [1298] = {.lex_state = 254, .external_lex_state = 15}, + [1299] = {.lex_state = 283, .external_lex_state = 45}, + [1300] = {.lex_state = 254, .external_lex_state = 15}, + [1301] = {.lex_state = 254, .external_lex_state = 15}, + [1302] = {.lex_state = 283, .external_lex_state = 45}, + [1303] = {.lex_state = 279, .external_lex_state = 42}, + [1304] = {.lex_state = 279, .external_lex_state = 42}, + [1305] = {.lex_state = 281, .external_lex_state = 41}, + [1306] = {.lex_state = 287, .external_lex_state = 42}, + [1307] = {.lex_state = 287, .external_lex_state = 42}, + [1308] = {.lex_state = 287, .external_lex_state = 42}, + [1309] = {.lex_state = 287, .external_lex_state = 42}, + [1310] = {.lex_state = 242, .external_lex_state = 15}, + [1311] = {.lex_state = 283, .external_lex_state = 41}, + [1312] = {.lex_state = 236, .external_lex_state = 16}, + [1313] = {.lex_state = 526, .external_lex_state = 41}, + [1314] = {.lex_state = 281, .external_lex_state = 41}, + [1315] = {.lex_state = 516, .external_lex_state = 11}, + [1316] = {.lex_state = 526, .external_lex_state = 41}, + [1317] = {.lex_state = 283, .external_lex_state = 41}, + [1318] = {.lex_state = 287, .external_lex_state = 42}, + [1319] = {.lex_state = 287, .external_lex_state = 42}, + [1320] = {.lex_state = 516, .external_lex_state = 16}, + [1321] = {.lex_state = 279, .external_lex_state = 42}, + [1322] = {.lex_state = 279, .external_lex_state = 42}, + [1323] = {.lex_state = 236, .external_lex_state = 16}, + [1324] = {.lex_state = 236, .external_lex_state = 16}, + [1325] = {.lex_state = 287, .external_lex_state = 42}, + [1326] = {.lex_state = 281, .external_lex_state = 41}, + [1327] = {.lex_state = 526, .external_lex_state = 41}, + [1328] = {.lex_state = 526, .external_lex_state = 41}, + [1329] = {.lex_state = 526, .external_lex_state = 41}, + [1330] = {.lex_state = 526, .external_lex_state = 41}, + [1331] = {.lex_state = 526, .external_lex_state = 41}, + [1332] = {.lex_state = 526, .external_lex_state = 41}, + [1333] = {.lex_state = 516, .external_lex_state = 16}, + [1334] = {.lex_state = 516, .external_lex_state = 16}, + [1335] = {.lex_state = 279, .external_lex_state = 42}, + [1336] = {.lex_state = 526, .external_lex_state = 41}, + [1337] = {.lex_state = 279, .external_lex_state = 42}, + [1338] = {.lex_state = 281, .external_lex_state = 41}, + [1339] = {.lex_state = 281, .external_lex_state = 41}, + [1340] = {.lex_state = 283, .external_lex_state = 41}, + [1341] = {.lex_state = 281, .external_lex_state = 41}, + [1342] = {.lex_state = 281, .external_lex_state = 41}, + [1343] = {.lex_state = 516, .external_lex_state = 16}, + [1344] = {.lex_state = 279, .external_lex_state = 42}, + [1345] = {.lex_state = 526, .external_lex_state = 41}, + [1346] = {.lex_state = 283, .external_lex_state = 41}, + [1347] = {.lex_state = 283, .external_lex_state = 45}, + [1348] = {.lex_state = 254, .external_lex_state = 15}, + [1349] = {.lex_state = 516, .external_lex_state = 16}, + [1350] = {.lex_state = 526, .external_lex_state = 41}, + [1351] = {.lex_state = 281, .external_lex_state = 41}, + [1352] = {.lex_state = 281, .external_lex_state = 41}, + [1353] = {.lex_state = 273, .external_lex_state = 4}, + [1354] = {.lex_state = 526, .external_lex_state = 41}, + [1355] = {.lex_state = 527, .external_lex_state = 41}, + [1356] = {.lex_state = 526, .external_lex_state = 41}, + [1357] = {.lex_state = 283, .external_lex_state = 45}, + [1358] = {.lex_state = 287, .external_lex_state = 42}, + [1359] = {.lex_state = 283, .external_lex_state = 45}, + [1360] = {.lex_state = 527, .external_lex_state = 41}, + [1361] = {.lex_state = 527, .external_lex_state = 41}, + [1362] = {.lex_state = 527, .external_lex_state = 41}, + [1363] = {.lex_state = 527, .external_lex_state = 41}, + [1364] = {.lex_state = 288, .external_lex_state = 45}, + [1365] = {.lex_state = 527, .external_lex_state = 41}, + [1366] = {.lex_state = 527, .external_lex_state = 41}, + [1367] = {.lex_state = 527, .external_lex_state = 45}, + [1368] = {.lex_state = 527, .external_lex_state = 41}, + [1369] = {.lex_state = 526, .external_lex_state = 41}, + [1370] = {.lex_state = 527, .external_lex_state = 45}, + [1371] = {.lex_state = 413, .external_lex_state = 47}, + [1372] = {.lex_state = 516, .external_lex_state = 16}, + [1373] = {.lex_state = 527, .external_lex_state = 41}, + [1374] = {.lex_state = 527, .external_lex_state = 41}, + [1375] = {.lex_state = 527, .external_lex_state = 41}, + [1376] = {.lex_state = 527, .external_lex_state = 45}, + [1377] = {.lex_state = 527, .external_lex_state = 41}, + [1378] = {.lex_state = 527, .external_lex_state = 41}, + [1379] = {.lex_state = 254, .external_lex_state = 15}, + [1380] = {.lex_state = 516, .external_lex_state = 16}, + [1381] = {.lex_state = 527, .external_lex_state = 45}, + [1382] = {.lex_state = 527, .external_lex_state = 41}, + [1383] = {.lex_state = 527, .external_lex_state = 41}, + [1384] = {.lex_state = 527, .external_lex_state = 41}, + [1385] = {.lex_state = 527, .external_lex_state = 41}, + [1386] = {.lex_state = 527, .external_lex_state = 41}, + [1387] = {.lex_state = 526, .external_lex_state = 41}, + [1388] = {.lex_state = 527, .external_lex_state = 41}, + [1389] = {.lex_state = 287, .external_lex_state = 42}, + [1390] = {.lex_state = 287, .external_lex_state = 42}, + [1391] = {.lex_state = 287, .external_lex_state = 42}, + [1392] = {.lex_state = 288, .external_lex_state = 45}, + [1393] = {.lex_state = 516, .external_lex_state = 16}, + [1394] = {.lex_state = 245, .external_lex_state = 18}, + [1395] = {.lex_state = 254, .external_lex_state = 15}, + [1396] = {.lex_state = 413, .external_lex_state = 47}, + [1397] = {.lex_state = 288, .external_lex_state = 45}, + [1398] = {.lex_state = 527, .external_lex_state = 45}, + [1399] = {.lex_state = 287, .external_lex_state = 42}, + [1400] = {.lex_state = 527, .external_lex_state = 45}, + [1401] = {.lex_state = 254, .external_lex_state = 15}, + [1402] = {.lex_state = 287, .external_lex_state = 42}, + [1403] = {.lex_state = 287, .external_lex_state = 42}, + [1404] = {.lex_state = 413, .external_lex_state = 47}, + [1405] = {.lex_state = 283, .external_lex_state = 45}, + [1406] = {.lex_state = 283, .external_lex_state = 45}, + [1407] = {.lex_state = 283, .external_lex_state = 45}, + [1408] = {.lex_state = 526, .external_lex_state = 41}, + [1409] = {.lex_state = 283, .external_lex_state = 45}, + [1410] = {.lex_state = 526, .external_lex_state = 41}, + [1411] = {.lex_state = 283, .external_lex_state = 45}, + [1412] = {.lex_state = 526, .external_lex_state = 41}, + [1413] = {.lex_state = 242, .external_lex_state = 15}, + [1414] = {.lex_state = 288, .external_lex_state = 45}, + [1415] = {.lex_state = 287, .external_lex_state = 42}, + [1416] = {.lex_state = 526, .external_lex_state = 41}, + [1417] = {.lex_state = 526, .external_lex_state = 41}, + [1418] = {.lex_state = 263, .external_lex_state = 18}, + [1419] = {.lex_state = 526, .external_lex_state = 41}, + [1420] = {.lex_state = 254, .external_lex_state = 15}, + [1421] = {.lex_state = 254, .external_lex_state = 15}, + [1422] = {.lex_state = 526, .external_lex_state = 41}, + [1423] = {.lex_state = 242, .external_lex_state = 21}, + [1424] = {.lex_state = 516, .external_lex_state = 16}, + [1425] = {.lex_state = 516, .external_lex_state = 16}, + [1426] = {.lex_state = 527, .external_lex_state = 41}, + [1427] = {.lex_state = 287, .external_lex_state = 42}, + [1428] = {.lex_state = 527, .external_lex_state = 41}, + [1429] = {.lex_state = 527, .external_lex_state = 41}, + [1430] = {.lex_state = 283, .external_lex_state = 45}, + [1431] = {.lex_state = 526, .external_lex_state = 41}, + [1432] = {.lex_state = 526, .external_lex_state = 41}, + [1433] = {.lex_state = 527, .external_lex_state = 41}, + [1434] = {.lex_state = 242, .external_lex_state = 15}, + [1435] = {.lex_state = 526, .external_lex_state = 41}, + [1436] = {.lex_state = 242, .external_lex_state = 15}, + [1437] = {.lex_state = 527, .external_lex_state = 41}, + [1438] = {.lex_state = 288, .external_lex_state = 45}, + [1439] = {.lex_state = 527, .external_lex_state = 45}, + [1440] = {.lex_state = 527, .external_lex_state = 45}, + [1441] = {.lex_state = 527, .external_lex_state = 45}, + [1442] = {.lex_state = 526, .external_lex_state = 41}, + [1443] = {.lex_state = 287, .external_lex_state = 42}, + [1444] = {.lex_state = 263, .external_lex_state = 18}, + [1445] = {.lex_state = 527, .external_lex_state = 45}, + [1446] = {.lex_state = 527, .external_lex_state = 41}, + [1447] = {.lex_state = 527, .external_lex_state = 41}, + [1448] = {.lex_state = 269, .external_lex_state = 24}, + [1449] = {.lex_state = 269, .external_lex_state = 24}, + [1450] = {.lex_state = 287, .external_lex_state = 42}, + [1451] = {.lex_state = 516, .external_lex_state = 16}, + [1452] = {.lex_state = 245, .external_lex_state = 18}, + [1453] = {.lex_state = 254, .external_lex_state = 15}, + [1454] = {.lex_state = 254, .external_lex_state = 15}, + [1455] = {.lex_state = 526, .external_lex_state = 41}, + [1456] = {.lex_state = 287, .external_lex_state = 42}, + [1457] = {.lex_state = 526, .external_lex_state = 41}, + [1458] = {.lex_state = 526, .external_lex_state = 41}, + [1459] = {.lex_state = 526, .external_lex_state = 41}, + [1460] = {.lex_state = 526, .external_lex_state = 41}, + [1461] = {.lex_state = 526, .external_lex_state = 41}, + [1462] = {.lex_state = 526, .external_lex_state = 41}, + [1463] = {.lex_state = 526, .external_lex_state = 41}, + [1464] = {.lex_state = 527, .external_lex_state = 41}, + [1465] = {.lex_state = 287, .external_lex_state = 42}, + [1466] = {.lex_state = 516, .external_lex_state = 16}, + [1467] = {.lex_state = 254, .external_lex_state = 15}, + [1468] = {.lex_state = 283, .external_lex_state = 45}, + [1469] = {.lex_state = 283, .external_lex_state = 45}, + [1470] = {.lex_state = 283, .external_lex_state = 45}, + [1471] = {.lex_state = 254, .external_lex_state = 15}, + [1472] = {.lex_state = 516, .external_lex_state = 16}, + [1473] = {.lex_state = 526, .external_lex_state = 41}, + [1474] = {.lex_state = 526, .external_lex_state = 41}, + [1475] = {.lex_state = 527, .external_lex_state = 41}, + [1476] = {.lex_state = 527, .external_lex_state = 41}, + [1477] = {.lex_state = 526, .external_lex_state = 41}, + [1478] = {.lex_state = 287, .external_lex_state = 42}, + [1479] = {.lex_state = 287, .external_lex_state = 42}, + [1480] = {.lex_state = 254, .external_lex_state = 15}, + [1481] = {.lex_state = 283, .external_lex_state = 45}, + [1482] = {.lex_state = 283, .external_lex_state = 45}, + [1483] = {.lex_state = 254, .external_lex_state = 15}, + [1484] = {.lex_state = 287, .external_lex_state = 42}, + [1485] = {.lex_state = 527, .external_lex_state = 41}, + [1486] = {.lex_state = 526, .external_lex_state = 41}, + [1487] = {.lex_state = 526, .external_lex_state = 41}, + [1488] = {.lex_state = 527, .external_lex_state = 41}, + [1489] = {.lex_state = 526, .external_lex_state = 41}, + [1490] = {.lex_state = 526, .external_lex_state = 41}, + [1491] = {.lex_state = 527, .external_lex_state = 41}, + [1492] = {.lex_state = 527, .external_lex_state = 41}, + [1493] = {.lex_state = 527, .external_lex_state = 41}, + [1494] = {.lex_state = 527, .external_lex_state = 41}, + [1495] = {.lex_state = 526, .external_lex_state = 41}, + [1496] = {.lex_state = 526, .external_lex_state = 41}, + [1497] = {.lex_state = 527, .external_lex_state = 41}, + [1498] = {.lex_state = 287, .external_lex_state = 42}, + [1499] = {.lex_state = 527, .external_lex_state = 41}, + [1500] = {.lex_state = 526, .external_lex_state = 41}, + [1501] = {.lex_state = 526, .external_lex_state = 41}, + [1502] = {.lex_state = 526, .external_lex_state = 41}, + [1503] = {.lex_state = 283, .external_lex_state = 45}, + [1504] = {.lex_state = 413, .external_lex_state = 47}, + [1505] = {.lex_state = 283, .external_lex_state = 45}, + [1506] = {.lex_state = 527, .external_lex_state = 45}, + [1507] = {.lex_state = 526, .external_lex_state = 41}, + [1508] = {.lex_state = 526, .external_lex_state = 41}, + [1509] = {.lex_state = 516, .external_lex_state = 16}, + [1510] = {.lex_state = 526, .external_lex_state = 41}, + [1511] = {.lex_state = 526, .external_lex_state = 41}, + [1512] = {.lex_state = 527, .external_lex_state = 41}, + [1513] = {.lex_state = 527, .external_lex_state = 41}, + [1514] = {.lex_state = 283, .external_lex_state = 45}, + [1515] = {.lex_state = 526, .external_lex_state = 41}, + [1516] = {.lex_state = 526, .external_lex_state = 41}, + [1517] = {.lex_state = 283, .external_lex_state = 45}, + [1518] = {.lex_state = 273, .external_lex_state = 4}, + [1519] = {.lex_state = 526, .external_lex_state = 41}, + [1520] = {.lex_state = 526, .external_lex_state = 41}, + [1521] = {.lex_state = 526, .external_lex_state = 41}, + [1522] = {.lex_state = 526, .external_lex_state = 41}, + [1523] = {.lex_state = 526, .external_lex_state = 41}, + [1524] = {.lex_state = 526, .external_lex_state = 41}, + [1525] = {.lex_state = 273, .external_lex_state = 4}, + [1526] = {.lex_state = 263, .external_lex_state = 18}, + [1527] = {.lex_state = 413, .external_lex_state = 47}, + [1528] = {.lex_state = 527, .external_lex_state = 41}, + [1529] = {.lex_state = 527, .external_lex_state = 41}, + [1530] = {.lex_state = 516, .external_lex_state = 16}, + [1531] = {.lex_state = 413, .external_lex_state = 47}, + [1532] = {.lex_state = 527, .external_lex_state = 45}, + [1533] = {.lex_state = 516, .external_lex_state = 16}, + [1534] = {.lex_state = 526, .external_lex_state = 41}, + [1535] = {.lex_state = 527, .external_lex_state = 41}, + [1536] = {.lex_state = 288, .external_lex_state = 45}, + [1537] = {.lex_state = 288, .external_lex_state = 45}, + [1538] = {.lex_state = 263, .external_lex_state = 18}, + [1539] = {.lex_state = 527, .external_lex_state = 41}, + [1540] = {.lex_state = 527, .external_lex_state = 41}, + [1541] = {.lex_state = 273, .external_lex_state = 4}, + [1542] = {.lex_state = 527, .external_lex_state = 41}, + [1543] = {.lex_state = 273, .external_lex_state = 4}, + [1544] = {.lex_state = 288, .external_lex_state = 45}, + [1545] = {.lex_state = 283, .external_lex_state = 45}, + [1546] = {.lex_state = 263, .external_lex_state = 18}, + [1547] = {.lex_state = 242, .external_lex_state = 15}, + [1548] = {.lex_state = 273, .external_lex_state = 4}, + [1549] = {.lex_state = 526, .external_lex_state = 41}, + [1550] = {.lex_state = 283, .external_lex_state = 45}, + [1551] = {.lex_state = 287, .external_lex_state = 42}, + [1552] = {.lex_state = 288, .external_lex_state = 45}, + [1553] = {.lex_state = 242, .external_lex_state = 21}, + [1554] = {.lex_state = 287, .external_lex_state = 42}, + [1555] = {.lex_state = 526, .external_lex_state = 41}, + [1556] = {.lex_state = 263, .external_lex_state = 18}, + [1557] = {.lex_state = 516, .external_lex_state = 16}, + [1558] = {.lex_state = 288, .external_lex_state = 45}, + [1559] = {.lex_state = 245, .external_lex_state = 18}, + [1560] = {.lex_state = 526, .external_lex_state = 41}, + [1561] = {.lex_state = 450, .external_lex_state = 48}, + [1562] = {.lex_state = 528, .external_lex_state = 45}, + [1563] = {.lex_state = 528, .external_lex_state = 45}, + [1564] = {.lex_state = 528, .external_lex_state = 45}, + [1565] = {.lex_state = 528, .external_lex_state = 45}, + [1566] = {.lex_state = 527, .external_lex_state = 45}, + [1567] = {.lex_state = 518, .external_lex_state = 18}, + [1568] = {.lex_state = 450, .external_lex_state = 48}, + [1569] = {.lex_state = 528, .external_lex_state = 45}, + [1570] = {.lex_state = 527, .external_lex_state = 45}, + [1571] = {.lex_state = 527, .external_lex_state = 45}, + [1572] = {.lex_state = 450, .external_lex_state = 48}, + [1573] = {.lex_state = 523, .external_lex_state = 18}, + [1574] = {.lex_state = 288, .external_lex_state = 45}, + [1575] = {.lex_state = 450, .external_lex_state = 48}, + [1576] = {.lex_state = 518, .external_lex_state = 18}, + [1577] = {.lex_state = 528, .external_lex_state = 45}, + [1578] = {.lex_state = 518, .external_lex_state = 18}, + [1579] = {.lex_state = 518, .external_lex_state = 18}, + [1580] = {.lex_state = 413, .external_lex_state = 49}, + [1581] = {.lex_state = 527, .external_lex_state = 45}, + [1582] = {.lex_state = 527, .external_lex_state = 45}, + [1583] = {.lex_state = 527, .external_lex_state = 45}, + [1584] = {.lex_state = 527, .external_lex_state = 45}, + [1585] = {.lex_state = 527, .external_lex_state = 45}, + [1586] = {.lex_state = 527, .external_lex_state = 45}, + [1587] = {.lex_state = 263, .external_lex_state = 18}, + [1588] = {.lex_state = 527, .external_lex_state = 45}, + [1589] = {.lex_state = 527, .external_lex_state = 45}, + [1590] = {.lex_state = 251, .external_lex_state = 21}, + [1591] = {.lex_state = 288, .external_lex_state = 45}, + [1592] = {.lex_state = 251, .external_lex_state = 21}, + [1593] = {.lex_state = 288, .external_lex_state = 45}, + [1594] = {.lex_state = 527, .external_lex_state = 45}, + [1595] = {.lex_state = 527, .external_lex_state = 45}, + [1596] = {.lex_state = 527, .external_lex_state = 45}, + [1597] = {.lex_state = 527, .external_lex_state = 45}, + [1598] = {.lex_state = 527, .external_lex_state = 45}, + [1599] = {.lex_state = 413, .external_lex_state = 49}, + [1600] = {.lex_state = 251, .external_lex_state = 21}, + [1601] = {.lex_state = 528, .external_lex_state = 45}, + [1602] = {.lex_state = 523, .external_lex_state = 18}, + [1603] = {.lex_state = 523, .external_lex_state = 18}, + [1604] = {.lex_state = 527, .external_lex_state = 45}, + [1605] = {.lex_state = 528, .external_lex_state = 45}, + [1606] = {.lex_state = 245, .external_lex_state = 22}, + [1607] = {.lex_state = 527, .external_lex_state = 45}, + [1608] = {.lex_state = 413, .external_lex_state = 44}, + [1609] = {.lex_state = 263, .external_lex_state = 18}, + [1610] = {.lex_state = 527, .external_lex_state = 45}, + [1611] = {.lex_state = 527, .external_lex_state = 45}, + [1612] = {.lex_state = 413, .external_lex_state = 44}, + [1613] = {.lex_state = 413, .external_lex_state = 49}, + [1614] = {.lex_state = 413, .external_lex_state = 49}, + [1615] = {.lex_state = 518, .external_lex_state = 18}, + [1616] = {.lex_state = 527, .external_lex_state = 45}, + [1617] = {.lex_state = 288, .external_lex_state = 45}, + [1618] = {.lex_state = 527, .external_lex_state = 45}, + [1619] = {.lex_state = 288, .external_lex_state = 45}, + [1620] = {.lex_state = 288, .external_lex_state = 45}, + [1621] = {.lex_state = 251, .external_lex_state = 21}, + [1622] = {.lex_state = 528, .external_lex_state = 45}, + [1623] = {.lex_state = 288, .external_lex_state = 45}, + [1624] = {.lex_state = 450, .external_lex_state = 48}, + [1625] = {.lex_state = 288, .external_lex_state = 45}, + [1626] = {.lex_state = 245, .external_lex_state = 22}, + [1627] = {.lex_state = 527, .external_lex_state = 45}, + [1628] = {.lex_state = 527, .external_lex_state = 45}, + [1629] = {.lex_state = 527, .external_lex_state = 45}, + [1630] = {.lex_state = 263, .external_lex_state = 18}, + [1631] = {.lex_state = 528, .external_lex_state = 45}, + [1632] = {.lex_state = 523, .external_lex_state = 18}, + [1633] = {.lex_state = 523, .external_lex_state = 18}, + [1634] = {.lex_state = 527, .external_lex_state = 45}, + [1635] = {.lex_state = 528, .external_lex_state = 45}, + [1636] = {.lex_state = 527, .external_lex_state = 45}, + [1637] = {.lex_state = 527, .external_lex_state = 45}, + [1638] = {.lex_state = 263, .external_lex_state = 18}, + [1639] = {.lex_state = 288, .external_lex_state = 45}, + [1640] = {.lex_state = 288, .external_lex_state = 45}, + [1641] = {.lex_state = 528, .external_lex_state = 45}, + [1642] = {.lex_state = 288, .external_lex_state = 45}, + [1643] = {.lex_state = 523, .external_lex_state = 18}, + [1644] = {.lex_state = 413, .external_lex_state = 44}, + [1645] = {.lex_state = 527, .external_lex_state = 45}, + [1646] = {.lex_state = 527, .external_lex_state = 45}, + [1647] = {.lex_state = 273, .external_lex_state = 34}, + [1648] = {.lex_state = 273, .external_lex_state = 34}, + [1649] = {.lex_state = 263, .external_lex_state = 18}, + [1650] = {.lex_state = 288, .external_lex_state = 45}, + [1651] = {.lex_state = 450, .external_lex_state = 48}, + [1652] = {.lex_state = 413, .external_lex_state = 44}, + [1653] = {.lex_state = 245, .external_lex_state = 18}, + [1654] = {.lex_state = 413, .external_lex_state = 49}, + [1655] = {.lex_state = 263, .external_lex_state = 18}, + [1656] = {.lex_state = 528, .external_lex_state = 45}, + [1657] = {.lex_state = 523, .external_lex_state = 18}, + [1658] = {.lex_state = 288, .external_lex_state = 45}, + [1659] = {.lex_state = 527, .external_lex_state = 45}, + [1660] = {.lex_state = 413, .external_lex_state = 44}, + [1661] = {.lex_state = 413, .external_lex_state = 44}, + [1662] = {.lex_state = 413, .external_lex_state = 44}, + [1663] = {.lex_state = 523, .external_lex_state = 18}, + [1664] = {.lex_state = 528, .external_lex_state = 45}, + [1665] = {.lex_state = 527, .external_lex_state = 45}, + [1666] = {.lex_state = 527, .external_lex_state = 45}, + [1667] = {.lex_state = 527, .external_lex_state = 45}, + [1668] = {.lex_state = 263, .external_lex_state = 18}, + [1669] = {.lex_state = 528, .external_lex_state = 45}, + [1670] = {.lex_state = 527, .external_lex_state = 45}, + [1671] = {.lex_state = 527, .external_lex_state = 45}, + [1672] = {.lex_state = 288, .external_lex_state = 45}, + [1673] = {.lex_state = 263, .external_lex_state = 18}, + [1674] = {.lex_state = 263, .external_lex_state = 18}, + [1675] = {.lex_state = 523, .external_lex_state = 18}, + [1676] = {.lex_state = 528, .external_lex_state = 45}, + [1677] = {.lex_state = 450, .external_lex_state = 48}, + [1678] = {.lex_state = 528, .external_lex_state = 45}, + [1679] = {.lex_state = 413, .external_lex_state = 49}, + [1680] = {.lex_state = 288, .external_lex_state = 45}, + [1681] = {.lex_state = 263, .external_lex_state = 18}, + [1682] = {.lex_state = 527, .external_lex_state = 45}, + [1683] = {.lex_state = 273, .external_lex_state = 34}, + [1684] = {.lex_state = 273, .external_lex_state = 34}, + [1685] = {.lex_state = 523, .external_lex_state = 18}, + [1686] = {.lex_state = 288, .external_lex_state = 45}, + [1687] = {.lex_state = 263, .external_lex_state = 18}, + [1688] = {.lex_state = 263, .external_lex_state = 18}, + [1689] = {.lex_state = 273, .external_lex_state = 34}, + [1690] = {.lex_state = 273, .external_lex_state = 34}, + [1691] = {.lex_state = 413, .external_lex_state = 44}, + [1692] = {.lex_state = 288, .external_lex_state = 45}, + [1693] = {.lex_state = 523, .external_lex_state = 18}, + [1694] = {.lex_state = 245, .external_lex_state = 18}, + [1695] = {.lex_state = 527, .external_lex_state = 45}, + [1696] = {.lex_state = 528, .external_lex_state = 45}, + [1697] = {.lex_state = 527, .external_lex_state = 45}, + [1698] = {.lex_state = 273, .external_lex_state = 34}, + [1699] = {.lex_state = 273, .external_lex_state = 34}, + [1700] = {.lex_state = 273, .external_lex_state = 34}, + [1701] = {.lex_state = 273, .external_lex_state = 34}, + [1702] = {.lex_state = 273, .external_lex_state = 34}, + [1703] = {.lex_state = 288, .external_lex_state = 45}, + [1704] = {.lex_state = 263, .external_lex_state = 18}, + [1705] = {.lex_state = 245, .external_lex_state = 18}, + [1706] = {.lex_state = 263, .external_lex_state = 18}, + [1707] = {.lex_state = 288, .external_lex_state = 45}, + [1708] = {.lex_state = 263, .external_lex_state = 18}, + [1709] = {.lex_state = 518, .external_lex_state = 18}, + [1710] = {.lex_state = 528, .external_lex_state = 45}, + [1711] = {.lex_state = 527, .external_lex_state = 45}, + [1712] = {.lex_state = 527, .external_lex_state = 45}, + [1713] = {.lex_state = 523, .external_lex_state = 18}, + [1714] = {.lex_state = 527, .external_lex_state = 45}, + [1715] = {.lex_state = 528, .external_lex_state = 45}, + [1716] = {.lex_state = 245, .external_lex_state = 18}, + [1717] = {.lex_state = 242, .external_lex_state = 21}, + [1718] = {.lex_state = 527, .external_lex_state = 45}, + [1719] = {.lex_state = 413, .external_lex_state = 49}, + [1720] = {.lex_state = 523, .external_lex_state = 18}, + [1721] = {.lex_state = 518, .external_lex_state = 22}, + [1722] = {.lex_state = 413, .external_lex_state = 44}, + [1723] = {.lex_state = 528, .external_lex_state = 45}, + [1724] = {.lex_state = 528, .external_lex_state = 45}, + [1725] = {.lex_state = 450, .external_lex_state = 48}, + [1726] = {.lex_state = 528, .external_lex_state = 45}, + [1727] = {.lex_state = 450, .external_lex_state = 48}, + [1728] = {.lex_state = 528, .external_lex_state = 45}, + [1729] = {.lex_state = 528, .external_lex_state = 45}, + [1730] = {.lex_state = 518, .external_lex_state = 18}, + [1731] = {.lex_state = 528, .external_lex_state = 45}, + [1732] = {.lex_state = 413, .external_lex_state = 44}, + [1733] = {.lex_state = 413, .external_lex_state = 44}, + [1734] = {.lex_state = 413, .external_lex_state = 44}, + [1735] = {.lex_state = 413, .external_lex_state = 44}, + [1736] = {.lex_state = 413, .external_lex_state = 44}, + [1737] = {.lex_state = 413, .external_lex_state = 44}, + [1738] = {.lex_state = 450, .external_lex_state = 48}, + [1739] = {.lex_state = 413, .external_lex_state = 44}, + [1740] = {.lex_state = 450, .external_lex_state = 48}, + [1741] = {.lex_state = 450, .external_lex_state = 48}, + [1742] = {.lex_state = 450, .external_lex_state = 48}, + [1743] = {.lex_state = 450, .external_lex_state = 48}, + [1744] = {.lex_state = 413, .external_lex_state = 44}, + [1745] = {.lex_state = 413, .external_lex_state = 44}, + [1746] = {.lex_state = 528, .external_lex_state = 45}, + [1747] = {.lex_state = 413, .external_lex_state = 44}, + [1748] = {.lex_state = 450, .external_lex_state = 48}, + [1749] = {.lex_state = 450, .external_lex_state = 48}, + [1750] = {.lex_state = 528, .external_lex_state = 45}, + [1751] = {.lex_state = 528, .external_lex_state = 45}, + [1752] = {.lex_state = 450, .external_lex_state = 48}, + [1753] = {.lex_state = 528, .external_lex_state = 45}, + [1754] = {.lex_state = 450, .external_lex_state = 48}, + [1755] = {.lex_state = 413, .external_lex_state = 44}, + [1756] = {.lex_state = 528, .external_lex_state = 45}, + [1757] = {.lex_state = 413, .external_lex_state = 44}, + [1758] = {.lex_state = 413, .external_lex_state = 44}, + [1759] = {.lex_state = 523, .external_lex_state = 18}, + [1760] = {.lex_state = 523, .external_lex_state = 18}, + [1761] = {.lex_state = 528, .external_lex_state = 45}, + [1762] = {.lex_state = 528, .external_lex_state = 45}, + [1763] = {.lex_state = 528, .external_lex_state = 45}, + [1764] = {.lex_state = 523, .external_lex_state = 18}, + [1765] = {.lex_state = 528, .external_lex_state = 45}, + [1766] = {.lex_state = 528, .external_lex_state = 45}, + [1767] = {.lex_state = 528, .external_lex_state = 45}, + [1768] = {.lex_state = 523, .external_lex_state = 18}, + [1769] = {.lex_state = 528, .external_lex_state = 45}, + [1770] = {.lex_state = 450, .external_lex_state = 48}, + [1771] = {.lex_state = 450, .external_lex_state = 48}, + [1772] = {.lex_state = 450, .external_lex_state = 48}, + [1773] = {.lex_state = 528, .external_lex_state = 45}, + [1774] = {.lex_state = 528, .external_lex_state = 45}, + [1775] = {.lex_state = 528, .external_lex_state = 45}, + [1776] = {.lex_state = 528, .external_lex_state = 45}, + [1777] = {.lex_state = 528, .external_lex_state = 45}, + [1778] = {.lex_state = 528, .external_lex_state = 45}, + [1779] = {.lex_state = 528, .external_lex_state = 45}, + [1780] = {.lex_state = 523, .external_lex_state = 18}, + [1781] = {.lex_state = 528, .external_lex_state = 45}, + [1782] = {.lex_state = 528, .external_lex_state = 45}, + [1783] = {.lex_state = 528, .external_lex_state = 45}, + [1784] = {.lex_state = 528, .external_lex_state = 45}, + [1785] = {.lex_state = 528, .external_lex_state = 45}, + [1786] = {.lex_state = 528, .external_lex_state = 45}, + [1787] = {.lex_state = 528, .external_lex_state = 45}, + [1788] = {.lex_state = 528, .external_lex_state = 45}, + [1789] = {.lex_state = 528, .external_lex_state = 45}, + [1790] = {.lex_state = 528, .external_lex_state = 45}, + [1791] = {.lex_state = 528, .external_lex_state = 45}, + [1792] = {.lex_state = 528, .external_lex_state = 45}, + [1793] = {.lex_state = 523, .external_lex_state = 18}, + [1794] = {.lex_state = 413, .external_lex_state = 44}, + [1795] = {.lex_state = 518, .external_lex_state = 18}, + [1796] = {.lex_state = 452, .external_lex_state = 26}, + [1797] = {.lex_state = 523, .external_lex_state = 18}, + [1798] = {.lex_state = 523, .external_lex_state = 18}, + [1799] = {.lex_state = 518, .external_lex_state = 18}, + [1800] = {.lex_state = 413, .external_lex_state = 44}, + [1801] = {.lex_state = 523, .external_lex_state = 18}, + [1802] = {.lex_state = 518, .external_lex_state = 22}, + [1803] = {.lex_state = 523, .external_lex_state = 18}, + [1804] = {.lex_state = 413, .external_lex_state = 44}, + [1805] = {.lex_state = 251, .external_lex_state = 21}, + [1806] = {.lex_state = 523, .external_lex_state = 18}, + [1807] = {.lex_state = 523, .external_lex_state = 18}, + [1808] = {.lex_state = 523, .external_lex_state = 18}, + [1809] = {.lex_state = 523, .external_lex_state = 18}, + [1810] = {.lex_state = 251, .external_lex_state = 21}, + [1811] = {.lex_state = 251, .external_lex_state = 21}, + [1812] = {.lex_state = 413, .external_lex_state = 44}, + [1813] = {.lex_state = 413, .external_lex_state = 44}, + [1814] = {.lex_state = 413, .external_lex_state = 44}, + [1815] = {.lex_state = 413, .external_lex_state = 44}, + [1816] = {.lex_state = 413, .external_lex_state = 44}, + [1817] = {.lex_state = 413, .external_lex_state = 44}, + [1818] = {.lex_state = 413, .external_lex_state = 44}, + [1819] = {.lex_state = 413, .external_lex_state = 44}, + [1820] = {.lex_state = 251, .external_lex_state = 21}, + [1821] = {.lex_state = 251, .external_lex_state = 21}, + [1822] = {.lex_state = 251, .external_lex_state = 21}, + [1823] = {.lex_state = 251, .external_lex_state = 21}, + [1824] = {.lex_state = 251, .external_lex_state = 21}, + [1825] = {.lex_state = 251, .external_lex_state = 21}, + [1826] = {.lex_state = 251, .external_lex_state = 21}, + [1827] = {.lex_state = 251, .external_lex_state = 21}, + [1828] = {.lex_state = 251, .external_lex_state = 21}, + [1829] = {.lex_state = 251, .external_lex_state = 21}, + [1830] = {.lex_state = 251, .external_lex_state = 21}, + [1831] = {.lex_state = 251, .external_lex_state = 21}, + [1832] = {.lex_state = 251, .external_lex_state = 21}, + [1833] = {.lex_state = 251, .external_lex_state = 21}, + [1834] = {.lex_state = 251, .external_lex_state = 21}, + [1835] = {.lex_state = 251, .external_lex_state = 21}, + [1836] = {.lex_state = 251, .external_lex_state = 21}, + [1837] = {.lex_state = 251, .external_lex_state = 21}, + [1838] = {.lex_state = 251, .external_lex_state = 21}, + [1839] = {.lex_state = 251, .external_lex_state = 21}, + [1840] = {.lex_state = 413, .external_lex_state = 44}, + [1841] = {.lex_state = 413, .external_lex_state = 44}, + [1842] = {.lex_state = 413, .external_lex_state = 44}, + [1843] = {.lex_state = 413, .external_lex_state = 44}, + [1844] = {.lex_state = 413, .external_lex_state = 44}, + [1845] = {.lex_state = 245, .external_lex_state = 22}, + [1846] = {.lex_state = 257, .external_lex_state = 22}, + [1847] = {.lex_state = 425, .external_lex_state = 50}, + [1848] = {.lex_state = 523, .external_lex_state = 18}, + [1849] = {.lex_state = 257, .external_lex_state = 22}, + [1850] = {.lex_state = 518, .external_lex_state = 18}, + [1851] = {.lex_state = 518, .external_lex_state = 18}, + [1852] = {.lex_state = 523, .external_lex_state = 18}, + [1853] = {.lex_state = 518, .external_lex_state = 22}, + [1854] = {.lex_state = 413, .external_lex_state = 44}, + [1855] = {.lex_state = 413, .external_lex_state = 44}, + [1856] = {.lex_state = 413, .external_lex_state = 44}, + [1857] = {.lex_state = 523, .external_lex_state = 18}, + [1858] = {.lex_state = 413, .external_lex_state = 44}, + [1859] = {.lex_state = 413, .external_lex_state = 44}, + [1860] = {.lex_state = 413, .external_lex_state = 44}, + [1861] = {.lex_state = 413, .external_lex_state = 44}, + [1862] = {.lex_state = 413, .external_lex_state = 44}, + [1863] = {.lex_state = 413, .external_lex_state = 44}, + [1864] = {.lex_state = 413, .external_lex_state = 44}, + [1865] = {.lex_state = 413, .external_lex_state = 44}, + [1866] = {.lex_state = 413, .external_lex_state = 44}, + [1867] = {.lex_state = 413, .external_lex_state = 44}, + [1868] = {.lex_state = 413, .external_lex_state = 44}, + [1869] = {.lex_state = 413, .external_lex_state = 44}, + [1870] = {.lex_state = 413, .external_lex_state = 44}, + [1871] = {.lex_state = 518, .external_lex_state = 18}, + [1872] = {.lex_state = 413, .external_lex_state = 44}, + [1873] = {.lex_state = 413, .external_lex_state = 44}, + [1874] = {.lex_state = 518, .external_lex_state = 18}, + [1875] = {.lex_state = 528, .external_lex_state = 45}, + [1876] = {.lex_state = 528, .external_lex_state = 45}, + [1877] = {.lex_state = 528, .external_lex_state = 45}, + [1878] = {.lex_state = 413, .external_lex_state = 44}, + [1879] = {.lex_state = 413, .external_lex_state = 44}, + [1880] = {.lex_state = 523, .external_lex_state = 18}, + [1881] = {.lex_state = 523, .external_lex_state = 18}, + [1882] = {.lex_state = 446, .external_lex_state = 35}, + [1883] = {.lex_state = 413, .external_lex_state = 44}, + [1884] = {.lex_state = 413, .external_lex_state = 44}, + [1885] = {.lex_state = 523, .external_lex_state = 18}, + [1886] = {.lex_state = 413, .external_lex_state = 44}, + [1887] = {.lex_state = 413, .external_lex_state = 44}, + [1888] = {.lex_state = 523, .external_lex_state = 18}, + [1889] = {.lex_state = 450, .external_lex_state = 51}, + [1890] = {.lex_state = 450, .external_lex_state = 51}, + [1891] = {.lex_state = 523, .external_lex_state = 18}, + [1892] = {.lex_state = 523, .external_lex_state = 18}, + [1893] = {.lex_state = 450, .external_lex_state = 51}, + [1894] = {.lex_state = 450, .external_lex_state = 51}, + [1895] = {.lex_state = 523, .external_lex_state = 18}, + [1896] = {.lex_state = 523, .external_lex_state = 18}, + [1897] = {.lex_state = 523, .external_lex_state = 18}, + [1898] = {.lex_state = 523, .external_lex_state = 18}, + [1899] = {.lex_state = 523, .external_lex_state = 18}, + [1900] = {.lex_state = 523, .external_lex_state = 18}, + [1901] = {.lex_state = 523, .external_lex_state = 18}, + [1902] = {.lex_state = 523, .external_lex_state = 18}, + [1903] = {.lex_state = 523, .external_lex_state = 18}, + [1904] = {.lex_state = 523, .external_lex_state = 18}, + [1905] = {.lex_state = 523, .external_lex_state = 18}, + [1906] = {.lex_state = 523, .external_lex_state = 18}, + [1907] = {.lex_state = 523, .external_lex_state = 18}, + [1908] = {.lex_state = 523, .external_lex_state = 18}, + [1909] = {.lex_state = 523, .external_lex_state = 18}, + [1910] = {.lex_state = 523, .external_lex_state = 18}, + [1911] = {.lex_state = 528, .external_lex_state = 45}, + [1912] = {.lex_state = 523, .external_lex_state = 18}, + [1913] = {.lex_state = 523, .external_lex_state = 18}, + [1914] = {.lex_state = 523, .external_lex_state = 18}, + [1915] = {.lex_state = 523, .external_lex_state = 18}, + [1916] = {.lex_state = 523, .external_lex_state = 18}, + [1917] = {.lex_state = 523, .external_lex_state = 18}, + [1918] = {.lex_state = 523, .external_lex_state = 18}, + [1919] = {.lex_state = 523, .external_lex_state = 18}, + [1920] = {.lex_state = 523, .external_lex_state = 18}, + [1921] = {.lex_state = 523, .external_lex_state = 18}, + [1922] = {.lex_state = 523, .external_lex_state = 18}, + [1923] = {.lex_state = 523, .external_lex_state = 18}, + [1924] = {.lex_state = 523, .external_lex_state = 18}, + [1925] = {.lex_state = 523, .external_lex_state = 18}, + [1926] = {.lex_state = 523, .external_lex_state = 18}, + [1927] = {.lex_state = 523, .external_lex_state = 18}, + [1928] = {.lex_state = 523, .external_lex_state = 18}, + [1929] = {.lex_state = 523, .external_lex_state = 18}, + [1930] = {.lex_state = 523, .external_lex_state = 18}, + [1931] = {.lex_state = 523, .external_lex_state = 18}, + [1932] = {.lex_state = 523, .external_lex_state = 18}, + [1933] = {.lex_state = 523, .external_lex_state = 18}, + [1934] = {.lex_state = 523, .external_lex_state = 18}, + [1935] = {.lex_state = 523, .external_lex_state = 18}, + [1936] = {.lex_state = 523, .external_lex_state = 18}, + [1937] = {.lex_state = 523, .external_lex_state = 18}, + [1938] = {.lex_state = 523, .external_lex_state = 18}, + [1939] = {.lex_state = 523, .external_lex_state = 18}, + [1940] = {.lex_state = 523, .external_lex_state = 18}, + [1941] = {.lex_state = 523, .external_lex_state = 18}, + [1942] = {.lex_state = 523, .external_lex_state = 18}, + [1943] = {.lex_state = 523, .external_lex_state = 18}, + [1944] = {.lex_state = 523, .external_lex_state = 18}, + [1945] = {.lex_state = 523, .external_lex_state = 18}, + [1946] = {.lex_state = 523, .external_lex_state = 18}, + [1947] = {.lex_state = 523, .external_lex_state = 18}, + [1948] = {.lex_state = 523, .external_lex_state = 18}, + [1949] = {.lex_state = 523, .external_lex_state = 18}, + [1950] = {.lex_state = 523, .external_lex_state = 18}, + [1951] = {.lex_state = 523, .external_lex_state = 18}, + [1952] = {.lex_state = 523, .external_lex_state = 18}, + [1953] = {.lex_state = 523, .external_lex_state = 18}, + [1954] = {.lex_state = 523, .external_lex_state = 18}, + [1955] = {.lex_state = 523, .external_lex_state = 18}, + [1956] = {.lex_state = 523, .external_lex_state = 18}, + [1957] = {.lex_state = 523, .external_lex_state = 18}, + [1958] = {.lex_state = 523, .external_lex_state = 18}, + [1959] = {.lex_state = 523, .external_lex_state = 18}, + [1960] = {.lex_state = 523, .external_lex_state = 18}, + [1961] = {.lex_state = 446, .external_lex_state = 35}, + [1962] = {.lex_state = 413, .external_lex_state = 44}, + [1963] = {.lex_state = 413, .external_lex_state = 44}, + [1964] = {.lex_state = 528, .external_lex_state = 45}, + [1965] = {.lex_state = 528, .external_lex_state = 45}, + [1966] = {.lex_state = 528, .external_lex_state = 45}, + [1967] = {.lex_state = 528, .external_lex_state = 45}, + [1968] = {.lex_state = 528, .external_lex_state = 45}, + [1969] = {.lex_state = 528, .external_lex_state = 45}, + [1970] = {.lex_state = 523, .external_lex_state = 18}, + [1971] = {.lex_state = 413, .external_lex_state = 44}, + [1972] = {.lex_state = 413, .external_lex_state = 44}, + [1973] = {.lex_state = 413, .external_lex_state = 44}, + [1974] = {.lex_state = 413, .external_lex_state = 44}, + [1975] = {.lex_state = 413, .external_lex_state = 44}, + [1976] = {.lex_state = 518, .external_lex_state = 18}, + [1977] = {.lex_state = 413, .external_lex_state = 44}, + [1978] = {.lex_state = 450, .external_lex_state = 51}, + [1979] = {.lex_state = 450, .external_lex_state = 51}, + [1980] = {.lex_state = 523, .external_lex_state = 18}, + [1981] = {.lex_state = 518, .external_lex_state = 22}, + [1982] = {.lex_state = 413, .external_lex_state = 44}, + [1983] = {.lex_state = 413, .external_lex_state = 44}, + [1984] = {.lex_state = 413, .external_lex_state = 44}, + [1985] = {.lex_state = 413, .external_lex_state = 44}, + [1986] = {.lex_state = 413, .external_lex_state = 44}, + [1987] = {.lex_state = 413, .external_lex_state = 44}, + [1988] = {.lex_state = 413, .external_lex_state = 44}, + [1989] = {.lex_state = 413, .external_lex_state = 44}, + [1990] = {.lex_state = 413, .external_lex_state = 44}, + [1991] = {.lex_state = 413, .external_lex_state = 44}, + [1992] = {.lex_state = 413, .external_lex_state = 44}, + [1993] = {.lex_state = 413, .external_lex_state = 44}, + [1994] = {.lex_state = 413, .external_lex_state = 44}, + [1995] = {.lex_state = 413, .external_lex_state = 44}, + [1996] = {.lex_state = 413, .external_lex_state = 44}, + [1997] = {.lex_state = 452, .external_lex_state = 26}, + [1998] = {.lex_state = 450, .external_lex_state = 51}, + [1999] = {.lex_state = 450, .external_lex_state = 51}, + [2000] = {.lex_state = 251, .external_lex_state = 21}, + [2001] = {.lex_state = 251, .external_lex_state = 21}, + [2002] = {.lex_state = 413, .external_lex_state = 44}, + [2003] = {.lex_state = 413, .external_lex_state = 44}, + [2004] = {.lex_state = 413, .external_lex_state = 44}, + [2005] = {.lex_state = 413, .external_lex_state = 44}, + [2006] = {.lex_state = 413, .external_lex_state = 44}, + [2007] = {.lex_state = 450, .external_lex_state = 51}, + [2008] = {.lex_state = 413, .external_lex_state = 44}, + [2009] = {.lex_state = 413, .external_lex_state = 44}, + [2010] = {.lex_state = 413, .external_lex_state = 44}, + [2011] = {.lex_state = 450, .external_lex_state = 51}, + [2012] = {.lex_state = 413, .external_lex_state = 44}, + [2013] = {.lex_state = 413, .external_lex_state = 44}, + [2014] = {.lex_state = 413, .external_lex_state = 44}, + [2015] = {.lex_state = 413, .external_lex_state = 44}, + [2016] = {.lex_state = 413, .external_lex_state = 44}, + [2017] = {.lex_state = 413, .external_lex_state = 44}, + [2018] = {.lex_state = 413, .external_lex_state = 44}, + [2019] = {.lex_state = 413, .external_lex_state = 44}, + [2020] = {.lex_state = 413, .external_lex_state = 44}, + [2021] = {.lex_state = 413, .external_lex_state = 44}, + [2022] = {.lex_state = 413, .external_lex_state = 44}, + [2023] = {.lex_state = 413, .external_lex_state = 44}, + [2024] = {.lex_state = 413, .external_lex_state = 44}, + [2025] = {.lex_state = 413, .external_lex_state = 44}, + [2026] = {.lex_state = 413, .external_lex_state = 44}, + [2027] = {.lex_state = 450, .external_lex_state = 51}, + [2028] = {.lex_state = 452, .external_lex_state = 26}, + [2029] = {.lex_state = 413, .external_lex_state = 44}, + [2030] = {.lex_state = 413, .external_lex_state = 44}, + [2031] = {.lex_state = 413, .external_lex_state = 44}, + [2032] = {.lex_state = 413, .external_lex_state = 44}, + [2033] = {.lex_state = 450, .external_lex_state = 51}, + [2034] = {.lex_state = 413, .external_lex_state = 44}, + [2035] = {.lex_state = 413, .external_lex_state = 44}, + [2036] = {.lex_state = 257, .external_lex_state = 22}, + [2037] = {.lex_state = 450, .external_lex_state = 48}, + [2038] = {.lex_state = 413, .external_lex_state = 44}, + [2039] = {.lex_state = 413, .external_lex_state = 44}, + [2040] = {.lex_state = 413, .external_lex_state = 44}, + [2041] = {.lex_state = 257, .external_lex_state = 22}, + [2042] = {.lex_state = 450, .external_lex_state = 48}, + [2043] = {.lex_state = 450, .external_lex_state = 48}, + [2044] = {.lex_state = 450, .external_lex_state = 48}, + [2045] = {.lex_state = 413, .external_lex_state = 44}, + [2046] = {.lex_state = 450, .external_lex_state = 48}, + [2047] = {.lex_state = 523, .external_lex_state = 18}, + [2048] = {.lex_state = 413, .external_lex_state = 44}, + [2049] = {.lex_state = 523, .external_lex_state = 18}, + [2050] = {.lex_state = 523, .external_lex_state = 18}, + [2051] = {.lex_state = 450, .external_lex_state = 51}, + [2052] = {.lex_state = 450, .external_lex_state = 51}, + [2053] = {.lex_state = 521, .external_lex_state = 22}, + [2054] = {.lex_state = 431, .external_lex_state = 43}, + [2055] = {.lex_state = 453, .external_lex_state = 52}, + [2056] = {.lex_state = 453, .external_lex_state = 52}, + [2057] = {.lex_state = 450, .external_lex_state = 51}, + [2058] = {.lex_state = 450, .external_lex_state = 51}, + [2059] = {.lex_state = 453, .external_lex_state = 52}, + [2060] = {.lex_state = 521, .external_lex_state = 22}, + [2061] = {.lex_state = 426, .external_lex_state = 50}, + [2062] = {.lex_state = 450, .external_lex_state = 51}, + [2063] = {.lex_state = 450, .external_lex_state = 51}, + [2064] = {.lex_state = 521, .external_lex_state = 22}, + [2065] = {.lex_state = 453, .external_lex_state = 52}, + [2066] = {.lex_state = 425, .external_lex_state = 50}, + [2067] = {.lex_state = 450, .external_lex_state = 51}, + [2068] = {.lex_state = 450, .external_lex_state = 51}, + [2069] = {.lex_state = 425, .external_lex_state = 50}, + [2070] = {.lex_state = 521, .external_lex_state = 22}, + [2071] = {.lex_state = 257, .external_lex_state = 22}, + [2072] = {.lex_state = 425, .external_lex_state = 50}, + [2073] = {.lex_state = 425, .external_lex_state = 50}, + [2074] = {.lex_state = 425, .external_lex_state = 50}, + [2075] = {.lex_state = 450, .external_lex_state = 51}, + [2076] = {.lex_state = 449, .external_lex_state = 23}, + [2077] = {.lex_state = 425, .external_lex_state = 50}, + [2078] = {.lex_state = 257, .external_lex_state = 22}, + [2079] = {.lex_state = 257, .external_lex_state = 22}, + [2080] = {.lex_state = 450, .external_lex_state = 51}, + [2081] = {.lex_state = 425, .external_lex_state = 50}, + [2082] = {.lex_state = 425, .external_lex_state = 50}, + [2083] = {.lex_state = 257, .external_lex_state = 22}, + [2084] = {.lex_state = 257, .external_lex_state = 22}, + [2085] = {.lex_state = 257, .external_lex_state = 22}, + [2086] = {.lex_state = 257, .external_lex_state = 22}, + [2087] = {.lex_state = 257, .external_lex_state = 22}, + [2088] = {.lex_state = 281, .external_lex_state = 41}, + [2089] = {.lex_state = 281, .external_lex_state = 41}, + [2090] = {.lex_state = 283, .external_lex_state = 41}, + [2091] = {.lex_state = 283, .external_lex_state = 41}, + [2092] = {.lex_state = 257, .external_lex_state = 22}, + [2093] = {.lex_state = 257, .external_lex_state = 22}, + [2094] = {.lex_state = 257, .external_lex_state = 22}, + [2095] = {.lex_state = 257, .external_lex_state = 22}, + [2096] = {.lex_state = 257, .external_lex_state = 22}, + [2097] = {.lex_state = 257, .external_lex_state = 22}, + [2098] = {.lex_state = 257, .external_lex_state = 22}, + [2099] = {.lex_state = 518, .external_lex_state = 22}, + [2100] = {.lex_state = 257, .external_lex_state = 22}, + [2101] = {.lex_state = 257, .external_lex_state = 22}, + [2102] = {.lex_state = 257, .external_lex_state = 22}, + [2103] = {.lex_state = 257, .external_lex_state = 22}, + [2104] = {.lex_state = 257, .external_lex_state = 22}, + [2105] = {.lex_state = 257, .external_lex_state = 22}, + [2106] = {.lex_state = 257, .external_lex_state = 22}, + [2107] = {.lex_state = 257, .external_lex_state = 22}, + [2108] = {.lex_state = 425, .external_lex_state = 50}, + [2109] = {.lex_state = 521, .external_lex_state = 22}, + [2110] = {.lex_state = 425, .external_lex_state = 50}, + [2111] = {.lex_state = 450, .external_lex_state = 51}, + [2112] = {.lex_state = 425, .external_lex_state = 50}, + [2113] = {.lex_state = 425, .external_lex_state = 50}, + [2114] = {.lex_state = 425, .external_lex_state = 50}, + [2115] = {.lex_state = 449, .external_lex_state = 23}, + [2116] = {.lex_state = 431, .external_lex_state = 43}, + [2117] = {.lex_state = 453, .external_lex_state = 52}, + [2118] = {.lex_state = 453, .external_lex_state = 52}, + [2119] = {.lex_state = 453, .external_lex_state = 52}, + [2120] = {.lex_state = 453, .external_lex_state = 52}, + [2121] = {.lex_state = 521, .external_lex_state = 22}, + [2122] = {.lex_state = 425, .external_lex_state = 50}, + [2123] = {.lex_state = 425, .external_lex_state = 50}, + [2124] = {.lex_state = 398, .external_lex_state = 35}, + [2125] = {.lex_state = 398, .external_lex_state = 35}, + [2126] = {.lex_state = 425, .external_lex_state = 50}, + [2127] = {.lex_state = 425, .external_lex_state = 50}, + [2128] = {.lex_state = 523, .external_lex_state = 18}, + [2129] = {.lex_state = 425, .external_lex_state = 50}, + [2130] = {.lex_state = 523, .external_lex_state = 18}, + [2131] = {.lex_state = 425, .external_lex_state = 50}, + [2132] = {.lex_state = 450, .external_lex_state = 51}, + [2133] = {.lex_state = 518, .external_lex_state = 22}, + [2134] = {.lex_state = 453, .external_lex_state = 52}, + [2135] = {.lex_state = 453, .external_lex_state = 52}, + [2136] = {.lex_state = 450, .external_lex_state = 51}, + [2137] = {.lex_state = 450, .external_lex_state = 51}, + [2138] = {.lex_state = 523, .external_lex_state = 18}, + [2139] = {.lex_state = 450, .external_lex_state = 51}, + [2140] = {.lex_state = 450, .external_lex_state = 51}, + [2141] = {.lex_state = 426, .external_lex_state = 50}, + [2142] = {.lex_state = 521, .external_lex_state = 22}, + [2143] = {.lex_state = 450, .external_lex_state = 51}, + [2144] = {.lex_state = 257, .external_lex_state = 22}, + [2145] = {.lex_state = 281, .external_lex_state = 41}, + [2146] = {.lex_state = 281, .external_lex_state = 41}, + [2147] = {.lex_state = 283, .external_lex_state = 41}, + [2148] = {.lex_state = 283, .external_lex_state = 41}, + [2149] = {.lex_state = 450, .external_lex_state = 51}, + [2150] = {.lex_state = 281, .external_lex_state = 41}, + [2151] = {.lex_state = 281, .external_lex_state = 41}, + [2152] = {.lex_state = 521, .external_lex_state = 22}, + [2153] = {.lex_state = 281, .external_lex_state = 41}, + [2154] = {.lex_state = 281, .external_lex_state = 41}, + [2155] = {.lex_state = 281, .external_lex_state = 41}, + [2156] = {.lex_state = 281, .external_lex_state = 41}, + [2157] = {.lex_state = 281, .external_lex_state = 41}, + [2158] = {.lex_state = 281, .external_lex_state = 41}, + [2159] = {.lex_state = 453, .external_lex_state = 52}, + [2160] = {.lex_state = 257, .external_lex_state = 22}, + [2161] = {.lex_state = 450, .external_lex_state = 51}, + [2162] = {.lex_state = 453, .external_lex_state = 52}, + [2163] = {.lex_state = 283, .external_lex_state = 41}, + [2164] = {.lex_state = 283, .external_lex_state = 41}, + [2165] = {.lex_state = 281, .external_lex_state = 41}, + [2166] = {.lex_state = 283, .external_lex_state = 41}, + [2167] = {.lex_state = 425, .external_lex_state = 50}, + [2168] = {.lex_state = 290, .external_lex_state = 53}, + [2169] = {.lex_state = 423, .external_lex_state = 43}, + [2170] = {.lex_state = 425, .external_lex_state = 50}, + [2171] = {.lex_state = 521, .external_lex_state = 22}, + [2172] = {.lex_state = 521, .external_lex_state = 22}, + [2173] = {.lex_state = 521, .external_lex_state = 22}, + [2174] = {.lex_state = 521, .external_lex_state = 22}, + [2175] = {.lex_state = 290, .external_lex_state = 53}, + [2176] = {.lex_state = 290, .external_lex_state = 53}, + [2177] = {.lex_state = 521, .external_lex_state = 22}, + [2178] = {.lex_state = 521, .external_lex_state = 22}, + [2179] = {.lex_state = 290, .external_lex_state = 53}, + [2180] = {.lex_state = 431, .external_lex_state = 43}, + [2181] = {.lex_state = 290, .external_lex_state = 53}, + [2182] = {.lex_state = 521, .external_lex_state = 22}, + [2183] = {.lex_state = 521, .external_lex_state = 22}, + [2184] = {.lex_state = 425, .external_lex_state = 50}, + [2185] = {.lex_state = 425, .external_lex_state = 50}, + [2186] = {.lex_state = 521, .external_lex_state = 22}, + [2187] = {.lex_state = 431, .external_lex_state = 43}, + [2188] = {.lex_state = 431, .external_lex_state = 43}, + [2189] = {.lex_state = 451, .external_lex_state = 54}, + [2190] = {.lex_state = 451, .external_lex_state = 54}, + [2191] = {.lex_state = 421, .external_lex_state = 55}, + [2192] = {.lex_state = 451, .external_lex_state = 54}, + [2193] = {.lex_state = 451, .external_lex_state = 54}, + [2194] = {.lex_state = 421, .external_lex_state = 55}, + [2195] = {.lex_state = 421, .external_lex_state = 55}, + [2196] = {.lex_state = 431, .external_lex_state = 43}, + [2197] = {.lex_state = 426, .external_lex_state = 39}, + [2198] = {.lex_state = 459, .external_lex_state = 54}, + [2199] = {.lex_state = 459, .external_lex_state = 54}, + [2200] = {.lex_state = 425, .external_lex_state = 50}, + [2201] = {.lex_state = 425, .external_lex_state = 50}, + [2202] = {.lex_state = 431, .external_lex_state = 43}, + [2203] = {.lex_state = 423, .external_lex_state = 43}, + [2204] = {.lex_state = 290, .external_lex_state = 53}, + [2205] = {.lex_state = 290, .external_lex_state = 53}, + [2206] = {.lex_state = 283, .external_lex_state = 45}, + [2207] = {.lex_state = 283, .external_lex_state = 45}, + [2208] = {.lex_state = 290, .external_lex_state = 53}, + [2209] = {.lex_state = 451, .external_lex_state = 54}, + [2210] = {.lex_state = 290, .external_lex_state = 53}, + [2211] = {.lex_state = 451, .external_lex_state = 54}, + [2212] = {.lex_state = 521, .external_lex_state = 22}, + [2213] = {.lex_state = 521, .external_lex_state = 22}, + [2214] = {.lex_state = 451, .external_lex_state = 54}, + [2215] = {.lex_state = 451, .external_lex_state = 54}, + [2216] = {.lex_state = 521, .external_lex_state = 22}, + [2217] = {.lex_state = 421, .external_lex_state = 55}, + [2218] = {.lex_state = 449, .external_lex_state = 25}, + [2219] = {.lex_state = 431, .external_lex_state = 43}, + [2220] = {.lex_state = 521, .external_lex_state = 22}, + [2221] = {.lex_state = 451, .external_lex_state = 54}, + [2222] = {.lex_state = 423, .external_lex_state = 43}, + [2223] = {.lex_state = 431, .external_lex_state = 43}, + [2224] = {.lex_state = 451, .external_lex_state = 54}, + [2225] = {.lex_state = 421, .external_lex_state = 55}, + [2226] = {.lex_state = 421, .external_lex_state = 55}, + [2227] = {.lex_state = 425, .external_lex_state = 50}, + [2228] = {.lex_state = 290, .external_lex_state = 53}, + [2229] = {.lex_state = 449, .external_lex_state = 25}, + [2230] = {.lex_state = 431, .external_lex_state = 43}, + [2231] = {.lex_state = 423, .external_lex_state = 43}, + [2232] = {.lex_state = 521, .external_lex_state = 22}, + [2233] = {.lex_state = 431, .external_lex_state = 43}, + [2234] = {.lex_state = 290, .external_lex_state = 53}, + [2235] = {.lex_state = 431, .external_lex_state = 43}, + [2236] = {.lex_state = 423, .external_lex_state = 43}, + [2237] = {.lex_state = 521, .external_lex_state = 22}, + [2238] = {.lex_state = 521, .external_lex_state = 22}, + [2239] = {.lex_state = 521, .external_lex_state = 22}, + [2240] = {.lex_state = 521, .external_lex_state = 22}, + [2241] = {.lex_state = 521, .external_lex_state = 22}, + [2242] = {.lex_state = 521, .external_lex_state = 22}, + [2243] = {.lex_state = 449, .external_lex_state = 25}, + [2244] = {.lex_state = 449, .external_lex_state = 25}, + [2245] = {.lex_state = 521, .external_lex_state = 22}, + [2246] = {.lex_state = 521, .external_lex_state = 22}, + [2247] = {.lex_state = 521, .external_lex_state = 22}, + [2248] = {.lex_state = 521, .external_lex_state = 22}, + [2249] = {.lex_state = 453, .external_lex_state = 52}, + [2250] = {.lex_state = 449, .external_lex_state = 23}, + [2251] = {.lex_state = 453, .external_lex_state = 52}, + [2252] = {.lex_state = 453, .external_lex_state = 52}, + [2253] = {.lex_state = 453, .external_lex_state = 52}, + [2254] = {.lex_state = 453, .external_lex_state = 52}, + [2255] = {.lex_state = 423, .external_lex_state = 43}, + [2256] = {.lex_state = 425, .external_lex_state = 50}, + [2257] = {.lex_state = 453, .external_lex_state = 52}, + [2258] = {.lex_state = 521, .external_lex_state = 22}, + [2259] = {.lex_state = 453, .external_lex_state = 52}, + [2260] = {.lex_state = 459, .external_lex_state = 54}, + [2261] = {.lex_state = 421, .external_lex_state = 55}, + [2262] = {.lex_state = 290, .external_lex_state = 53}, + [2263] = {.lex_state = 459, .external_lex_state = 54}, + [2264] = {.lex_state = 459, .external_lex_state = 54}, + [2265] = {.lex_state = 290, .external_lex_state = 53}, + [2266] = {.lex_state = 521, .external_lex_state = 22}, + [2267] = {.lex_state = 459, .external_lex_state = 54}, + [2268] = {.lex_state = 425, .external_lex_state = 50}, + [2269] = {.lex_state = 521, .external_lex_state = 22}, + [2270] = {.lex_state = 521, .external_lex_state = 22}, + [2271] = {.lex_state = 521, .external_lex_state = 22}, + [2272] = {.lex_state = 521, .external_lex_state = 22}, + [2273] = {.lex_state = 521, .external_lex_state = 22}, + [2274] = {.lex_state = 521, .external_lex_state = 22}, + [2275] = {.lex_state = 521, .external_lex_state = 22}, + [2276] = {.lex_state = 521, .external_lex_state = 22}, + [2277] = {.lex_state = 521, .external_lex_state = 22}, + [2278] = {.lex_state = 521, .external_lex_state = 22}, + [2279] = {.lex_state = 453, .external_lex_state = 52}, + [2280] = {.lex_state = 521, .external_lex_state = 22}, + [2281] = {.lex_state = 453, .external_lex_state = 52}, + [2282] = {.lex_state = 453, .external_lex_state = 52}, + [2283] = {.lex_state = 459, .external_lex_state = 54}, + [2284] = {.lex_state = 459, .external_lex_state = 54}, + [2285] = {.lex_state = 521, .external_lex_state = 22}, + [2286] = {.lex_state = 521, .external_lex_state = 22}, + [2287] = {.lex_state = 521, .external_lex_state = 22}, + [2288] = {.lex_state = 521, .external_lex_state = 22}, + [2289] = {.lex_state = 431, .external_lex_state = 43}, + [2290] = {.lex_state = 423, .external_lex_state = 43}, + [2291] = {.lex_state = 453, .external_lex_state = 52}, + [2292] = {.lex_state = 426, .external_lex_state = 39}, + [2293] = {.lex_state = 290, .external_lex_state = 53}, + [2294] = {.lex_state = 453, .external_lex_state = 52}, + [2295] = {.lex_state = 521, .external_lex_state = 22}, + [2296] = {.lex_state = 451, .external_lex_state = 54}, + [2297] = {.lex_state = 290, .external_lex_state = 53}, + [2298] = {.lex_state = 425, .external_lex_state = 50}, + [2299] = {.lex_state = 423, .external_lex_state = 43}, + [2300] = {.lex_state = 521, .external_lex_state = 22}, + [2301] = {.lex_state = 451, .external_lex_state = 54}, + [2302] = {.lex_state = 521, .external_lex_state = 22}, + [2303] = {.lex_state = 521, .external_lex_state = 22}, + [2304] = {.lex_state = 451, .external_lex_state = 54}, + [2305] = {.lex_state = 283, .external_lex_state = 45}, + [2306] = {.lex_state = 283, .external_lex_state = 45}, + [2307] = {.lex_state = 453, .external_lex_state = 52}, + [2308] = {.lex_state = 453, .external_lex_state = 52}, + [2309] = {.lex_state = 431, .external_lex_state = 43}, + [2310] = {.lex_state = 521, .external_lex_state = 22}, + [2311] = {.lex_state = 453, .external_lex_state = 52}, + [2312] = {.lex_state = 451, .external_lex_state = 54}, + [2313] = {.lex_state = 421, .external_lex_state = 55}, + [2314] = {.lex_state = 449, .external_lex_state = 25}, + [2315] = {.lex_state = 453, .external_lex_state = 52}, + [2316] = {.lex_state = 453, .external_lex_state = 52}, + [2317] = {.lex_state = 453, .external_lex_state = 52}, + [2318] = {.lex_state = 421, .external_lex_state = 55}, + [2319] = {.lex_state = 453, .external_lex_state = 52}, + [2320] = {.lex_state = 521, .external_lex_state = 22}, + [2321] = {.lex_state = 431, .external_lex_state = 43}, + [2322] = {.lex_state = 283, .external_lex_state = 45}, + [2323] = {.lex_state = 290, .external_lex_state = 53}, + [2324] = {.lex_state = 521, .external_lex_state = 22}, + [2325] = {.lex_state = 426, .external_lex_state = 50}, + [2326] = {.lex_state = 521, .external_lex_state = 22}, + [2327] = {.lex_state = 521, .external_lex_state = 22}, + [2328] = {.lex_state = 449, .external_lex_state = 23}, + [2329] = {.lex_state = 451, .external_lex_state = 54}, + [2330] = {.lex_state = 451, .external_lex_state = 54}, + [2331] = {.lex_state = 459, .external_lex_state = 54}, + [2332] = {.lex_state = 449, .external_lex_state = 25}, + [2333] = {.lex_state = 459, .external_lex_state = 56}, + [2334] = {.lex_state = 459, .external_lex_state = 56}, + [2335] = {.lex_state = 431, .external_lex_state = 43}, + [2336] = {.lex_state = 423, .external_lex_state = 57}, + [2337] = {.lex_state = 421, .external_lex_state = 39}, + [2338] = {.lex_state = 423, .external_lex_state = 58}, + [2339] = {.lex_state = 459, .external_lex_state = 56}, + [2340] = {.lex_state = 459, .external_lex_state = 54}, + [2341] = {.lex_state = 431, .external_lex_state = 43}, + [2342] = {.lex_state = 431, .external_lex_state = 43}, + [2343] = {.lex_state = 431, .external_lex_state = 43}, + [2344] = {.lex_state = 431, .external_lex_state = 43}, + [2345] = {.lex_state = 421, .external_lex_state = 39}, + [2346] = {.lex_state = 459, .external_lex_state = 54}, + [2347] = {.lex_state = 451, .external_lex_state = 54}, + [2348] = {.lex_state = 431, .external_lex_state = 43}, + [2349] = {.lex_state = 459, .external_lex_state = 56}, + [2350] = {.lex_state = 431, .external_lex_state = 43}, + [2351] = {.lex_state = 431, .external_lex_state = 43}, + [2352] = {.lex_state = 421, .external_lex_state = 39}, + [2353] = {.lex_state = 423, .external_lex_state = 57}, + [2354] = {.lex_state = 423, .external_lex_state = 57}, + [2355] = {.lex_state = 421, .external_lex_state = 39}, + [2356] = {.lex_state = 451, .external_lex_state = 54}, + [2357] = {.lex_state = 423, .external_lex_state = 57}, + [2358] = {.lex_state = 423, .external_lex_state = 43}, + [2359] = {.lex_state = 456, .external_lex_state = 59}, + [2360] = {.lex_state = 431, .external_lex_state = 43}, + [2361] = {.lex_state = 456, .external_lex_state = 59}, + [2362] = {.lex_state = 423, .external_lex_state = 58}, + [2363] = {.lex_state = 423, .external_lex_state = 58}, + [2364] = {.lex_state = 459, .external_lex_state = 54}, + [2365] = {.lex_state = 451, .external_lex_state = 54}, + [2366] = {.lex_state = 456, .external_lex_state = 59}, + [2367] = {.lex_state = 456, .external_lex_state = 59}, + [2368] = {.lex_state = 423, .external_lex_state = 57}, + [2369] = {.lex_state = 459, .external_lex_state = 54}, + [2370] = {.lex_state = 451, .external_lex_state = 54}, + [2371] = {.lex_state = 425, .external_lex_state = 50}, + [2372] = {.lex_state = 451, .external_lex_state = 54}, + [2373] = {.lex_state = 425, .external_lex_state = 50}, + [2374] = {.lex_state = 431, .external_lex_state = 43}, + [2375] = {.lex_state = 423, .external_lex_state = 57}, + [2376] = {.lex_state = 456, .external_lex_state = 59}, + [2377] = {.lex_state = 421, .external_lex_state = 39}, + [2378] = {.lex_state = 459, .external_lex_state = 54}, + [2379] = {.lex_state = 459, .external_lex_state = 54}, + [2380] = {.lex_state = 456, .external_lex_state = 59}, + [2381] = {.lex_state = 431, .external_lex_state = 43}, + [2382] = {.lex_state = 454, .external_lex_state = 32}, + [2383] = {.lex_state = 426, .external_lex_state = 39}, + [2384] = {.lex_state = 423, .external_lex_state = 57}, + [2385] = {.lex_state = 449, .external_lex_state = 25}, + [2386] = {.lex_state = 449, .external_lex_state = 25}, + [2387] = {.lex_state = 431, .external_lex_state = 43}, + [2388] = {.lex_state = 288, .external_lex_state = 45}, + [2389] = {.lex_state = 451, .external_lex_state = 54}, + [2390] = {.lex_state = 288, .external_lex_state = 45}, + [2391] = {.lex_state = 451, .external_lex_state = 54}, + [2392] = {.lex_state = 451, .external_lex_state = 54}, + [2393] = {.lex_state = 428, .external_lex_state = 60}, + [2394] = {.lex_state = 421, .external_lex_state = 39}, + [2395] = {.lex_state = 288, .external_lex_state = 45}, + [2396] = {.lex_state = 288, .external_lex_state = 45}, + [2397] = {.lex_state = 449, .external_lex_state = 25}, + [2398] = {.lex_state = 421, .external_lex_state = 39}, + [2399] = {.lex_state = 431, .external_lex_state = 43}, + [2400] = {.lex_state = 449, .external_lex_state = 25}, + [2401] = {.lex_state = 431, .external_lex_state = 43}, + [2402] = {.lex_state = 451, .external_lex_state = 54}, + [2403] = {.lex_state = 451, .external_lex_state = 54}, + [2404] = {.lex_state = 423, .external_lex_state = 46}, + [2405] = {.lex_state = 451, .external_lex_state = 54}, + [2406] = {.lex_state = 451, .external_lex_state = 54}, + [2407] = {.lex_state = 459, .external_lex_state = 56}, + [2408] = {.lex_state = 459, .external_lex_state = 56}, + [2409] = {.lex_state = 423, .external_lex_state = 57}, + [2410] = {.lex_state = 456, .external_lex_state = 59}, + [2411] = {.lex_state = 456, .external_lex_state = 59}, + [2412] = {.lex_state = 288, .external_lex_state = 45}, + [2413] = {.lex_state = 431, .external_lex_state = 43}, + [2414] = {.lex_state = 423, .external_lex_state = 46}, + [2415] = {.lex_state = 431, .external_lex_state = 43}, + [2416] = {.lex_state = 456, .external_lex_state = 59}, + [2417] = {.lex_state = 431, .external_lex_state = 43}, + [2418] = {.lex_state = 451, .external_lex_state = 54}, + [2419] = {.lex_state = 451, .external_lex_state = 54}, + [2420] = {.lex_state = 454, .external_lex_state = 32}, + [2421] = {.lex_state = 456, .external_lex_state = 59}, + [2422] = {.lex_state = 451, .external_lex_state = 54}, + [2423] = {.lex_state = 459, .external_lex_state = 54}, + [2424] = {.lex_state = 449, .external_lex_state = 25}, + [2425] = {.lex_state = 421, .external_lex_state = 39}, + [2426] = {.lex_state = 454, .external_lex_state = 32}, + [2427] = {.lex_state = 459, .external_lex_state = 54}, + [2428] = {.lex_state = 451, .external_lex_state = 54}, + [2429] = {.lex_state = 459, .external_lex_state = 54}, + [2430] = {.lex_state = 459, .external_lex_state = 54}, + [2431] = {.lex_state = 431, .external_lex_state = 43}, + [2432] = {.lex_state = 288, .external_lex_state = 45}, + [2433] = {.lex_state = 288, .external_lex_state = 45}, + [2434] = {.lex_state = 459, .external_lex_state = 54}, + [2435] = {.lex_state = 288, .external_lex_state = 45}, + [2436] = {.lex_state = 459, .external_lex_state = 54}, + [2437] = {.lex_state = 288, .external_lex_state = 45}, + [2438] = {.lex_state = 423, .external_lex_state = 58}, + [2439] = {.lex_state = 421, .external_lex_state = 39}, + [2440] = {.lex_state = 454, .external_lex_state = 32}, + [2441] = {.lex_state = 459, .external_lex_state = 54}, + [2442] = {.lex_state = 459, .external_lex_state = 54}, + [2443] = {.lex_state = 459, .external_lex_state = 54}, + [2444] = {.lex_state = 425, .external_lex_state = 50}, + [2445] = {.lex_state = 423, .external_lex_state = 57}, + [2446] = {.lex_state = 431, .external_lex_state = 43}, + [2447] = {.lex_state = 459, .external_lex_state = 54}, + [2448] = {.lex_state = 459, .external_lex_state = 54}, + [2449] = {.lex_state = 459, .external_lex_state = 54}, + [2450] = {.lex_state = 454, .external_lex_state = 32}, + [2451] = {.lex_state = 451, .external_lex_state = 54}, + [2452] = {.lex_state = 423, .external_lex_state = 60}, + [2453] = {.lex_state = 423, .external_lex_state = 60}, + [2454] = {.lex_state = 459, .external_lex_state = 56}, + [2455] = {.lex_state = 423, .external_lex_state = 60}, + [2456] = {.lex_state = 423, .external_lex_state = 60}, + [2457] = {.lex_state = 459, .external_lex_state = 56}, + [2458] = {.lex_state = 423, .external_lex_state = 60}, + [2459] = {.lex_state = 423, .external_lex_state = 43}, + [2460] = {.lex_state = 423, .external_lex_state = 43}, + [2461] = {.lex_state = 459, .external_lex_state = 56}, + [2462] = {.lex_state = 454, .external_lex_state = 32}, + [2463] = {.lex_state = 423, .external_lex_state = 60}, + [2464] = {.lex_state = 459, .external_lex_state = 56}, + [2465] = {.lex_state = 454, .external_lex_state = 32}, + [2466] = {.lex_state = 423, .external_lex_state = 43}, + [2467] = {.lex_state = 459, .external_lex_state = 56}, + [2468] = {.lex_state = 423, .external_lex_state = 60}, + [2469] = {.lex_state = 459, .external_lex_state = 56}, + [2470] = {.lex_state = 423, .external_lex_state = 43}, + [2471] = {.lex_state = 423, .external_lex_state = 60}, + [2472] = {.lex_state = 423, .external_lex_state = 60}, + [2473] = {.lex_state = 423, .external_lex_state = 60}, + [2474] = {.lex_state = 423, .external_lex_state = 60}, + [2475] = {.lex_state = 423, .external_lex_state = 60}, + [2476] = {.lex_state = 459, .external_lex_state = 56}, + [2477] = {.lex_state = 423, .external_lex_state = 60}, + [2478] = {.lex_state = 423, .external_lex_state = 60}, + [2479] = {.lex_state = 456, .external_lex_state = 59}, + [2480] = {.lex_state = 423, .external_lex_state = 60}, + [2481] = {.lex_state = 454, .external_lex_state = 32}, + [2482] = {.lex_state = 423, .external_lex_state = 60}, + [2483] = {.lex_state = 423, .external_lex_state = 60}, + [2484] = {.lex_state = 456, .external_lex_state = 59}, + [2485] = {.lex_state = 423, .external_lex_state = 60}, + [2486] = {.lex_state = 456, .external_lex_state = 59}, + [2487] = {.lex_state = 423, .external_lex_state = 60}, + [2488] = {.lex_state = 459, .external_lex_state = 56}, + [2489] = {.lex_state = 423, .external_lex_state = 60}, + [2490] = {.lex_state = 423, .external_lex_state = 60}, + [2491] = {.lex_state = 423, .external_lex_state = 60}, + [2492] = {.lex_state = 423, .external_lex_state = 60}, + [2493] = {.lex_state = 423, .external_lex_state = 60}, + [2494] = {.lex_state = 423, .external_lex_state = 60}, + [2495] = {.lex_state = 423, .external_lex_state = 60}, + [2496] = {.lex_state = 423, .external_lex_state = 60}, + [2497] = {.lex_state = 423, .external_lex_state = 60}, + [2498] = {.lex_state = 423, .external_lex_state = 60}, + [2499] = {.lex_state = 423, .external_lex_state = 60}, + [2500] = {.lex_state = 423, .external_lex_state = 60}, + [2501] = {.lex_state = 423, .external_lex_state = 60}, + [2502] = {.lex_state = 423, .external_lex_state = 60}, + [2503] = {.lex_state = 423, .external_lex_state = 60}, + [2504] = {.lex_state = 423, .external_lex_state = 60}, + [2505] = {.lex_state = 423, .external_lex_state = 60}, + [2506] = {.lex_state = 423, .external_lex_state = 60}, + [2507] = {.lex_state = 423, .external_lex_state = 60}, + [2508] = {.lex_state = 423, .external_lex_state = 60}, + [2509] = {.lex_state = 456, .external_lex_state = 59}, + [2510] = {.lex_state = 423, .external_lex_state = 60}, + [2511] = {.lex_state = 456, .external_lex_state = 59}, + [2512] = {.lex_state = 423, .external_lex_state = 60}, + [2513] = {.lex_state = 423, .external_lex_state = 60}, + [2514] = {.lex_state = 423, .external_lex_state = 60}, + [2515] = {.lex_state = 423, .external_lex_state = 60}, + [2516] = {.lex_state = 423, .external_lex_state = 60}, + [2517] = {.lex_state = 456, .external_lex_state = 59}, + [2518] = {.lex_state = 423, .external_lex_state = 60}, + [2519] = {.lex_state = 423, .external_lex_state = 60}, + [2520] = {.lex_state = 423, .external_lex_state = 60}, + [2521] = {.lex_state = 423, .external_lex_state = 60}, + [2522] = {.lex_state = 423, .external_lex_state = 60}, + [2523] = {.lex_state = 423, .external_lex_state = 60}, + [2524] = {.lex_state = 456, .external_lex_state = 59}, + [2525] = {.lex_state = 423, .external_lex_state = 60}, + [2526] = {.lex_state = 456, .external_lex_state = 59}, + [2527] = {.lex_state = 423, .external_lex_state = 60}, + [2528] = {.lex_state = 423, .external_lex_state = 60}, + [2529] = {.lex_state = 456, .external_lex_state = 59}, + [2530] = {.lex_state = 423, .external_lex_state = 60}, + [2531] = {.lex_state = 459, .external_lex_state = 56}, + [2532] = {.lex_state = 423, .external_lex_state = 60}, + [2533] = {.lex_state = 457, .external_lex_state = 56}, + [2534] = {.lex_state = 423, .external_lex_state = 60}, + [2535] = {.lex_state = 457, .external_lex_state = 56}, + [2536] = {.lex_state = 423, .external_lex_state = 60}, + [2537] = {.lex_state = 456, .external_lex_state = 59}, + [2538] = {.lex_state = 423, .external_lex_state = 60}, + [2539] = {.lex_state = 456, .external_lex_state = 59}, + [2540] = {.lex_state = 456, .external_lex_state = 59}, + [2541] = {.lex_state = 456, .external_lex_state = 59}, + [2542] = {.lex_state = 456, .external_lex_state = 59}, + [2543] = {.lex_state = 456, .external_lex_state = 59}, + [2544] = {.lex_state = 459, .external_lex_state = 56}, + [2545] = {.lex_state = 454, .external_lex_state = 32}, + [2546] = {.lex_state = 457, .external_lex_state = 56}, + [2547] = {.lex_state = 457, .external_lex_state = 56}, + [2548] = {.lex_state = 457, .external_lex_state = 56}, + [2549] = {.lex_state = 423, .external_lex_state = 60}, + [2550] = {.lex_state = 423, .external_lex_state = 60}, + [2551] = {.lex_state = 423, .external_lex_state = 60}, + [2552] = {.lex_state = 423, .external_lex_state = 60}, + [2553] = {.lex_state = 423, .external_lex_state = 60}, + [2554] = {.lex_state = 456, .external_lex_state = 59}, + [2555] = {.lex_state = 452, .external_lex_state = 26}, + [2556] = {.lex_state = 423, .external_lex_state = 43}, + [2557] = {.lex_state = 452, .external_lex_state = 26}, + [2558] = {.lex_state = 421, .external_lex_state = 39}, + [2559] = {.lex_state = 423, .external_lex_state = 60}, + [2560] = {.lex_state = 456, .external_lex_state = 59}, + [2561] = {.lex_state = 457, .external_lex_state = 56}, + [2562] = {.lex_state = 423, .external_lex_state = 60}, + [2563] = {.lex_state = 423, .external_lex_state = 60}, + [2564] = {.lex_state = 423, .external_lex_state = 60}, + [2565] = {.lex_state = 452, .external_lex_state = 26}, + [2566] = {.lex_state = 452, .external_lex_state = 26}, + [2567] = {.lex_state = 452, .external_lex_state = 26}, + [2568] = {.lex_state = 423, .external_lex_state = 60}, + [2569] = {.lex_state = 423, .external_lex_state = 43}, + [2570] = {.lex_state = 423, .external_lex_state = 43}, + [2571] = {.lex_state = 423, .external_lex_state = 43}, + [2572] = {.lex_state = 423, .external_lex_state = 43}, + [2573] = {.lex_state = 457, .external_lex_state = 56}, + [2574] = {.lex_state = 457, .external_lex_state = 56}, + [2575] = {.lex_state = 423, .external_lex_state = 43}, + [2576] = {.lex_state = 457, .external_lex_state = 56}, + [2577] = {.lex_state = 457, .external_lex_state = 56}, + [2578] = {.lex_state = 423, .external_lex_state = 43}, + [2579] = {.lex_state = 423, .external_lex_state = 43}, + [2580] = {.lex_state = 423, .external_lex_state = 46}, + [2581] = {.lex_state = 423, .external_lex_state = 43}, + [2582] = {.lex_state = 423, .external_lex_state = 43}, + [2583] = {.lex_state = 423, .external_lex_state = 43}, + [2584] = {.lex_state = 423, .external_lex_state = 43}, + [2585] = {.lex_state = 423, .external_lex_state = 43}, + [2586] = {.lex_state = 423, .external_lex_state = 43}, + [2587] = {.lex_state = 423, .external_lex_state = 43}, + [2588] = {.lex_state = 423, .external_lex_state = 43}, + [2589] = {.lex_state = 423, .external_lex_state = 43}, + [2590] = {.lex_state = 423, .external_lex_state = 43}, + [2591] = {.lex_state = 423, .external_lex_state = 43}, + [2592] = {.lex_state = 423, .external_lex_state = 43}, + [2593] = {.lex_state = 423, .external_lex_state = 43}, + [2594] = {.lex_state = 423, .external_lex_state = 43}, + [2595] = {.lex_state = 423, .external_lex_state = 43}, + [2596] = {.lex_state = 454, .external_lex_state = 32}, + [2597] = {.lex_state = 423, .external_lex_state = 43}, + [2598] = {.lex_state = 423, .external_lex_state = 43}, + [2599] = {.lex_state = 92, .external_lex_state = 61}, + [2600] = {.lex_state = 423, .external_lex_state = 60}, + [2601] = {.lex_state = 423, .external_lex_state = 60}, + [2602] = {.lex_state = 423, .external_lex_state = 60}, + [2603] = {.lex_state = 199, .external_lex_state = 62}, + [2604] = {.lex_state = 459, .external_lex_state = 56}, + [2605] = {.lex_state = 199, .external_lex_state = 62}, + [2606] = {.lex_state = 458, .external_lex_state = 26}, + [2607] = {.lex_state = 459, .external_lex_state = 56}, + [2608] = {.lex_state = 459, .external_lex_state = 56}, + [2609] = {.lex_state = 459, .external_lex_state = 56}, + [2610] = {.lex_state = 459, .external_lex_state = 56}, + [2611] = {.lex_state = 458, .external_lex_state = 26}, + [2612] = {.lex_state = 423, .external_lex_state = 63}, + [2613] = {.lex_state = 452, .external_lex_state = 26}, + [2614] = {.lex_state = 456, .external_lex_state = 59}, + [2615] = {.lex_state = 423, .external_lex_state = 60}, + [2616] = {.lex_state = 423, .external_lex_state = 60}, + [2617] = {.lex_state = 423, .external_lex_state = 43}, + [2618] = {.lex_state = 459, .external_lex_state = 56}, + [2619] = {.lex_state = 454, .external_lex_state = 32}, + [2620] = {.lex_state = 423, .external_lex_state = 60}, + [2621] = {.lex_state = 423, .external_lex_state = 60}, + [2622] = {.lex_state = 459, .external_lex_state = 56}, + [2623] = {.lex_state = 423, .external_lex_state = 60}, + [2624] = {.lex_state = 423, .external_lex_state = 60}, + [2625] = {.lex_state = 423, .external_lex_state = 60}, + [2626] = {.lex_state = 423, .external_lex_state = 63}, + [2627] = {.lex_state = 423, .external_lex_state = 63}, + [2628] = {.lex_state = 423, .external_lex_state = 60}, + [2629] = {.lex_state = 423, .external_lex_state = 60}, + [2630] = {.lex_state = 423, .external_lex_state = 60}, + [2631] = {.lex_state = 423, .external_lex_state = 63}, + [2632] = {.lex_state = 423, .external_lex_state = 63}, + [2633] = {.lex_state = 423, .external_lex_state = 60}, + [2634] = {.lex_state = 423, .external_lex_state = 60}, + [2635] = {.lex_state = 423, .external_lex_state = 63}, + [2636] = {.lex_state = 423, .external_lex_state = 60}, + [2637] = {.lex_state = 456, .external_lex_state = 59}, + [2638] = {.lex_state = 459, .external_lex_state = 56}, + [2639] = {.lex_state = 423, .external_lex_state = 60}, + [2640] = {.lex_state = 423, .external_lex_state = 60}, + [2641] = {.lex_state = 459, .external_lex_state = 56}, + [2642] = {.lex_state = 423, .external_lex_state = 63}, + [2643] = {.lex_state = 423, .external_lex_state = 63}, + [2644] = {.lex_state = 454, .external_lex_state = 32}, + [2645] = {.lex_state = 423, .external_lex_state = 63}, + [2646] = {.lex_state = 423, .external_lex_state = 60}, + [2647] = {.lex_state = 423, .external_lex_state = 60}, + [2648] = {.lex_state = 423, .external_lex_state = 60}, + [2649] = {.lex_state = 423, .external_lex_state = 60}, + [2650] = {.lex_state = 423, .external_lex_state = 60}, + [2651] = {.lex_state = 423, .external_lex_state = 43}, + [2652] = {.lex_state = 423, .external_lex_state = 60}, + [2653] = {.lex_state = 423, .external_lex_state = 60}, + [2654] = {.lex_state = 423, .external_lex_state = 60}, + [2655] = {.lex_state = 423, .external_lex_state = 60}, + [2656] = {.lex_state = 423, .external_lex_state = 60}, + [2657] = {.lex_state = 458, .external_lex_state = 26}, + [2658] = {.lex_state = 423, .external_lex_state = 64}, + [2659] = {.lex_state = 423, .external_lex_state = 46}, + [2660] = {.lex_state = 423, .external_lex_state = 60}, + [2661] = {.lex_state = 423, .external_lex_state = 46}, + [2662] = {.lex_state = 421, .external_lex_state = 39}, + [2663] = {.lex_state = 423, .external_lex_state = 60}, + [2664] = {.lex_state = 92, .external_lex_state = 61}, + [2665] = {.lex_state = 457, .external_lex_state = 56}, + [2666] = {.lex_state = 457, .external_lex_state = 56}, + [2667] = {.lex_state = 423, .external_lex_state = 46}, + [2668] = {.lex_state = 421, .external_lex_state = 39}, + [2669] = {.lex_state = 421, .external_lex_state = 39}, + [2670] = {.lex_state = 421, .external_lex_state = 39}, + [2671] = {.lex_state = 458, .external_lex_state = 33}, + [2672] = {.lex_state = 421, .external_lex_state = 39}, + [2673] = {.lex_state = 92, .external_lex_state = 61}, + [2674] = {.lex_state = 421, .external_lex_state = 39}, + [2675] = {.lex_state = 421, .external_lex_state = 39}, + [2676] = {.lex_state = 421, .external_lex_state = 39}, + [2677] = {.lex_state = 421, .external_lex_state = 39}, + [2678] = {.lex_state = 457, .external_lex_state = 56}, + [2679] = {.lex_state = 452, .external_lex_state = 26}, + [2680] = {.lex_state = 92, .external_lex_state = 61}, + [2681] = {.lex_state = 423, .external_lex_state = 60}, + [2682] = {.lex_state = 457, .external_lex_state = 56}, + [2683] = {.lex_state = 452, .external_lex_state = 26}, + [2684] = {.lex_state = 421, .external_lex_state = 39}, + [2685] = {.lex_state = 421, .external_lex_state = 39}, + [2686] = {.lex_state = 421, .external_lex_state = 39}, + [2687] = {.lex_state = 421, .external_lex_state = 39}, + [2688] = {.lex_state = 421, .external_lex_state = 39}, + [2689] = {.lex_state = 92, .external_lex_state = 61}, + [2690] = {.lex_state = 92, .external_lex_state = 61}, + [2691] = {.lex_state = 421, .external_lex_state = 39}, + [2692] = {.lex_state = 421, .external_lex_state = 39}, + [2693] = {.lex_state = 452, .external_lex_state = 26}, + [2694] = {.lex_state = 92, .external_lex_state = 61}, + [2695] = {.lex_state = 421, .external_lex_state = 39}, + [2696] = {.lex_state = 92, .external_lex_state = 61}, + [2697] = {.lex_state = 421, .external_lex_state = 39}, + [2698] = {.lex_state = 421, .external_lex_state = 39}, + [2699] = {.lex_state = 423, .external_lex_state = 60}, + [2700] = {.lex_state = 421, .external_lex_state = 39}, + [2701] = {.lex_state = 423, .external_lex_state = 46}, + [2702] = {.lex_state = 423, .external_lex_state = 46}, + [2703] = {.lex_state = 429, .external_lex_state = 60}, + [2704] = {.lex_state = 92, .external_lex_state = 61}, + [2705] = {.lex_state = 92, .external_lex_state = 61}, + [2706] = {.lex_state = 423, .external_lex_state = 46}, + [2707] = {.lex_state = 421, .external_lex_state = 39}, + [2708] = {.lex_state = 423, .external_lex_state = 46}, + [2709] = {.lex_state = 457, .external_lex_state = 56}, + [2710] = {.lex_state = 423, .external_lex_state = 60}, + [2711] = {.lex_state = 421, .external_lex_state = 39}, + [2712] = {.lex_state = 92, .external_lex_state = 61}, + [2713] = {.lex_state = 92, .external_lex_state = 61}, + [2714] = {.lex_state = 92, .external_lex_state = 61}, + [2715] = {.lex_state = 421, .external_lex_state = 39}, + [2716] = {.lex_state = 423, .external_lex_state = 46}, + [2717] = {.lex_state = 421, .external_lex_state = 39}, + [2718] = {.lex_state = 92, .external_lex_state = 61}, + [2719] = {.lex_state = 421, .external_lex_state = 39}, + [2720] = {.lex_state = 421, .external_lex_state = 39}, + [2721] = {.lex_state = 421, .external_lex_state = 39}, + [2722] = {.lex_state = 455, .external_lex_state = 28}, + [2723] = {.lex_state = 423, .external_lex_state = 46}, + [2724] = {.lex_state = 423, .external_lex_state = 46}, + [2725] = {.lex_state = 421, .external_lex_state = 39}, + [2726] = {.lex_state = 421, .external_lex_state = 39}, + [2727] = {.lex_state = 421, .external_lex_state = 39}, + [2728] = {.lex_state = 92, .external_lex_state = 61}, + [2729] = {.lex_state = 92, .external_lex_state = 61}, + [2730] = {.lex_state = 92, .external_lex_state = 61}, + [2731] = {.lex_state = 421, .external_lex_state = 39}, + [2732] = {.lex_state = 421, .external_lex_state = 39}, + [2733] = {.lex_state = 455, .external_lex_state = 28}, + [2734] = {.lex_state = 421, .external_lex_state = 39}, + [2735] = {.lex_state = 421, .external_lex_state = 39}, + [2736] = {.lex_state = 421, .external_lex_state = 39}, + [2737] = {.lex_state = 421, .external_lex_state = 39}, + [2738] = {.lex_state = 421, .external_lex_state = 39}, + [2739] = {.lex_state = 421, .external_lex_state = 39}, + [2740] = {.lex_state = 452, .external_lex_state = 26}, + [2741] = {.lex_state = 423, .external_lex_state = 64}, + [2742] = {.lex_state = 423, .external_lex_state = 64}, + [2743] = {.lex_state = 421, .external_lex_state = 58}, + [2744] = {.lex_state = 421, .external_lex_state = 39}, + [2745] = {.lex_state = 421, .external_lex_state = 39}, + [2746] = {.lex_state = 423, .external_lex_state = 60}, + [2747] = {.lex_state = 421, .external_lex_state = 39}, + [2748] = {.lex_state = 428, .external_lex_state = 65}, + [2749] = {.lex_state = 421, .external_lex_state = 39}, + [2750] = {.lex_state = 421, .external_lex_state = 58}, + [2751] = {.lex_state = 423, .external_lex_state = 60}, + [2752] = {.lex_state = 92, .external_lex_state = 61}, + [2753] = {.lex_state = 421, .external_lex_state = 39}, + [2754] = {.lex_state = 421, .external_lex_state = 39}, + [2755] = {.lex_state = 423, .external_lex_state = 60}, + [2756] = {.lex_state = 423, .external_lex_state = 60}, + [2757] = {.lex_state = 92, .external_lex_state = 61}, + [2758] = {.lex_state = 92, .external_lex_state = 61}, + [2759] = {.lex_state = 421, .external_lex_state = 39}, + [2760] = {.lex_state = 92, .external_lex_state = 61}, + [2761] = {.lex_state = 421, .external_lex_state = 39}, + [2762] = {.lex_state = 458, .external_lex_state = 26}, + [2763] = {.lex_state = 92, .external_lex_state = 61}, + [2764] = {.lex_state = 421, .external_lex_state = 39}, + [2765] = {.lex_state = 92, .external_lex_state = 61}, + [2766] = {.lex_state = 423, .external_lex_state = 60}, + [2767] = {.lex_state = 423, .external_lex_state = 46}, + [2768] = {.lex_state = 423, .external_lex_state = 46}, + [2769] = {.lex_state = 423, .external_lex_state = 46}, + [2770] = {.lex_state = 423, .external_lex_state = 46}, + [2771] = {.lex_state = 452, .external_lex_state = 26}, + [2772] = {.lex_state = 423, .external_lex_state = 64}, + [2773] = {.lex_state = 92, .external_lex_state = 61}, + [2774] = {.lex_state = 457, .external_lex_state = 56}, + [2775] = {.lex_state = 231, .external_lex_state = 62}, + [2776] = {.lex_state = 231, .external_lex_state = 62}, + [2777] = {.lex_state = 455, .external_lex_state = 28}, + [2778] = {.lex_state = 421, .external_lex_state = 39}, + [2779] = {.lex_state = 421, .external_lex_state = 39}, + [2780] = {.lex_state = 92, .external_lex_state = 61}, + [2781] = {.lex_state = 423, .external_lex_state = 60}, + [2782] = {.lex_state = 92, .external_lex_state = 61}, + [2783] = {.lex_state = 458, .external_lex_state = 26}, + [2784] = {.lex_state = 458, .external_lex_state = 26}, + [2785] = {.lex_state = 421, .external_lex_state = 58}, + [2786] = {.lex_state = 423, .external_lex_state = 46}, + [2787] = {.lex_state = 423, .external_lex_state = 60}, + [2788] = {.lex_state = 421, .external_lex_state = 58}, + [2789] = {.lex_state = 231, .external_lex_state = 62}, + [2790] = {.lex_state = 231, .external_lex_state = 62}, + [2791] = {.lex_state = 424, .external_lex_state = 60}, + [2792] = {.lex_state = 455, .external_lex_state = 28}, + [2793] = {.lex_state = 421, .external_lex_state = 39}, + [2794] = {.lex_state = 458, .external_lex_state = 26}, + [2795] = {.lex_state = 423, .external_lex_state = 60}, + [2796] = {.lex_state = 234, .external_lex_state = 66}, + [2797] = {.lex_state = 234, .external_lex_state = 66}, + [2798] = {.lex_state = 458, .external_lex_state = 33}, + [2799] = {.lex_state = 423, .external_lex_state = 60}, + [2800] = {.lex_state = 421, .external_lex_state = 39}, + [2801] = {.lex_state = 452, .external_lex_state = 26}, + [2802] = {.lex_state = 457, .external_lex_state = 56}, + [2803] = {.lex_state = 457, .external_lex_state = 56}, + [2804] = {.lex_state = 423, .external_lex_state = 46}, + [2805] = {.lex_state = 421, .external_lex_state = 39}, + [2806] = {.lex_state = 457, .external_lex_state = 56}, + [2807] = {.lex_state = 92, .external_lex_state = 61}, + [2808] = {.lex_state = 421, .external_lex_state = 39}, + [2809] = {.lex_state = 421, .external_lex_state = 39}, + [2810] = {.lex_state = 457, .external_lex_state = 56}, + [2811] = {.lex_state = 92, .external_lex_state = 61}, + [2812] = {.lex_state = 423, .external_lex_state = 46}, + [2813] = {.lex_state = 423, .external_lex_state = 60}, + [2814] = {.lex_state = 92, .external_lex_state = 61}, + [2815] = {.lex_state = 421, .external_lex_state = 39}, + [2816] = {.lex_state = 421, .external_lex_state = 39}, + [2817] = {.lex_state = 423, .external_lex_state = 46}, + [2818] = {.lex_state = 421, .external_lex_state = 39}, + [2819] = {.lex_state = 457, .external_lex_state = 56}, + [2820] = {.lex_state = 421, .external_lex_state = 39}, + [2821] = {.lex_state = 452, .external_lex_state = 26}, + [2822] = {.lex_state = 457, .external_lex_state = 56}, + [2823] = {.lex_state = 452, .external_lex_state = 26}, + [2824] = {.lex_state = 423, .external_lex_state = 46}, + [2825] = {.lex_state = 423, .external_lex_state = 46}, + [2826] = {.lex_state = 421, .external_lex_state = 39}, + [2827] = {.lex_state = 457, .external_lex_state = 56}, + [2828] = {.lex_state = 92, .external_lex_state = 61}, + [2829] = {.lex_state = 427, .external_lex_state = 60}, + [2830] = {.lex_state = 457, .external_lex_state = 56}, + [2831] = {.lex_state = 457, .external_lex_state = 56}, + [2832] = {.lex_state = 423, .external_lex_state = 46}, + [2833] = {.lex_state = 421, .external_lex_state = 39}, + [2834] = {.lex_state = 423, .external_lex_state = 46}, + [2835] = {.lex_state = 423, .external_lex_state = 46}, + [2836] = {.lex_state = 421, .external_lex_state = 39}, + [2837] = {.lex_state = 421, .external_lex_state = 39}, + [2838] = {.lex_state = 421, .external_lex_state = 39}, + [2839] = {.lex_state = 421, .external_lex_state = 39}, + [2840] = {.lex_state = 421, .external_lex_state = 39}, + [2841] = {.lex_state = 421, .external_lex_state = 39}, + [2842] = {.lex_state = 423, .external_lex_state = 46}, + [2843] = {.lex_state = 421, .external_lex_state = 39}, + [2844] = {.lex_state = 421, .external_lex_state = 39}, + [2845] = {.lex_state = 423, .external_lex_state = 46}, + [2846] = {.lex_state = 423, .external_lex_state = 46}, + [2847] = {.lex_state = 423, .external_lex_state = 60}, + [2848] = {.lex_state = 423, .external_lex_state = 46}, + [2849] = {.lex_state = 421, .external_lex_state = 39}, + [2850] = {.lex_state = 452, .external_lex_state = 26}, + [2851] = {.lex_state = 423, .external_lex_state = 60}, + [2852] = {.lex_state = 421, .external_lex_state = 39}, + [2853] = {.lex_state = 452, .external_lex_state = 26}, + [2854] = {.lex_state = 92, .external_lex_state = 61}, + [2855] = {.lex_state = 421, .external_lex_state = 39}, + [2856] = {.lex_state = 423, .external_lex_state = 46}, + [2857] = {.lex_state = 421, .external_lex_state = 39}, + [2858] = {.lex_state = 423, .external_lex_state = 46}, + [2859] = {.lex_state = 92, .external_lex_state = 61}, + [2860] = {.lex_state = 457, .external_lex_state = 56}, + [2861] = {.lex_state = 457, .external_lex_state = 56}, + [2862] = {.lex_state = 457, .external_lex_state = 56}, + [2863] = {.lex_state = 452, .external_lex_state = 26}, + [2864] = {.lex_state = 423, .external_lex_state = 60}, + [2865] = {.lex_state = 423, .external_lex_state = 46}, + [2866] = {.lex_state = 423, .external_lex_state = 46}, + [2867] = {.lex_state = 423, .external_lex_state = 46}, + [2868] = {.lex_state = 423, .external_lex_state = 46}, + [2869] = {.lex_state = 423, .external_lex_state = 60}, + [2870] = {.lex_state = 457, .external_lex_state = 56}, + [2871] = {.lex_state = 92, .external_lex_state = 61}, + [2872] = {.lex_state = 421, .external_lex_state = 60}, + [2873] = {.lex_state = 423, .external_lex_state = 65}, + [2874] = {.lex_state = 460, .external_lex_state = 67}, + [2875] = {.lex_state = 423, .external_lex_state = 65}, + [2876] = {.lex_state = 460, .external_lex_state = 67}, + [2877] = {.lex_state = 423, .external_lex_state = 65}, + [2878] = {.lex_state = 423, .external_lex_state = 65}, + [2879] = {.lex_state = 423, .external_lex_state = 65}, + [2880] = {.lex_state = 423, .external_lex_state = 65}, + [2881] = {.lex_state = 424, .external_lex_state = 60}, + [2882] = {.lex_state = 423, .external_lex_state = 65}, + [2883] = {.lex_state = 423, .external_lex_state = 65}, + [2884] = {.lex_state = 429, .external_lex_state = 60}, + [2885] = {.lex_state = 429, .external_lex_state = 60}, + [2886] = {.lex_state = 423, .external_lex_state = 65}, + [2887] = {.lex_state = 421, .external_lex_state = 60}, + [2888] = {.lex_state = 448, .external_lex_state = 33}, + [2889] = {.lex_state = 423, .external_lex_state = 65}, + [2890] = {.lex_state = 423, .external_lex_state = 65}, + [2891] = {.lex_state = 423, .external_lex_state = 65}, + [2892] = {.lex_state = 421, .external_lex_state = 60}, + [2893] = {.lex_state = 423, .external_lex_state = 65}, + [2894] = {.lex_state = 423, .external_lex_state = 65}, + [2895] = {.lex_state = 460, .external_lex_state = 67}, + [2896] = {.lex_state = 423, .external_lex_state = 65}, + [2897] = {.lex_state = 515, .external_lex_state = 66}, + [2898] = {.lex_state = 423, .external_lex_state = 65}, + [2899] = {.lex_state = 423, .external_lex_state = 65}, + [2900] = {.lex_state = 421, .external_lex_state = 60}, + [2901] = {.lex_state = 429, .external_lex_state = 60}, + [2902] = {.lex_state = 429, .external_lex_state = 60}, + [2903] = {.lex_state = 423, .external_lex_state = 65}, + [2904] = {.lex_state = 429, .external_lex_state = 60}, + [2905] = {.lex_state = 429, .external_lex_state = 60}, + [2906] = {.lex_state = 429, .external_lex_state = 60}, + [2907] = {.lex_state = 421, .external_lex_state = 60}, + [2908] = {.lex_state = 421, .external_lex_state = 60}, + [2909] = {.lex_state = 421, .external_lex_state = 60}, + [2910] = {.lex_state = 421, .external_lex_state = 60}, + [2911] = {.lex_state = 421, .external_lex_state = 60}, + [2912] = {.lex_state = 429, .external_lex_state = 60}, + [2913] = {.lex_state = 423, .external_lex_state = 65}, + [2914] = {.lex_state = 421, .external_lex_state = 60}, + [2915] = {.lex_state = 423, .external_lex_state = 65}, + [2916] = {.lex_state = 423, .external_lex_state = 65}, + [2917] = {.lex_state = 421, .external_lex_state = 60}, + [2918] = {.lex_state = 448, .external_lex_state = 33}, + [2919] = {.lex_state = 423, .external_lex_state = 65}, + [2920] = {.lex_state = 424, .external_lex_state = 60}, + [2921] = {.lex_state = 421, .external_lex_state = 60}, + [2922] = {.lex_state = 423, .external_lex_state = 65}, + [2923] = {.lex_state = 421, .external_lex_state = 60}, + [2924] = {.lex_state = 423, .external_lex_state = 65}, + [2925] = {.lex_state = 423, .external_lex_state = 65}, + [2926] = {.lex_state = 423, .external_lex_state = 65}, + [2927] = {.lex_state = 423, .external_lex_state = 65}, + [2928] = {.lex_state = 424, .external_lex_state = 60}, + [2929] = {.lex_state = 448, .external_lex_state = 33}, + [2930] = {.lex_state = 424, .external_lex_state = 60}, + [2931] = {.lex_state = 423, .external_lex_state = 65}, + [2932] = {.lex_state = 423, .external_lex_state = 65}, + [2933] = {.lex_state = 423, .external_lex_state = 65}, + [2934] = {.lex_state = 423, .external_lex_state = 65}, + [2935] = {.lex_state = 423, .external_lex_state = 65}, + [2936] = {.lex_state = 424, .external_lex_state = 60}, + [2937] = {.lex_state = 421, .external_lex_state = 60}, + [2938] = {.lex_state = 421, .external_lex_state = 39}, + [2939] = {.lex_state = 429, .external_lex_state = 60}, + [2940] = {.lex_state = 429, .external_lex_state = 60}, + [2941] = {.lex_state = 423, .external_lex_state = 65}, + [2942] = {.lex_state = 240, .external_lex_state = 66}, + [2943] = {.lex_state = 424, .external_lex_state = 60}, + [2944] = {.lex_state = 423, .external_lex_state = 65}, + [2945] = {.lex_state = 423, .external_lex_state = 65}, + [2946] = {.lex_state = 424, .external_lex_state = 60}, + [2947] = {.lex_state = 423, .external_lex_state = 65}, + [2948] = {.lex_state = 421, .external_lex_state = 60}, + [2949] = {.lex_state = 421, .external_lex_state = 60}, + [2950] = {.lex_state = 429, .external_lex_state = 60}, + [2951] = {.lex_state = 421, .external_lex_state = 60}, + [2952] = {.lex_state = 240, .external_lex_state = 66}, + [2953] = {.lex_state = 424, .external_lex_state = 60}, + [2954] = {.lex_state = 421, .external_lex_state = 60}, + [2955] = {.lex_state = 423, .external_lex_state = 65}, + [2956] = {.lex_state = 423, .external_lex_state = 65}, + [2957] = {.lex_state = 423, .external_lex_state = 65}, + [2958] = {.lex_state = 455, .external_lex_state = 28}, + [2959] = {.lex_state = 455, .external_lex_state = 28}, + [2960] = {.lex_state = 421, .external_lex_state = 60}, + [2961] = {.lex_state = 423, .external_lex_state = 65}, + [2962] = {.lex_state = 424, .external_lex_state = 60}, + [2963] = {.lex_state = 423, .external_lex_state = 65}, + [2964] = {.lex_state = 423, .external_lex_state = 65}, + [2965] = {.lex_state = 421, .external_lex_state = 60}, + [2966] = {.lex_state = 429, .external_lex_state = 60}, + [2967] = {.lex_state = 429, .external_lex_state = 60}, + [2968] = {.lex_state = 421, .external_lex_state = 60}, + [2969] = {.lex_state = 421, .external_lex_state = 60}, + [2970] = {.lex_state = 421, .external_lex_state = 60}, + [2971] = {.lex_state = 423, .external_lex_state = 65}, + [2972] = {.lex_state = 421, .external_lex_state = 60}, + [2973] = {.lex_state = 421, .external_lex_state = 60}, + [2974] = {.lex_state = 421, .external_lex_state = 60}, + [2975] = {.lex_state = 421, .external_lex_state = 60}, + [2976] = {.lex_state = 421, .external_lex_state = 60}, + [2977] = {.lex_state = 421, .external_lex_state = 60}, + [2978] = {.lex_state = 421, .external_lex_state = 60}, + [2979] = {.lex_state = 421, .external_lex_state = 60}, + [2980] = {.lex_state = 421, .external_lex_state = 60}, + [2981] = {.lex_state = 421, .external_lex_state = 60}, + [2982] = {.lex_state = 421, .external_lex_state = 60}, + [2983] = {.lex_state = 421, .external_lex_state = 60}, + [2984] = {.lex_state = 421, .external_lex_state = 60}, + [2985] = {.lex_state = 421, .external_lex_state = 60}, + [2986] = {.lex_state = 421, .external_lex_state = 60}, + [2987] = {.lex_state = 243, .external_lex_state = 66}, + [2988] = {.lex_state = 448, .external_lex_state = 33}, + [2989] = {.lex_state = 423, .external_lex_state = 65}, + [2990] = {.lex_state = 423, .external_lex_state = 65}, + [2991] = {.lex_state = 515, .external_lex_state = 66}, + [2992] = {.lex_state = 423, .external_lex_state = 65}, + [2993] = {.lex_state = 424, .external_lex_state = 60}, + [2994] = {.lex_state = 423, .external_lex_state = 65}, + [2995] = {.lex_state = 424, .external_lex_state = 60}, + [2996] = {.lex_state = 423, .external_lex_state = 65}, + [2997] = {.lex_state = 423, .external_lex_state = 65}, + [2998] = {.lex_state = 423, .external_lex_state = 65}, + [2999] = {.lex_state = 423, .external_lex_state = 65}, + [3000] = {.lex_state = 423, .external_lex_state = 65}, + [3001] = {.lex_state = 423, .external_lex_state = 65}, + [3002] = {.lex_state = 423, .external_lex_state = 65}, + [3003] = {.lex_state = 424, .external_lex_state = 60}, + [3004] = {.lex_state = 423, .external_lex_state = 65}, + [3005] = {.lex_state = 460, .external_lex_state = 67}, + [3006] = {.lex_state = 423, .external_lex_state = 65}, + [3007] = {.lex_state = 423, .external_lex_state = 65}, + [3008] = {.lex_state = 429, .external_lex_state = 60}, + [3009] = {.lex_state = 429, .external_lex_state = 60}, + [3010] = {.lex_state = 429, .external_lex_state = 60}, + [3011] = {.lex_state = 429, .external_lex_state = 60}, + [3012] = {.lex_state = 429, .external_lex_state = 60}, + [3013] = {.lex_state = 429, .external_lex_state = 60}, + [3014] = {.lex_state = 429, .external_lex_state = 60}, + [3015] = {.lex_state = 429, .external_lex_state = 60}, + [3016] = {.lex_state = 429, .external_lex_state = 60}, + [3017] = {.lex_state = 429, .external_lex_state = 60}, + [3018] = {.lex_state = 429, .external_lex_state = 60}, + [3019] = {.lex_state = 429, .external_lex_state = 60}, + [3020] = {.lex_state = 429, .external_lex_state = 60}, + [3021] = {.lex_state = 429, .external_lex_state = 60}, + [3022] = {.lex_state = 423, .external_lex_state = 65}, + [3023] = {.lex_state = 455, .external_lex_state = 28}, + [3024] = {.lex_state = 455, .external_lex_state = 28}, + [3025] = {.lex_state = 423, .external_lex_state = 65}, + [3026] = {.lex_state = 423, .external_lex_state = 65}, + [3027] = {.lex_state = 429, .external_lex_state = 60}, + [3028] = {.lex_state = 423, .external_lex_state = 65}, + [3029] = {.lex_state = 423, .external_lex_state = 65}, + [3030] = {.lex_state = 421, .external_lex_state = 39}, + [3031] = {.lex_state = 455, .external_lex_state = 28}, + [3032] = {.lex_state = 423, .external_lex_state = 65}, + [3033] = {.lex_state = 429, .external_lex_state = 60}, + [3034] = {.lex_state = 423, .external_lex_state = 65}, + [3035] = {.lex_state = 455, .external_lex_state = 28}, + [3036] = {.lex_state = 455, .external_lex_state = 28}, + [3037] = {.lex_state = 455, .external_lex_state = 28}, + [3038] = {.lex_state = 455, .external_lex_state = 28}, + [3039] = {.lex_state = 455, .external_lex_state = 28}, + [3040] = {.lex_state = 455, .external_lex_state = 28}, + [3041] = {.lex_state = 429, .external_lex_state = 60}, + [3042] = {.lex_state = 421, .external_lex_state = 60}, + [3043] = {.lex_state = 455, .external_lex_state = 28}, + [3044] = {.lex_state = 455, .external_lex_state = 28}, + [3045] = {.lex_state = 423, .external_lex_state = 65}, + [3046] = {.lex_state = 424, .external_lex_state = 60}, + [3047] = {.lex_state = 455, .external_lex_state = 28}, + [3048] = {.lex_state = 421, .external_lex_state = 60}, + [3049] = {.lex_state = 455, .external_lex_state = 28}, + [3050] = {.lex_state = 424, .external_lex_state = 60}, + [3051] = {.lex_state = 455, .external_lex_state = 28}, + [3052] = {.lex_state = 455, .external_lex_state = 28}, + [3053] = {.lex_state = 455, .external_lex_state = 28}, + [3054] = {.lex_state = 455, .external_lex_state = 28}, + [3055] = {.lex_state = 455, .external_lex_state = 28}, + [3056] = {.lex_state = 455, .external_lex_state = 28}, + [3057] = {.lex_state = 421, .external_lex_state = 60}, + [3058] = {.lex_state = 421, .external_lex_state = 60}, + [3059] = {.lex_state = 455, .external_lex_state = 28}, + [3060] = {.lex_state = 423, .external_lex_state = 65}, + [3061] = {.lex_state = 423, .external_lex_state = 65}, + [3062] = {.lex_state = 455, .external_lex_state = 28}, + [3063] = {.lex_state = 424, .external_lex_state = 60}, + [3064] = {.lex_state = 424, .external_lex_state = 60}, + [3065] = {.lex_state = 424, .external_lex_state = 60}, + [3066] = {.lex_state = 424, .external_lex_state = 60}, + [3067] = {.lex_state = 423, .external_lex_state = 65}, + [3068] = {.lex_state = 423, .external_lex_state = 65}, + [3069] = {.lex_state = 423, .external_lex_state = 65}, + [3070] = {.lex_state = 460, .external_lex_state = 67}, + [3071] = {.lex_state = 455, .external_lex_state = 28}, + [3072] = {.lex_state = 424, .external_lex_state = 60}, + [3073] = {.lex_state = 424, .external_lex_state = 60}, + [3074] = {.lex_state = 424, .external_lex_state = 60}, + [3075] = {.lex_state = 424, .external_lex_state = 60}, + [3076] = {.lex_state = 460, .external_lex_state = 67}, + [3077] = {.lex_state = 423, .external_lex_state = 65}, + [3078] = {.lex_state = 246, .external_lex_state = 66}, + [3079] = {.lex_state = 246, .external_lex_state = 66}, + [3080] = {.lex_state = 423, .external_lex_state = 65}, + [3081] = {.lex_state = 246, .external_lex_state = 66}, + [3082] = {.lex_state = 246, .external_lex_state = 66}, + [3083] = {.lex_state = 458, .external_lex_state = 33}, + [3084] = {.lex_state = 424, .external_lex_state = 60}, + [3085] = {.lex_state = 424, .external_lex_state = 60}, + [3086] = {.lex_state = 423, .external_lex_state = 65}, + [3087] = {.lex_state = 424, .external_lex_state = 60}, + [3088] = {.lex_state = 423, .external_lex_state = 65}, + [3089] = {.lex_state = 460, .external_lex_state = 67}, + [3090] = {.lex_state = 423, .external_lex_state = 65}, + [3091] = {.lex_state = 423, .external_lex_state = 65}, + [3092] = {.lex_state = 423, .external_lex_state = 65}, + [3093] = {.lex_state = 423, .external_lex_state = 65}, + [3094] = {.lex_state = 423, .external_lex_state = 65}, + [3095] = {.lex_state = 421, .external_lex_state = 39}, + [3096] = {.lex_state = 421, .external_lex_state = 39}, + [3097] = {.lex_state = 421, .external_lex_state = 39}, + [3098] = {.lex_state = 421, .external_lex_state = 39}, + [3099] = {.lex_state = 421, .external_lex_state = 39}, + [3100] = {.lex_state = 421, .external_lex_state = 39}, + [3101] = {.lex_state = 421, .external_lex_state = 39}, + [3102] = {.lex_state = 421, .external_lex_state = 39}, + [3103] = {.lex_state = 421, .external_lex_state = 39}, + [3104] = {.lex_state = 421, .external_lex_state = 39}, + [3105] = {.lex_state = 421, .external_lex_state = 39}, + [3106] = {.lex_state = 421, .external_lex_state = 39}, + [3107] = {.lex_state = 421, .external_lex_state = 39}, + [3108] = {.lex_state = 421, .external_lex_state = 39}, + [3109] = {.lex_state = 424, .external_lex_state = 60}, + [3110] = {.lex_state = 460, .external_lex_state = 67}, + [3111] = {.lex_state = 421, .external_lex_state = 60}, + [3112] = {.lex_state = 424, .external_lex_state = 60}, + [3113] = {.lex_state = 423, .external_lex_state = 65}, + [3114] = {.lex_state = 424, .external_lex_state = 60}, + [3115] = {.lex_state = 460, .external_lex_state = 67}, + [3116] = {.lex_state = 421, .external_lex_state = 39}, + [3117] = {.lex_state = 421, .external_lex_state = 39}, + [3118] = {.lex_state = 421, .external_lex_state = 39}, + [3119] = {.lex_state = 423, .external_lex_state = 65}, + [3120] = {.lex_state = 460, .external_lex_state = 67}, + [3121] = {.lex_state = 424, .external_lex_state = 60}, + [3122] = {.lex_state = 423, .external_lex_state = 65}, + [3123] = {.lex_state = 423, .external_lex_state = 65}, + [3124] = {.lex_state = 423, .external_lex_state = 65}, + [3125] = {.lex_state = 423, .external_lex_state = 65}, + [3126] = {.lex_state = 243, .external_lex_state = 66}, + [3127] = {.lex_state = 421, .external_lex_state = 60}, + [3128] = {.lex_state = 423, .external_lex_state = 65}, + [3129] = {.lex_state = 460, .external_lex_state = 67}, + [3130] = {.lex_state = 460, .external_lex_state = 67}, + [3131] = {.lex_state = 460, .external_lex_state = 67}, + [3132] = {.lex_state = 460, .external_lex_state = 67}, + [3133] = {.lex_state = 423, .external_lex_state = 65}, + [3134] = {.lex_state = 423, .external_lex_state = 65}, + [3135] = {.lex_state = 429, .external_lex_state = 60}, + [3136] = {.lex_state = 423, .external_lex_state = 65}, + [3137] = {.lex_state = 429, .external_lex_state = 60}, + [3138] = {.lex_state = 460, .external_lex_state = 67}, + [3139] = {.lex_state = 423, .external_lex_state = 65}, + [3140] = {.lex_state = 446, .external_lex_state = 35}, + [3141] = {.lex_state = 423, .external_lex_state = 65}, + [3142] = {.lex_state = 460, .external_lex_state = 67}, + [3143] = {.lex_state = 424, .external_lex_state = 60}, + [3144] = {.lex_state = 424, .external_lex_state = 60}, + [3145] = {.lex_state = 423, .external_lex_state = 65}, + [3146] = {.lex_state = 455, .external_lex_state = 28}, + [3147] = {.lex_state = 423, .external_lex_state = 65}, + [3148] = {.lex_state = 424, .external_lex_state = 60}, + [3149] = {.lex_state = 423, .external_lex_state = 65}, + [3150] = {.lex_state = 423, .external_lex_state = 65}, + [3151] = {.lex_state = 423, .external_lex_state = 65}, + [3152] = {.lex_state = 421, .external_lex_state = 60}, + [3153] = {.lex_state = 423, .external_lex_state = 65}, + [3154] = {.lex_state = 421, .external_lex_state = 60}, + [3155] = {.lex_state = 448, .external_lex_state = 47}, + [3156] = {.lex_state = 448, .external_lex_state = 33}, + [3157] = {.lex_state = 448, .external_lex_state = 33}, + [3158] = {.lex_state = 448, .external_lex_state = 33}, + [3159] = {.lex_state = 448, .external_lex_state = 33}, + [3160] = {.lex_state = 448, .external_lex_state = 33}, + [3161] = {.lex_state = 448, .external_lex_state = 33}, + [3162] = {.lex_state = 448, .external_lex_state = 33}, + [3163] = {.lex_state = 249, .external_lex_state = 66}, + [3164] = {.lex_state = 249, .external_lex_state = 66}, + [3165] = {.lex_state = 448, .external_lex_state = 47}, + [3166] = {.lex_state = 448, .external_lex_state = 47}, + [3167] = {.lex_state = 448, .external_lex_state = 47}, + [3168] = {.lex_state = 448, .external_lex_state = 47}, + [3169] = {.lex_state = 448, .external_lex_state = 47}, + [3170] = {.lex_state = 448, .external_lex_state = 47}, + [3171] = {.lex_state = 448, .external_lex_state = 47}, + [3172] = {.lex_state = 448, .external_lex_state = 33}, + [3173] = {.lex_state = 448, .external_lex_state = 33}, + [3174] = {.lex_state = 448, .external_lex_state = 33}, + [3175] = {.lex_state = 448, .external_lex_state = 33}, + [3176] = {.lex_state = 448, .external_lex_state = 33}, + [3177] = {.lex_state = 515, .external_lex_state = 66}, + [3178] = {.lex_state = 448, .external_lex_state = 33}, + [3179] = {.lex_state = 249, .external_lex_state = 66}, + [3180] = {.lex_state = 448, .external_lex_state = 33}, + [3181] = {.lex_state = 448, .external_lex_state = 33}, + [3182] = {.lex_state = 448, .external_lex_state = 33}, + [3183] = {.lex_state = 448, .external_lex_state = 33}, + [3184] = {.lex_state = 448, .external_lex_state = 33}, + [3185] = {.lex_state = 515, .external_lex_state = 66}, + [3186] = {.lex_state = 448, .external_lex_state = 47}, + [3187] = {.lex_state = 252, .external_lex_state = 66}, + [3188] = {.lex_state = 448, .external_lex_state = 47}, + [3189] = {.lex_state = 448, .external_lex_state = 47}, + [3190] = {.lex_state = 252, .external_lex_state = 66}, + [3191] = {.lex_state = 448, .external_lex_state = 33}, + [3192] = {.lex_state = 448, .external_lex_state = 47}, + [3193] = {.lex_state = 448, .external_lex_state = 47}, + [3194] = {.lex_state = 448, .external_lex_state = 47}, + [3195] = {.lex_state = 448, .external_lex_state = 33}, + [3196] = {.lex_state = 448, .external_lex_state = 33}, + [3197] = {.lex_state = 520, .external_lex_state = 66}, + [3198] = {.lex_state = 448, .external_lex_state = 33}, + [3199] = {.lex_state = 448, .external_lex_state = 33}, + [3200] = {.lex_state = 448, .external_lex_state = 33}, + [3201] = {.lex_state = 252, .external_lex_state = 66}, + [3202] = {.lex_state = 448, .external_lex_state = 47}, + [3203] = {.lex_state = 252, .external_lex_state = 66}, + [3204] = {.lex_state = 520, .external_lex_state = 66}, + [3205] = {.lex_state = 520, .external_lex_state = 66}, + [3206] = {.lex_state = 448, .external_lex_state = 47}, + [3207] = {.lex_state = 448, .external_lex_state = 47}, + [3208] = {.lex_state = 448, .external_lex_state = 47}, + [3209] = {.lex_state = 448, .external_lex_state = 33}, + [3210] = {.lex_state = 448, .external_lex_state = 47}, + [3211] = {.lex_state = 448, .external_lex_state = 47}, + [3212] = {.lex_state = 448, .external_lex_state = 47}, + [3213] = {.lex_state = 249, .external_lex_state = 66}, + [3214] = {.lex_state = 448, .external_lex_state = 47}, + [3215] = {.lex_state = 448, .external_lex_state = 47}, + [3216] = {.lex_state = 448, .external_lex_state = 47}, + [3217] = {.lex_state = 520, .external_lex_state = 66}, + [3218] = {.lex_state = 461, .external_lex_state = 68}, + [3219] = {.lex_state = 447, .external_lex_state = 69}, + [3220] = {.lex_state = 520, .external_lex_state = 66}, + [3221] = {.lex_state = 447, .external_lex_state = 69}, + [3222] = {.lex_state = 520, .external_lex_state = 66}, + [3223] = {.lex_state = 447, .external_lex_state = 69}, + [3224] = {.lex_state = 291, .external_lex_state = 70}, + [3225] = {.lex_state = 447, .external_lex_state = 69}, + [3226] = {.lex_state = 447, .external_lex_state = 69}, + [3227] = {.lex_state = 447, .external_lex_state = 69}, + [3228] = {.lex_state = 447, .external_lex_state = 69}, + [3229] = {.lex_state = 461, .external_lex_state = 68}, + [3230] = {.lex_state = 291, .external_lex_state = 70}, + [3231] = {.lex_state = 447, .external_lex_state = 69}, + [3232] = {.lex_state = 447, .external_lex_state = 69}, + [3233] = {.lex_state = 448, .external_lex_state = 47}, + [3234] = {.lex_state = 447, .external_lex_state = 69}, + [3235] = {.lex_state = 291, .external_lex_state = 70}, + [3236] = {.lex_state = 520, .external_lex_state = 66}, + [3237] = {.lex_state = 469, .external_lex_state = 71}, + [3238] = {.lex_state = 447, .external_lex_state = 69}, + [3239] = {.lex_state = 291, .external_lex_state = 70}, + [3240] = {.lex_state = 461, .external_lex_state = 68}, + [3241] = {.lex_state = 447, .external_lex_state = 69}, + [3242] = {.lex_state = 520, .external_lex_state = 66}, + [3243] = {.lex_state = 447, .external_lex_state = 69}, + [3244] = {.lex_state = 447, .external_lex_state = 69}, + [3245] = {.lex_state = 291, .external_lex_state = 70}, + [3246] = {.lex_state = 447, .external_lex_state = 69}, + [3247] = {.lex_state = 466, .external_lex_state = 72}, + [3248] = {.lex_state = 469, .external_lex_state = 71}, + [3249] = {.lex_state = 447, .external_lex_state = 69}, + [3250] = {.lex_state = 466, .external_lex_state = 72}, + [3251] = {.lex_state = 466, .external_lex_state = 72}, + [3252] = {.lex_state = 447, .external_lex_state = 69}, + [3253] = {.lex_state = 282, .external_lex_state = 73}, + [3254] = {.lex_state = 466, .external_lex_state = 72}, + [3255] = {.lex_state = 447, .external_lex_state = 69}, + [3256] = {.lex_state = 466, .external_lex_state = 72}, + [3257] = {.lex_state = 447, .external_lex_state = 69}, + [3258] = {.lex_state = 466, .external_lex_state = 72}, + [3259] = {.lex_state = 447, .external_lex_state = 69}, + [3260] = {.lex_state = 466, .external_lex_state = 72}, + [3261] = {.lex_state = 447, .external_lex_state = 69}, + [3262] = {.lex_state = 447, .external_lex_state = 69}, + [3263] = {.lex_state = 466, .external_lex_state = 72}, + [3264] = {.lex_state = 466, .external_lex_state = 72}, + [3265] = {.lex_state = 466, .external_lex_state = 72}, + [3266] = {.lex_state = 466, .external_lex_state = 72}, + [3267] = {.lex_state = 466, .external_lex_state = 72}, + [3268] = {.lex_state = 466, .external_lex_state = 72}, + [3269] = {.lex_state = 466, .external_lex_state = 72}, + [3270] = {.lex_state = 447, .external_lex_state = 69}, + [3271] = {.lex_state = 466, .external_lex_state = 72}, + [3272] = {.lex_state = 466, .external_lex_state = 72}, + [3273] = {.lex_state = 466, .external_lex_state = 72}, + [3274] = {.lex_state = 447, .external_lex_state = 69}, + [3275] = {.lex_state = 447, .external_lex_state = 69}, + [3276] = {.lex_state = 447, .external_lex_state = 69}, + [3277] = {.lex_state = 466, .external_lex_state = 72}, + [3278] = {.lex_state = 447, .external_lex_state = 69}, + [3279] = {.lex_state = 447, .external_lex_state = 69}, + [3280] = {.lex_state = 447, .external_lex_state = 69}, + [3281] = {.lex_state = 447, .external_lex_state = 69}, + [3282] = {.lex_state = 466, .external_lex_state = 72}, + [3283] = {.lex_state = 466, .external_lex_state = 72}, + [3284] = {.lex_state = 282, .external_lex_state = 73}, + [3285] = {.lex_state = 466, .external_lex_state = 72}, + [3286] = {.lex_state = 447, .external_lex_state = 69}, + [3287] = {.lex_state = 466, .external_lex_state = 72}, + [3288] = {.lex_state = 469, .external_lex_state = 71}, + [3289] = {.lex_state = 469, .external_lex_state = 71}, + [3290] = {.lex_state = 466, .external_lex_state = 72}, + [3291] = {.lex_state = 447, .external_lex_state = 69}, + [3292] = {.lex_state = 469, .external_lex_state = 71}, + [3293] = {.lex_state = 447, .external_lex_state = 69}, + [3294] = {.lex_state = 439, .external_lex_state = 74}, + [3295] = {.lex_state = 439, .external_lex_state = 74}, + [3296] = {.lex_state = 446, .external_lex_state = 35}, + [3297] = {.lex_state = 439, .external_lex_state = 74}, + [3298] = {.lex_state = 439, .external_lex_state = 74}, + [3299] = {.lex_state = 439, .external_lex_state = 74}, + [3300] = {.lex_state = 446, .external_lex_state = 35}, + [3301] = {.lex_state = 439, .external_lex_state = 74}, + [3302] = {.lex_state = 439, .external_lex_state = 74}, + [3303] = {.lex_state = 439, .external_lex_state = 74}, + [3304] = {.lex_state = 439, .external_lex_state = 74}, + [3305] = {.lex_state = 439, .external_lex_state = 74}, + [3306] = {.lex_state = 258, .external_lex_state = 66}, + [3307] = {.lex_state = 432, .external_lex_state = 75}, + [3308] = {.lex_state = 439, .external_lex_state = 74}, + [3309] = {.lex_state = 439, .external_lex_state = 74}, + [3310] = {.lex_state = 446, .external_lex_state = 35}, + [3311] = {.lex_state = 446, .external_lex_state = 35}, + [3312] = {.lex_state = 446, .external_lex_state = 35}, + [3313] = {.lex_state = 446, .external_lex_state = 35}, + [3314] = {.lex_state = 439, .external_lex_state = 74}, + [3315] = {.lex_state = 439, .external_lex_state = 74}, + [3316] = {.lex_state = 439, .external_lex_state = 74}, + [3317] = {.lex_state = 439, .external_lex_state = 74}, + [3318] = {.lex_state = 439, .external_lex_state = 74}, + [3319] = {.lex_state = 432, .external_lex_state = 75}, + [3320] = {.lex_state = 258, .external_lex_state = 66}, + [3321] = {.lex_state = 439, .external_lex_state = 74}, + [3322] = {.lex_state = 439, .external_lex_state = 74}, + [3323] = {.lex_state = 439, .external_lex_state = 74}, + [3324] = {.lex_state = 439, .external_lex_state = 74}, + [3325] = {.lex_state = 434, .external_lex_state = 75}, + [3326] = {.lex_state = 434, .external_lex_state = 75}, + [3327] = {.lex_state = 439, .external_lex_state = 74}, + [3328] = {.lex_state = 448, .external_lex_state = 76}, + [3329] = {.lex_state = 439, .external_lex_state = 74}, + [3330] = {.lex_state = 439, .external_lex_state = 74}, + [3331] = {.lex_state = 439, .external_lex_state = 74}, + [3332] = {.lex_state = 439, .external_lex_state = 74}, + [3333] = {.lex_state = 439, .external_lex_state = 74}, + [3334] = {.lex_state = 439, .external_lex_state = 74}, + [3335] = {.lex_state = 439, .external_lex_state = 74}, + [3336] = {.lex_state = 439, .external_lex_state = 74}, + [3337] = {.lex_state = 439, .external_lex_state = 74}, + [3338] = {.lex_state = 439, .external_lex_state = 74}, + [3339] = {.lex_state = 439, .external_lex_state = 74}, + [3340] = {.lex_state = 439, .external_lex_state = 74}, + [3341] = {.lex_state = 439, .external_lex_state = 74}, + [3342] = {.lex_state = 446, .external_lex_state = 35}, + [3343] = {.lex_state = 439, .external_lex_state = 74}, + [3344] = {.lex_state = 439, .external_lex_state = 74}, + [3345] = {.lex_state = 439, .external_lex_state = 74}, + [3346] = {.lex_state = 439, .external_lex_state = 74}, + [3347] = {.lex_state = 439, .external_lex_state = 74}, + [3348] = {.lex_state = 439, .external_lex_state = 74}, + [3349] = {.lex_state = 439, .external_lex_state = 74}, + [3350] = {.lex_state = 439, .external_lex_state = 74}, + [3351] = {.lex_state = 439, .external_lex_state = 74}, + [3352] = {.lex_state = 439, .external_lex_state = 74}, + [3353] = {.lex_state = 439, .external_lex_state = 74}, + [3354] = {.lex_state = 439, .external_lex_state = 74}, + [3355] = {.lex_state = 439, .external_lex_state = 74}, + [3356] = {.lex_state = 439, .external_lex_state = 74}, + [3357] = {.lex_state = 439, .external_lex_state = 74}, + [3358] = {.lex_state = 446, .external_lex_state = 35}, + [3359] = {.lex_state = 446, .external_lex_state = 35}, + [3360] = {.lex_state = 433, .external_lex_state = 77}, + [3361] = {.lex_state = 433, .external_lex_state = 77}, + [3362] = {.lex_state = 257, .external_lex_state = 70}, + [3363] = {.lex_state = 448, .external_lex_state = 78}, + [3364] = {.lex_state = 439, .external_lex_state = 74}, + [3365] = {.lex_state = 439, .external_lex_state = 74}, + [3366] = {.lex_state = 261, .external_lex_state = 66}, + [3367] = {.lex_state = 261, .external_lex_state = 66}, + [3368] = {.lex_state = 448, .external_lex_state = 76}, + [3369] = {.lex_state = 439, .external_lex_state = 74}, + [3370] = {.lex_state = 439, .external_lex_state = 74}, + [3371] = {.lex_state = 439, .external_lex_state = 74}, + [3372] = {.lex_state = 446, .external_lex_state = 35}, + [3373] = {.lex_state = 261, .external_lex_state = 66}, + [3374] = {.lex_state = 261, .external_lex_state = 66}, + [3375] = {.lex_state = 446, .external_lex_state = 35}, + [3376] = {.lex_state = 448, .external_lex_state = 78}, + [3377] = {.lex_state = 257, .external_lex_state = 70}, + [3378] = {.lex_state = 448, .external_lex_state = 78}, + [3379] = {.lex_state = 446, .external_lex_state = 35}, + [3380] = {.lex_state = 257, .external_lex_state = 70}, + [3381] = {.lex_state = 446, .external_lex_state = 35}, + [3382] = {.lex_state = 446, .external_lex_state = 35}, + [3383] = {.lex_state = 448, .external_lex_state = 78}, + [3384] = {.lex_state = 448, .external_lex_state = 78}, + [3385] = {.lex_state = 439, .external_lex_state = 74}, + [3386] = {.lex_state = 439, .external_lex_state = 74}, + [3387] = {.lex_state = 439, .external_lex_state = 74}, + [3388] = {.lex_state = 439, .external_lex_state = 74}, + [3389] = {.lex_state = 439, .external_lex_state = 74}, + [3390] = {.lex_state = 439, .external_lex_state = 74}, + [3391] = {.lex_state = 439, .external_lex_state = 74}, + [3392] = {.lex_state = 439, .external_lex_state = 74}, + [3393] = {.lex_state = 439, .external_lex_state = 74}, + [3394] = {.lex_state = 439, .external_lex_state = 74}, + [3395] = {.lex_state = 439, .external_lex_state = 74}, + [3396] = {.lex_state = 439, .external_lex_state = 74}, + [3397] = {.lex_state = 439, .external_lex_state = 74}, + [3398] = {.lex_state = 448, .external_lex_state = 78}, + [3399] = {.lex_state = 439, .external_lex_state = 74}, + [3400] = {.lex_state = 448, .external_lex_state = 78}, + [3401] = {.lex_state = 448, .external_lex_state = 78}, + [3402] = {.lex_state = 448, .external_lex_state = 76}, + [3403] = {.lex_state = 448, .external_lex_state = 78}, + [3404] = {.lex_state = 448, .external_lex_state = 78}, + [3405] = {.lex_state = 448, .external_lex_state = 78}, + [3406] = {.lex_state = 448, .external_lex_state = 78}, + [3407] = {.lex_state = 448, .external_lex_state = 78}, + [3408] = {.lex_state = 446, .external_lex_state = 35}, + [3409] = {.lex_state = 448, .external_lex_state = 78}, + [3410] = {.lex_state = 448, .external_lex_state = 78}, + [3411] = {.lex_state = 448, .external_lex_state = 78}, + [3412] = {.lex_state = 448, .external_lex_state = 78}, + [3413] = {.lex_state = 448, .external_lex_state = 78}, + [3414] = {.lex_state = 448, .external_lex_state = 78}, + [3415] = {.lex_state = 448, .external_lex_state = 78}, + [3416] = {.lex_state = 448, .external_lex_state = 78}, + [3417] = {.lex_state = 448, .external_lex_state = 78}, + [3418] = {.lex_state = 448, .external_lex_state = 78}, + [3419] = {.lex_state = 448, .external_lex_state = 78}, + [3420] = {.lex_state = 448, .external_lex_state = 78}, + [3421] = {.lex_state = 448, .external_lex_state = 78}, + [3422] = {.lex_state = 448, .external_lex_state = 78}, + [3423] = {.lex_state = 448, .external_lex_state = 78}, + [3424] = {.lex_state = 448, .external_lex_state = 78}, + [3425] = {.lex_state = 448, .external_lex_state = 78}, + [3426] = {.lex_state = 448, .external_lex_state = 78}, + [3427] = {.lex_state = 439, .external_lex_state = 74}, + [3428] = {.lex_state = 439, .external_lex_state = 74}, + [3429] = {.lex_state = 439, .external_lex_state = 74}, + [3430] = {.lex_state = 439, .external_lex_state = 74}, + [3431] = {.lex_state = 439, .external_lex_state = 74}, + [3432] = {.lex_state = 257, .external_lex_state = 70}, + [3433] = {.lex_state = 257, .external_lex_state = 70}, + [3434] = {.lex_state = 469, .external_lex_state = 79}, + [3435] = {.lex_state = 439, .external_lex_state = 74}, + [3436] = {.lex_state = 439, .external_lex_state = 74}, + [3437] = {.lex_state = 439, .external_lex_state = 74}, + [3438] = {.lex_state = 439, .external_lex_state = 74}, + [3439] = {.lex_state = 257, .external_lex_state = 70}, + [3440] = {.lex_state = 257, .external_lex_state = 70}, + [3441] = {.lex_state = 439, .external_lex_state = 74}, + [3442] = {.lex_state = 439, .external_lex_state = 74}, + [3443] = {.lex_state = 257, .external_lex_state = 70}, + [3444] = {.lex_state = 257, .external_lex_state = 70}, + [3445] = {.lex_state = 439, .external_lex_state = 74}, + [3446] = {.lex_state = 439, .external_lex_state = 74}, + [3447] = {.lex_state = 257, .external_lex_state = 70}, + [3448] = {.lex_state = 257, .external_lex_state = 70}, + [3449] = {.lex_state = 439, .external_lex_state = 74}, + [3450] = {.lex_state = 439, .external_lex_state = 74}, + [3451] = {.lex_state = 257, .external_lex_state = 70}, + [3452] = {.lex_state = 257, .external_lex_state = 70}, + [3453] = {.lex_state = 439, .external_lex_state = 74}, + [3454] = {.lex_state = 439, .external_lex_state = 74}, + [3455] = {.lex_state = 439, .external_lex_state = 74}, + [3456] = {.lex_state = 439, .external_lex_state = 74}, + [3457] = {.lex_state = 439, .external_lex_state = 74}, + [3458] = {.lex_state = 439, .external_lex_state = 74}, + [3459] = {.lex_state = 439, .external_lex_state = 74}, + [3460] = {.lex_state = 439, .external_lex_state = 74}, + [3461] = {.lex_state = 439, .external_lex_state = 74}, + [3462] = {.lex_state = 439, .external_lex_state = 74}, + [3463] = {.lex_state = 439, .external_lex_state = 74}, + [3464] = {.lex_state = 439, .external_lex_state = 74}, + [3465] = {.lex_state = 439, .external_lex_state = 74}, + [3466] = {.lex_state = 439, .external_lex_state = 74}, + [3467] = {.lex_state = 439, .external_lex_state = 74}, + [3468] = {.lex_state = 439, .external_lex_state = 74}, + [3469] = {.lex_state = 439, .external_lex_state = 74}, + [3470] = {.lex_state = 439, .external_lex_state = 74}, + [3471] = {.lex_state = 439, .external_lex_state = 74}, + [3472] = {.lex_state = 439, .external_lex_state = 74}, + [3473] = {.lex_state = 439, .external_lex_state = 74}, + [3474] = {.lex_state = 439, .external_lex_state = 74}, + [3475] = {.lex_state = 439, .external_lex_state = 74}, + [3476] = {.lex_state = 439, .external_lex_state = 74}, + [3477] = {.lex_state = 439, .external_lex_state = 74}, + [3478] = {.lex_state = 439, .external_lex_state = 74}, + [3479] = {.lex_state = 439, .external_lex_state = 74}, + [3480] = {.lex_state = 439, .external_lex_state = 74}, + [3481] = {.lex_state = 439, .external_lex_state = 74}, + [3482] = {.lex_state = 439, .external_lex_state = 74}, + [3483] = {.lex_state = 439, .external_lex_state = 74}, + [3484] = {.lex_state = 439, .external_lex_state = 74}, + [3485] = {.lex_state = 439, .external_lex_state = 74}, + [3486] = {.lex_state = 439, .external_lex_state = 74}, + [3487] = {.lex_state = 439, .external_lex_state = 74}, + [3488] = {.lex_state = 439, .external_lex_state = 74}, + [3489] = {.lex_state = 439, .external_lex_state = 74}, + [3490] = {.lex_state = 439, .external_lex_state = 74}, + [3491] = {.lex_state = 439, .external_lex_state = 74}, + [3492] = {.lex_state = 439, .external_lex_state = 74}, + [3493] = {.lex_state = 439, .external_lex_state = 74}, + [3494] = {.lex_state = 439, .external_lex_state = 74}, + [3495] = {.lex_state = 439, .external_lex_state = 74}, + [3496] = {.lex_state = 439, .external_lex_state = 74}, + [3497] = {.lex_state = 439, .external_lex_state = 74}, + [3498] = {.lex_state = 439, .external_lex_state = 74}, + [3499] = {.lex_state = 439, .external_lex_state = 74}, + [3500] = {.lex_state = 439, .external_lex_state = 74}, + [3501] = {.lex_state = 439, .external_lex_state = 74}, + [3502] = {.lex_state = 439, .external_lex_state = 74}, + [3503] = {.lex_state = 439, .external_lex_state = 74}, + [3504] = {.lex_state = 439, .external_lex_state = 74}, + [3505] = {.lex_state = 439, .external_lex_state = 74}, + [3506] = {.lex_state = 439, .external_lex_state = 74}, + [3507] = {.lex_state = 439, .external_lex_state = 74}, + [3508] = {.lex_state = 439, .external_lex_state = 74}, + [3509] = {.lex_state = 439, .external_lex_state = 74}, + [3510] = {.lex_state = 439, .external_lex_state = 74}, + [3511] = {.lex_state = 439, .external_lex_state = 74}, + [3512] = {.lex_state = 439, .external_lex_state = 74}, + [3513] = {.lex_state = 439, .external_lex_state = 74}, + [3514] = {.lex_state = 439, .external_lex_state = 74}, + [3515] = {.lex_state = 439, .external_lex_state = 74}, + [3516] = {.lex_state = 439, .external_lex_state = 74}, + [3517] = {.lex_state = 439, .external_lex_state = 74}, + [3518] = {.lex_state = 439, .external_lex_state = 74}, + [3519] = {.lex_state = 439, .external_lex_state = 74}, + [3520] = {.lex_state = 439, .external_lex_state = 74}, + [3521] = {.lex_state = 439, .external_lex_state = 74}, + [3522] = {.lex_state = 439, .external_lex_state = 74}, + [3523] = {.lex_state = 439, .external_lex_state = 74}, + [3524] = {.lex_state = 439, .external_lex_state = 74}, + [3525] = {.lex_state = 439, .external_lex_state = 74}, + [3526] = {.lex_state = 439, .external_lex_state = 74}, + [3527] = {.lex_state = 439, .external_lex_state = 74}, + [3528] = {.lex_state = 439, .external_lex_state = 74}, + [3529] = {.lex_state = 439, .external_lex_state = 74}, + [3530] = {.lex_state = 439, .external_lex_state = 74}, + [3531] = {.lex_state = 439, .external_lex_state = 74}, + [3532] = {.lex_state = 439, .external_lex_state = 74}, + [3533] = {.lex_state = 439, .external_lex_state = 74}, + [3534] = {.lex_state = 439, .external_lex_state = 74}, + [3535] = {.lex_state = 439, .external_lex_state = 74}, + [3536] = {.lex_state = 439, .external_lex_state = 74}, + [3537] = {.lex_state = 439, .external_lex_state = 74}, + [3538] = {.lex_state = 439, .external_lex_state = 74}, + [3539] = {.lex_state = 439, .external_lex_state = 74}, + [3540] = {.lex_state = 439, .external_lex_state = 74}, + [3541] = {.lex_state = 439, .external_lex_state = 74}, + [3542] = {.lex_state = 439, .external_lex_state = 74}, + [3543] = {.lex_state = 439, .external_lex_state = 74}, + [3544] = {.lex_state = 439, .external_lex_state = 74}, + [3545] = {.lex_state = 439, .external_lex_state = 74}, + [3546] = {.lex_state = 439, .external_lex_state = 74}, + [3547] = {.lex_state = 439, .external_lex_state = 74}, + [3548] = {.lex_state = 439, .external_lex_state = 74}, + [3549] = {.lex_state = 439, .external_lex_state = 74}, + [3550] = {.lex_state = 439, .external_lex_state = 74}, + [3551] = {.lex_state = 439, .external_lex_state = 74}, + [3552] = {.lex_state = 439, .external_lex_state = 74}, + [3553] = {.lex_state = 439, .external_lex_state = 74}, + [3554] = {.lex_state = 439, .external_lex_state = 74}, + [3555] = {.lex_state = 439, .external_lex_state = 74}, + [3556] = {.lex_state = 439, .external_lex_state = 74}, + [3557] = {.lex_state = 439, .external_lex_state = 74}, + [3558] = {.lex_state = 439, .external_lex_state = 74}, + [3559] = {.lex_state = 439, .external_lex_state = 74}, + [3560] = {.lex_state = 439, .external_lex_state = 74}, + [3561] = {.lex_state = 448, .external_lex_state = 78}, + [3562] = {.lex_state = 448, .external_lex_state = 78}, + [3563] = {.lex_state = 439, .external_lex_state = 74}, + [3564] = {.lex_state = 435, .external_lex_state = 77}, + [3565] = {.lex_state = 467, .external_lex_state = 80}, + [3566] = {.lex_state = 467, .external_lex_state = 80}, + [3567] = {.lex_state = 448, .external_lex_state = 81}, + [3568] = {.lex_state = 435, .external_lex_state = 77}, + [3569] = {.lex_state = 448, .external_lex_state = 81}, + [3570] = {.lex_state = 435, .external_lex_state = 77}, + [3571] = {.lex_state = 467, .external_lex_state = 80}, + [3572] = {.lex_state = 467, .external_lex_state = 80}, + [3573] = {.lex_state = 448, .external_lex_state = 81}, + [3574] = {.lex_state = 467, .external_lex_state = 80}, + [3575] = {.lex_state = 467, .external_lex_state = 80}, + [3576] = {.lex_state = 284, .external_lex_state = 73}, + [3577] = {.lex_state = 467, .external_lex_state = 80}, + [3578] = {.lex_state = 467, .external_lex_state = 80}, + [3579] = {.lex_state = 284, .external_lex_state = 73}, + [3580] = {.lex_state = 448, .external_lex_state = 78}, + [3581] = {.lex_state = 467, .external_lex_state = 80}, + [3582] = {.lex_state = 405, .external_lex_state = 82}, + [3583] = {.lex_state = 448, .external_lex_state = 78}, + [3584] = {.lex_state = 405, .external_lex_state = 82}, + [3585] = {.lex_state = 467, .external_lex_state = 80}, + [3586] = {.lex_state = 435, .external_lex_state = 77}, + [3587] = {.lex_state = 448, .external_lex_state = 81}, + [3588] = {.lex_state = 467, .external_lex_state = 80}, + [3589] = {.lex_state = 467, .external_lex_state = 80}, + [3590] = {.lex_state = 448, .external_lex_state = 81}, + [3591] = {.lex_state = 448, .external_lex_state = 78}, + [3592] = {.lex_state = 448, .external_lex_state = 81}, + [3593] = {.lex_state = 448, .external_lex_state = 81}, + [3594] = {.lex_state = 448, .external_lex_state = 78}, + [3595] = {.lex_state = 448, .external_lex_state = 78}, + [3596] = {.lex_state = 466, .external_lex_state = 83}, + [3597] = {.lex_state = 448, .external_lex_state = 78}, + [3598] = {.lex_state = 448, .external_lex_state = 78}, + [3599] = {.lex_state = 448, .external_lex_state = 78}, + [3600] = {.lex_state = 448, .external_lex_state = 78}, + [3601] = {.lex_state = 466, .external_lex_state = 83}, + [3602] = {.lex_state = 466, .external_lex_state = 83}, + [3603] = {.lex_state = 466, .external_lex_state = 83}, + [3604] = {.lex_state = 448, .external_lex_state = 78}, + [3605] = {.lex_state = 448, .external_lex_state = 78}, + [3606] = {.lex_state = 448, .external_lex_state = 78}, + [3607] = {.lex_state = 448, .external_lex_state = 78}, + [3608] = {.lex_state = 466, .external_lex_state = 83}, + [3609] = {.lex_state = 466, .external_lex_state = 83}, + [3610] = {.lex_state = 466, .external_lex_state = 83}, + [3611] = {.lex_state = 466, .external_lex_state = 83}, + [3612] = {.lex_state = 448, .external_lex_state = 78}, + [3613] = {.lex_state = 448, .external_lex_state = 78}, + [3614] = {.lex_state = 448, .external_lex_state = 78}, + [3615] = {.lex_state = 448, .external_lex_state = 78}, + [3616] = {.lex_state = 466, .external_lex_state = 83}, + [3617] = {.lex_state = 466, .external_lex_state = 83}, + [3618] = {.lex_state = 466, .external_lex_state = 83}, + [3619] = {.lex_state = 466, .external_lex_state = 83}, + [3620] = {.lex_state = 448, .external_lex_state = 78}, + [3621] = {.lex_state = 448, .external_lex_state = 78}, + [3622] = {.lex_state = 448, .external_lex_state = 78}, + [3623] = {.lex_state = 448, .external_lex_state = 78}, + [3624] = {.lex_state = 466, .external_lex_state = 83}, + [3625] = {.lex_state = 466, .external_lex_state = 83}, + [3626] = {.lex_state = 466, .external_lex_state = 83}, + [3627] = {.lex_state = 448, .external_lex_state = 78}, + [3628] = {.lex_state = 448, .external_lex_state = 78}, + [3629] = {.lex_state = 448, .external_lex_state = 78}, + [3630] = {.lex_state = 448, .external_lex_state = 78}, + [3631] = {.lex_state = 466, .external_lex_state = 83}, + [3632] = {.lex_state = 466, .external_lex_state = 83}, + [3633] = {.lex_state = 466, .external_lex_state = 83}, + [3634] = {.lex_state = 448, .external_lex_state = 78}, + [3635] = {.lex_state = 448, .external_lex_state = 78}, + [3636] = {.lex_state = 448, .external_lex_state = 78}, + [3637] = {.lex_state = 448, .external_lex_state = 78}, + [3638] = {.lex_state = 466, .external_lex_state = 83}, + [3639] = {.lex_state = 466, .external_lex_state = 83}, + [3640] = {.lex_state = 466, .external_lex_state = 83}, + [3641] = {.lex_state = 448, .external_lex_state = 78}, + [3642] = {.lex_state = 448, .external_lex_state = 78}, + [3643] = {.lex_state = 448, .external_lex_state = 78}, + [3644] = {.lex_state = 448, .external_lex_state = 78}, + [3645] = {.lex_state = 448, .external_lex_state = 78}, + [3646] = {.lex_state = 466, .external_lex_state = 83}, + [3647] = {.lex_state = 466, .external_lex_state = 83}, + [3648] = {.lex_state = 448, .external_lex_state = 78}, + [3649] = {.lex_state = 448, .external_lex_state = 78}, + [3650] = {.lex_state = 448, .external_lex_state = 78}, + [3651] = {.lex_state = 448, .external_lex_state = 78}, + [3652] = {.lex_state = 448, .external_lex_state = 78}, + [3653] = {.lex_state = 448, .external_lex_state = 78}, + [3654] = {.lex_state = 466, .external_lex_state = 83}, + [3655] = {.lex_state = 448, .external_lex_state = 78}, + [3656] = {.lex_state = 448, .external_lex_state = 78}, + [3657] = {.lex_state = 448, .external_lex_state = 78}, + [3658] = {.lex_state = 448, .external_lex_state = 78}, + [3659] = {.lex_state = 466, .external_lex_state = 83}, + [3660] = {.lex_state = 448, .external_lex_state = 78}, + [3661] = {.lex_state = 448, .external_lex_state = 78}, + [3662] = {.lex_state = 448, .external_lex_state = 78}, + [3663] = {.lex_state = 448, .external_lex_state = 78}, + [3664] = {.lex_state = 466, .external_lex_state = 83}, + [3665] = {.lex_state = 448, .external_lex_state = 78}, + [3666] = {.lex_state = 448, .external_lex_state = 78}, + [3667] = {.lex_state = 448, .external_lex_state = 78}, + [3668] = {.lex_state = 448, .external_lex_state = 78}, + [3669] = {.lex_state = 466, .external_lex_state = 83}, + [3670] = {.lex_state = 448, .external_lex_state = 78}, + [3671] = {.lex_state = 448, .external_lex_state = 78}, + [3672] = {.lex_state = 448, .external_lex_state = 78}, + [3673] = {.lex_state = 448, .external_lex_state = 78}, + [3674] = {.lex_state = 466, .external_lex_state = 83}, + [3675] = {.lex_state = 448, .external_lex_state = 78}, + [3676] = {.lex_state = 448, .external_lex_state = 78}, + [3677] = {.lex_state = 448, .external_lex_state = 78}, + [3678] = {.lex_state = 448, .external_lex_state = 78}, + [3679] = {.lex_state = 466, .external_lex_state = 83}, + [3680] = {.lex_state = 448, .external_lex_state = 78}, + [3681] = {.lex_state = 448, .external_lex_state = 78}, + [3682] = {.lex_state = 448, .external_lex_state = 78}, + [3683] = {.lex_state = 448, .external_lex_state = 78}, + [3684] = {.lex_state = 466, .external_lex_state = 83}, + [3685] = {.lex_state = 448, .external_lex_state = 78}, + [3686] = {.lex_state = 448, .external_lex_state = 78}, + [3687] = {.lex_state = 448, .external_lex_state = 78}, + [3688] = {.lex_state = 448, .external_lex_state = 78}, + [3689] = {.lex_state = 466, .external_lex_state = 83}, + [3690] = {.lex_state = 466, .external_lex_state = 83}, + [3691] = {.lex_state = 466, .external_lex_state = 83}, + [3692] = {.lex_state = 448, .external_lex_state = 78}, + [3693] = {.lex_state = 466, .external_lex_state = 83}, + [3694] = {.lex_state = 448, .external_lex_state = 78}, + [3695] = {.lex_state = 448, .external_lex_state = 78}, + [3696] = {.lex_state = 466, .external_lex_state = 83}, + [3697] = {.lex_state = 466, .external_lex_state = 83}, + [3698] = {.lex_state = 466, .external_lex_state = 83}, + [3699] = {.lex_state = 466, .external_lex_state = 83}, + [3700] = {.lex_state = 466, .external_lex_state = 83}, + [3701] = {.lex_state = 466, .external_lex_state = 83}, + [3702] = {.lex_state = 466, .external_lex_state = 83}, + [3703] = {.lex_state = 466, .external_lex_state = 83}, + [3704] = {.lex_state = 466, .external_lex_state = 83}, + [3705] = {.lex_state = 466, .external_lex_state = 83}, + [3706] = {.lex_state = 466, .external_lex_state = 83}, + [3707] = {.lex_state = 466, .external_lex_state = 83}, + [3708] = {.lex_state = 448, .external_lex_state = 78}, + [3709] = {.lex_state = 466, .external_lex_state = 83}, + [3710] = {.lex_state = 466, .external_lex_state = 83}, + [3711] = {.lex_state = 466, .external_lex_state = 83}, + [3712] = {.lex_state = 466, .external_lex_state = 83}, + [3713] = {.lex_state = 466, .external_lex_state = 83}, + [3714] = {.lex_state = 466, .external_lex_state = 83}, + [3715] = {.lex_state = 466, .external_lex_state = 83}, + [3716] = {.lex_state = 466, .external_lex_state = 83}, + [3717] = {.lex_state = 466, .external_lex_state = 83}, + [3718] = {.lex_state = 466, .external_lex_state = 83}, + [3719] = {.lex_state = 466, .external_lex_state = 83}, + [3720] = {.lex_state = 466, .external_lex_state = 83}, + [3721] = {.lex_state = 466, .external_lex_state = 83}, + [3722] = {.lex_state = 466, .external_lex_state = 83}, + [3723] = {.lex_state = 466, .external_lex_state = 83}, + [3724] = {.lex_state = 466, .external_lex_state = 83}, + [3725] = {.lex_state = 466, .external_lex_state = 83}, + [3726] = {.lex_state = 466, .external_lex_state = 83}, + [3727] = {.lex_state = 466, .external_lex_state = 83}, + [3728] = {.lex_state = 466, .external_lex_state = 83}, + [3729] = {.lex_state = 466, .external_lex_state = 83}, + [3730] = {.lex_state = 466, .external_lex_state = 83}, + [3731] = {.lex_state = 466, .external_lex_state = 83}, + [3732] = {.lex_state = 466, .external_lex_state = 83}, + [3733] = {.lex_state = 448, .external_lex_state = 78}, + [3734] = {.lex_state = 466, .external_lex_state = 83}, + [3735] = {.lex_state = 466, .external_lex_state = 83}, + [3736] = {.lex_state = 466, .external_lex_state = 83}, + [3737] = {.lex_state = 466, .external_lex_state = 83}, + [3738] = {.lex_state = 466, .external_lex_state = 83}, + [3739] = {.lex_state = 466, .external_lex_state = 83}, + [3740] = {.lex_state = 466, .external_lex_state = 83}, + [3741] = {.lex_state = 466, .external_lex_state = 83}, + [3742] = {.lex_state = 448, .external_lex_state = 78}, + [3743] = {.lex_state = 448, .external_lex_state = 78}, + [3744] = {.lex_state = 448, .external_lex_state = 78}, + [3745] = {.lex_state = 448, .external_lex_state = 78}, + [3746] = {.lex_state = 448, .external_lex_state = 78}, + [3747] = {.lex_state = 448, .external_lex_state = 78}, + [3748] = {.lex_state = 448, .external_lex_state = 78}, + [3749] = {.lex_state = 448, .external_lex_state = 78}, + [3750] = {.lex_state = 466, .external_lex_state = 83}, + [3751] = {.lex_state = 466, .external_lex_state = 83}, + [3752] = {.lex_state = 466, .external_lex_state = 83}, + [3753] = {.lex_state = 466, .external_lex_state = 83}, + [3754] = {.lex_state = 466, .external_lex_state = 83}, + [3755] = {.lex_state = 466, .external_lex_state = 83}, + [3756] = {.lex_state = 466, .external_lex_state = 83}, + [3757] = {.lex_state = 466, .external_lex_state = 83}, + [3758] = {.lex_state = 466, .external_lex_state = 83}, + [3759] = {.lex_state = 448, .external_lex_state = 78}, + [3760] = {.lex_state = 448, .external_lex_state = 78}, + [3761] = {.lex_state = 448, .external_lex_state = 78}, + [3762] = {.lex_state = 448, .external_lex_state = 78}, + [3763] = {.lex_state = 448, .external_lex_state = 78}, + [3764] = {.lex_state = 448, .external_lex_state = 78}, + [3765] = {.lex_state = 448, .external_lex_state = 78}, + [3766] = {.lex_state = 448, .external_lex_state = 78}, + [3767] = {.lex_state = 466, .external_lex_state = 83}, + [3768] = {.lex_state = 466, .external_lex_state = 83}, + [3769] = {.lex_state = 466, .external_lex_state = 83}, + [3770] = {.lex_state = 466, .external_lex_state = 83}, + [3771] = {.lex_state = 466, .external_lex_state = 83}, + [3772] = {.lex_state = 448, .external_lex_state = 78}, + [3773] = {.lex_state = 448, .external_lex_state = 78}, + [3774] = {.lex_state = 448, .external_lex_state = 78}, + [3775] = {.lex_state = 448, .external_lex_state = 78}, + [3776] = {.lex_state = 448, .external_lex_state = 78}, + [3777] = {.lex_state = 448, .external_lex_state = 78}, + [3778] = {.lex_state = 448, .external_lex_state = 78}, + [3779] = {.lex_state = 448, .external_lex_state = 78}, + [3780] = {.lex_state = 466, .external_lex_state = 83}, + [3781] = {.lex_state = 466, .external_lex_state = 83}, + [3782] = {.lex_state = 466, .external_lex_state = 83}, + [3783] = {.lex_state = 466, .external_lex_state = 83}, + [3784] = {.lex_state = 466, .external_lex_state = 83}, + [3785] = {.lex_state = 466, .external_lex_state = 83}, + [3786] = {.lex_state = 448, .external_lex_state = 78}, + [3787] = {.lex_state = 448, .external_lex_state = 78}, + [3788] = {.lex_state = 448, .external_lex_state = 78}, + [3789] = {.lex_state = 448, .external_lex_state = 78}, + [3790] = {.lex_state = 448, .external_lex_state = 78}, + [3791] = {.lex_state = 448, .external_lex_state = 78}, + [3792] = {.lex_state = 448, .external_lex_state = 78}, + [3793] = {.lex_state = 448, .external_lex_state = 78}, + [3794] = {.lex_state = 466, .external_lex_state = 83}, + [3795] = {.lex_state = 466, .external_lex_state = 83}, + [3796] = {.lex_state = 466, .external_lex_state = 83}, + [3797] = {.lex_state = 466, .external_lex_state = 83}, + [3798] = {.lex_state = 466, .external_lex_state = 83}, + [3799] = {.lex_state = 466, .external_lex_state = 83}, + [3800] = {.lex_state = 448, .external_lex_state = 78}, + [3801] = {.lex_state = 466, .external_lex_state = 83}, + [3802] = {.lex_state = 466, .external_lex_state = 83}, + [3803] = {.lex_state = 466, .external_lex_state = 83}, + [3804] = {.lex_state = 466, .external_lex_state = 83}, + [3805] = {.lex_state = 466, .external_lex_state = 83}, + [3806] = {.lex_state = 466, .external_lex_state = 83}, + [3807] = {.lex_state = 466, .external_lex_state = 83}, + [3808] = {.lex_state = 466, .external_lex_state = 83}, + [3809] = {.lex_state = 466, .external_lex_state = 83}, + [3810] = {.lex_state = 466, .external_lex_state = 83}, + [3811] = {.lex_state = 466, .external_lex_state = 83}, + [3812] = {.lex_state = 466, .external_lex_state = 83}, + [3813] = {.lex_state = 466, .external_lex_state = 83}, + [3814] = {.lex_state = 448, .external_lex_state = 78}, + [3815] = {.lex_state = 448, .external_lex_state = 78}, + [3816] = {.lex_state = 448, .external_lex_state = 78}, + [3817] = {.lex_state = 448, .external_lex_state = 78}, + [3818] = {.lex_state = 466, .external_lex_state = 83}, + [3819] = {.lex_state = 466, .external_lex_state = 83}, + [3820] = {.lex_state = 95, .external_lex_state = 84}, + [3821] = {.lex_state = 466, .external_lex_state = 83}, + [3822] = {.lex_state = 466, .external_lex_state = 83}, + [3823] = {.lex_state = 466, .external_lex_state = 83}, + [3824] = {.lex_state = 466, .external_lex_state = 83}, + [3825] = {.lex_state = 96, .external_lex_state = 85}, + [3826] = {.lex_state = 466, .external_lex_state = 83}, + [3827] = {.lex_state = 466, .external_lex_state = 83}, + [3828] = {.lex_state = 466, .external_lex_state = 83}, + [3829] = {.lex_state = 466, .external_lex_state = 83}, + [3830] = {.lex_state = 466, .external_lex_state = 83}, + [3831] = {.lex_state = 466, .external_lex_state = 83}, + [3832] = {.lex_state = 466, .external_lex_state = 83}, + [3833] = {.lex_state = 466, .external_lex_state = 83}, + [3834] = {.lex_state = 466, .external_lex_state = 83}, + [3835] = {.lex_state = 466, .external_lex_state = 83}, + [3836] = {.lex_state = 466, .external_lex_state = 83}, + [3837] = {.lex_state = 466, .external_lex_state = 83}, + [3838] = {.lex_state = 466, .external_lex_state = 83}, + [3839] = {.lex_state = 466, .external_lex_state = 83}, + [3840] = {.lex_state = 466, .external_lex_state = 83}, + [3841] = {.lex_state = 466, .external_lex_state = 83}, + [3842] = {.lex_state = 466, .external_lex_state = 83}, + [3843] = {.lex_state = 466, .external_lex_state = 83}, + [3844] = {.lex_state = 466, .external_lex_state = 83}, + [3845] = {.lex_state = 466, .external_lex_state = 83}, + [3846] = {.lex_state = 466, .external_lex_state = 83}, + [3847] = {.lex_state = 466, .external_lex_state = 83}, + [3848] = {.lex_state = 466, .external_lex_state = 83}, + [3849] = {.lex_state = 466, .external_lex_state = 83}, + [3850] = {.lex_state = 466, .external_lex_state = 83}, + [3851] = {.lex_state = 466, .external_lex_state = 83}, + [3852] = {.lex_state = 466, .external_lex_state = 83}, + [3853] = {.lex_state = 466, .external_lex_state = 83}, + [3854] = {.lex_state = 466, .external_lex_state = 83}, + [3855] = {.lex_state = 466, .external_lex_state = 83}, + [3856] = {.lex_state = 466, .external_lex_state = 83}, + [3857] = {.lex_state = 466, .external_lex_state = 83}, + [3858] = {.lex_state = 466, .external_lex_state = 83}, + [3859] = {.lex_state = 466, .external_lex_state = 83}, + [3860] = {.lex_state = 466, .external_lex_state = 83}, + [3861] = {.lex_state = 448, .external_lex_state = 78}, + [3862] = {.lex_state = 466, .external_lex_state = 83}, + [3863] = {.lex_state = 466, .external_lex_state = 83}, + [3864] = {.lex_state = 466, .external_lex_state = 83}, + [3865] = {.lex_state = 448, .external_lex_state = 78}, + [3866] = {.lex_state = 448, .external_lex_state = 78}, + [3867] = {.lex_state = 466, .external_lex_state = 83}, + [3868] = {.lex_state = 448, .external_lex_state = 78}, + [3869] = {.lex_state = 466, .external_lex_state = 83}, + [3870] = {.lex_state = 448, .external_lex_state = 78}, + [3871] = {.lex_state = 466, .external_lex_state = 83}, + [3872] = {.lex_state = 466, .external_lex_state = 83}, + [3873] = {.lex_state = 466, .external_lex_state = 83}, + [3874] = {.lex_state = 469, .external_lex_state = 86}, + [3875] = {.lex_state = 466, .external_lex_state = 83}, + [3876] = {.lex_state = 466, .external_lex_state = 83}, + [3877] = {.lex_state = 466, .external_lex_state = 83}, + [3878] = {.lex_state = 466, .external_lex_state = 83}, + [3879] = {.lex_state = 466, .external_lex_state = 83}, + [3880] = {.lex_state = 466, .external_lex_state = 83}, + [3881] = {.lex_state = 466, .external_lex_state = 83}, + [3882] = {.lex_state = 466, .external_lex_state = 83}, + [3883] = {.lex_state = 466, .external_lex_state = 83}, + [3884] = {.lex_state = 466, .external_lex_state = 83}, + [3885] = {.lex_state = 466, .external_lex_state = 83}, + [3886] = {.lex_state = 466, .external_lex_state = 83}, + [3887] = {.lex_state = 448, .external_lex_state = 78}, + [3888] = {.lex_state = 448, .external_lex_state = 78}, + [3889] = {.lex_state = 448, .external_lex_state = 78}, + [3890] = {.lex_state = 448, .external_lex_state = 78}, + [3891] = {.lex_state = 466, .external_lex_state = 83}, + [3892] = {.lex_state = 466, .external_lex_state = 83}, + [3893] = {.lex_state = 466, .external_lex_state = 83}, + [3894] = {.lex_state = 466, .external_lex_state = 83}, + [3895] = {.lex_state = 466, .external_lex_state = 83}, + [3896] = {.lex_state = 466, .external_lex_state = 83}, + [3897] = {.lex_state = 466, .external_lex_state = 83}, + [3898] = {.lex_state = 466, .external_lex_state = 83}, + [3899] = {.lex_state = 466, .external_lex_state = 83}, + [3900] = {.lex_state = 466, .external_lex_state = 83}, + [3901] = {.lex_state = 466, .external_lex_state = 83}, + [3902] = {.lex_state = 466, .external_lex_state = 83}, + [3903] = {.lex_state = 466, .external_lex_state = 83}, + [3904] = {.lex_state = 466, .external_lex_state = 83}, + [3905] = {.lex_state = 448, .external_lex_state = 78}, + [3906] = {.lex_state = 448, .external_lex_state = 78}, + [3907] = {.lex_state = 466, .external_lex_state = 83}, + [3908] = {.lex_state = 448, .external_lex_state = 78}, + [3909] = {.lex_state = 448, .external_lex_state = 78}, + [3910] = {.lex_state = 448, .external_lex_state = 78}, + [3911] = {.lex_state = 466, .external_lex_state = 83}, + [3912] = {.lex_state = 466, .external_lex_state = 83}, + [3913] = {.lex_state = 466, .external_lex_state = 83}, + [3914] = {.lex_state = 466, .external_lex_state = 83}, + [3915] = {.lex_state = 466, .external_lex_state = 83}, + [3916] = {.lex_state = 466, .external_lex_state = 83}, + [3917] = {.lex_state = 448, .external_lex_state = 78}, + [3918] = {.lex_state = 466, .external_lex_state = 83}, + [3919] = {.lex_state = 466, .external_lex_state = 83}, + [3920] = {.lex_state = 466, .external_lex_state = 83}, + [3921] = {.lex_state = 466, .external_lex_state = 83}, + [3922] = {.lex_state = 466, .external_lex_state = 83}, + [3923] = {.lex_state = 93, .external_lex_state = 87}, + [3924] = {.lex_state = 466, .external_lex_state = 83}, + [3925] = {.lex_state = 466, .external_lex_state = 83}, + [3926] = {.lex_state = 448, .external_lex_state = 78}, + [3927] = {.lex_state = 448, .external_lex_state = 78}, + [3928] = {.lex_state = 93, .external_lex_state = 87}, + [3929] = {.lex_state = 448, .external_lex_state = 78}, + [3930] = {.lex_state = 448, .external_lex_state = 78}, + [3931] = {.lex_state = 466, .external_lex_state = 83}, + [3932] = {.lex_state = 466, .external_lex_state = 83}, + [3933] = {.lex_state = 448, .external_lex_state = 78}, + [3934] = {.lex_state = 466, .external_lex_state = 83}, + [3935] = {.lex_state = 466, .external_lex_state = 83}, + [3936] = {.lex_state = 466, .external_lex_state = 83}, + [3937] = {.lex_state = 466, .external_lex_state = 83}, + [3938] = {.lex_state = 466, .external_lex_state = 83}, + [3939] = {.lex_state = 448, .external_lex_state = 78}, + [3940] = {.lex_state = 466, .external_lex_state = 83}, + [3941] = {.lex_state = 466, .external_lex_state = 83}, + [3942] = {.lex_state = 448, .external_lex_state = 78}, + [3943] = {.lex_state = 448, .external_lex_state = 78}, + [3944] = {.lex_state = 448, .external_lex_state = 78}, + [3945] = {.lex_state = 448, .external_lex_state = 78}, + [3946] = {.lex_state = 448, .external_lex_state = 78}, + [3947] = {.lex_state = 448, .external_lex_state = 78}, + [3948] = {.lex_state = 448, .external_lex_state = 78}, + [3949] = {.lex_state = 448, .external_lex_state = 78}, + [3950] = {.lex_state = 93, .external_lex_state = 87}, + [3951] = {.lex_state = 448, .external_lex_state = 78}, + [3952] = {.lex_state = 466, .external_lex_state = 83}, + [3953] = {.lex_state = 466, .external_lex_state = 83}, + [3954] = {.lex_state = 466, .external_lex_state = 83}, + [3955] = {.lex_state = 448, .external_lex_state = 78}, + [3956] = {.lex_state = 466, .external_lex_state = 83}, + [3957] = {.lex_state = 466, .external_lex_state = 83}, + [3958] = {.lex_state = 466, .external_lex_state = 83}, + [3959] = {.lex_state = 466, .external_lex_state = 83}, + [3960] = {.lex_state = 448, .external_lex_state = 78}, + [3961] = {.lex_state = 448, .external_lex_state = 78}, + [3962] = {.lex_state = 448, .external_lex_state = 78}, + [3963] = {.lex_state = 448, .external_lex_state = 78}, + [3964] = {.lex_state = 466, .external_lex_state = 83}, + [3965] = {.lex_state = 448, .external_lex_state = 78}, + [3966] = {.lex_state = 448, .external_lex_state = 78}, + [3967] = {.lex_state = 448, .external_lex_state = 78}, + [3968] = {.lex_state = 93, .external_lex_state = 87}, + [3969] = {.lex_state = 466, .external_lex_state = 83}, + [3970] = {.lex_state = 466, .external_lex_state = 83}, + [3971] = {.lex_state = 466, .external_lex_state = 83}, + [3972] = {.lex_state = 95, .external_lex_state = 88}, + [3973] = {.lex_state = 95, .external_lex_state = 84}, + [3974] = {.lex_state = 95, .external_lex_state = 84}, + [3975] = {.lex_state = 95, .external_lex_state = 84}, + [3976] = {.lex_state = 95, .external_lex_state = 84}, + [3977] = {.lex_state = 95, .external_lex_state = 88}, + [3978] = {.lex_state = 95, .external_lex_state = 84}, + [3979] = {.lex_state = 95, .external_lex_state = 84}, + [3980] = {.lex_state = 95, .external_lex_state = 84}, + [3981] = {.lex_state = 95, .external_lex_state = 84}, + [3982] = {.lex_state = 95, .external_lex_state = 88}, + [3983] = {.lex_state = 93, .external_lex_state = 87}, + [3984] = {.lex_state = 95, .external_lex_state = 84}, + [3985] = {.lex_state = 95, .external_lex_state = 89}, + [3986] = {.lex_state = 95, .external_lex_state = 84}, + [3987] = {.lex_state = 93, .external_lex_state = 87}, + [3988] = {.lex_state = 93, .external_lex_state = 87}, + [3989] = {.lex_state = 95, .external_lex_state = 88}, + [3990] = {.lex_state = 95, .external_lex_state = 84}, + [3991] = {.lex_state = 96, .external_lex_state = 62}, + [3992] = {.lex_state = 507, .external_lex_state = 89}, + [3993] = {.lex_state = 96, .external_lex_state = 84}, + [3994] = {.lex_state = 95, .external_lex_state = 88}, + [3995] = {.lex_state = 96, .external_lex_state = 85}, + [3996] = {.lex_state = 96, .external_lex_state = 85}, + [3997] = {.lex_state = 95, .external_lex_state = 88}, + [3998] = {.lex_state = 96, .external_lex_state = 85}, + [3999] = {.lex_state = 96, .external_lex_state = 62}, + [4000] = {.lex_state = 509, .external_lex_state = 90}, + [4001] = {.lex_state = 96, .external_lex_state = 85}, + [4002] = {.lex_state = 96, .external_lex_state = 85}, + [4003] = {.lex_state = 264, .external_lex_state = 91}, + [4004] = {.lex_state = 264, .external_lex_state = 91}, + [4005] = {.lex_state = 96, .external_lex_state = 90}, + [4006] = {.lex_state = 95, .external_lex_state = 84}, + [4007] = {.lex_state = 509, .external_lex_state = 90}, + [4008] = {.lex_state = 509, .external_lex_state = 90}, + [4009] = {.lex_state = 95, .external_lex_state = 84}, + [4010] = {.lex_state = 95, .external_lex_state = 84}, + [4011] = {.lex_state = 96, .external_lex_state = 84}, + [4012] = {.lex_state = 96, .external_lex_state = 84}, + [4013] = {.lex_state = 96, .external_lex_state = 66}, + [4014] = {.lex_state = 509, .external_lex_state = 90}, + [4015] = {.lex_state = 96, .external_lex_state = 84}, + [4016] = {.lex_state = 509, .external_lex_state = 90}, + [4017] = {.lex_state = 509, .external_lex_state = 90}, + [4018] = {.lex_state = 509, .external_lex_state = 90}, + [4019] = {.lex_state = 509, .external_lex_state = 90}, + [4020] = {.lex_state = 509, .external_lex_state = 90}, + [4021] = {.lex_state = 96, .external_lex_state = 85}, + [4022] = {.lex_state = 95, .external_lex_state = 89}, + [4023] = {.lex_state = 95, .external_lex_state = 89}, + [4024] = {.lex_state = 507, .external_lex_state = 89}, + [4025] = {.lex_state = 96, .external_lex_state = 85}, + [4026] = {.lex_state = 96, .external_lex_state = 84}, + [4027] = {.lex_state = 509, .external_lex_state = 90}, + [4028] = {.lex_state = 95, .external_lex_state = 89}, + [4029] = {.lex_state = 509, .external_lex_state = 90}, + [4030] = {.lex_state = 96, .external_lex_state = 89}, + [4031] = {.lex_state = 96, .external_lex_state = 90}, + [4032] = {.lex_state = 95, .external_lex_state = 88}, + [4033] = {.lex_state = 95, .external_lex_state = 84}, + [4034] = {.lex_state = 95, .external_lex_state = 84}, + [4035] = {.lex_state = 95, .external_lex_state = 92}, + [4036] = {.lex_state = 95, .external_lex_state = 89}, + [4037] = {.lex_state = 95, .external_lex_state = 89}, + [4038] = {.lex_state = 96, .external_lex_state = 90}, + [4039] = {.lex_state = 96, .external_lex_state = 62}, + [4040] = {.lex_state = 96, .external_lex_state = 90}, + [4041] = {.lex_state = 95, .external_lex_state = 89}, + [4042] = {.lex_state = 95, .external_lex_state = 89}, + [4043] = {.lex_state = 96, .external_lex_state = 66}, + [4044] = {.lex_state = 469, .external_lex_state = 93}, + [4045] = {.lex_state = 469, .external_lex_state = 93}, + [4046] = {.lex_state = 509, .external_lex_state = 90}, + [4047] = {.lex_state = 96, .external_lex_state = 62}, + [4048] = {.lex_state = 95, .external_lex_state = 88}, + [4049] = {.lex_state = 95, .external_lex_state = 89}, + [4050] = {.lex_state = 95, .external_lex_state = 89}, + [4051] = {.lex_state = 509, .external_lex_state = 90}, + [4052] = {.lex_state = 508, .external_lex_state = 92}, + [4053] = {.lex_state = 96, .external_lex_state = 85}, + [4054] = {.lex_state = 96, .external_lex_state = 85}, + [4055] = {.lex_state = 95, .external_lex_state = 89}, + [4056] = {.lex_state = 95, .external_lex_state = 84}, + [4057] = {.lex_state = 95, .external_lex_state = 89}, + [4058] = {.lex_state = 95, .external_lex_state = 84}, + [4059] = {.lex_state = 509, .external_lex_state = 89}, + [4060] = {.lex_state = 509, .external_lex_state = 90}, + [4061] = {.lex_state = 96, .external_lex_state = 85}, + [4062] = {.lex_state = 469, .external_lex_state = 93}, + [4063] = {.lex_state = 469, .external_lex_state = 93}, + [4064] = {.lex_state = 508, .external_lex_state = 92}, + [4065] = {.lex_state = 507, .external_lex_state = 89}, + [4066] = {.lex_state = 95, .external_lex_state = 92}, + [4067] = {.lex_state = 95, .external_lex_state = 88}, + [4068] = {.lex_state = 507, .external_lex_state = 89}, + [4069] = {.lex_state = 507, .external_lex_state = 89}, + [4070] = {.lex_state = 96, .external_lex_state = 85}, + [4071] = {.lex_state = 95, .external_lex_state = 84}, + [4072] = {.lex_state = 96, .external_lex_state = 84}, + [4073] = {.lex_state = 95, .external_lex_state = 84}, + [4074] = {.lex_state = 95, .external_lex_state = 84}, + [4075] = {.lex_state = 95, .external_lex_state = 84}, + [4076] = {.lex_state = 507, .external_lex_state = 89}, + [4077] = {.lex_state = 507, .external_lex_state = 89}, + [4078] = {.lex_state = 96, .external_lex_state = 85}, + [4079] = {.lex_state = 96, .external_lex_state = 85}, + [4080] = {.lex_state = 96, .external_lex_state = 85}, + [4081] = {.lex_state = 96, .external_lex_state = 90}, + [4082] = {.lex_state = 96, .external_lex_state = 84}, + [4083] = {.lex_state = 96, .external_lex_state = 85}, + [4084] = {.lex_state = 507, .external_lex_state = 89}, + [4085] = {.lex_state = 95, .external_lex_state = 84}, + [4086] = {.lex_state = 95, .external_lex_state = 84}, + [4087] = {.lex_state = 95, .external_lex_state = 84}, + [4088] = {.lex_state = 507, .external_lex_state = 89}, + [4089] = {.lex_state = 96, .external_lex_state = 85}, + [4090] = {.lex_state = 507, .external_lex_state = 89}, + [4091] = {.lex_state = 508, .external_lex_state = 92}, + [4092] = {.lex_state = 509, .external_lex_state = 90}, + [4093] = {.lex_state = 96, .external_lex_state = 85}, + [4094] = {.lex_state = 96, .external_lex_state = 85}, + [4095] = {.lex_state = 96, .external_lex_state = 85}, + [4096] = {.lex_state = 95, .external_lex_state = 92}, + [4097] = {.lex_state = 95, .external_lex_state = 84}, + [4098] = {.lex_state = 96, .external_lex_state = 84}, + [4099] = {.lex_state = 95, .external_lex_state = 84}, + [4100] = {.lex_state = 95, .external_lex_state = 92}, + [4101] = {.lex_state = 507, .external_lex_state = 89}, + [4102] = {.lex_state = 507, .external_lex_state = 89}, + [4103] = {.lex_state = 507, .external_lex_state = 89}, + [4104] = {.lex_state = 95, .external_lex_state = 84}, + [4105] = {.lex_state = 507, .external_lex_state = 89}, + [4106] = {.lex_state = 95, .external_lex_state = 92}, + [4107] = {.lex_state = 507, .external_lex_state = 89}, + [4108] = {.lex_state = 507, .external_lex_state = 89}, + [4109] = {.lex_state = 507, .external_lex_state = 89}, + [4110] = {.lex_state = 507, .external_lex_state = 89}, + [4111] = {.lex_state = 507, .external_lex_state = 89}, + [4112] = {.lex_state = 96, .external_lex_state = 84}, + [4113] = {.lex_state = 507, .external_lex_state = 89}, + [4114] = {.lex_state = 507, .external_lex_state = 89}, + [4115] = {.lex_state = 507, .external_lex_state = 89}, + [4116] = {.lex_state = 95, .external_lex_state = 92}, + [4117] = {.lex_state = 96, .external_lex_state = 85}, + [4118] = {.lex_state = 95, .external_lex_state = 88}, + [4119] = {.lex_state = 96, .external_lex_state = 85}, + [4120] = {.lex_state = 96, .external_lex_state = 85}, + [4121] = {.lex_state = 508, .external_lex_state = 92}, + [4122] = {.lex_state = 96, .external_lex_state = 84}, + [4123] = {.lex_state = 95, .external_lex_state = 84}, + [4124] = {.lex_state = 509, .external_lex_state = 90}, + [4125] = {.lex_state = 510, .external_lex_state = 66}, + [4126] = {.lex_state = 95, .external_lex_state = 84}, + [4127] = {.lex_state = 509, .external_lex_state = 90}, + [4128] = {.lex_state = 509, .external_lex_state = 90}, + [4129] = {.lex_state = 509, .external_lex_state = 90}, + [4130] = {.lex_state = 95, .external_lex_state = 88}, + [4131] = {.lex_state = 509, .external_lex_state = 90}, + [4132] = {.lex_state = 509, .external_lex_state = 90}, + [4133] = {.lex_state = 96, .external_lex_state = 85}, + [4134] = {.lex_state = 508, .external_lex_state = 92}, + [4135] = {.lex_state = 95, .external_lex_state = 88}, + [4136] = {.lex_state = 95, .external_lex_state = 88}, + [4137] = {.lex_state = 509, .external_lex_state = 90}, + [4138] = {.lex_state = 96, .external_lex_state = 85}, + [4139] = {.lex_state = 95, .external_lex_state = 88}, + [4140] = {.lex_state = 96, .external_lex_state = 84}, + [4141] = {.lex_state = 96, .external_lex_state = 84}, + [4142] = {.lex_state = 507, .external_lex_state = 89}, + [4143] = {.lex_state = 510, .external_lex_state = 66}, + [4144] = {.lex_state = 509, .external_lex_state = 90}, + [4145] = {.lex_state = 96, .external_lex_state = 90}, + [4146] = {.lex_state = 509, .external_lex_state = 89}, + [4147] = {.lex_state = 96, .external_lex_state = 90}, + [4148] = {.lex_state = 96, .external_lex_state = 90}, + [4149] = {.lex_state = 507, .external_lex_state = 92}, + [4150] = {.lex_state = 96, .external_lex_state = 84}, + [4151] = {.lex_state = 96, .external_lex_state = 84}, + [4152] = {.lex_state = 509, .external_lex_state = 90}, [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}, + [4154] = {.lex_state = 509, .external_lex_state = 90}, + [4155] = {.lex_state = 95, .external_lex_state = 89}, + [4156] = {.lex_state = 95, .external_lex_state = 89}, + [4157] = {.lex_state = 509, .external_lex_state = 90}, + [4158] = {.lex_state = 509, .external_lex_state = 90}, + [4159] = {.lex_state = 507, .external_lex_state = 92}, + [4160] = {.lex_state = 96, .external_lex_state = 88}, + [4161] = {.lex_state = 96, .external_lex_state = 90}, + [4162] = {.lex_state = 95, .external_lex_state = 89}, [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}, + [4164] = {.lex_state = 96, .external_lex_state = 89}, + [4165] = {.lex_state = 96, .external_lex_state = 90}, + [4166] = {.lex_state = 507, .external_lex_state = 89}, + [4167] = {.lex_state = 95, .external_lex_state = 89}, + [4168] = {.lex_state = 507, .external_lex_state = 89}, + [4169] = {.lex_state = 95, .external_lex_state = 92}, + [4170] = {.lex_state = 96, .external_lex_state = 90}, + [4171] = {.lex_state = 509, .external_lex_state = 89}, + [4172] = {.lex_state = 509, .external_lex_state = 89}, + [4173] = {.lex_state = 96, .external_lex_state = 89}, + [4174] = {.lex_state = 96, .external_lex_state = 89}, + [4175] = {.lex_state = 95, .external_lex_state = 92}, + [4176] = {.lex_state = 95, .external_lex_state = 92}, + [4177] = {.lex_state = 509, .external_lex_state = 89}, + [4178] = {.lex_state = 96, .external_lex_state = 90}, + [4179] = {.lex_state = 509, .external_lex_state = 89}, + [4180] = {.lex_state = 96, .external_lex_state = 90}, + [4181] = {.lex_state = 96, .external_lex_state = 84}, + [4182] = {.lex_state = 96, .external_lex_state = 84}, + [4183] = {.lex_state = 96, .external_lex_state = 84}, + [4184] = {.lex_state = 509, .external_lex_state = 66}, + [4185] = {.lex_state = 96, .external_lex_state = 88}, + [4186] = {.lex_state = 95, .external_lex_state = 92}, + [4187] = {.lex_state = 509, .external_lex_state = 89}, + [4188] = {.lex_state = 96, .external_lex_state = 84}, + [4189] = {.lex_state = 96, .external_lex_state = 88}, + [4190] = {.lex_state = 469, .external_lex_state = 71}, + [4191] = {.lex_state = 509, .external_lex_state = 89}, + [4192] = {.lex_state = 96, .external_lex_state = 66}, + [4193] = {.lex_state = 469, .external_lex_state = 71}, + [4194] = {.lex_state = 508, .external_lex_state = 92}, + [4195] = {.lex_state = 96, .external_lex_state = 84}, + [4196] = {.lex_state = 507, .external_lex_state = 89}, + [4197] = {.lex_state = 96, .external_lex_state = 84}, + [4198] = {.lex_state = 507, .external_lex_state = 89}, + [4199] = {.lex_state = 96, .external_lex_state = 84}, + [4200] = {.lex_state = 508, .external_lex_state = 92}, + [4201] = {.lex_state = 95, .external_lex_state = 92}, + [4202] = {.lex_state = 96, .external_lex_state = 88}, + [4203] = {.lex_state = 96, .external_lex_state = 84}, + [4204] = {.lex_state = 96, .external_lex_state = 88}, + [4205] = {.lex_state = 507, .external_lex_state = 89}, + [4206] = {.lex_state = 96, .external_lex_state = 88}, + [4207] = {.lex_state = 510, .external_lex_state = 66}, + [4208] = {.lex_state = 507, .external_lex_state = 89}, + [4209] = {.lex_state = 469, .external_lex_state = 71}, + [4210] = {.lex_state = 469, .external_lex_state = 71}, + [4211] = {.lex_state = 96, .external_lex_state = 89}, + [4212] = {.lex_state = 509, .external_lex_state = 89}, + [4213] = {.lex_state = 96, .external_lex_state = 84}, + [4214] = {.lex_state = 96, .external_lex_state = 89}, + [4215] = {.lex_state = 96, .external_lex_state = 84}, + [4216] = {.lex_state = 96, .external_lex_state = 84}, + [4217] = {.lex_state = 509, .external_lex_state = 89}, + [4218] = {.lex_state = 95, .external_lex_state = 89}, + [4219] = {.lex_state = 95, .external_lex_state = 89}, + [4220] = {.lex_state = 507, .external_lex_state = 89}, + [4221] = {.lex_state = 510, .external_lex_state = 92}, + [4222] = {.lex_state = 96, .external_lex_state = 89}, + [4223] = {.lex_state = 96, .external_lex_state = 89}, + [4224] = {.lex_state = 96, .external_lex_state = 66}, + [4225] = {.lex_state = 507, .external_lex_state = 89}, + [4226] = {.lex_state = 96, .external_lex_state = 90}, + [4227] = {.lex_state = 510, .external_lex_state = 92}, + [4228] = {.lex_state = 96, .external_lex_state = 90}, + [4229] = {.lex_state = 508, .external_lex_state = 92}, + [4230] = {.lex_state = 96, .external_lex_state = 89}, + [4231] = {.lex_state = 96, .external_lex_state = 84}, + [4232] = {.lex_state = 507, .external_lex_state = 89}, + [4233] = {.lex_state = 507, .external_lex_state = 92}, + [4234] = {.lex_state = 95, .external_lex_state = 89}, + [4235] = {.lex_state = 95, .external_lex_state = 89}, + [4236] = {.lex_state = 509, .external_lex_state = 89}, + [4237] = {.lex_state = 510, .external_lex_state = 92}, + [4238] = {.lex_state = 96, .external_lex_state = 90}, + [4239] = {.lex_state = 96, .external_lex_state = 90}, + [4240] = {.lex_state = 509, .external_lex_state = 89}, + [4241] = {.lex_state = 507, .external_lex_state = 92}, + [4242] = {.lex_state = 509, .external_lex_state = 89}, + [4243] = {.lex_state = 96, .external_lex_state = 88}, + [4244] = {.lex_state = 507, .external_lex_state = 89}, + [4245] = {.lex_state = 96, .external_lex_state = 84}, + [4246] = {.lex_state = 507, .external_lex_state = 89}, + [4247] = {.lex_state = 96, .external_lex_state = 84}, + [4248] = {.lex_state = 95, .external_lex_state = 92}, + [4249] = {.lex_state = 507, .external_lex_state = 92}, + [4250] = {.lex_state = 509, .external_lex_state = 89}, + [4251] = {.lex_state = 95, .external_lex_state = 89}, + [4252] = {.lex_state = 95, .external_lex_state = 89}, + [4253] = {.lex_state = 96, .external_lex_state = 89}, + [4254] = {.lex_state = 509, .external_lex_state = 89}, + [4255] = {.lex_state = 95, .external_lex_state = 89}, + [4256] = {.lex_state = 95, .external_lex_state = 89}, + [4257] = {.lex_state = 509, .external_lex_state = 89}, + [4258] = {.lex_state = 96, .external_lex_state = 89}, + [4259] = {.lex_state = 96, .external_lex_state = 84}, + [4260] = {.lex_state = 95, .external_lex_state = 89}, + [4261] = {.lex_state = 509, .external_lex_state = 89}, + [4262] = {.lex_state = 96, .external_lex_state = 84}, + [4263] = {.lex_state = 96, .external_lex_state = 90}, + [4264] = {.lex_state = 509, .external_lex_state = 89}, + [4265] = {.lex_state = 96, .external_lex_state = 90}, + [4266] = {.lex_state = 96, .external_lex_state = 62}, + [4267] = {.lex_state = 509, .external_lex_state = 90}, [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}, + [4269] = {.lex_state = 96, .external_lex_state = 90}, + [4270] = {.lex_state = 509, .external_lex_state = 90}, + [4271] = {.lex_state = 96, .external_lex_state = 90}, + [4272] = {.lex_state = 509, .external_lex_state = 66}, + [4273] = {.lex_state = 95, .external_lex_state = 89}, + [4274] = {.lex_state = 507, .external_lex_state = 89}, + [4275] = {.lex_state = 509, .external_lex_state = 89}, + [4276] = {.lex_state = 509, .external_lex_state = 89}, + [4277] = {.lex_state = 509, .external_lex_state = 89}, + [4278] = {.lex_state = 95, .external_lex_state = 89}, + [4279] = {.lex_state = 95, .external_lex_state = 89}, + [4280] = {.lex_state = 96, .external_lex_state = 90}, + [4281] = {.lex_state = 509, .external_lex_state = 66}, + [4282] = {.lex_state = 96, .external_lex_state = 90}, + [4283] = {.lex_state = 96, .external_lex_state = 90}, + [4284] = {.lex_state = 509, .external_lex_state = 66}, + [4285] = {.lex_state = 510, .external_lex_state = 92}, + [4286] = {.lex_state = 507, .external_lex_state = 89}, + [4287] = {.lex_state = 509, .external_lex_state = 89}, + [4288] = {.lex_state = 509, .external_lex_state = 90}, + [4289] = {.lex_state = 507, .external_lex_state = 92}, + [4290] = {.lex_state = 507, .external_lex_state = 92}, + [4291] = {.lex_state = 95, .external_lex_state = 89}, + [4292] = {.lex_state = 507, .external_lex_state = 92}, + [4293] = {.lex_state = 96, .external_lex_state = 88}, + [4294] = {.lex_state = 507, .external_lex_state = 89}, + [4295] = {.lex_state = 507, .external_lex_state = 89}, + [4296] = {.lex_state = 507, .external_lex_state = 89}, + [4297] = {.lex_state = 507, .external_lex_state = 89}, + [4298] = {.lex_state = 507, .external_lex_state = 89}, + [4299] = {.lex_state = 507, .external_lex_state = 89}, + [4300] = {.lex_state = 507, .external_lex_state = 89}, + [4301] = {.lex_state = 507, .external_lex_state = 89}, + [4302] = {.lex_state = 509, .external_lex_state = 90}, + [4303] = {.lex_state = 95, .external_lex_state = 89}, + [4304] = {.lex_state = 510, .external_lex_state = 92}, + [4305] = {.lex_state = 507, .external_lex_state = 92}, + [4306] = {.lex_state = 509, .external_lex_state = 90}, + [4307] = {.lex_state = 509, .external_lex_state = 90}, + [4308] = {.lex_state = 509, .external_lex_state = 90}, + [4309] = {.lex_state = 507, .external_lex_state = 92}, + [4310] = {.lex_state = 507, .external_lex_state = 92}, + [4311] = {.lex_state = 509, .external_lex_state = 90}, + [4312] = {.lex_state = 508, .external_lex_state = 92}, + [4313] = {.lex_state = 508, .external_lex_state = 92}, + [4314] = {.lex_state = 508, .external_lex_state = 92}, + [4315] = {.lex_state = 509, .external_lex_state = 90}, + [4316] = {.lex_state = 508, .external_lex_state = 92}, + [4317] = {.lex_state = 507, .external_lex_state = 92}, + [4318] = {.lex_state = 507, .external_lex_state = 89}, + [4319] = {.lex_state = 507, .external_lex_state = 89}, + [4320] = {.lex_state = 95, .external_lex_state = 88}, + [4321] = {.lex_state = 95, .external_lex_state = 89}, + [4322] = {.lex_state = 510, .external_lex_state = 66}, + [4323] = {.lex_state = 510, .external_lex_state = 66}, + [4324] = {.lex_state = 507, .external_lex_state = 89}, + [4325] = {.lex_state = 507, .external_lex_state = 89}, + [4326] = {.lex_state = 507, .external_lex_state = 89}, + [4327] = {.lex_state = 507, .external_lex_state = 89}, + [4328] = {.lex_state = 507, .external_lex_state = 89}, + [4329] = {.lex_state = 507, .external_lex_state = 89}, + [4330] = {.lex_state = 507, .external_lex_state = 89}, + [4331] = {.lex_state = 507, .external_lex_state = 89}, + [4332] = {.lex_state = 96, .external_lex_state = 88}, + [4333] = {.lex_state = 96, .external_lex_state = 84}, + [4334] = {.lex_state = 95, .external_lex_state = 92}, + [4335] = {.lex_state = 509, .external_lex_state = 89}, + [4336] = {.lex_state = 509, .external_lex_state = 89}, + [4337] = {.lex_state = 510, .external_lex_state = 92}, + [4338] = {.lex_state = 509, .external_lex_state = 90}, + [4339] = {.lex_state = 96, .external_lex_state = 92}, + [4340] = {.lex_state = 96, .external_lex_state = 66}, + [4341] = {.lex_state = 95, .external_lex_state = 92}, + [4342] = {.lex_state = 96, .external_lex_state = 89}, + [4343] = {.lex_state = 508, .external_lex_state = 92}, + [4344] = {.lex_state = 95, .external_lex_state = 88}, + [4345] = {.lex_state = 96, .external_lex_state = 92}, + [4346] = {.lex_state = 507, .external_lex_state = 89}, + [4347] = {.lex_state = 507, .external_lex_state = 92}, + [4348] = {.lex_state = 507, .external_lex_state = 89}, + [4349] = {.lex_state = 509, .external_lex_state = 89}, + [4350] = {.lex_state = 462, .external_lex_state = 94}, + [4351] = {.lex_state = 509, .external_lex_state = 89}, + [4352] = {.lex_state = 96, .external_lex_state = 89}, + [4353] = {.lex_state = 96, .external_lex_state = 89}, + [4354] = {.lex_state = 509, .external_lex_state = 89}, + [4355] = {.lex_state = 96, .external_lex_state = 89}, + [4356] = {.lex_state = 509, .external_lex_state = 89}, + [4357] = {.lex_state = 96, .external_lex_state = 89}, + [4358] = {.lex_state = 96, .external_lex_state = 89}, + [4359] = {.lex_state = 95, .external_lex_state = 88}, + [4360] = {.lex_state = 507, .external_lex_state = 92}, + [4361] = {.lex_state = 508, .external_lex_state = 92}, + [4362] = {.lex_state = 95, .external_lex_state = 88}, + [4363] = {.lex_state = 95, .external_lex_state = 88}, + [4364] = {.lex_state = 292, .external_lex_state = 95}, + [4365] = {.lex_state = 95, .external_lex_state = 88}, + [4366] = {.lex_state = 508, .external_lex_state = 92}, + [4367] = {.lex_state = 292, .external_lex_state = 95}, + [4368] = {.lex_state = 508, .external_lex_state = 92}, + [4369] = {.lex_state = 507, .external_lex_state = 92}, + [4370] = {.lex_state = 508, .external_lex_state = 92}, + [4371] = {.lex_state = 509, .external_lex_state = 89}, + [4372] = {.lex_state = 509, .external_lex_state = 89}, + [4373] = {.lex_state = 462, .external_lex_state = 94}, + [4374] = {.lex_state = 507, .external_lex_state = 92}, + [4375] = {.lex_state = 508, .external_lex_state = 92}, + [4376] = {.lex_state = 95, .external_lex_state = 88}, + [4377] = {.lex_state = 96, .external_lex_state = 89}, + [4378] = {.lex_state = 96, .external_lex_state = 89}, + [4379] = {.lex_state = 95, .external_lex_state = 88}, + [4380] = {.lex_state = 96, .external_lex_state = 88}, + [4381] = {.lex_state = 292, .external_lex_state = 95}, + [4382] = {.lex_state = 96, .external_lex_state = 92}, + [4383] = {.lex_state = 96, .external_lex_state = 92}, + [4384] = {.lex_state = 95, .external_lex_state = 88}, + [4385] = {.lex_state = 96, .external_lex_state = 92}, + [4386] = {.lex_state = 96, .external_lex_state = 88}, + [4387] = {.lex_state = 509, .external_lex_state = 90}, + [4388] = {.lex_state = 507, .external_lex_state = 92}, + [4389] = {.lex_state = 507, .external_lex_state = 92}, + [4390] = {.lex_state = 462, .external_lex_state = 94}, + [4391] = {.lex_state = 509, .external_lex_state = 89}, + [4392] = {.lex_state = 509, .external_lex_state = 89}, + [4393] = {.lex_state = 509, .external_lex_state = 89}, + [4394] = {.lex_state = 509, .external_lex_state = 89}, + [4395] = {.lex_state = 95, .external_lex_state = 88}, + [4396] = {.lex_state = 509, .external_lex_state = 89}, + [4397] = {.lex_state = 509, .external_lex_state = 89}, + [4398] = {.lex_state = 95, .external_lex_state = 88}, + [4399] = {.lex_state = 508, .external_lex_state = 92}, + [4400] = {.lex_state = 509, .external_lex_state = 89}, + [4401] = {.lex_state = 96, .external_lex_state = 89}, + [4402] = {.lex_state = 508, .external_lex_state = 92}, + [4403] = {.lex_state = 509, .external_lex_state = 90}, + [4404] = {.lex_state = 509, .external_lex_state = 89}, + [4405] = {.lex_state = 96, .external_lex_state = 92}, + [4406] = {.lex_state = 509, .external_lex_state = 89}, + [4407] = {.lex_state = 509, .external_lex_state = 89}, + [4408] = {.lex_state = 509, .external_lex_state = 89}, + [4409] = {.lex_state = 509, .external_lex_state = 89}, + [4410] = {.lex_state = 509, .external_lex_state = 89}, + [4411] = {.lex_state = 510, .external_lex_state = 92}, + [4412] = {.lex_state = 507, .external_lex_state = 92}, + [4413] = {.lex_state = 510, .external_lex_state = 66}, + [4414] = {.lex_state = 96, .external_lex_state = 92}, + [4415] = {.lex_state = 462, .external_lex_state = 94}, + [4416] = {.lex_state = 507, .external_lex_state = 92}, + [4417] = {.lex_state = 462, .external_lex_state = 94}, + [4418] = {.lex_state = 507, .external_lex_state = 92}, + [4419] = {.lex_state = 509, .external_lex_state = 90}, + [4420] = {.lex_state = 507, .external_lex_state = 92}, + [4421] = {.lex_state = 95, .external_lex_state = 88}, + [4422] = {.lex_state = 95, .external_lex_state = 88}, + [4423] = {.lex_state = 510, .external_lex_state = 66}, + [4424] = {.lex_state = 508, .external_lex_state = 92}, + [4425] = {.lex_state = 508, .external_lex_state = 92}, + [4426] = {.lex_state = 96, .external_lex_state = 89}, + [4427] = {.lex_state = 510, .external_lex_state = 66}, + [4428] = {.lex_state = 96, .external_lex_state = 89}, + [4429] = {.lex_state = 292, .external_lex_state = 95}, + [4430] = {.lex_state = 96, .external_lex_state = 89}, + [4431] = {.lex_state = 96, .external_lex_state = 89}, + [4432] = {.lex_state = 509, .external_lex_state = 66}, + [4433] = {.lex_state = 508, .external_lex_state = 92}, + [4434] = {.lex_state = 509, .external_lex_state = 66}, + [4435] = {.lex_state = 96, .external_lex_state = 89}, + [4436] = {.lex_state = 507, .external_lex_state = 92}, + [4437] = {.lex_state = 508, .external_lex_state = 92}, + [4438] = {.lex_state = 95, .external_lex_state = 88}, + [4439] = {.lex_state = 507, .external_lex_state = 92}, + [4440] = {.lex_state = 508, .external_lex_state = 92}, + [4441] = {.lex_state = 292, .external_lex_state = 95}, + [4442] = {.lex_state = 96, .external_lex_state = 89}, + [4443] = {.lex_state = 95, .external_lex_state = 88}, + [4444] = {.lex_state = 508, .external_lex_state = 92}, + [4445] = {.lex_state = 96, .external_lex_state = 62}, + [4446] = {.lex_state = 507, .external_lex_state = 89}, + [4447] = {.lex_state = 507, .external_lex_state = 89}, + [4448] = {.lex_state = 507, .external_lex_state = 89}, + [4449] = {.lex_state = 507, .external_lex_state = 89}, + [4450] = {.lex_state = 507, .external_lex_state = 89}, + [4451] = {.lex_state = 507, .external_lex_state = 89}, + [4452] = {.lex_state = 507, .external_lex_state = 89}, + [4453] = {.lex_state = 507, .external_lex_state = 89}, + [4454] = {.lex_state = 96, .external_lex_state = 62}, + [4455] = {.lex_state = 95, .external_lex_state = 88}, + [4456] = {.lex_state = 96, .external_lex_state = 89}, + [4457] = {.lex_state = 508, .external_lex_state = 92}, + [4458] = {.lex_state = 96, .external_lex_state = 62}, + [4459] = {.lex_state = 508, .external_lex_state = 92}, + [4460] = {.lex_state = 462, .external_lex_state = 94}, + [4461] = {.lex_state = 508, .external_lex_state = 92}, + [4462] = {.lex_state = 462, .external_lex_state = 94}, + [4463] = {.lex_state = 96, .external_lex_state = 89}, + [4464] = {.lex_state = 96, .external_lex_state = 92}, + [4465] = {.lex_state = 462, .external_lex_state = 94}, + [4466] = {.lex_state = 95, .external_lex_state = 88}, + [4467] = {.lex_state = 96, .external_lex_state = 89}, + [4468] = {.lex_state = 95, .external_lex_state = 88}, + [4469] = {.lex_state = 96, .external_lex_state = 88}, + [4470] = {.lex_state = 507, .external_lex_state = 92}, + [4471] = {.lex_state = 509, .external_lex_state = 89}, + [4472] = {.lex_state = 509, .external_lex_state = 89}, + [4473] = {.lex_state = 509, .external_lex_state = 89}, + [4474] = {.lex_state = 509, .external_lex_state = 89}, + [4475] = {.lex_state = 462, .external_lex_state = 94}, + [4476] = {.lex_state = 96, .external_lex_state = 89}, + [4477] = {.lex_state = 508, .external_lex_state = 92}, + [4478] = {.lex_state = 509, .external_lex_state = 89}, + [4479] = {.lex_state = 95, .external_lex_state = 88}, + [4480] = {.lex_state = 96, .external_lex_state = 88}, + [4481] = {.lex_state = 292, .external_lex_state = 95}, + [4482] = {.lex_state = 508, .external_lex_state = 92}, + [4483] = {.lex_state = 509, .external_lex_state = 89}, + [4484] = {.lex_state = 509, .external_lex_state = 89}, + [4485] = {.lex_state = 509, .external_lex_state = 89}, + [4486] = {.lex_state = 509, .external_lex_state = 89}, + [4487] = {.lex_state = 509, .external_lex_state = 89}, + [4488] = {.lex_state = 508, .external_lex_state = 92}, + [4489] = {.lex_state = 509, .external_lex_state = 89}, + [4490] = {.lex_state = 508, .external_lex_state = 92}, + [4491] = {.lex_state = 96, .external_lex_state = 92}, + [4492] = {.lex_state = 507, .external_lex_state = 92}, + [4493] = {.lex_state = 462, .external_lex_state = 94}, + [4494] = {.lex_state = 462, .external_lex_state = 94}, + [4495] = {.lex_state = 95, .external_lex_state = 92}, + [4496] = {.lex_state = 96, .external_lex_state = 92}, + [4497] = {.lex_state = 444, .external_lex_state = 96}, + [4498] = {.lex_state = 444, .external_lex_state = 96}, + [4499] = {.lex_state = 444, .external_lex_state = 96}, + [4500] = {.lex_state = 510, .external_lex_state = 92}, + [4501] = {.lex_state = 95, .external_lex_state = 92}, + [4502] = {.lex_state = 96, .external_lex_state = 92}, + [4503] = {.lex_state = 510, .external_lex_state = 92}, + [4504] = {.lex_state = 444, .external_lex_state = 96}, + [4505] = {.lex_state = 510, .external_lex_state = 92}, + [4506] = {.lex_state = 444, .external_lex_state = 96}, + [4507] = {.lex_state = 444, .external_lex_state = 96}, + [4508] = {.lex_state = 444, .external_lex_state = 96}, + [4509] = {.lex_state = 95, .external_lex_state = 92}, + [4510] = {.lex_state = 509, .external_lex_state = 92}, + [4511] = {.lex_state = 96, .external_lex_state = 88}, + [4512] = {.lex_state = 444, .external_lex_state = 96}, + [4513] = {.lex_state = 96, .external_lex_state = 88}, + [4514] = {.lex_state = 444, .external_lex_state = 96}, + [4515] = {.lex_state = 96, .external_lex_state = 66}, + [4516] = {.lex_state = 444, .external_lex_state = 96}, + [4517] = {.lex_state = 96, .external_lex_state = 66}, + [4518] = {.lex_state = 444, .external_lex_state = 96}, + [4519] = {.lex_state = 95, .external_lex_state = 92}, + [4520] = {.lex_state = 444, .external_lex_state = 96}, + [4521] = {.lex_state = 96, .external_lex_state = 88}, + [4522] = {.lex_state = 96, .external_lex_state = 88}, + [4523] = {.lex_state = 444, .external_lex_state = 96}, + [4524] = {.lex_state = 444, .external_lex_state = 96}, + [4525] = {.lex_state = 509, .external_lex_state = 92}, + [4526] = {.lex_state = 444, .external_lex_state = 96}, + [4527] = {.lex_state = 444, .external_lex_state = 96}, + [4528] = {.lex_state = 96, .external_lex_state = 88}, + [4529] = {.lex_state = 510, .external_lex_state = 92}, + [4530] = {.lex_state = 444, .external_lex_state = 96}, + [4531] = {.lex_state = 510, .external_lex_state = 92}, + [4532] = {.lex_state = 444, .external_lex_state = 96}, + [4533] = {.lex_state = 510, .external_lex_state = 92}, + [4534] = {.lex_state = 444, .external_lex_state = 96}, + [4535] = {.lex_state = 444, .external_lex_state = 96}, + [4536] = {.lex_state = 95, .external_lex_state = 92}, + [4537] = {.lex_state = 444, .external_lex_state = 96}, + [4538] = {.lex_state = 510, .external_lex_state = 92}, + [4539] = {.lex_state = 96, .external_lex_state = 88}, + [4540] = {.lex_state = 96, .external_lex_state = 88}, + [4541] = {.lex_state = 444, .external_lex_state = 96}, + [4542] = {.lex_state = 510, .external_lex_state = 92}, + [4543] = {.lex_state = 96, .external_lex_state = 88}, + [4544] = {.lex_state = 96, .external_lex_state = 88}, + [4545] = {.lex_state = 444, .external_lex_state = 96}, + [4546] = {.lex_state = 510, .external_lex_state = 92}, + [4547] = {.lex_state = 509, .external_lex_state = 92}, + [4548] = {.lex_state = 444, .external_lex_state = 96}, + [4549] = {.lex_state = 96, .external_lex_state = 88}, + [4550] = {.lex_state = 444, .external_lex_state = 96}, + [4551] = {.lex_state = 444, .external_lex_state = 96}, + [4552] = {.lex_state = 96, .external_lex_state = 88}, + [4553] = {.lex_state = 95, .external_lex_state = 92}, + [4554] = {.lex_state = 96, .external_lex_state = 88}, + [4555] = {.lex_state = 96, .external_lex_state = 88}, + [4556] = {.lex_state = 509, .external_lex_state = 92}, + [4557] = {.lex_state = 444, .external_lex_state = 96}, + [4558] = {.lex_state = 510, .external_lex_state = 92}, + [4559] = {.lex_state = 444, .external_lex_state = 96}, + [4560] = {.lex_state = 96, .external_lex_state = 88}, + [4561] = {.lex_state = 96, .external_lex_state = 88}, + [4562] = {.lex_state = 96, .external_lex_state = 88}, + [4563] = {.lex_state = 444, .external_lex_state = 96}, + [4564] = {.lex_state = 444, .external_lex_state = 96}, + [4565] = {.lex_state = 444, .external_lex_state = 96}, + [4566] = {.lex_state = 95, .external_lex_state = 92}, + [4567] = {.lex_state = 444, .external_lex_state = 96}, + [4568] = {.lex_state = 95, .external_lex_state = 92}, + [4569] = {.lex_state = 510, .external_lex_state = 92}, + [4570] = {.lex_state = 444, .external_lex_state = 96}, + [4571] = {.lex_state = 96, .external_lex_state = 88}, + [4572] = {.lex_state = 444, .external_lex_state = 96}, + [4573] = {.lex_state = 510, .external_lex_state = 92}, + [4574] = {.lex_state = 510, .external_lex_state = 92}, + [4575] = {.lex_state = 444, .external_lex_state = 96}, + [4576] = {.lex_state = 96, .external_lex_state = 88}, + [4577] = {.lex_state = 292, .external_lex_state = 95}, + [4578] = {.lex_state = 96, .external_lex_state = 88}, + [4579] = {.lex_state = 95, .external_lex_state = 92}, + [4580] = {.lex_state = 444, .external_lex_state = 96}, + [4581] = {.lex_state = 95, .external_lex_state = 92}, + [4582] = {.lex_state = 95, .external_lex_state = 92}, + [4583] = {.lex_state = 444, .external_lex_state = 96}, + [4584] = {.lex_state = 292, .external_lex_state = 95}, + [4585] = {.lex_state = 292, .external_lex_state = 95}, + [4586] = {.lex_state = 509, .external_lex_state = 92}, + [4587] = {.lex_state = 510, .external_lex_state = 92}, + [4588] = {.lex_state = 510, .external_lex_state = 92}, + [4589] = {.lex_state = 444, .external_lex_state = 96}, + [4590] = {.lex_state = 444, .external_lex_state = 96}, + [4591] = {.lex_state = 444, .external_lex_state = 96}, + [4592] = {.lex_state = 292, .external_lex_state = 95}, + [4593] = {.lex_state = 510, .external_lex_state = 92}, + [4594] = {.lex_state = 444, .external_lex_state = 96}, + [4595] = {.lex_state = 96, .external_lex_state = 88}, + [4596] = {.lex_state = 96, .external_lex_state = 88}, + [4597] = {.lex_state = 292, .external_lex_state = 95}, + [4598] = {.lex_state = 444, .external_lex_state = 96}, + [4599] = {.lex_state = 96, .external_lex_state = 88}, + [4600] = {.lex_state = 444, .external_lex_state = 96}, + [4601] = {.lex_state = 510, .external_lex_state = 92}, + [4602] = {.lex_state = 444, .external_lex_state = 96}, + [4603] = {.lex_state = 444, .external_lex_state = 96}, + [4604] = {.lex_state = 509, .external_lex_state = 92}, + [4605] = {.lex_state = 444, .external_lex_state = 96}, + [4606] = {.lex_state = 444, .external_lex_state = 96}, + [4607] = {.lex_state = 444, .external_lex_state = 96}, + [4608] = {.lex_state = 444, .external_lex_state = 96}, + [4609] = {.lex_state = 444, .external_lex_state = 96}, + [4610] = {.lex_state = 509, .external_lex_state = 92}, + [4611] = {.lex_state = 444, .external_lex_state = 96}, + [4612] = {.lex_state = 444, .external_lex_state = 96}, + [4613] = {.lex_state = 444, .external_lex_state = 96}, + [4614] = {.lex_state = 444, .external_lex_state = 96}, + [4615] = {.lex_state = 444, .external_lex_state = 96}, + [4616] = {.lex_state = 444, .external_lex_state = 96}, + [4617] = {.lex_state = 292, .external_lex_state = 95}, + [4618] = {.lex_state = 95, .external_lex_state = 92}, + [4619] = {.lex_state = 95, .external_lex_state = 92}, + [4620] = {.lex_state = 444, .external_lex_state = 96}, + [4621] = {.lex_state = 292, .external_lex_state = 95}, + [4622] = {.lex_state = 462, .external_lex_state = 94}, + [4623] = {.lex_state = 444, .external_lex_state = 96}, + [4624] = {.lex_state = 510, .external_lex_state = 92}, + [4625] = {.lex_state = 462, .external_lex_state = 94}, + [4626] = {.lex_state = 462, .external_lex_state = 94}, + [4627] = {.lex_state = 510, .external_lex_state = 92}, + [4628] = {.lex_state = 510, .external_lex_state = 92}, + [4629] = {.lex_state = 510, .external_lex_state = 92}, + [4630] = {.lex_state = 444, .external_lex_state = 96}, + [4631] = {.lex_state = 96, .external_lex_state = 88}, + [4632] = {.lex_state = 96, .external_lex_state = 88}, + [4633] = {.lex_state = 96, .external_lex_state = 66}, + [4634] = {.lex_state = 96, .external_lex_state = 88}, + [4635] = {.lex_state = 96, .external_lex_state = 88}, + [4636] = {.lex_state = 510, .external_lex_state = 92}, + [4637] = {.lex_state = 510, .external_lex_state = 92}, + [4638] = {.lex_state = 444, .external_lex_state = 96}, + [4639] = {.lex_state = 510, .external_lex_state = 92}, + [4640] = {.lex_state = 95, .external_lex_state = 92}, + [4641] = {.lex_state = 510, .external_lex_state = 92}, + [4642] = {.lex_state = 95, .external_lex_state = 92}, + [4643] = {.lex_state = 95, .external_lex_state = 92}, + [4644] = {.lex_state = 96, .external_lex_state = 88}, + [4645] = {.lex_state = 444, .external_lex_state = 96}, + [4646] = {.lex_state = 510, .external_lex_state = 92}, + [4647] = {.lex_state = 510, .external_lex_state = 92}, + [4648] = {.lex_state = 462, .external_lex_state = 94}, + [4649] = {.lex_state = 292, .external_lex_state = 95}, + [4650] = {.lex_state = 292, .external_lex_state = 95}, + [4651] = {.lex_state = 292, .external_lex_state = 95}, + [4652] = {.lex_state = 96, .external_lex_state = 88}, + [4653] = {.lex_state = 444, .external_lex_state = 96}, + [4654] = {.lex_state = 292, .external_lex_state = 95}, + [4655] = {.lex_state = 292, .external_lex_state = 95}, + [4656] = {.lex_state = 96, .external_lex_state = 88}, + [4657] = {.lex_state = 292, .external_lex_state = 95}, + [4658] = {.lex_state = 292, .external_lex_state = 95}, + [4659] = {.lex_state = 462, .external_lex_state = 94}, + [4660] = {.lex_state = 462, .external_lex_state = 94}, + [4661] = {.lex_state = 510, .external_lex_state = 92}, + [4662] = {.lex_state = 510, .external_lex_state = 92}, + [4663] = {.lex_state = 444, .external_lex_state = 96}, + [4664] = {.lex_state = 509, .external_lex_state = 89}, + [4665] = {.lex_state = 292, .external_lex_state = 95}, + [4666] = {.lex_state = 509, .external_lex_state = 89}, + [4667] = {.lex_state = 292, .external_lex_state = 95}, + [4668] = {.lex_state = 510, .external_lex_state = 92}, + [4669] = {.lex_state = 444, .external_lex_state = 96}, + [4670] = {.lex_state = 507, .external_lex_state = 92}, + [4671] = {.lex_state = 507, .external_lex_state = 92}, + [4672] = {.lex_state = 507, .external_lex_state = 92}, + [4673] = {.lex_state = 95, .external_lex_state = 92}, + [4674] = {.lex_state = 96, .external_lex_state = 88}, + [4675] = {.lex_state = 510, .external_lex_state = 92}, + [4676] = {.lex_state = 510, .external_lex_state = 92}, + [4677] = {.lex_state = 510, .external_lex_state = 92}, + [4678] = {.lex_state = 444, .external_lex_state = 96}, + [4679] = {.lex_state = 510, .external_lex_state = 92}, + [4680] = {.lex_state = 444, .external_lex_state = 96}, + [4681] = {.lex_state = 292, .external_lex_state = 95}, + [4682] = {.lex_state = 292, .external_lex_state = 95}, + [4683] = {.lex_state = 292, .external_lex_state = 95}, + [4684] = {.lex_state = 96, .external_lex_state = 88}, + [4685] = {.lex_state = 96, .external_lex_state = 88}, + [4686] = {.lex_state = 96, .external_lex_state = 88}, + [4687] = {.lex_state = 509, .external_lex_state = 89}, + [4688] = {.lex_state = 509, .external_lex_state = 89}, + [4689] = {.lex_state = 509, .external_lex_state = 89}, + [4690] = {.lex_state = 509, .external_lex_state = 89}, + [4691] = {.lex_state = 510, .external_lex_state = 92}, + [4692] = {.lex_state = 444, .external_lex_state = 96}, + [4693] = {.lex_state = 510, .external_lex_state = 92}, + [4694] = {.lex_state = 510, .external_lex_state = 92}, + [4695] = {.lex_state = 509, .external_lex_state = 92}, + [4696] = {.lex_state = 510, .external_lex_state = 92}, + [4697] = {.lex_state = 509, .external_lex_state = 89}, + [4698] = {.lex_state = 509, .external_lex_state = 89}, + [4699] = {.lex_state = 509, .external_lex_state = 89}, + [4700] = {.lex_state = 509, .external_lex_state = 89}, + [4701] = {.lex_state = 96, .external_lex_state = 92}, + [4702] = {.lex_state = 444, .external_lex_state = 96}, + [4703] = {.lex_state = 462, .external_lex_state = 94}, + [4704] = {.lex_state = 96, .external_lex_state = 88}, + [4705] = {.lex_state = 96, .external_lex_state = 88}, + [4706] = {.lex_state = 510, .external_lex_state = 92}, + [4707] = {.lex_state = 510, .external_lex_state = 92}, + [4708] = {.lex_state = 444, .external_lex_state = 96}, + [4709] = {.lex_state = 96, .external_lex_state = 92}, + [4710] = {.lex_state = 96, .external_lex_state = 88}, + [4711] = {.lex_state = 96, .external_lex_state = 88}, + [4712] = {.lex_state = 96, .external_lex_state = 88}, + [4713] = {.lex_state = 95, .external_lex_state = 92}, + [4714] = {.lex_state = 510, .external_lex_state = 92}, + [4715] = {.lex_state = 444, .external_lex_state = 96}, + [4716] = {.lex_state = 96, .external_lex_state = 88}, + [4717] = {.lex_state = 96, .external_lex_state = 92}, + [4718] = {.lex_state = 96, .external_lex_state = 92}, + [4719] = {.lex_state = 96, .external_lex_state = 92}, + [4720] = {.lex_state = 509, .external_lex_state = 92}, + [4721] = {.lex_state = 510, .external_lex_state = 92}, + [4722] = {.lex_state = 96, .external_lex_state = 92}, + [4723] = {.lex_state = 96, .external_lex_state = 92}, + [4724] = {.lex_state = 96, .external_lex_state = 92}, + [4725] = {.lex_state = 96, .external_lex_state = 92}, + [4726] = {.lex_state = 96, .external_lex_state = 92}, + [4727] = {.lex_state = 96, .external_lex_state = 92}, + [4728] = {.lex_state = 96, .external_lex_state = 92}, + [4729] = {.lex_state = 509, .external_lex_state = 92}, + [4730] = {.lex_state = 509, .external_lex_state = 92}, + [4731] = {.lex_state = 96, .external_lex_state = 92}, + [4732] = {.lex_state = 96, .external_lex_state = 92}, + [4733] = {.lex_state = 96, .external_lex_state = 92}, + [4734] = {.lex_state = 474, .external_lex_state = 97}, + [4735] = {.lex_state = 96, .external_lex_state = 92}, + [4736] = {.lex_state = 509, .external_lex_state = 92}, + [4737] = {.lex_state = 96, .external_lex_state = 92}, + [4738] = {.lex_state = 96, .external_lex_state = 92}, + [4739] = {.lex_state = 509, .external_lex_state = 92}, + [4740] = {.lex_state = 509, .external_lex_state = 92}, + [4741] = {.lex_state = 96, .external_lex_state = 92}, + [4742] = {.lex_state = 96, .external_lex_state = 92}, + [4743] = {.lex_state = 96, .external_lex_state = 92}, + [4744] = {.lex_state = 96, .external_lex_state = 92}, + [4745] = {.lex_state = 96, .external_lex_state = 92}, + [4746] = {.lex_state = 96, .external_lex_state = 92}, + [4747] = {.lex_state = 96, .external_lex_state = 90}, + [4748] = {.lex_state = 291, .external_lex_state = 70}, + [4749] = {.lex_state = 96, .external_lex_state = 92}, + [4750] = {.lex_state = 96, .external_lex_state = 92}, + [4751] = {.lex_state = 96, .external_lex_state = 92}, + [4752] = {.lex_state = 96, .external_lex_state = 92}, + [4753] = {.lex_state = 96, .external_lex_state = 92}, + [4754] = {.lex_state = 95, .external_lex_state = 89}, + [4755] = {.lex_state = 96, .external_lex_state = 92}, + [4756] = {.lex_state = 291, .external_lex_state = 70}, + [4757] = {.lex_state = 96, .external_lex_state = 92}, + [4758] = {.lex_state = 509, .external_lex_state = 92}, + [4759] = {.lex_state = 509, .external_lex_state = 92}, + [4760] = {.lex_state = 96, .external_lex_state = 92}, + [4761] = {.lex_state = 96, .external_lex_state = 92}, + [4762] = {.lex_state = 96, .external_lex_state = 92}, + [4763] = {.lex_state = 510, .external_lex_state = 92}, + [4764] = {.lex_state = 96, .external_lex_state = 92}, + [4765] = {.lex_state = 96, .external_lex_state = 92}, + [4766] = {.lex_state = 96, .external_lex_state = 92}, + [4767] = {.lex_state = 96, .external_lex_state = 92}, + [4768] = {.lex_state = 96, .external_lex_state = 92}, + [4769] = {.lex_state = 96, .external_lex_state = 92}, + [4770] = {.lex_state = 96, .external_lex_state = 92}, + [4771] = {.lex_state = 462, .external_lex_state = 94}, + [4772] = {.lex_state = 474, .external_lex_state = 97}, + [4773] = {.lex_state = 462, .external_lex_state = 94}, + [4774] = {.lex_state = 462, .external_lex_state = 94}, + [4775] = {.lex_state = 462, .external_lex_state = 94}, + [4776] = {.lex_state = 509, .external_lex_state = 92}, + [4777] = {.lex_state = 474, .external_lex_state = 97}, + [4778] = {.lex_state = 462, .external_lex_state = 94}, + [4779] = {.lex_state = 509, .external_lex_state = 92}, + [4780] = {.lex_state = 509, .external_lex_state = 92}, + [4781] = {.lex_state = 451, .external_lex_state = 98}, + [4782] = {.lex_state = 462, .external_lex_state = 94}, + [4783] = {.lex_state = 451, .external_lex_state = 98}, + [4784] = {.lex_state = 451, .external_lex_state = 98}, + [4785] = {.lex_state = 510, .external_lex_state = 92}, + [4786] = {.lex_state = 474, .external_lex_state = 97}, + [4787] = {.lex_state = 451, .external_lex_state = 98}, + [4788] = {.lex_state = 451, .external_lex_state = 98}, + [4789] = {.lex_state = 462, .external_lex_state = 94}, + [4790] = {.lex_state = 462, .external_lex_state = 94}, + [4791] = {.lex_state = 95, .external_lex_state = 92}, + [4792] = {.lex_state = 474, .external_lex_state = 97}, + [4793] = {.lex_state = 462, .external_lex_state = 94}, + [4794] = {.lex_state = 463, .external_lex_state = 99}, + [4795] = {.lex_state = 474, .external_lex_state = 97}, + [4796] = {.lex_state = 451, .external_lex_state = 98}, + [4797] = {.lex_state = 462, .external_lex_state = 94}, + [4798] = {.lex_state = 474, .external_lex_state = 97}, + [4799] = {.lex_state = 510, .external_lex_state = 92}, + [4800] = {.lex_state = 474, .external_lex_state = 97}, + [4801] = {.lex_state = 462, .external_lex_state = 94}, + [4802] = {.lex_state = 462, .external_lex_state = 94}, + [4803] = {.lex_state = 462, .external_lex_state = 94}, + [4804] = {.lex_state = 95, .external_lex_state = 92}, + [4805] = {.lex_state = 95, .external_lex_state = 92}, + [4806] = {.lex_state = 462, .external_lex_state = 94}, + [4807] = {.lex_state = 462, .external_lex_state = 94}, + [4808] = {.lex_state = 462, .external_lex_state = 94}, + [4809] = {.lex_state = 462, .external_lex_state = 94}, + [4810] = {.lex_state = 462, .external_lex_state = 94}, + [4811] = {.lex_state = 462, .external_lex_state = 94}, + [4812] = {.lex_state = 462, .external_lex_state = 94}, + [4813] = {.lex_state = 462, .external_lex_state = 94}, + [4814] = {.lex_state = 462, .external_lex_state = 94}, + [4815] = {.lex_state = 462, .external_lex_state = 94}, + [4816] = {.lex_state = 471, .external_lex_state = 97}, + [4817] = {.lex_state = 462, .external_lex_state = 94}, + [4818] = {.lex_state = 472, .external_lex_state = 100}, + [4819] = {.lex_state = 475, .external_lex_state = 101}, + [4820] = {.lex_state = 95, .external_lex_state = 92}, + [4821] = {.lex_state = 462, .external_lex_state = 94}, + [4822] = {.lex_state = 509, .external_lex_state = 92}, + [4823] = {.lex_state = 474, .external_lex_state = 97}, + [4824] = {.lex_state = 462, .external_lex_state = 94}, + [4825] = {.lex_state = 439, .external_lex_state = 102}, + [4826] = {.lex_state = 462, .external_lex_state = 94}, + [4827] = {.lex_state = 462, .external_lex_state = 94}, + [4828] = {.lex_state = 281, .external_lex_state = 95}, + [4829] = {.lex_state = 281, .external_lex_state = 95}, + [4830] = {.lex_state = 291, .external_lex_state = 70}, + [4831] = {.lex_state = 462, .external_lex_state = 94}, + [4832] = {.lex_state = 462, .external_lex_state = 94}, + [4833] = {.lex_state = 462, .external_lex_state = 94}, + [4834] = {.lex_state = 96, .external_lex_state = 90}, + [4835] = {.lex_state = 462, .external_lex_state = 94}, + [4836] = {.lex_state = 462, .external_lex_state = 94}, + [4837] = {.lex_state = 96, .external_lex_state = 90}, [4838] = {.lex_state = 95, .external_lex_state = 92}, - [4839] = {.lex_state = 516, .external_lex_state = 92}, - [4840] = {.lex_state = 516, .external_lex_state = 92}, + [4839] = {.lex_state = 96, .external_lex_state = 90}, + [4840] = {.lex_state = 95, .external_lex_state = 89}, [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}, + [4842] = {.lex_state = 95, .external_lex_state = 89}, + [4843] = {.lex_state = 96, .external_lex_state = 89}, + [4844] = {.lex_state = 96, .external_lex_state = 90}, + [4845] = {.lex_state = 509, .external_lex_state = 92}, + [4846] = {.lex_state = 462, .external_lex_state = 94}, + [4847] = {.lex_state = 509, .external_lex_state = 92}, + [4848] = {.lex_state = 281, .external_lex_state = 95}, + [4849] = {.lex_state = 281, .external_lex_state = 95}, + [4850] = {.lex_state = 281, .external_lex_state = 95}, + [4851] = {.lex_state = 462, .external_lex_state = 94}, + [4852] = {.lex_state = 474, .external_lex_state = 97}, + [4853] = {.lex_state = 462, .external_lex_state = 94}, + [4854] = {.lex_state = 474, .external_lex_state = 97}, + [4855] = {.lex_state = 462, .external_lex_state = 94}, + [4856] = {.lex_state = 96, .external_lex_state = 66}, + [4857] = {.lex_state = 96, .external_lex_state = 66}, + [4858] = {.lex_state = 95, .external_lex_state = 89}, + [4859] = {.lex_state = 95, .external_lex_state = 89}, + [4860] = {.lex_state = 95, .external_lex_state = 89}, + [4861] = {.lex_state = 95, .external_lex_state = 89}, + [4862] = {.lex_state = 95, .external_lex_state = 89}, + [4863] = {.lex_state = 95, .external_lex_state = 89}, + [4864] = {.lex_state = 95, .external_lex_state = 89}, + [4865] = {.lex_state = 95, .external_lex_state = 89}, + [4866] = {.lex_state = 474, .external_lex_state = 97}, + [4867] = {.lex_state = 462, .external_lex_state = 94}, + [4868] = {.lex_state = 462, .external_lex_state = 94}, + [4869] = {.lex_state = 439, .external_lex_state = 102}, + [4870] = {.lex_state = 474, .external_lex_state = 100}, + [4871] = {.lex_state = 460, .external_lex_state = 67}, + [4872] = {.lex_state = 509, .external_lex_state = 92}, + [4873] = {.lex_state = 474, .external_lex_state = 97}, + [4874] = {.lex_state = 451, .external_lex_state = 98}, + [4875] = {.lex_state = 451, .external_lex_state = 98}, + [4876] = {.lex_state = 451, .external_lex_state = 98}, + [4877] = {.lex_state = 460, .external_lex_state = 67}, + [4878] = {.lex_state = 474, .external_lex_state = 97}, + [4879] = {.lex_state = 460, .external_lex_state = 67}, + [4880] = {.lex_state = 460, .external_lex_state = 67}, + [4881] = {.lex_state = 439, .external_lex_state = 102}, + [4882] = {.lex_state = 474, .external_lex_state = 97}, + [4883] = {.lex_state = 451, .external_lex_state = 98}, + [4884] = {.lex_state = 451, .external_lex_state = 98}, + [4885] = {.lex_state = 460, .external_lex_state = 67}, + [4886] = {.lex_state = 451, .external_lex_state = 98}, + [4887] = {.lex_state = 94, .external_lex_state = 103}, + [4888] = {.lex_state = 439, .external_lex_state = 104}, + [4889] = {.lex_state = 451, .external_lex_state = 98}, + [4890] = {.lex_state = 474, .external_lex_state = 97}, + [4891] = {.lex_state = 474, .external_lex_state = 97}, + [4892] = {.lex_state = 474, .external_lex_state = 97}, + [4893] = {.lex_state = 509, .external_lex_state = 92}, + [4894] = {.lex_state = 471, .external_lex_state = 101}, + [4895] = {.lex_state = 451, .external_lex_state = 98}, + [4896] = {.lex_state = 460, .external_lex_state = 67}, + [4897] = {.lex_state = 474, .external_lex_state = 97}, + [4898] = {.lex_state = 474, .external_lex_state = 97}, + [4899] = {.lex_state = 474, .external_lex_state = 97}, + [4900] = {.lex_state = 460, .external_lex_state = 67}, + [4901] = {.lex_state = 462, .external_lex_state = 77}, + [4902] = {.lex_state = 474, .external_lex_state = 100}, + [4903] = {.lex_state = 471, .external_lex_state = 101}, + [4904] = {.lex_state = 451, .external_lex_state = 98}, + [4905] = {.lex_state = 460, .external_lex_state = 67}, + [4906] = {.lex_state = 471, .external_lex_state = 101}, + [4907] = {.lex_state = 439, .external_lex_state = 102}, + [4908] = {.lex_state = 471, .external_lex_state = 97}, + [4909] = {.lex_state = 474, .external_lex_state = 97}, + [4910] = {.lex_state = 460, .external_lex_state = 67}, + [4911] = {.lex_state = 471, .external_lex_state = 101}, + [4912] = {.lex_state = 474, .external_lex_state = 97}, + [4913] = {.lex_state = 460, .external_lex_state = 67}, + [4914] = {.lex_state = 439, .external_lex_state = 104}, + [4915] = {.lex_state = 474, .external_lex_state = 100}, + [4916] = {.lex_state = 474, .external_lex_state = 97}, + [4917] = {.lex_state = 471, .external_lex_state = 97}, + [4918] = {.lex_state = 475, .external_lex_state = 100}, + [4919] = {.lex_state = 474, .external_lex_state = 97}, + [4920] = {.lex_state = 460, .external_lex_state = 67}, + [4921] = {.lex_state = 471, .external_lex_state = 101}, + [4922] = {.lex_state = 460, .external_lex_state = 67}, + [4923] = {.lex_state = 509, .external_lex_state = 92}, + [4924] = {.lex_state = 460, .external_lex_state = 67}, + [4925] = {.lex_state = 460, .external_lex_state = 67}, + [4926] = {.lex_state = 474, .external_lex_state = 100}, + [4927] = {.lex_state = 451, .external_lex_state = 98}, + [4928] = {.lex_state = 451, .external_lex_state = 98}, + [4929] = {.lex_state = 460, .external_lex_state = 67}, + [4930] = {.lex_state = 439, .external_lex_state = 104}, + [4931] = {.lex_state = 460, .external_lex_state = 67}, + [4932] = {.lex_state = 96, .external_lex_state = 89}, + [4933] = {.lex_state = 96, .external_lex_state = 89}, + [4934] = {.lex_state = 509, .external_lex_state = 92}, + [4935] = {.lex_state = 460, .external_lex_state = 67}, + [4936] = {.lex_state = 95, .external_lex_state = 92}, + [4937] = {.lex_state = 95, .external_lex_state = 92}, + [4938] = {.lex_state = 95, .external_lex_state = 92}, + [4939] = {.lex_state = 439, .external_lex_state = 104}, + [4940] = {.lex_state = 462, .external_lex_state = 77}, + [4941] = {.lex_state = 474, .external_lex_state = 97}, + [4942] = {.lex_state = 474, .external_lex_state = 100}, + [4943] = {.lex_state = 474, .external_lex_state = 97}, + [4944] = {.lex_state = 451, .external_lex_state = 98}, + [4945] = {.lex_state = 471, .external_lex_state = 97}, + [4946] = {.lex_state = 474, .external_lex_state = 97}, + [4947] = {.lex_state = 451, .external_lex_state = 98}, + [4948] = {.lex_state = 474, .external_lex_state = 100}, + [4949] = {.lex_state = 460, .external_lex_state = 67}, + [4950] = {.lex_state = 460, .external_lex_state = 67}, + [4951] = {.lex_state = 471, .external_lex_state = 97}, + [4952] = {.lex_state = 451, .external_lex_state = 98}, + [4953] = {.lex_state = 451, .external_lex_state = 98}, + [4954] = {.lex_state = 471, .external_lex_state = 97}, + [4955] = {.lex_state = 460, .external_lex_state = 67}, + [4956] = {.lex_state = 451, .external_lex_state = 98}, + [4957] = {.lex_state = 474, .external_lex_state = 100}, + [4958] = {.lex_state = 471, .external_lex_state = 97}, + [4959] = {.lex_state = 439, .external_lex_state = 102}, + [4960] = {.lex_state = 439, .external_lex_state = 104}, + [4961] = {.lex_state = 460, .external_lex_state = 67}, + [4962] = {.lex_state = 94, .external_lex_state = 103}, + [4963] = {.lex_state = 439, .external_lex_state = 102}, + [4964] = {.lex_state = 451, .external_lex_state = 98}, + [4965] = {.lex_state = 474, .external_lex_state = 97}, + [4966] = {.lex_state = 96, .external_lex_state = 89}, + [4967] = {.lex_state = 96, .external_lex_state = 89}, + [4968] = {.lex_state = 96, .external_lex_state = 89}, + [4969] = {.lex_state = 96, .external_lex_state = 89}, + [4970] = {.lex_state = 460, .external_lex_state = 67}, + [4971] = {.lex_state = 474, .external_lex_state = 97}, + [4972] = {.lex_state = 471, .external_lex_state = 97}, + [4973] = {.lex_state = 474, .external_lex_state = 100}, + [4974] = {.lex_state = 94, .external_lex_state = 103}, + [4975] = {.lex_state = 474, .external_lex_state = 97}, + [4976] = {.lex_state = 474, .external_lex_state = 100}, + [4977] = {.lex_state = 451, .external_lex_state = 98}, + [4978] = {.lex_state = 96, .external_lex_state = 89}, + [4979] = {.lex_state = 96, .external_lex_state = 89}, + [4980] = {.lex_state = 96, .external_lex_state = 89}, + [4981] = {.lex_state = 96, .external_lex_state = 89}, + [4982] = {.lex_state = 474, .external_lex_state = 100}, + [4983] = {.lex_state = 451, .external_lex_state = 98}, + [4984] = {.lex_state = 474, .external_lex_state = 100}, + [4985] = {.lex_state = 439, .external_lex_state = 102}, + [4986] = {.lex_state = 460, .external_lex_state = 67}, + [4987] = {.lex_state = 460, .external_lex_state = 67}, + [4988] = {.lex_state = 471, .external_lex_state = 101}, + [4989] = {.lex_state = 471, .external_lex_state = 101}, + [4990] = {.lex_state = 471, .external_lex_state = 101}, + [4991] = {.lex_state = 471, .external_lex_state = 100}, + [4992] = {.lex_state = 94, .external_lex_state = 103}, + [4993] = {.lex_state = 474, .external_lex_state = 100}, + [4994] = {.lex_state = 474, .external_lex_state = 100}, + [4995] = {.lex_state = 471, .external_lex_state = 101}, + [4996] = {.lex_state = 462, .external_lex_state = 102}, + [4997] = {.lex_state = 463, .external_lex_state = 105}, + [4998] = {.lex_state = 474, .external_lex_state = 100}, + [4999] = {.lex_state = 448, .external_lex_state = 47}, + [5000] = {.lex_state = 471, .external_lex_state = 101}, + [5001] = {.lex_state = 474, .external_lex_state = 100}, + [5002] = {.lex_state = 448, .external_lex_state = 47}, + [5003] = {.lex_state = 448, .external_lex_state = 47}, + [5004] = {.lex_state = 448, .external_lex_state = 47}, [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}, + [5006] = {.lex_state = 474, .external_lex_state = 100}, + [5007] = {.lex_state = 448, .external_lex_state = 47}, + [5008] = {.lex_state = 96, .external_lex_state = 92}, + [5009] = {.lex_state = 471, .external_lex_state = 97}, + [5010] = {.lex_state = 448, .external_lex_state = 47}, + [5011] = {.lex_state = 448, .external_lex_state = 47}, + [5012] = {.lex_state = 448, .external_lex_state = 47}, + [5013] = {.lex_state = 448, .external_lex_state = 47}, + [5014] = {.lex_state = 448, .external_lex_state = 47}, + [5015] = {.lex_state = 471, .external_lex_state = 101}, + [5016] = {.lex_state = 471, .external_lex_state = 97}, + [5017] = {.lex_state = 448, .external_lex_state = 47}, + [5018] = {.lex_state = 439, .external_lex_state = 104}, + [5019] = {.lex_state = 448, .external_lex_state = 47}, + [5020] = {.lex_state = 474, .external_lex_state = 100}, + [5021] = {.lex_state = 257, .external_lex_state = 70}, + [5022] = {.lex_state = 471, .external_lex_state = 101}, + [5023] = {.lex_state = 471, .external_lex_state = 97}, + [5024] = {.lex_state = 474, .external_lex_state = 100}, + [5025] = {.lex_state = 474, .external_lex_state = 100}, + [5026] = {.lex_state = 474, .external_lex_state = 100}, + [5027] = {.lex_state = 448, .external_lex_state = 47}, + [5028] = {.lex_state = 448, .external_lex_state = 47}, + [5029] = {.lex_state = 474, .external_lex_state = 100}, + [5030] = {.lex_state = 471, .external_lex_state = 101}, + [5031] = {.lex_state = 471, .external_lex_state = 101}, + [5032] = {.lex_state = 471, .external_lex_state = 101}, + [5033] = {.lex_state = 462, .external_lex_state = 102}, + [5034] = {.lex_state = 448, .external_lex_state = 47}, + [5035] = {.lex_state = 448, .external_lex_state = 47}, + [5036] = {.lex_state = 448, .external_lex_state = 47}, + [5037] = {.lex_state = 448, .external_lex_state = 47}, + [5038] = {.lex_state = 474, .external_lex_state = 100}, + [5039] = {.lex_state = 471, .external_lex_state = 100}, + [5040] = {.lex_state = 471, .external_lex_state = 100}, + [5041] = {.lex_state = 448, .external_lex_state = 47}, + [5042] = {.lex_state = 448, .external_lex_state = 47}, + [5043] = {.lex_state = 448, .external_lex_state = 47}, + [5044] = {.lex_state = 448, .external_lex_state = 47}, + [5045] = {.lex_state = 448, .external_lex_state = 47}, + [5046] = {.lex_state = 448, .external_lex_state = 47}, + [5047] = {.lex_state = 448, .external_lex_state = 47}, + [5048] = {.lex_state = 448, .external_lex_state = 47}, + [5049] = {.lex_state = 471, .external_lex_state = 101}, + [5050] = {.lex_state = 474, .external_lex_state = 100}, + [5051] = {.lex_state = 96, .external_lex_state = 92}, + [5052] = {.lex_state = 96, .external_lex_state = 92}, + [5053] = {.lex_state = 471, .external_lex_state = 100}, + [5054] = {.lex_state = 448, .external_lex_state = 47}, + [5055] = {.lex_state = 448, .external_lex_state = 47}, + [5056] = {.lex_state = 448, .external_lex_state = 47}, + [5057] = {.lex_state = 471, .external_lex_state = 100}, + [5058] = {.lex_state = 448, .external_lex_state = 47}, + [5059] = {.lex_state = 448, .external_lex_state = 47}, + [5060] = {.lex_state = 448, .external_lex_state = 47}, + [5061] = {.lex_state = 474, .external_lex_state = 100}, + [5062] = {.lex_state = 439, .external_lex_state = 104}, + [5063] = {.lex_state = 471, .external_lex_state = 101}, + [5064] = {.lex_state = 474, .external_lex_state = 100}, + [5065] = {.lex_state = 448, .external_lex_state = 47}, + [5066] = {.lex_state = 448, .external_lex_state = 47}, + [5067] = {.lex_state = 448, .external_lex_state = 47}, + [5068] = {.lex_state = 462, .external_lex_state = 102}, + [5069] = {.lex_state = 448, .external_lex_state = 47}, + [5070] = {.lex_state = 462, .external_lex_state = 102}, + [5071] = {.lex_state = 448, .external_lex_state = 47}, + [5072] = {.lex_state = 448, .external_lex_state = 47}, + [5073] = {.lex_state = 448, .external_lex_state = 47}, + [5074] = {.lex_state = 448, .external_lex_state = 47}, + [5075] = {.lex_state = 448, .external_lex_state = 47}, + [5076] = {.lex_state = 471, .external_lex_state = 97}, + [5077] = {.lex_state = 448, .external_lex_state = 47}, + [5078] = {.lex_state = 448, .external_lex_state = 47}, + [5079] = {.lex_state = 448, .external_lex_state = 47}, + [5080] = {.lex_state = 471, .external_lex_state = 100}, + [5081] = {.lex_state = 471, .external_lex_state = 100}, + [5082] = {.lex_state = 448, .external_lex_state = 47}, + [5083] = {.lex_state = 448, .external_lex_state = 47}, + [5084] = {.lex_state = 448, .external_lex_state = 47}, + [5085] = {.lex_state = 474, .external_lex_state = 100}, + [5086] = {.lex_state = 471, .external_lex_state = 97}, + [5087] = {.lex_state = 471, .external_lex_state = 101}, + [5088] = {.lex_state = 448, .external_lex_state = 47}, + [5089] = {.lex_state = 448, .external_lex_state = 47}, + [5090] = {.lex_state = 462, .external_lex_state = 102}, + [5091] = {.lex_state = 462, .external_lex_state = 102}, + [5092] = {.lex_state = 471, .external_lex_state = 100}, + [5093] = {.lex_state = 471, .external_lex_state = 100}, + [5094] = {.lex_state = 448, .external_lex_state = 47}, + [5095] = {.lex_state = 448, .external_lex_state = 47}, + [5096] = {.lex_state = 448, .external_lex_state = 47}, + [5097] = {.lex_state = 448, .external_lex_state = 47}, + [5098] = {.lex_state = 448, .external_lex_state = 47}, + [5099] = {.lex_state = 475, .external_lex_state = 77}, + [5100] = {.lex_state = 471, .external_lex_state = 97}, + [5101] = {.lex_state = 474, .external_lex_state = 100}, + [5102] = {.lex_state = 448, .external_lex_state = 47}, + [5103] = {.lex_state = 448, .external_lex_state = 47}, + [5104] = {.lex_state = 448, .external_lex_state = 47}, + [5105] = {.lex_state = 448, .external_lex_state = 47}, + [5106] = {.lex_state = 448, .external_lex_state = 47}, + [5107] = {.lex_state = 474, .external_lex_state = 100}, + [5108] = {.lex_state = 471, .external_lex_state = 101}, + [5109] = {.lex_state = 448, .external_lex_state = 47}, + [5110] = {.lex_state = 471, .external_lex_state = 101}, + [5111] = {.lex_state = 448, .external_lex_state = 47}, + [5112] = {.lex_state = 448, .external_lex_state = 47}, + [5113] = {.lex_state = 448, .external_lex_state = 47}, + [5114] = {.lex_state = 462, .external_lex_state = 102}, + [5115] = {.lex_state = 472, .external_lex_state = 104}, + [5116] = {.lex_state = 448, .external_lex_state = 78}, + [5117] = {.lex_state = 462, .external_lex_state = 102}, + [5118] = {.lex_state = 471, .external_lex_state = 97}, + [5119] = {.lex_state = 471, .external_lex_state = 97}, + [5120] = {.lex_state = 462, .external_lex_state = 102}, + [5121] = {.lex_state = 471, .external_lex_state = 97}, + [5122] = {.lex_state = 472, .external_lex_state = 104}, + [5123] = {.lex_state = 472, .external_lex_state = 104}, + [5124] = {.lex_state = 462, .external_lex_state = 102}, + [5125] = {.lex_state = 471, .external_lex_state = 97}, + [5126] = {.lex_state = 471, .external_lex_state = 97}, + [5127] = {.lex_state = 471, .external_lex_state = 97}, + [5128] = {.lex_state = 471, .external_lex_state = 97}, + [5129] = {.lex_state = 471, .external_lex_state = 97}, + [5130] = {.lex_state = 471, .external_lex_state = 97}, + [5131] = {.lex_state = 448, .external_lex_state = 78}, + [5132] = {.lex_state = 472, .external_lex_state = 104}, + [5133] = {.lex_state = 471, .external_lex_state = 100}, + [5134] = {.lex_state = 471, .external_lex_state = 97}, + [5135] = {.lex_state = 471, .external_lex_state = 97}, + [5136] = {.lex_state = 472, .external_lex_state = 104}, + [5137] = {.lex_state = 471, .external_lex_state = 100}, + [5138] = {.lex_state = 471, .external_lex_state = 97}, + [5139] = {.lex_state = 471, .external_lex_state = 97}, + [5140] = {.lex_state = 462, .external_lex_state = 102}, + [5141] = {.lex_state = 439, .external_lex_state = 104}, + [5142] = {.lex_state = 475, .external_lex_state = 77}, + [5143] = {.lex_state = 439, .external_lex_state = 102}, + [5144] = {.lex_state = 471, .external_lex_state = 101}, + [5145] = {.lex_state = 471, .external_lex_state = 101}, + [5146] = {.lex_state = 474, .external_lex_state = 100}, + [5147] = {.lex_state = 471, .external_lex_state = 101}, + [5148] = {.lex_state = 471, .external_lex_state = 101}, + [5149] = {.lex_state = 474, .external_lex_state = 100}, + [5150] = {.lex_state = 448, .external_lex_state = 47}, + [5151] = {.lex_state = 471, .external_lex_state = 100}, + [5152] = {.lex_state = 94, .external_lex_state = 106}, + [5153] = {.lex_state = 439, .external_lex_state = 102}, + [5154] = {.lex_state = 475, .external_lex_state = 104}, + [5155] = {.lex_state = 94, .external_lex_state = 106}, + [5156] = {.lex_state = 94, .external_lex_state = 106}, + [5157] = {.lex_state = 471, .external_lex_state = 100}, + [5158] = {.lex_state = 94, .external_lex_state = 103}, + [5159] = {.lex_state = 94, .external_lex_state = 103}, + [5160] = {.lex_state = 471, .external_lex_state = 100}, + [5161] = {.lex_state = 94, .external_lex_state = 106}, + [5162] = {.lex_state = 94, .external_lex_state = 106}, + [5163] = {.lex_state = 475, .external_lex_state = 104}, + [5164] = {.lex_state = 471, .external_lex_state = 100}, + [5165] = {.lex_state = 471, .external_lex_state = 100}, + [5166] = {.lex_state = 471, .external_lex_state = 100}, + [5167] = {.lex_state = 94, .external_lex_state = 106}, + [5168] = {.lex_state = 94, .external_lex_state = 106}, + [5169] = {.lex_state = 475, .external_lex_state = 104}, + [5170] = {.lex_state = 471, .external_lex_state = 100}, + [5171] = {.lex_state = 94, .external_lex_state = 106}, + [5172] = {.lex_state = 94, .external_lex_state = 106}, + [5173] = {.lex_state = 471, .external_lex_state = 100}, + [5174] = {.lex_state = 471, .external_lex_state = 100}, + [5175] = {.lex_state = 471, .external_lex_state = 100}, + [5176] = {.lex_state = 94, .external_lex_state = 106}, + [5177] = {.lex_state = 471, .external_lex_state = 100}, + [5178] = {.lex_state = 94, .external_lex_state = 106}, + [5179] = {.lex_state = 462, .external_lex_state = 104}, + [5180] = {.lex_state = 439, .external_lex_state = 102}, + [5181] = {.lex_state = 471, .external_lex_state = 100}, + [5182] = {.lex_state = 475, .external_lex_state = 77}, + [5183] = {.lex_state = 94, .external_lex_state = 106}, + [5184] = {.lex_state = 471, .external_lex_state = 100}, + [5185] = {.lex_state = 475, .external_lex_state = 104}, + [5186] = {.lex_state = 439, .external_lex_state = 102}, + [5187] = {.lex_state = 439, .external_lex_state = 102}, + [5188] = {.lex_state = 475, .external_lex_state = 104}, + [5189] = {.lex_state = 471, .external_lex_state = 100}, + [5190] = {.lex_state = 471, .external_lex_state = 100}, + [5191] = {.lex_state = 472, .external_lex_state = 104}, + [5192] = {.lex_state = 448, .external_lex_state = 78}, + [5193] = {.lex_state = 462, .external_lex_state = 104}, + [5194] = {.lex_state = 471, .external_lex_state = 100}, + [5195] = {.lex_state = 97, .external_lex_state = 107}, + [5196] = {.lex_state = 94, .external_lex_state = 103}, + [5197] = {.lex_state = 471, .external_lex_state = 100}, + [5198] = {.lex_state = 462, .external_lex_state = 102}, + [5199] = {.lex_state = 471, .external_lex_state = 100}, + [5200] = {.lex_state = 96, .external_lex_state = 92}, + [5201] = {.lex_state = 257, .external_lex_state = 70}, + [5202] = {.lex_state = 96, .external_lex_state = 92}, + [5203] = {.lex_state = 471, .external_lex_state = 100}, + [5204] = {.lex_state = 462, .external_lex_state = 104}, + [5205] = {.lex_state = 439, .external_lex_state = 104}, + [5206] = {.lex_state = 439, .external_lex_state = 104}, + [5207] = {.lex_state = 267, .external_lex_state = 108}, + [5208] = {.lex_state = 439, .external_lex_state = 104}, + [5209] = {.lex_state = 439, .external_lex_state = 104}, + [5210] = {.lex_state = 97, .external_lex_state = 107}, + [5211] = {.lex_state = 462, .external_lex_state = 102}, + [5212] = {.lex_state = 97, .external_lex_state = 107}, + [5213] = {.lex_state = 462, .external_lex_state = 77}, + [5214] = {.lex_state = 96, .external_lex_state = 92}, + [5215] = {.lex_state = 439, .external_lex_state = 104}, + [5216] = {.lex_state = 97, .external_lex_state = 107}, + [5217] = {.lex_state = 97, .external_lex_state = 107}, + [5218] = {.lex_state = 462, .external_lex_state = 104}, + [5219] = {.lex_state = 97, .external_lex_state = 107}, + [5220] = {.lex_state = 439, .external_lex_state = 104}, + [5221] = {.lex_state = 462, .external_lex_state = 102}, + [5222] = {.lex_state = 97, .external_lex_state = 107}, + [5223] = {.lex_state = 439, .external_lex_state = 104}, + [5224] = {.lex_state = 439, .external_lex_state = 74}, + [5225] = {.lex_state = 475, .external_lex_state = 104}, + [5226] = {.lex_state = 439, .external_lex_state = 104}, + [5227] = {.lex_state = 439, .external_lex_state = 104}, + [5228] = {.lex_state = 439, .external_lex_state = 104}, + [5229] = {.lex_state = 439, .external_lex_state = 104}, + [5230] = {.lex_state = 439, .external_lex_state = 104}, + [5231] = {.lex_state = 267, .external_lex_state = 108}, + [5232] = {.lex_state = 439, .external_lex_state = 104}, + [5233] = {.lex_state = 462, .external_lex_state = 102}, + [5234] = {.lex_state = 439, .external_lex_state = 104}, + [5235] = {.lex_state = 439, .external_lex_state = 104}, + [5236] = {.lex_state = 462, .external_lex_state = 104}, + [5237] = {.lex_state = 97, .external_lex_state = 107}, + [5238] = {.lex_state = 97, .external_lex_state = 107}, + [5239] = {.lex_state = 439, .external_lex_state = 104}, + [5240] = {.lex_state = 439, .external_lex_state = 104}, + [5241] = {.lex_state = 94, .external_lex_state = 106}, + [5242] = {.lex_state = 96, .external_lex_state = 92}, + [5243] = {.lex_state = 97, .external_lex_state = 107}, + [5244] = {.lex_state = 97, .external_lex_state = 107}, + [5245] = {.lex_state = 462, .external_lex_state = 77}, + [5246] = {.lex_state = 462, .external_lex_state = 104}, + [5247] = {.lex_state = 462, .external_lex_state = 77}, + [5248] = {.lex_state = 97, .external_lex_state = 107}, + [5249] = {.lex_state = 439, .external_lex_state = 104}, + [5250] = {.lex_state = 97, .external_lex_state = 107}, + [5251] = {.lex_state = 97, .external_lex_state = 107}, + [5252] = {.lex_state = 462, .external_lex_state = 104}, + [5253] = {.lex_state = 97, .external_lex_state = 107}, + [5254] = {.lex_state = 97, .external_lex_state = 106}, + [5255] = {.lex_state = 462, .external_lex_state = 104}, + [5256] = {.lex_state = 97, .external_lex_state = 106}, + [5257] = {.lex_state = 462, .external_lex_state = 104}, + [5258] = {.lex_state = 462, .external_lex_state = 104}, + [5259] = {.lex_state = 462, .external_lex_state = 104}, + [5260] = {.lex_state = 462, .external_lex_state = 104}, + [5261] = {.lex_state = 462, .external_lex_state = 104}, + [5262] = {.lex_state = 97, .external_lex_state = 107}, + [5263] = {.lex_state = 462, .external_lex_state = 104}, + [5264] = {.lex_state = 97, .external_lex_state = 107}, + [5265] = {.lex_state = 97, .external_lex_state = 107}, + [5266] = {.lex_state = 462, .external_lex_state = 104}, + [5267] = {.lex_state = 462, .external_lex_state = 104}, + [5268] = {.lex_state = 97, .external_lex_state = 107}, + [5269] = {.lex_state = 97, .external_lex_state = 107}, + [5270] = {.lex_state = 462, .external_lex_state = 104}, + [5271] = {.lex_state = 462, .external_lex_state = 104}, + [5272] = {.lex_state = 462, .external_lex_state = 104}, + [5273] = {.lex_state = 462, .external_lex_state = 104}, + [5274] = {.lex_state = 97, .external_lex_state = 107}, + [5275] = {.lex_state = 462, .external_lex_state = 104}, + [5276] = {.lex_state = 462, .external_lex_state = 104}, + [5277] = {.lex_state = 462, .external_lex_state = 104}, + [5278] = {.lex_state = 462, .external_lex_state = 104}, + [5279] = {.lex_state = 462, .external_lex_state = 104}, + [5280] = {.lex_state = 97, .external_lex_state = 107}, + [5281] = {.lex_state = 462, .external_lex_state = 104}, + [5282] = {.lex_state = 462, .external_lex_state = 104}, + [5283] = {.lex_state = 462, .external_lex_state = 104}, + [5284] = {.lex_state = 462, .external_lex_state = 104}, + [5285] = {.lex_state = 462, .external_lex_state = 104}, + [5286] = {.lex_state = 462, .external_lex_state = 104}, + [5287] = {.lex_state = 462, .external_lex_state = 104}, + [5288] = {.lex_state = 462, .external_lex_state = 104}, + [5289] = {.lex_state = 462, .external_lex_state = 104}, + [5290] = {.lex_state = 462, .external_lex_state = 104}, + [5291] = {.lex_state = 462, .external_lex_state = 104}, + [5292] = {.lex_state = 462, .external_lex_state = 104}, + [5293] = {.lex_state = 462, .external_lex_state = 104}, + [5294] = {.lex_state = 97, .external_lex_state = 106}, + [5295] = {.lex_state = 97, .external_lex_state = 107}, + [5296] = {.lex_state = 97, .external_lex_state = 106}, + [5297] = {.lex_state = 462, .external_lex_state = 104}, + [5298] = {.lex_state = 97, .external_lex_state = 107}, + [5299] = {.lex_state = 97, .external_lex_state = 107}, + [5300] = {.lex_state = 97, .external_lex_state = 107}, + [5301] = {.lex_state = 462, .external_lex_state = 104}, + [5302] = {.lex_state = 462, .external_lex_state = 104}, + [5303] = {.lex_state = 462, .external_lex_state = 104}, + [5304] = {.lex_state = 462, .external_lex_state = 104}, + [5305] = {.lex_state = 462, .external_lex_state = 104}, + [5306] = {.lex_state = 97, .external_lex_state = 107}, + [5307] = {.lex_state = 462, .external_lex_state = 104}, + [5308] = {.lex_state = 462, .external_lex_state = 104}, + [5309] = {.lex_state = 462, .external_lex_state = 104}, + [5310] = {.lex_state = 462, .external_lex_state = 104}, + [5311] = {.lex_state = 97, .external_lex_state = 107}, + [5312] = {.lex_state = 462, .external_lex_state = 104}, + [5313] = {.lex_state = 97, .external_lex_state = 106}, + [5314] = {.lex_state = 462, .external_lex_state = 104}, + [5315] = {.lex_state = 97, .external_lex_state = 107}, + [5316] = {.lex_state = 462, .external_lex_state = 104}, + [5317] = {.lex_state = 97, .external_lex_state = 107}, + [5318] = {.lex_state = 97, .external_lex_state = 107}, + [5319] = {.lex_state = 462, .external_lex_state = 104}, + [5320] = {.lex_state = 97, .external_lex_state = 106}, + [5321] = {.lex_state = 94, .external_lex_state = 106}, + [5322] = {.lex_state = 94, .external_lex_state = 106}, + [5323] = {.lex_state = 436, .external_lex_state = 109}, + [5324] = {.lex_state = 94, .external_lex_state = 106}, + [5325] = {.lex_state = 94, .external_lex_state = 106}, + [5326] = {.lex_state = 436, .external_lex_state = 109}, + [5327] = {.lex_state = 443, .external_lex_state = 109}, + [5328] = {.lex_state = 443, .external_lex_state = 109}, + [5329] = {.lex_state = 468}, + [5330] = {.lex_state = 468}, + [5331] = {.lex_state = 468}, + [5332] = {.lex_state = 468}, + [5333] = {.lex_state = 468}, + [5334] = {.lex_state = 468}, + [5335] = {.lex_state = 468}, + [5336] = {.lex_state = 468}, + [5337] = {.lex_state = 468}, + [5338] = {.lex_state = 468}, + [5339] = {.lex_state = 468}, + [5340] = {.lex_state = 468}, + [5341] = {.lex_state = 468}, + [5342] = {.lex_state = 468}, + [5343] = {.lex_state = 468}, + [5344] = {.lex_state = 468}, + [5345] = {.lex_state = 468}, + [5346] = {.lex_state = 468}, + [5347] = {.lex_state = 468}, + [5348] = {.lex_state = 468}, + [5349] = {.lex_state = 468}, + [5350] = {.lex_state = 468}, + [5351] = {.lex_state = 468}, + [5352] = {.lex_state = 468}, + [5353] = {.lex_state = 468}, + [5354] = {.lex_state = 468}, + [5355] = {.lex_state = 468}, + [5356] = {.lex_state = 468}, + [5357] = {.lex_state = 468}, + [5358] = {.lex_state = 468}, + [5359] = {.lex_state = 468}, + [5360] = {.lex_state = 468}, + [5361] = {.lex_state = 468}, + [5362] = {.lex_state = 468}, + [5363] = {.lex_state = 468}, + [5364] = {.lex_state = 468}, + [5365] = {.lex_state = 468}, + [5366] = {.lex_state = 468}, + [5367] = {.lex_state = 468}, + [5368] = {.lex_state = 468}, + [5369] = {.lex_state = 468}, + [5370] = {.lex_state = 468}, + [5371] = {.lex_state = 468}, + [5372] = {.lex_state = 468}, + [5373] = {.lex_state = 468}, + [5374] = {.lex_state = 468}, + [5375] = {.lex_state = 468}, + [5376] = {.lex_state = 468}, + [5377] = {.lex_state = 468}, + [5378] = {.lex_state = 468}, + [5379] = {.lex_state = 468}, + [5380] = {.lex_state = 468}, + [5381] = {.lex_state = 468}, + [5382] = {.lex_state = 468}, + [5383] = {.lex_state = 468}, + [5384] = {.lex_state = 468}, + [5385] = {.lex_state = 468}, + [5386] = {.lex_state = 468}, + [5387] = {.lex_state = 468}, + [5388] = {.lex_state = 468}, + [5389] = {.lex_state = 468}, + [5390] = {.lex_state = 468}, + [5391] = {.lex_state = 468}, + [5392] = {.lex_state = 468}, + [5393] = {.lex_state = 468}, + [5394] = {.lex_state = 468}, + [5395] = {.lex_state = 468}, + [5396] = {.lex_state = 468}, + [5397] = {.lex_state = 468}, + [5398] = {.lex_state = 468}, + [5399] = {.lex_state = 468}, + [5400] = {.lex_state = 468}, + [5401] = {.lex_state = 468}, + [5402] = {.lex_state = 468}, + [5403] = {.lex_state = 468}, + [5404] = {.lex_state = 468}, + [5405] = {.lex_state = 468}, + [5406] = {.lex_state = 468}, + [5407] = {.lex_state = 468}, + [5408] = {.lex_state = 468}, + [5409] = {.lex_state = 468}, + [5410] = {.lex_state = 468}, + [5411] = {.lex_state = 468}, + [5412] = {.lex_state = 468}, + [5413] = {.lex_state = 468}, + [5414] = {.lex_state = 468}, + [5415] = {.lex_state = 468}, + [5416] = {.lex_state = 468}, + [5417] = {.lex_state = 468}, + [5418] = {.lex_state = 468}, + [5419] = {.lex_state = 468}, + [5420] = {.lex_state = 468}, + [5421] = {.lex_state = 468}, + [5422] = {.lex_state = 468}, + [5423] = {.lex_state = 468}, + [5424] = {.lex_state = 468}, + [5425] = {.lex_state = 468}, + [5426] = {.lex_state = 468}, + [5427] = {.lex_state = 468}, + [5428] = {.lex_state = 468}, + [5429] = {.lex_state = 468}, + [5430] = {.lex_state = 468}, + [5431] = {.lex_state = 468}, + [5432] = {.lex_state = 468}, + [5433] = {.lex_state = 468}, + [5434] = {.lex_state = 468}, + [5435] = {.lex_state = 468}, + [5436] = {.lex_state = 468}, + [5437] = {.lex_state = 468}, + [5438] = {.lex_state = 468}, + [5439] = {.lex_state = 468}, + [5440] = {.lex_state = 468}, + [5441] = {.lex_state = 468}, + [5442] = {.lex_state = 468}, + [5443] = {.lex_state = 468}, + [5444] = {.lex_state = 468}, + [5445] = {.lex_state = 468}, + [5446] = {.lex_state = 468}, + [5447] = {.lex_state = 468}, + [5448] = {.lex_state = 468}, + [5449] = {.lex_state = 468}, + [5450] = {.lex_state = 468}, + [5451] = {.lex_state = 468}, + [5452] = {.lex_state = 468}, + [5453] = {.lex_state = 468}, + [5454] = {.lex_state = 468}, + [5455] = {.lex_state = 468}, + [5456] = {.lex_state = 468}, + [5457] = {.lex_state = 468}, + [5458] = {.lex_state = 468}, + [5459] = {.lex_state = 468}, + [5460] = {.lex_state = 468}, + [5461] = {.lex_state = 468}, + [5462] = {.lex_state = 468}, + [5463] = {.lex_state = 468}, + [5464] = {.lex_state = 468}, + [5465] = {.lex_state = 468}, + [5466] = {.lex_state = 468}, + [5467] = {.lex_state = 468}, + [5468] = {.lex_state = 468}, + [5469] = {.lex_state = 468}, + [5470] = {.lex_state = 437, .external_lex_state = 109}, + [5471] = {.lex_state = 437, .external_lex_state = 109}, + [5472] = {.lex_state = 437, .external_lex_state = 109}, + [5473] = {.lex_state = 437, .external_lex_state = 109}, + [5474] = {.lex_state = 437, .external_lex_state = 109}, + [5475] = {.lex_state = 437, .external_lex_state = 109}, + [5476] = {.lex_state = 437, .external_lex_state = 109}, + [5477] = {.lex_state = 438, .external_lex_state = 109}, + [5478] = {.lex_state = 437, .external_lex_state = 109}, + [5479] = {.lex_state = 438, .external_lex_state = 109}, + [5480] = {.lex_state = 438, .external_lex_state = 109}, + [5481] = {.lex_state = 437, .external_lex_state = 109}, + [5482] = {.lex_state = 437, .external_lex_state = 109}, + [5483] = {.lex_state = 438, .external_lex_state = 109}, + [5484] = {.lex_state = 438, .external_lex_state = 109}, + [5485] = {.lex_state = 437, .external_lex_state = 109}, + [5486] = {.lex_state = 437, .external_lex_state = 109}, + [5487] = {.lex_state = 437, .external_lex_state = 109}, + [5488] = {.lex_state = 439, .external_lex_state = 110}, + [5489] = {.lex_state = 438, .external_lex_state = 109}, + [5490] = {.lex_state = 437, .external_lex_state = 109}, + [5491] = {.lex_state = 437, .external_lex_state = 109}, + [5492] = {.lex_state = 437, .external_lex_state = 109}, + [5493] = {.lex_state = 438, .external_lex_state = 109}, + [5494] = {.lex_state = 437, .external_lex_state = 109}, + [5495] = {.lex_state = 439, .external_lex_state = 110}, + [5496] = {.lex_state = 437, .external_lex_state = 109}, + [5497] = {.lex_state = 438, .external_lex_state = 109}, + [5498] = {.lex_state = 437, .external_lex_state = 109}, + [5499] = {.lex_state = 438, .external_lex_state = 109}, + [5500] = {.lex_state = 437, .external_lex_state = 109}, + [5501] = {.lex_state = 437, .external_lex_state = 109}, + [5502] = {.lex_state = 437, .external_lex_state = 109}, + [5503] = {.lex_state = 438, .external_lex_state = 109}, + [5504] = {.lex_state = 437, .external_lex_state = 109}, + [5505] = {.lex_state = 437, .external_lex_state = 109}, + [5506] = {.lex_state = 437, .external_lex_state = 109}, + [5507] = {.lex_state = 437, .external_lex_state = 109}, + [5508] = {.lex_state = 437, .external_lex_state = 109}, + [5509] = {.lex_state = 437, .external_lex_state = 109}, + [5510] = {.lex_state = 439, .external_lex_state = 110}, + [5511] = {.lex_state = 438, .external_lex_state = 109}, + [5512] = {.lex_state = 438, .external_lex_state = 109}, + [5513] = {.lex_state = 438, .external_lex_state = 109}, + [5514] = {.lex_state = 437, .external_lex_state = 109}, + [5515] = {.lex_state = 437, .external_lex_state = 109}, + [5516] = {.lex_state = 437, .external_lex_state = 109}, + [5517] = {.lex_state = 438, .external_lex_state = 109}, + [5518] = {.lex_state = 437, .external_lex_state = 109}, + [5519] = {.lex_state = 437, .external_lex_state = 109}, + [5520] = {.lex_state = 437, .external_lex_state = 109}, + [5521] = {.lex_state = 437, .external_lex_state = 109}, + [5522] = {.lex_state = 438, .external_lex_state = 109}, + [5523] = {.lex_state = 437, .external_lex_state = 109}, + [5524] = {.lex_state = 437, .external_lex_state = 109}, + [5525] = {.lex_state = 438, .external_lex_state = 109}, + [5526] = {.lex_state = 437, .external_lex_state = 109}, + [5527] = {.lex_state = 438, .external_lex_state = 109}, + [5528] = {.lex_state = 437, .external_lex_state = 109}, + [5529] = {.lex_state = 438, .external_lex_state = 109}, + [5530] = {.lex_state = 437, .external_lex_state = 109}, + [5531] = {.lex_state = 437, .external_lex_state = 109}, + [5532] = {.lex_state = 438, .external_lex_state = 109}, + [5533] = {.lex_state = 437, .external_lex_state = 109}, + [5534] = {.lex_state = 437, .external_lex_state = 109}, + [5535] = {.lex_state = 437, .external_lex_state = 109}, + [5536] = {.lex_state = 437, .external_lex_state = 109}, + [5537] = {.lex_state = 437, .external_lex_state = 109}, + [5538] = {.lex_state = 438, .external_lex_state = 109}, + [5539] = {.lex_state = 438, .external_lex_state = 109}, + [5540] = {.lex_state = 438, .external_lex_state = 109}, + [5541] = {.lex_state = 437, .external_lex_state = 109}, + [5542] = {.lex_state = 437, .external_lex_state = 109}, + [5543] = {.lex_state = 438, .external_lex_state = 109}, + [5544] = {.lex_state = 438, .external_lex_state = 109}, + [5545] = {.lex_state = 437, .external_lex_state = 109}, + [5546] = {.lex_state = 437, .external_lex_state = 109}, + [5547] = {.lex_state = 437, .external_lex_state = 109}, + [5548] = {.lex_state = 438, .external_lex_state = 109}, + [5549] = {.lex_state = 437, .external_lex_state = 109}, + [5550] = {.lex_state = 437, .external_lex_state = 109}, + [5551] = {.lex_state = 437, .external_lex_state = 109}, + [5552] = {.lex_state = 437, .external_lex_state = 109}, + [5553] = {.lex_state = 438, .external_lex_state = 109}, + [5554] = {.lex_state = 437, .external_lex_state = 109}, + [5555] = {.lex_state = 437, .external_lex_state = 109}, + [5556] = {.lex_state = 437, .external_lex_state = 109}, + [5557] = {.lex_state = 438, .external_lex_state = 109}, + [5558] = {.lex_state = 437, .external_lex_state = 109}, + [5559] = {.lex_state = 438, .external_lex_state = 109}, + [5560] = {.lex_state = 437, .external_lex_state = 109}, + [5561] = {.lex_state = 437, .external_lex_state = 109}, + [5562] = {.lex_state = 437, .external_lex_state = 109}, + [5563] = {.lex_state = 438, .external_lex_state = 109}, + [5564] = {.lex_state = 438, .external_lex_state = 109}, + [5565] = {.lex_state = 437, .external_lex_state = 109}, + [5566] = {.lex_state = 437, .external_lex_state = 109}, + [5567] = {.lex_state = 437, .external_lex_state = 109}, + [5568] = {.lex_state = 438, .external_lex_state = 109}, + [5569] = {.lex_state = 437, .external_lex_state = 109}, + [5570] = {.lex_state = 437, .external_lex_state = 109}, + [5571] = {.lex_state = 439, .external_lex_state = 110}, + [5572] = {.lex_state = 437, .external_lex_state = 109}, + [5573] = {.lex_state = 437, .external_lex_state = 109}, + [5574] = {.lex_state = 438, .external_lex_state = 109}, + [5575] = {.lex_state = 438, .external_lex_state = 109}, + [5576] = {.lex_state = 437, .external_lex_state = 109}, + [5577] = {.lex_state = 437, .external_lex_state = 109}, + [5578] = {.lex_state = 437, .external_lex_state = 109}, + [5579] = {.lex_state = 437, .external_lex_state = 109}, + [5580] = {.lex_state = 437, .external_lex_state = 109}, + [5581] = {.lex_state = 438, .external_lex_state = 109}, + [5582] = {.lex_state = 437, .external_lex_state = 109}, + [5583] = {.lex_state = 437, .external_lex_state = 109}, + [5584] = {.lex_state = 438, .external_lex_state = 109}, + [5585] = {.lex_state = 437, .external_lex_state = 109}, + [5586] = {.lex_state = 438, .external_lex_state = 109}, + [5587] = {.lex_state = 438, .external_lex_state = 109}, + [5588] = {.lex_state = 437, .external_lex_state = 109}, + [5589] = {.lex_state = 437, .external_lex_state = 109}, + [5590] = {.lex_state = 437, .external_lex_state = 109}, + [5591] = {.lex_state = 438, .external_lex_state = 109}, + [5592] = {.lex_state = 437, .external_lex_state = 109}, + [5593] = {.lex_state = 437, .external_lex_state = 109}, + [5594] = {.lex_state = 438, .external_lex_state = 109}, + [5595] = {.lex_state = 439, .external_lex_state = 110}, + [5596] = {.lex_state = 437, .external_lex_state = 109}, + [5597] = {.lex_state = 437, .external_lex_state = 109}, + [5598] = {.lex_state = 438, .external_lex_state = 109}, + [5599] = {.lex_state = 437, .external_lex_state = 109}, + [5600] = {.lex_state = 438, .external_lex_state = 109}, + [5601] = {.lex_state = 437, .external_lex_state = 109}, + [5602] = {.lex_state = 438, .external_lex_state = 109}, + [5603] = {.lex_state = 437, .external_lex_state = 109}, + [5604] = {.lex_state = 437, .external_lex_state = 109}, + [5605] = {.lex_state = 437, .external_lex_state = 109}, + [5606] = {.lex_state = 437, .external_lex_state = 109}, + [5607] = {.lex_state = 437, .external_lex_state = 109}, + [5608] = {.lex_state = 438, .external_lex_state = 109}, + [5609] = {.lex_state = 438, .external_lex_state = 109}, + [5610] = {.lex_state = 438, .external_lex_state = 109}, + [5611] = {.lex_state = 437, .external_lex_state = 109}, + [5612] = {.lex_state = 437, .external_lex_state = 109}, + [5613] = {.lex_state = 438, .external_lex_state = 109}, + [5614] = {.lex_state = 437, .external_lex_state = 109}, + [5615] = {.lex_state = 438, .external_lex_state = 109}, + [5616] = {.lex_state = 437, .external_lex_state = 109}, + [5617] = {.lex_state = 439, .external_lex_state = 110}, + [5618] = {.lex_state = 437, .external_lex_state = 109}, + [5619] = {.lex_state = 437, .external_lex_state = 109}, + [5620] = {.lex_state = 437, .external_lex_state = 109}, + [5621] = {.lex_state = 437, .external_lex_state = 109}, + [5622] = {.lex_state = 437, .external_lex_state = 109}, + [5623] = {.lex_state = 438, .external_lex_state = 109}, + [5624] = {.lex_state = 437, .external_lex_state = 109}, + [5625] = {.lex_state = 437, .external_lex_state = 109}, + [5626] = {.lex_state = 437, .external_lex_state = 109}, + [5627] = {.lex_state = 437, .external_lex_state = 109}, + [5628] = {.lex_state = 437, .external_lex_state = 109}, + [5629] = {.lex_state = 438, .external_lex_state = 109}, + [5630] = {.lex_state = 437, .external_lex_state = 109}, + [5631] = {.lex_state = 437, .external_lex_state = 109}, + [5632] = {.lex_state = 438, .external_lex_state = 109}, + [5633] = {.lex_state = 437, .external_lex_state = 109}, + [5634] = {.lex_state = 437, .external_lex_state = 109}, + [5635] = {.lex_state = 437, .external_lex_state = 109}, + [5636] = {.lex_state = 439, .external_lex_state = 110}, + [5637] = {.lex_state = 437, .external_lex_state = 109}, + [5638] = {.lex_state = 438, .external_lex_state = 109}, + [5639] = {.lex_state = 437, .external_lex_state = 109}, + [5640] = {.lex_state = 437, .external_lex_state = 109}, + [5641] = {.lex_state = 437, .external_lex_state = 109}, + [5642] = {.lex_state = 437, .external_lex_state = 109}, + [5643] = {.lex_state = 437, .external_lex_state = 109}, + [5644] = {.lex_state = 437, .external_lex_state = 109}, + [5645] = {.lex_state = 437, .external_lex_state = 109}, + [5646] = {.lex_state = 437, .external_lex_state = 109}, + [5647] = {.lex_state = 438, .external_lex_state = 109}, + [5648] = {.lex_state = 437, .external_lex_state = 109}, + [5649] = {.lex_state = 438, .external_lex_state = 109}, + [5650] = {.lex_state = 437, .external_lex_state = 109}, + [5651] = {.lex_state = 437, .external_lex_state = 109}, + [5652] = {.lex_state = 437, .external_lex_state = 109}, + [5653] = {.lex_state = 437, .external_lex_state = 109}, + [5654] = {.lex_state = 437, .external_lex_state = 109}, + [5655] = {.lex_state = 437, .external_lex_state = 109}, + [5656] = {.lex_state = 437, .external_lex_state = 109}, + [5657] = {.lex_state = 437, .external_lex_state = 109}, + [5658] = {.lex_state = 437, .external_lex_state = 109}, + [5659] = {.lex_state = 438, .external_lex_state = 109}, + [5660] = {.lex_state = 437, .external_lex_state = 109}, + [5661] = {.lex_state = 437, .external_lex_state = 109}, + [5662] = {.lex_state = 437, .external_lex_state = 109}, + [5663] = {.lex_state = 438, .external_lex_state = 109}, + [5664] = {.lex_state = 437, .external_lex_state = 109}, + [5665] = {.lex_state = 437, .external_lex_state = 109}, + [5666] = {.lex_state = 437, .external_lex_state = 109}, + [5667] = {.lex_state = 438, .external_lex_state = 109}, + [5668] = {.lex_state = 438, .external_lex_state = 109}, + [5669] = {.lex_state = 437, .external_lex_state = 109}, + [5670] = {.lex_state = 437, .external_lex_state = 109}, + [5671] = {.lex_state = 437, .external_lex_state = 109}, + [5672] = {.lex_state = 437, .external_lex_state = 109}, + [5673] = {.lex_state = 439, .external_lex_state = 110}, + [5674] = {.lex_state = 437, .external_lex_state = 109}, + [5675] = {.lex_state = 462, .external_lex_state = 110}, + [5676] = {.lex_state = 462, .external_lex_state = 110}, + [5677] = {.lex_state = 462, .external_lex_state = 110}, + [5678] = {.lex_state = 462, .external_lex_state = 110}, + [5679] = {.lex_state = 94, .external_lex_state = 103}, + [5680] = {.lex_state = 94, .external_lex_state = 103}, + [5681] = {.lex_state = 462, .external_lex_state = 110}, + [5682] = {.lex_state = 440, .external_lex_state = 109}, + [5683] = {.lex_state = 462, .external_lex_state = 110}, + [5684] = {.lex_state = 462, .external_lex_state = 110}, + [5685] = {.lex_state = 462, .external_lex_state = 110}, + [5686] = {.lex_state = 473}, + [5687] = {.lex_state = 473}, + [5688] = {.lex_state = 441, .external_lex_state = 109}, + [5689] = {.lex_state = 441, .external_lex_state = 109}, + [5690] = {.lex_state = 421, .external_lex_state = 111}, + [5691] = {.lex_state = 473}, + [5692] = {.lex_state = 473}, + [5693] = {.lex_state = 473}, + [5694] = {.lex_state = 441, .external_lex_state = 109}, + [5695] = {.lex_state = 441, .external_lex_state = 109}, + [5696] = {.lex_state = 473}, + [5697] = {.lex_state = 441, .external_lex_state = 109}, + [5698] = {.lex_state = 473}, + [5699] = {.lex_state = 473}, + [5700] = {.lex_state = 473}, + [5701] = {.lex_state = 421, .external_lex_state = 111}, + [5702] = {.lex_state = 473}, + [5703] = {.lex_state = 473}, + [5704] = {.lex_state = 473}, + [5705] = {.lex_state = 473}, + [5706] = {.lex_state = 473}, + [5707] = {.lex_state = 473}, + [5708] = {.lex_state = 441, .external_lex_state = 109}, + [5709] = {.lex_state = 441, .external_lex_state = 109}, + [5710] = {.lex_state = 473}, + [5711] = {.lex_state = 473}, + [5712] = {.lex_state = 473}, + [5713] = {.lex_state = 473}, + [5714] = {.lex_state = 473}, + [5715] = {.lex_state = 473}, + [5716] = {.lex_state = 441, .external_lex_state = 109}, + [5717] = {.lex_state = 463, .external_lex_state = 112}, + [5718] = {.lex_state = 473}, + [5719] = {.lex_state = 473}, + [5720] = {.lex_state = 421, .external_lex_state = 111}, + [5721] = {.lex_state = 473}, + [5722] = {.lex_state = 473}, + [5723] = {.lex_state = 473}, + [5724] = {.lex_state = 473}, + [5725] = {.lex_state = 441, .external_lex_state = 109}, + [5726] = {.lex_state = 468, .external_lex_state = 113}, + [5727] = {.lex_state = 468, .external_lex_state = 113}, + [5728] = {.lex_state = 468, .external_lex_state = 113}, + [5729] = {.lex_state = 468, .external_lex_state = 113}, + [5730] = {.lex_state = 473, .external_lex_state = 94}, + [5731] = {.lex_state = 473, .external_lex_state = 94}, + [5732] = {.lex_state = 473, .external_lex_state = 94}, + [5733] = {.lex_state = 468, .external_lex_state = 113}, + [5734] = {.lex_state = 473, .external_lex_state = 94}, + [5735] = {.lex_state = 473, .external_lex_state = 94}, + [5736] = {.lex_state = 468, .external_lex_state = 113}, + [5737] = {.lex_state = 473, .external_lex_state = 94}, + [5738] = {.lex_state = 468, .external_lex_state = 113}, + [5739] = {.lex_state = 473, .external_lex_state = 94}, + [5740] = {.lex_state = 473, .external_lex_state = 94}, + [5741] = {.lex_state = 473, .external_lex_state = 94}, + [5742] = {.lex_state = 473, .external_lex_state = 94}, + [5743] = {.lex_state = 473, .external_lex_state = 94}, + [5744] = {.lex_state = 473, .external_lex_state = 94}, + [5745] = {.lex_state = 473, .external_lex_state = 94}, + [5746] = {.lex_state = 473, .external_lex_state = 94}, + [5747] = {.lex_state = 473, .external_lex_state = 94}, + [5748] = {.lex_state = 473, .external_lex_state = 94}, + [5749] = {.lex_state = 473, .external_lex_state = 94}, + [5750] = {.lex_state = 473, .external_lex_state = 94}, + [5751] = {.lex_state = 473, .external_lex_state = 94}, + [5752] = {.lex_state = 473, .external_lex_state = 94}, + [5753] = {.lex_state = 468, .external_lex_state = 113}, + [5754] = {.lex_state = 463}, [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}, + [5756] = {.lex_state = 468, .external_lex_state = 113}, + [5757] = {.lex_state = 473, .external_lex_state = 94}, + [5758] = {.lex_state = 468, .external_lex_state = 113}, + [5759] = {.lex_state = 473, .external_lex_state = 94}, + [5760] = {.lex_state = 473, .external_lex_state = 94}, + [5761] = {.lex_state = 473, .external_lex_state = 94}, + [5762] = {.lex_state = 468, .external_lex_state = 113}, + [5763] = {.lex_state = 98, .external_lex_state = 114}, + [5764] = {.lex_state = 468}, + [5765] = {.lex_state = 464, .external_lex_state = 115}, + [5766] = {.lex_state = 468}, + [5767] = {.lex_state = 465, .external_lex_state = 116}, + [5768] = {.lex_state = 465, .external_lex_state = 116}, + [5769] = {.lex_state = 98, .external_lex_state = 114}, + [5770] = {.lex_state = 465, .external_lex_state = 116}, + [5771] = {.lex_state = 98, .external_lex_state = 114}, + [5772] = {.lex_state = 98, .external_lex_state = 114}, + [5773] = {.lex_state = 98, .external_lex_state = 114}, + [5774] = {.lex_state = 471}, + [5775] = {.lex_state = 98, .external_lex_state = 114}, + [5776] = {.lex_state = 98, .external_lex_state = 114}, + [5777] = {.lex_state = 98, .external_lex_state = 114}, + [5778] = {.lex_state = 98, .external_lex_state = 114}, + [5779] = {.lex_state = 98, .external_lex_state = 114}, + [5780] = {.lex_state = 98, .external_lex_state = 114}, + [5781] = {.lex_state = 98, .external_lex_state = 114}, + [5782] = {.lex_state = 471}, + [5783] = {.lex_state = 464, .external_lex_state = 112}, + [5784] = {.lex_state = 464, .external_lex_state = 112}, + [5785] = {.lex_state = 464, .external_lex_state = 112}, + [5786] = {.lex_state = 421, .external_lex_state = 111}, + [5787] = {.lex_state = 421, .external_lex_state = 111}, + [5788] = {.lex_state = 421, .external_lex_state = 111}, + [5789] = {.lex_state = 98, .external_lex_state = 117}, + [5790] = {.lex_state = 464, .external_lex_state = 112}, + [5791] = {.lex_state = 98, .external_lex_state = 117}, + [5792] = {.lex_state = 98, .external_lex_state = 114}, + [5793] = {.lex_state = 98, .external_lex_state = 114}, + [5794] = {.lex_state = 98, .external_lex_state = 114}, + [5795] = {.lex_state = 98, .external_lex_state = 117}, + [5796] = {.lex_state = 98, .external_lex_state = 114}, + [5797] = {.lex_state = 464, .external_lex_state = 112}, + [5798] = {.lex_state = 98, .external_lex_state = 114}, + [5799] = {.lex_state = 98, .external_lex_state = 114}, + [5800] = {.lex_state = 98, .external_lex_state = 114}, + [5801] = {.lex_state = 98, .external_lex_state = 114}, + [5802] = {.lex_state = 98, .external_lex_state = 114}, + [5803] = {.lex_state = 464, .external_lex_state = 112}, + [5804] = {.lex_state = 464, .external_lex_state = 112}, + [5805] = {.lex_state = 421, .external_lex_state = 111}, + [5806] = {.lex_state = 421, .external_lex_state = 111}, + [5807] = {.lex_state = 464, .external_lex_state = 112}, + [5808] = {.lex_state = 421, .external_lex_state = 111}, + [5809] = {.lex_state = 421, .external_lex_state = 111}, + [5810] = {.lex_state = 464, .external_lex_state = 112}, + [5811] = {.lex_state = 98, .external_lex_state = 117}, + [5812] = {.lex_state = 464, .external_lex_state = 112}, + [5813] = {.lex_state = 98, .external_lex_state = 114}, + [5814] = {.lex_state = 98, .external_lex_state = 117}, + [5815] = {.lex_state = 98, .external_lex_state = 114}, + [5816] = {.lex_state = 98, .external_lex_state = 114}, + [5817] = {.lex_state = 98, .external_lex_state = 114}, + [5818] = {.lex_state = 98, .external_lex_state = 114}, + [5819] = {.lex_state = 98, .external_lex_state = 114}, + [5820] = {.lex_state = 98, .external_lex_state = 114}, + [5821] = {.lex_state = 98, .external_lex_state = 114}, + [5822] = {.lex_state = 98, .external_lex_state = 114}, + [5823] = {.lex_state = 98, .external_lex_state = 114}, + [5824] = {.lex_state = 464, .external_lex_state = 112}, + [5825] = {.lex_state = 464, .external_lex_state = 112}, + [5826] = {.lex_state = 93, .external_lex_state = 117}, + [5827] = {.lex_state = 421}, + [5828] = {.lex_state = 473}, + [5829] = {.lex_state = 421}, + [5830] = {.lex_state = 464, .external_lex_state = 112}, + [5831] = {.lex_state = 421}, + [5832] = {.lex_state = 421}, + [5833] = {.lex_state = 421}, + [5834] = {.lex_state = 421}, + [5835] = {.lex_state = 421}, + [5836] = {.lex_state = 476, .external_lex_state = 118}, + [5837] = {.lex_state = 421}, + [5838] = {.lex_state = 476, .external_lex_state = 118}, + [5839] = {.lex_state = 421}, + [5840] = {.lex_state = 421}, + [5841] = {.lex_state = 421}, + [5842] = {.lex_state = 474}, + [5843] = {.lex_state = 465, .external_lex_state = 116}, + [5844] = {.lex_state = 465, .external_lex_state = 116}, + [5845] = {.lex_state = 93, .external_lex_state = 117}, + [5846] = {.lex_state = 421}, + [5847] = {.lex_state = 464, .external_lex_state = 112}, + [5848] = {.lex_state = 474}, + [5849] = {.lex_state = 421}, + [5850] = {.lex_state = 447, .external_lex_state = 113}, + [5851] = {.lex_state = 421}, + [5852] = {.lex_state = 93, .external_lex_state = 117}, + [5853] = {.lex_state = 474}, + [5854] = {.lex_state = 421}, + [5855] = {.lex_state = 447, .external_lex_state = 113}, + [5856] = {.lex_state = 464, .external_lex_state = 112}, + [5857] = {.lex_state = 421}, + [5858] = {.lex_state = 447, .external_lex_state = 113}, + [5859] = {.lex_state = 421}, + [5860] = {.lex_state = 421}, + [5861] = {.lex_state = 421}, + [5862] = {.lex_state = 421}, + [5863] = {.lex_state = 464, .external_lex_state = 112}, + [5864] = {.lex_state = 421}, + [5865] = {.lex_state = 421}, + [5866] = {.lex_state = 421}, + [5867] = {.lex_state = 421}, + [5868] = {.lex_state = 421}, + [5869] = {.lex_state = 464, .external_lex_state = 112}, + [5870] = {.lex_state = 464, .external_lex_state = 112}, + [5871] = {.lex_state = 421}, + [5872] = {.lex_state = 421}, + [5873] = {.lex_state = 421}, + [5874] = {.lex_state = 465, .external_lex_state = 116}, + [5875] = {.lex_state = 421}, + [5876] = {.lex_state = 476, .external_lex_state = 118}, + [5877] = {.lex_state = 421}, + [5878] = {.lex_state = 421}, + [5879] = {.lex_state = 473}, + [5880] = {.lex_state = 464, .external_lex_state = 112}, + [5881] = {.lex_state = 421}, + [5882] = {.lex_state = 421}, + [5883] = {.lex_state = 464, .external_lex_state = 112}, + [5884] = {.lex_state = 447, .external_lex_state = 113}, + [5885] = {.lex_state = 421}, + [5886] = {.lex_state = 421}, + [5887] = {.lex_state = 464, .external_lex_state = 112}, + [5888] = {.lex_state = 93, .external_lex_state = 117}, + [5889] = {.lex_state = 421}, + [5890] = {.lex_state = 474}, + [5891] = {.lex_state = 421}, + [5892] = {.lex_state = 421}, + [5893] = {.lex_state = 421}, + [5894] = {.lex_state = 421}, + [5895] = {.lex_state = 421}, + [5896] = {.lex_state = 421}, + [5897] = {.lex_state = 98, .external_lex_state = 117}, + [5898] = {.lex_state = 464, .external_lex_state = 112}, + [5899] = {.lex_state = 421}, + [5900] = {.lex_state = 474}, + [5901] = {.lex_state = 421}, + [5902] = {.lex_state = 421}, + [5903] = {.lex_state = 421}, + [5904] = {.lex_state = 93, .external_lex_state = 117}, + [5905] = {.lex_state = 421}, + [5906] = {.lex_state = 464, .external_lex_state = 112}, + [5907] = {.lex_state = 421}, + [5908] = {.lex_state = 421}, + [5909] = {.lex_state = 447, .external_lex_state = 113}, + [5910] = {.lex_state = 447, .external_lex_state = 113}, + [5911] = {.lex_state = 421}, + [5912] = {.lex_state = 421}, + [5913] = {.lex_state = 421}, + [5914] = {.lex_state = 421}, + [5915] = {.lex_state = 421}, + [5916] = {.lex_state = 421}, + [5917] = {.lex_state = 473}, + [5918] = {.lex_state = 421}, + [5919] = {.lex_state = 447, .external_lex_state = 113}, + [5920] = {.lex_state = 474}, + [5921] = {.lex_state = 474}, + [5922] = {.lex_state = 421}, + [5923] = {.lex_state = 464, .external_lex_state = 112}, + [5924] = {.lex_state = 93, .external_lex_state = 117}, + [5925] = {.lex_state = 421}, + [5926] = {.lex_state = 447, .external_lex_state = 113}, + [5927] = {.lex_state = 464, .external_lex_state = 112}, + [5928] = {.lex_state = 421}, + [5929] = {.lex_state = 474}, + [5930] = {.lex_state = 421}, + [5931] = {.lex_state = 447, .external_lex_state = 113}, + [5932] = {.lex_state = 421}, + [5933] = {.lex_state = 464, .external_lex_state = 112}, + [5934] = {.lex_state = 464, .external_lex_state = 112}, + [5935] = {.lex_state = 93, .external_lex_state = 117}, + [5936] = {.lex_state = 465, .external_lex_state = 116}, + [5937] = {.lex_state = 473}, + [5938] = {.lex_state = 421}, + [5939] = {.lex_state = 421}, + [5940] = {.lex_state = 93, .external_lex_state = 117}, + [5941] = {.lex_state = 464, .external_lex_state = 112}, + [5942] = {.lex_state = 428, .external_lex_state = 119}, + [5943] = {.lex_state = 534, .external_lex_state = 120}, + [5944] = {.lex_state = 534, .external_lex_state = 120}, + [5945] = {.lex_state = 534, .external_lex_state = 120}, + [5946] = {.lex_state = 534, .external_lex_state = 120}, + [5947] = {.lex_state = 534, .external_lex_state = 120}, + [5948] = {.lex_state = 534, .external_lex_state = 120}, + [5949] = {.lex_state = 472}, + [5950] = {.lex_state = 534, .external_lex_state = 120}, + [5951] = {.lex_state = 534, .external_lex_state = 120}, + [5952] = {.lex_state = 534, .external_lex_state = 120}, + [5953] = {.lex_state = 534, .external_lex_state = 120}, + [5954] = {.lex_state = 473}, + [5955] = {.lex_state = 534, .external_lex_state = 120}, + [5956] = {.lex_state = 534, .external_lex_state = 120}, + [5957] = {.lex_state = 534, .external_lex_state = 120}, + [5958] = {.lex_state = 534, .external_lex_state = 120}, + [5959] = {.lex_state = 446}, + [5960] = {.lex_state = 534, .external_lex_state = 120}, + [5961] = {.lex_state = 98, .external_lex_state = 117}, + [5962] = {.lex_state = 534, .external_lex_state = 120}, + [5963] = {.lex_state = 428, .external_lex_state = 119}, + [5964] = {.lex_state = 428, .external_lex_state = 119}, + [5965] = {.lex_state = 98, .external_lex_state = 117}, + [5966] = {.lex_state = 534, .external_lex_state = 120}, + [5967] = {.lex_state = 534, .external_lex_state = 120}, + [5968] = {.lex_state = 98, .external_lex_state = 117}, + [5969] = {.lex_state = 534, .external_lex_state = 120}, + [5970] = {.lex_state = 473}, + [5971] = {.lex_state = 534, .external_lex_state = 120}, + [5972] = {.lex_state = 476, .external_lex_state = 121}, + [5973] = {.lex_state = 534, .external_lex_state = 120}, + [5974] = {.lex_state = 534, .external_lex_state = 120}, + [5975] = {.lex_state = 534, .external_lex_state = 120}, + [5976] = {.lex_state = 534, .external_lex_state = 120}, + [5977] = {.lex_state = 428, .external_lex_state = 119}, + [5978] = {.lex_state = 476, .external_lex_state = 121}, + [5979] = {.lex_state = 534, .external_lex_state = 120}, + [5980] = {.lex_state = 534, .external_lex_state = 120}, + [5981] = {.lex_state = 428, .external_lex_state = 122}, + [5982] = {.lex_state = 534, .external_lex_state = 120}, + [5983] = {.lex_state = 98, .external_lex_state = 117}, + [5984] = {.lex_state = 476, .external_lex_state = 118}, + [5985] = {.lex_state = 428, .external_lex_state = 119}, + [5986] = {.lex_state = 534, .external_lex_state = 120}, + [5987] = {.lex_state = 98, .external_lex_state = 117}, + [5988] = {.lex_state = 476, .external_lex_state = 121}, + [5989] = {.lex_state = 476, .external_lex_state = 121}, + [5990] = {.lex_state = 474}, + [5991] = {.lex_state = 428, .external_lex_state = 122}, + [5992] = {.lex_state = 446}, + [5993] = {.lex_state = 428, .external_lex_state = 119}, + [5994] = {.lex_state = 447, .external_lex_state = 113}, + [5995] = {.lex_state = 534, .external_lex_state = 120}, + [5996] = {.lex_state = 447, .external_lex_state = 113}, + [5997] = {.lex_state = 534, .external_lex_state = 120}, + [5998] = {.lex_state = 447, .external_lex_state = 113}, + [5999] = {.lex_state = 534, .external_lex_state = 120}, + [6000] = {.lex_state = 428, .external_lex_state = 119}, + [6001] = {.lex_state = 476, .external_lex_state = 121}, + [6002] = {.lex_state = 428, .external_lex_state = 119}, + [6003] = {.lex_state = 534, .external_lex_state = 120}, + [6004] = {.lex_state = 534, .external_lex_state = 120}, + [6005] = {.lex_state = 447, .external_lex_state = 113}, + [6006] = {.lex_state = 534, .external_lex_state = 120}, + [6007] = {.lex_state = 534, .external_lex_state = 120}, + [6008] = {.lex_state = 446}, + [6009] = {.lex_state = 534, .external_lex_state = 120}, + [6010] = {.lex_state = 534, .external_lex_state = 120}, + [6011] = {.lex_state = 534, .external_lex_state = 120}, + [6012] = {.lex_state = 534, .external_lex_state = 120}, + [6013] = {.lex_state = 534, .external_lex_state = 120}, + [6014] = {.lex_state = 428, .external_lex_state = 119}, + [6015] = {.lex_state = 98, .external_lex_state = 117}, + [6016] = {.lex_state = 534, .external_lex_state = 120}, + [6017] = {.lex_state = 534, .external_lex_state = 120}, + [6018] = {.lex_state = 534, .external_lex_state = 120}, + [6019] = {.lex_state = 534, .external_lex_state = 120}, + [6020] = {.lex_state = 447, .external_lex_state = 113}, + [6021] = {.lex_state = 534, .external_lex_state = 120}, + [6022] = {.lex_state = 534, .external_lex_state = 120}, + [6023] = {.lex_state = 534, .external_lex_state = 120}, + [6024] = {.lex_state = 446}, + [6025] = {.lex_state = 534, .external_lex_state = 120}, + [6026] = {.lex_state = 534, .external_lex_state = 120}, + [6027] = {.lex_state = 534, .external_lex_state = 120}, + [6028] = {.lex_state = 476, .external_lex_state = 118}, + [6029] = {.lex_state = 476, .external_lex_state = 118}, + [6030] = {.lex_state = 428, .external_lex_state = 119}, + [6031] = {.lex_state = 98, .external_lex_state = 117}, + [6032] = {.lex_state = 534, .external_lex_state = 120}, + [6033] = {.lex_state = 534, .external_lex_state = 120}, + [6034] = {.lex_state = 534, .external_lex_state = 120}, + [6035] = {.lex_state = 473}, + [6036] = {.lex_state = 476, .external_lex_state = 121}, + [6037] = {.lex_state = 428, .external_lex_state = 119}, + [6038] = {.lex_state = 476, .external_lex_state = 121}, + [6039] = {.lex_state = 534, .external_lex_state = 120}, + [6040] = {.lex_state = 534, .external_lex_state = 120}, + [6041] = {.lex_state = 534, .external_lex_state = 120}, + [6042] = {.lex_state = 534, .external_lex_state = 120}, + [6043] = {.lex_state = 473}, + [6044] = {.lex_state = 534, .external_lex_state = 120}, + [6045] = {.lex_state = 534, .external_lex_state = 120}, + [6046] = {.lex_state = 476, .external_lex_state = 121}, + [6047] = {.lex_state = 534, .external_lex_state = 120}, + [6048] = {.lex_state = 534, .external_lex_state = 120}, + [6049] = {.lex_state = 534, .external_lex_state = 120}, + [6050] = {.lex_state = 534, .external_lex_state = 120}, + [6051] = {.lex_state = 534, .external_lex_state = 120}, + [6052] = {.lex_state = 428, .external_lex_state = 119}, + [6053] = {.lex_state = 534, .external_lex_state = 120}, + [6054] = {.lex_state = 534, .external_lex_state = 120}, + [6055] = {.lex_state = 534, .external_lex_state = 120}, + [6056] = {.lex_state = 534, .external_lex_state = 120}, + [6057] = {.lex_state = 534, .external_lex_state = 120}, + [6058] = {.lex_state = 428, .external_lex_state = 122}, + [6059] = {.lex_state = 534, .external_lex_state = 120}, + [6060] = {.lex_state = 98, .external_lex_state = 117}, + [6061] = {.lex_state = 428, .external_lex_state = 119}, + [6062] = {.lex_state = 93, .external_lex_state = 117}, + [6063] = {.lex_state = 534, .external_lex_state = 120}, + [6064] = {.lex_state = 428, .external_lex_state = 122}, + [6065] = {.lex_state = 534, .external_lex_state = 120}, + [6066] = {.lex_state = 476, .external_lex_state = 121}, + [6067] = {.lex_state = 447, .external_lex_state = 113}, + [6068] = {.lex_state = 464, .external_lex_state = 112}, + [6069] = {.lex_state = 428, .external_lex_state = 119}, + [6070] = {.lex_state = 464, .external_lex_state = 112}, + [6071] = {.lex_state = 421, .external_lex_state = 123}, + [6072] = {.lex_state = 464, .external_lex_state = 112}, + [6073] = {.lex_state = 428, .external_lex_state = 119}, + [6074] = {.lex_state = 421, .external_lex_state = 123}, + [6075] = {.lex_state = 447, .external_lex_state = 113}, + [6076] = {.lex_state = 447, .external_lex_state = 113}, + [6077] = {.lex_state = 421, .external_lex_state = 123}, + [6078] = {.lex_state = 476, .external_lex_state = 121}, + [6079] = {.lex_state = 428, .external_lex_state = 121}, + [6080] = {.lex_state = 421, .external_lex_state = 123}, + [6081] = {.lex_state = 447, .external_lex_state = 113}, + [6082] = {.lex_state = 464, .external_lex_state = 112}, + [6083] = {.lex_state = 447, .external_lex_state = 113}, + [6084] = {.lex_state = 93, .external_lex_state = 117}, + [6085] = {.lex_state = 476, .external_lex_state = 121}, + [6086] = {.lex_state = 447, .external_lex_state = 113}, + [6087] = {.lex_state = 428, .external_lex_state = 119}, + [6088] = {.lex_state = 421, .external_lex_state = 123}, + [6089] = {.lex_state = 447, .external_lex_state = 113}, + [6090] = {.lex_state = 446}, + [6091] = {.lex_state = 428, .external_lex_state = 119}, + [6092] = {.lex_state = 446}, + [6093] = {.lex_state = 447, .external_lex_state = 113}, + [6094] = {.lex_state = 447, .external_lex_state = 113}, + [6095] = {.lex_state = 428, .external_lex_state = 119}, + [6096] = {.lex_state = 447, .external_lex_state = 113}, + [6097] = {.lex_state = 447, .external_lex_state = 113}, + [6098] = {.lex_state = 421, .external_lex_state = 123}, + [6099] = {.lex_state = 447, .external_lex_state = 113}, + [6100] = {.lex_state = 428, .external_lex_state = 119}, + [6101] = {.lex_state = 476, .external_lex_state = 121}, + [6102] = {.lex_state = 476, .external_lex_state = 121}, + [6103] = {.lex_state = 421, .external_lex_state = 123}, + [6104] = {.lex_state = 476, .external_lex_state = 121}, + [6105] = {.lex_state = 93, .external_lex_state = 117}, + [6106] = {.lex_state = 476, .external_lex_state = 121}, + [6107] = {.lex_state = 447, .external_lex_state = 113}, + [6108] = {.lex_state = 421, .external_lex_state = 123}, + [6109] = {.lex_state = 476, .external_lex_state = 121}, + [6110] = {.lex_state = 421, .external_lex_state = 123}, + [6111] = {.lex_state = 421, .external_lex_state = 123}, + [6112] = {.lex_state = 476, .external_lex_state = 121}, + [6113] = {.lex_state = 476, .external_lex_state = 121}, + [6114] = {.lex_state = 447, .external_lex_state = 113}, + [6115] = {.lex_state = 93, .external_lex_state = 117}, + [6116] = {.lex_state = 447, .external_lex_state = 113}, + [6117] = {.lex_state = 447, .external_lex_state = 113}, + [6118] = {.lex_state = 476, .external_lex_state = 121}, + [6119] = {.lex_state = 428, .external_lex_state = 119}, + [6120] = {.lex_state = 421, .external_lex_state = 123}, + [6121] = {.lex_state = 447, .external_lex_state = 113}, + [6122] = {.lex_state = 447, .external_lex_state = 113}, + [6123] = {.lex_state = 428, .external_lex_state = 119}, + [6124] = {.lex_state = 476, .external_lex_state = 121}, + [6125] = {.lex_state = 476, .external_lex_state = 121}, + [6126] = {.lex_state = 421, .external_lex_state = 123}, + [6127] = {.lex_state = 476, .external_lex_state = 121}, + [6128] = {.lex_state = 447, .external_lex_state = 113}, + [6129] = {.lex_state = 534}, + [6130] = {.lex_state = 423}, + [6131] = {.lex_state = 423}, + [6132] = {.lex_state = 406, .external_lex_state = 124}, + [6133] = {.lex_state = 423}, + [6134] = {.lex_state = 423}, + [6135] = {.lex_state = 423}, + [6136] = {.lex_state = 423}, + [6137] = {.lex_state = 421}, + [6138] = {.lex_state = 476}, + [6139] = {.lex_state = 421}, + [6140] = {.lex_state = 421}, + [6141] = {.lex_state = 464, .external_lex_state = 115}, + [6142] = {.lex_state = 534}, + [6143] = {.lex_state = 423}, + [6144] = {.lex_state = 406}, + [6145] = {.lex_state = 421}, + [6146] = {.lex_state = 406}, + [6147] = {.lex_state = 406}, + [6148] = {.lex_state = 406}, + [6149] = {.lex_state = 534}, + [6150] = {.lex_state = 423}, + [6151] = {.lex_state = 534}, + [6152] = {.lex_state = 476}, + [6153] = {.lex_state = 423}, + [6154] = {.lex_state = 423}, + [6155] = {.lex_state = 423}, + [6156] = {.lex_state = 476}, + [6157] = {.lex_state = 406}, + [6158] = {.lex_state = 423}, + [6159] = {.lex_state = 423}, + [6160] = {.lex_state = 423}, + [6161] = {.lex_state = 476}, + [6162] = {.lex_state = 423}, + [6163] = {.lex_state = 423}, + [6164] = {.lex_state = 476}, + [6165] = {.lex_state = 423}, + [6166] = {.lex_state = 476}, + [6167] = {.lex_state = 423}, + [6168] = {.lex_state = 534}, + [6169] = {.lex_state = 476}, + [6170] = {.lex_state = 406}, + [6171] = {.lex_state = 476}, + [6172] = {.lex_state = 423}, + [6173] = {.lex_state = 476}, + [6174] = {.lex_state = 476}, + [6175] = {.lex_state = 423}, + [6176] = {.lex_state = 476}, + [6177] = {.lex_state = 476}, + [6178] = {.lex_state = 476}, + [6179] = {.lex_state = 423}, + [6180] = {.lex_state = 534}, + [6181] = {.lex_state = 476}, + [6182] = {.lex_state = 406}, + [6183] = {.lex_state = 534}, + [6184] = {.lex_state = 476}, + [6185] = {.lex_state = 423}, + [6186] = {.lex_state = 534}, + [6187] = {.lex_state = 423}, + [6188] = {.lex_state = 476}, + [6189] = {.lex_state = 423}, + [6190] = {.lex_state = 406}, + [6191] = {.lex_state = 423}, + [6192] = {.lex_state = 406}, + [6193] = {.lex_state = 406}, + [6194] = {.lex_state = 423}, + [6195] = {.lex_state = 406}, + [6196] = {.lex_state = 406}, + [6197] = {.lex_state = 423}, + [6198] = {.lex_state = 406}, + [6199] = {.lex_state = 534}, + [6200] = {.lex_state = 423}, + [6201] = {.lex_state = 423}, + [6202] = {.lex_state = 423}, + [6203] = {.lex_state = 534}, + [6204] = {.lex_state = 406}, + [6205] = {.lex_state = 423}, + [6206] = {.lex_state = 534}, + [6207] = {.lex_state = 423}, + [6208] = {.lex_state = 534}, + [6209] = {.lex_state = 423}, + [6210] = {.lex_state = 423}, + [6211] = {.lex_state = 423}, + [6212] = {.lex_state = 534}, + [6213] = {.lex_state = 406}, + [6214] = {.lex_state = 534}, + [6215] = {.lex_state = 423}, + [6216] = {.lex_state = 423}, + [6217] = {.lex_state = 423}, + [6218] = {.lex_state = 534}, + [6219] = {.lex_state = 534}, + [6220] = {.lex_state = 406, .external_lex_state = 124}, + [6221] = {.lex_state = 464, .external_lex_state = 115}, + [6222] = {.lex_state = 423}, + [6223] = {.lex_state = 423}, + [6224] = {.lex_state = 534}, + [6225] = {.lex_state = 423}, + [6226] = {.lex_state = 423}, + [6227] = {.lex_state = 423}, + [6228] = {.lex_state = 423}, + [6229] = {.lex_state = 423}, + [6230] = {.lex_state = 423}, + [6231] = {.lex_state = 423}, + [6232] = {.lex_state = 406, .external_lex_state = 124}, + [6233] = {.lex_state = 423}, + [6234] = {.lex_state = 423}, + [6235] = {.lex_state = 423}, + [6236] = {.lex_state = 446}, + [6237] = {.lex_state = 406, .external_lex_state = 124}, + [6238] = {.lex_state = 476}, + [6239] = {.lex_state = 421}, + [6240] = {.lex_state = 423}, + [6241] = {.lex_state = 423}, + [6242] = {.lex_state = 423}, + [6243] = {.lex_state = 393, .external_lex_state = 113}, + [6244] = {.lex_state = 423}, + [6245] = {.lex_state = 423}, + [6246] = {.lex_state = 464, .external_lex_state = 115}, + [6247] = {.lex_state = 462, .external_lex_state = 113}, + [6248] = {.lex_state = 462, .external_lex_state = 113}, + [6249] = {.lex_state = 423}, + [6250] = {.lex_state = 534}, + [6251] = {.lex_state = 462, .external_lex_state = 113}, + [6252] = {.lex_state = 476}, + [6253] = {.lex_state = 406}, + [6254] = {.lex_state = 423}, + [6255] = {.lex_state = 476}, + [6256] = {.lex_state = 423}, + [6257] = {.lex_state = 423}, + [6258] = {.lex_state = 423}, + [6259] = {.lex_state = 406, .external_lex_state = 124}, + [6260] = {.lex_state = 423}, + [6261] = {.lex_state = 476}, + [6262] = {.lex_state = 423}, + [6263] = {.lex_state = 423}, + [6264] = {.lex_state = 406, .external_lex_state = 124}, + [6265] = {.lex_state = 406}, + [6266] = {.lex_state = 423}, + [6267] = {.lex_state = 423}, + [6268] = {.lex_state = 534}, + [6269] = {.lex_state = 462, .external_lex_state = 113}, + [6270] = {.lex_state = 406, .external_lex_state = 124}, + [6271] = {.lex_state = 423}, + [6272] = {.lex_state = 423}, + [6273] = {.lex_state = 421}, + [6274] = {.lex_state = 423}, + [6275] = {.lex_state = 423}, + [6276] = {.lex_state = 476}, + [6277] = {.lex_state = 406, .external_lex_state = 124}, + [6278] = {.lex_state = 423}, + [6279] = {.lex_state = 406}, + [6280] = {.lex_state = 464, .external_lex_state = 112}, + [6281] = {.lex_state = 421}, + [6282] = {.lex_state = 423}, + [6283] = {.lex_state = 464, .external_lex_state = 112}, + [6284] = {.lex_state = 423}, + [6285] = {.lex_state = 534}, + [6286] = {.lex_state = 406}, + [6287] = {.lex_state = 423}, + [6288] = {.lex_state = 423}, + [6289] = {.lex_state = 406, .external_lex_state = 124}, + [6290] = {.lex_state = 406}, + [6291] = {.lex_state = 476}, + [6292] = {.lex_state = 476}, + [6293] = {.lex_state = 406}, + [6294] = {.lex_state = 423}, + [6295] = {.lex_state = 423}, + [6296] = {.lex_state = 423}, + [6297] = {.lex_state = 423}, + [6298] = {.lex_state = 464, .external_lex_state = 112}, + [6299] = {.lex_state = 464, .external_lex_state = 115}, + [6300] = {.lex_state = 464, .external_lex_state = 112}, + [6301] = {.lex_state = 408, .external_lex_state = 125}, + [6302] = {.lex_state = 464, .external_lex_state = 112}, + [6303] = {.lex_state = 462}, + [6304] = {.lex_state = 464, .external_lex_state = 112}, + [6305] = {.lex_state = 462}, + [6306] = {.lex_state = 464, .external_lex_state = 112}, + [6307] = {.lex_state = 474}, + [6308] = {.lex_state = 474}, + [6309] = {.lex_state = 464, .external_lex_state = 112}, + [6310] = {.lex_state = 408, .external_lex_state = 125}, + [6311] = {.lex_state = 462}, + [6312] = {.lex_state = 408, .external_lex_state = 125}, + [6313] = {.lex_state = 462}, + [6314] = {.lex_state = 406}, + [6315] = {.lex_state = 474}, + [6316] = {.lex_state = 462}, + [6317] = {.lex_state = 462}, + [6318] = {.lex_state = 408, .external_lex_state = 125}, + [6319] = {.lex_state = 423}, + [6320] = {.lex_state = 462}, + [6321] = {.lex_state = 408, .external_lex_state = 125}, + [6322] = {.lex_state = 464, .external_lex_state = 112}, + [6323] = {.lex_state = 462}, + [6324] = {.lex_state = 423}, + [6325] = {.lex_state = 462}, + [6326] = {.lex_state = 462}, + [6327] = {.lex_state = 408, .external_lex_state = 125}, + [6328] = {.lex_state = 464, .external_lex_state = 112}, + [6329] = {.lex_state = 462}, + [6330] = {.lex_state = 408, .external_lex_state = 125}, + [6331] = {.lex_state = 464, .external_lex_state = 112}, + [6332] = {.lex_state = 462}, + [6333] = {.lex_state = 462}, + [6334] = {.lex_state = 474}, + [6335] = {.lex_state = 421}, + [6336] = {.lex_state = 428, .external_lex_state = 112}, + [6337] = {.lex_state = 408, .external_lex_state = 125}, + [6338] = {.lex_state = 462}, + [6339] = {.lex_state = 474}, + [6340] = {.lex_state = 462}, + [6341] = {.lex_state = 464, .external_lex_state = 112}, + [6342] = {.lex_state = 464, .external_lex_state = 112}, + [6343] = {.lex_state = 462}, + [6344] = {.lex_state = 462}, + [6345] = {.lex_state = 464, .external_lex_state = 112}, + [6346] = {.lex_state = 474}, + [6347] = {.lex_state = 464, .external_lex_state = 112}, + [6348] = {.lex_state = 423}, + [6349] = {.lex_state = 406}, + [6350] = {.lex_state = 423}, + [6351] = {.lex_state = 428, .external_lex_state = 112}, + [6352] = {.lex_state = 421}, + [6353] = {.lex_state = 462}, + [6354] = {.lex_state = 474}, + [6355] = {.lex_state = 423}, + [6356] = {.lex_state = 462}, + [6357] = {.lex_state = 423}, + [6358] = {.lex_state = 462}, + [6359] = {.lex_state = 464, .external_lex_state = 112}, + [6360] = {.lex_state = 428, .external_lex_state = 116}, + [6361] = {.lex_state = 474}, + [6362] = {.lex_state = 462}, + [6363] = {.lex_state = 408, .external_lex_state = 125}, + [6364] = {.lex_state = 462}, + [6365] = {.lex_state = 423}, + [6366] = {.lex_state = 462}, + [6367] = {.lex_state = 421}, + [6368] = {.lex_state = 464, .external_lex_state = 112}, + [6369] = {.lex_state = 464, .external_lex_state = 112}, + [6370] = {.lex_state = 462}, + [6371] = {.lex_state = 408, .external_lex_state = 125}, + [6372] = {.lex_state = 462}, + [6373] = {.lex_state = 464, .external_lex_state = 112}, + [6374] = {.lex_state = 462}, + [6375] = {.lex_state = 462}, + [6376] = {.lex_state = 534}, + [6377] = {.lex_state = 429}, + [6378] = {.lex_state = 428, .external_lex_state = 112}, + [6379] = {.lex_state = 421, .external_lex_state = 123}, + [6380] = {.lex_state = 534}, + [6381] = {.lex_state = 421}, + [6382] = {.lex_state = 428, .external_lex_state = 112}, + [6383] = {.lex_state = 428, .external_lex_state = 112}, + [6384] = {.lex_state = 534}, + [6385] = {.lex_state = 428, .external_lex_state = 112}, + [6386] = {.lex_state = 534}, + [6387] = {.lex_state = 534}, + [6388] = {.lex_state = 534}, + [6389] = {.lex_state = 429}, + [6390] = {.lex_state = 421}, + [6391] = {.lex_state = 474}, + [6392] = {.lex_state = 534}, + [6393] = {.lex_state = 421, .external_lex_state = 123}, + [6394] = {.lex_state = 534}, + [6395] = {.lex_state = 428, .external_lex_state = 112}, + [6396] = {.lex_state = 534}, + [6397] = {.lex_state = 428, .external_lex_state = 112}, + [6398] = {.lex_state = 534}, + [6399] = {.lex_state = 421}, + [6400] = {.lex_state = 534}, + [6401] = {.lex_state = 156, .external_lex_state = 117}, + [6402] = {.lex_state = 156, .external_lex_state = 117}, + [6403] = {.lex_state = 428, .external_lex_state = 112}, + [6404] = {.lex_state = 421, .external_lex_state = 123}, + [6405] = {.lex_state = 534}, + [6406] = {.lex_state = 534}, + [6407] = {.lex_state = 428, .external_lex_state = 112}, + [6408] = {.lex_state = 421}, + [6409] = {.lex_state = 428, .external_lex_state = 112}, + [6410] = {.lex_state = 534}, + [6411] = {.lex_state = 534}, + [6412] = {.lex_state = 156, .external_lex_state = 117}, + [6413] = {.lex_state = 534}, + [6414] = {.lex_state = 156, .external_lex_state = 117}, + [6415] = {.lex_state = 534}, + [6416] = {.lex_state = 534}, + [6417] = {.lex_state = 421}, + [6418] = {.lex_state = 156, .external_lex_state = 117}, + [6419] = {.lex_state = 534}, + [6420] = {.lex_state = 421, .external_lex_state = 123}, + [6421] = {.lex_state = 474}, + [6422] = {.lex_state = 428, .external_lex_state = 112}, + [6423] = {.lex_state = 429}, + [6424] = {.lex_state = 156, .external_lex_state = 117}, + [6425] = {.lex_state = 534}, + [6426] = {.lex_state = 421}, + [6427] = {.lex_state = 421, .external_lex_state = 123}, + [6428] = {.lex_state = 429}, + [6429] = {.lex_state = 534}, + [6430] = {.lex_state = 534}, + [6431] = {.lex_state = 534}, + [6432] = {.lex_state = 534}, + [6433] = {.lex_state = 408, .external_lex_state = 126}, + [6434] = {.lex_state = 421, .external_lex_state = 123}, + [6435] = {.lex_state = 421}, + [6436] = {.lex_state = 408, .external_lex_state = 126}, + [6437] = {.lex_state = 429}, + [6438] = {.lex_state = 534}, + [6439] = {.lex_state = 534}, + [6440] = {.lex_state = 428, .external_lex_state = 112}, + [6441] = {.lex_state = 474}, + [6442] = {.lex_state = 421}, + [6443] = {.lex_state = 534}, + [6444] = {.lex_state = 421, .external_lex_state = 123}, + [6445] = {.lex_state = 421, .external_lex_state = 123}, + [6446] = {.lex_state = 534}, + [6447] = {.lex_state = 428, .external_lex_state = 112}, + [6448] = {.lex_state = 534}, + [6449] = {.lex_state = 421}, + [6450] = {.lex_state = 421, .external_lex_state = 123}, + [6451] = {.lex_state = 534}, + [6452] = {.lex_state = 397}, + [6453] = {.lex_state = 534}, + [6454] = {.lex_state = 423}, + [6455] = {.lex_state = 534}, + [6456] = {.lex_state = 421}, + [6457] = {.lex_state = 534}, + [6458] = {.lex_state = 428, .external_lex_state = 112}, + [6459] = {.lex_state = 474}, + [6460] = {.lex_state = 534, .external_lex_state = 127}, [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}, + [6462] = {.lex_state = 429}, + [6463] = {.lex_state = 421}, + [6464] = {.lex_state = 421, .external_lex_state = 123}, + [6465] = {.lex_state = 534, .external_lex_state = 127}, + [6466] = {.lex_state = 421, .external_lex_state = 123}, + [6467] = {.lex_state = 534}, [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}, + [6469] = {.lex_state = 534, .external_lex_state = 127}, + [6470] = {.lex_state = 421}, + [6471] = {.lex_state = 534, .external_lex_state = 127}, + [6472] = {.lex_state = 534}, + [6473] = {.lex_state = 534}, + [6474] = {.lex_state = 429}, + [6475] = {.lex_state = 421, .external_lex_state = 123}, + [6476] = {.lex_state = 534}, + [6477] = {.lex_state = 421}, + [6478] = {.lex_state = 474}, + [6479] = {.lex_state = 421, .external_lex_state = 123}, + [6480] = {.lex_state = 421, .external_lex_state = 123}, + [6481] = {.lex_state = 421, .external_lex_state = 123}, + [6482] = {.lex_state = 534}, + [6483] = {.lex_state = 534}, + [6484] = {.lex_state = 421}, + [6485] = {.lex_state = 428, .external_lex_state = 112}, + [6486] = {.lex_state = 534}, + [6487] = {.lex_state = 474}, + [6488] = {.lex_state = 421, .external_lex_state = 123}, + [6489] = {.lex_state = 421, .external_lex_state = 123}, + [6490] = {.lex_state = 421, .external_lex_state = 123}, + [6491] = {.lex_state = 421}, + [6492] = {.lex_state = 534}, + [6493] = {.lex_state = 534}, + [6494] = {.lex_state = 534}, + [6495] = {.lex_state = 421, .external_lex_state = 123}, + [6496] = {.lex_state = 534}, [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}, + [6498] = {.lex_state = 421}, + [6499] = {.lex_state = 429}, + [6500] = {.lex_state = 428, .external_lex_state = 112}, + [6501] = {.lex_state = 534}, + [6502] = {.lex_state = 156, .external_lex_state = 117}, + [6503] = {.lex_state = 534}, + [6504] = {.lex_state = 534}, + [6505] = {.lex_state = 421}, + [6506] = {.lex_state = 534}, + [6507] = {.lex_state = 534}, + [6508] = {.lex_state = 534}, + [6509] = {.lex_state = 534}, + [6510] = {.lex_state = 428, .external_lex_state = 112}, + [6511] = {.lex_state = 534}, + [6512] = {.lex_state = 421}, + [6513] = {.lex_state = 534}, [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}, + [6515] = {.lex_state = 534}, + [6516] = {.lex_state = 534}, + [6517] = {.lex_state = 534}, + [6518] = {.lex_state = 428, .external_lex_state = 112}, + [6519] = {.lex_state = 421}, + [6520] = {.lex_state = 534}, + [6521] = {.lex_state = 156, .external_lex_state = 117}, [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}, + [6523] = {.lex_state = 534}, + [6524] = {.lex_state = 428, .external_lex_state = 112}, + [6525] = {.lex_state = 428, .external_lex_state = 112}, + [6526] = {.lex_state = 421}, [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}, + [6528] = {.lex_state = 534}, + [6529] = {.lex_state = 428, .external_lex_state = 112}, + [6530] = {.lex_state = 534}, + [6531] = {.lex_state = 428, .external_lex_state = 112}, + [6532] = {.lex_state = 534}, + [6533] = {.lex_state = 421}, + [6534] = {.lex_state = 428, .external_lex_state = 112}, + [6535] = {.lex_state = 534}, + [6536] = {.lex_state = 397}, + [6537] = {.lex_state = 408, .external_lex_state = 126}, + [6538] = {.lex_state = 428, .external_lex_state = 112}, + [6539] = {.lex_state = 428, .external_lex_state = 112}, + [6540] = {.lex_state = 421}, + [6541] = {.lex_state = 534}, + [6542] = {.lex_state = 534}, + [6543] = {.lex_state = 534}, + [6544] = {.lex_state = 428, .external_lex_state = 112}, + [6545] = {.lex_state = 429}, + [6546] = {.lex_state = 428, .external_lex_state = 112}, + [6547] = {.lex_state = 421}, + [6548] = {.lex_state = 428, .external_lex_state = 112}, + [6549] = {.lex_state = 534}, [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}, + [6551] = {.lex_state = 534}, + [6552] = {.lex_state = 534}, + [6553] = {.lex_state = 534}, + [6554] = {.lex_state = 421}, + [6555] = {.lex_state = 534}, + [6556] = {.lex_state = 534}, + [6557] = {.lex_state = 534}, + [6558] = {.lex_state = 421, .external_lex_state = 123}, + [6559] = {.lex_state = 534}, + [6560] = {.lex_state = 534}, + [6561] = {.lex_state = 421}, + [6562] = {.lex_state = 428, .external_lex_state = 112}, + [6563] = {.lex_state = 428, .external_lex_state = 112}, + [6564] = {.lex_state = 534}, + [6565] = {.lex_state = 534}, + [6566] = {.lex_state = 428, .external_lex_state = 112}, + [6567] = {.lex_state = 534}, + [6568] = {.lex_state = 421}, + [6569] = {.lex_state = 421, .external_lex_state = 123}, + [6570] = {.lex_state = 421}, + [6571] = {.lex_state = 534}, + [6572] = {.lex_state = 421, .external_lex_state = 123}, + [6573] = {.lex_state = 534}, + [6574] = {.lex_state = 421, .external_lex_state = 123}, + [6575] = {.lex_state = 421}, + [6576] = {.lex_state = 156, .external_lex_state = 117}, + [6577] = {.lex_state = 534}, [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}, + [6579] = {.lex_state = 534}, + [6580] = {.lex_state = 408, .external_lex_state = 126}, + [6581] = {.lex_state = 408, .external_lex_state = 126}, + [6582] = {.lex_state = 421}, + [6583] = {.lex_state = 429}, + [6584] = {.lex_state = 156, .external_lex_state = 117}, [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}, + [6586] = {.lex_state = 421, .external_lex_state = 123}, + [6587] = {.lex_state = 429}, + [6588] = {.lex_state = 428, .external_lex_state = 112}, + [6589] = {.lex_state = 421}, + [6590] = {.lex_state = 534}, + [6591] = {.lex_state = 534, .external_lex_state = 127}, + [6592] = {.lex_state = 408, .external_lex_state = 126}, + [6593] = {.lex_state = 534, .external_lex_state = 127}, + [6594] = {.lex_state = 428, .external_lex_state = 112}, + [6595] = {.lex_state = 534}, + [6596] = {.lex_state = 421}, + [6597] = {.lex_state = 534}, + [6598] = {.lex_state = 156, .external_lex_state = 117}, + [6599] = {.lex_state = 428, .external_lex_state = 112}, + [6600] = {.lex_state = 428, .external_lex_state = 112}, + [6601] = {.lex_state = 428, .external_lex_state = 112}, + [6602] = {.lex_state = 534}, + [6603] = {.lex_state = 421}, + [6604] = {.lex_state = 428, .external_lex_state = 112}, + [6605] = {.lex_state = 428, .external_lex_state = 112}, + [6606] = {.lex_state = 534}, + [6607] = {.lex_state = 534}, + [6608] = {.lex_state = 534}, + [6609] = {.lex_state = 534}, + [6610] = {.lex_state = 421}, + [6611] = {.lex_state = 156, .external_lex_state = 117}, + [6612] = {.lex_state = 428, .external_lex_state = 112}, + [6613] = {.lex_state = 534}, + [6614] = {.lex_state = 534}, + [6615] = {.lex_state = 534}, + [6616] = {.lex_state = 428, .external_lex_state = 112}, + [6617] = {.lex_state = 421}, + [6618] = {.lex_state = 534}, + [6619] = {.lex_state = 428, .external_lex_state = 112}, + [6620] = {.lex_state = 428, .external_lex_state = 112}, + [6621] = {.lex_state = 534}, + [6622] = {.lex_state = 428, .external_lex_state = 112}, + [6623] = {.lex_state = 534}, + [6624] = {.lex_state = 421}, + [6625] = {.lex_state = 534}, [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}, + [6627] = {.lex_state = 534}, + [6628] = {.lex_state = 156, .external_lex_state = 117}, + [6629] = {.lex_state = 534}, + [6630] = {.lex_state = 534}, + [6631] = {.lex_state = 421}, + [6632] = {.lex_state = 156, .external_lex_state = 117}, + [6633] = {.lex_state = 428, .external_lex_state = 112}, + [6634] = {.lex_state = 429}, + [6635] = {.lex_state = 534}, + [6636] = {.lex_state = 534}, + [6637] = {.lex_state = 534}, + [6638] = {.lex_state = 421}, + [6639] = {.lex_state = 534}, + [6640] = {.lex_state = 428, .external_lex_state = 112}, + [6641] = {.lex_state = 534}, + [6642] = {.lex_state = 534}, + [6643] = {.lex_state = 534, .external_lex_state = 128}, + [6644] = {.lex_state = 428, .external_lex_state = 112}, + [6645] = {.lex_state = 421}, + [6646] = {.lex_state = 428, .external_lex_state = 112}, + [6647] = {.lex_state = 421}, + [6648] = {.lex_state = 534}, + [6649] = {.lex_state = 428, .external_lex_state = 112}, + [6650] = {.lex_state = 397}, + [6651] = {.lex_state = 428, .external_lex_state = 112}, + [6652] = {.lex_state = 421}, + [6653] = {.lex_state = 534}, + [6654] = {.lex_state = 421, .external_lex_state = 123}, + [6655] = {.lex_state = 428, .external_lex_state = 112}, + [6656] = {.lex_state = 534}, + [6657] = {.lex_state = 534}, + [6658] = {.lex_state = 534}, + [6659] = {.lex_state = 421}, + [6660] = {.lex_state = 428, .external_lex_state = 112}, + [6661] = {.lex_state = 534}, + [6662] = {.lex_state = 428, .external_lex_state = 112}, + [6663] = {.lex_state = 534}, + [6664] = {.lex_state = 534}, + [6665] = {.lex_state = 534}, + [6666] = {.lex_state = 421}, + [6667] = {.lex_state = 156, .external_lex_state = 117}, + [6668] = {.lex_state = 534}, + [6669] = {.lex_state = 428, .external_lex_state = 112}, + [6670] = {.lex_state = 534}, + [6671] = {.lex_state = 428, .external_lex_state = 112}, + [6672] = {.lex_state = 534}, + [6673] = {.lex_state = 421}, + [6674] = {.lex_state = 534}, + [6675] = {.lex_state = 534}, + [6676] = {.lex_state = 534}, + [6677] = {.lex_state = 534}, + [6678] = {.lex_state = 534}, + [6679] = {.lex_state = 534}, + [6680] = {.lex_state = 421}, + [6681] = {.lex_state = 428, .external_lex_state = 112}, + [6682] = {.lex_state = 534}, + [6683] = {.lex_state = 429}, + [6684] = {.lex_state = 534}, + [6685] = {.lex_state = 534}, [6686] = {.lex_state = 429}, - [6687] = {.lex_state = 414, .external_lex_state = 127}, - [6688] = {.lex_state = 540}, - [6689] = {.lex_state = 480}, + [6687] = {.lex_state = 421}, + [6688] = {.lex_state = 408, .external_lex_state = 126}, + [6689] = {.lex_state = 408, .external_lex_state = 126}, [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}, + [6691] = {.lex_state = 428, .external_lex_state = 112}, + [6692] = {.lex_state = 534}, + [6693] = {.lex_state = 534}, + [6694] = {.lex_state = 421}, + [6695] = {.lex_state = 534}, + [6696] = {.lex_state = 534, .external_lex_state = 127}, + [6697] = {.lex_state = 534, .external_lex_state = 127}, + [6698] = {.lex_state = 534}, + [6699] = {.lex_state = 534}, + [6700] = {.lex_state = 534}, + [6701] = {.lex_state = 421}, + [6702] = {.lex_state = 156, .external_lex_state = 117}, + [6703] = {.lex_state = 534}, + [6704] = {.lex_state = 429}, + [6705] = {.lex_state = 428, .external_lex_state = 112}, + [6706] = {.lex_state = 534}, + [6707] = {.lex_state = 428, .external_lex_state = 112}, + [6708] = {.lex_state = 534}, + [6709] = {.lex_state = 534}, + [6710] = {.lex_state = 534}, + [6711] = {.lex_state = 534}, + [6712] = {.lex_state = 534}, + [6713] = {.lex_state = 428, .external_lex_state = 112}, + [6714] = {.lex_state = 534}, + [6715] = {.lex_state = 428, .external_lex_state = 112}, + [6716] = {.lex_state = 534}, + [6717] = {.lex_state = 534}, + [6718] = {.lex_state = 534}, + [6719] = {.lex_state = 534}, + [6720] = {.lex_state = 428, .external_lex_state = 112}, + [6721] = {.lex_state = 534}, + [6722] = {.lex_state = 534}, + [6723] = {.lex_state = 534}, + [6724] = {.lex_state = 534}, + [6725] = {.lex_state = 428, .external_lex_state = 112}, + [6726] = {.lex_state = 534}, + [6727] = {.lex_state = 534}, + [6728] = {.lex_state = 534}, + [6729] = {.lex_state = 421, .external_lex_state = 123}, + [6730] = {.lex_state = 534}, + [6731] = {.lex_state = 428, .external_lex_state = 112}, + [6732] = {.lex_state = 429}, + [6733] = {.lex_state = 534}, + [6734] = {.lex_state = 534}, + [6735] = {.lex_state = 428, .external_lex_state = 112}, + [6736] = {.lex_state = 421}, + [6737] = {.lex_state = 534}, + [6738] = {.lex_state = 428, .external_lex_state = 112}, + [6739] = {.lex_state = 428, .external_lex_state = 112}, + [6740] = {.lex_state = 428, .external_lex_state = 112}, + [6741] = {.lex_state = 534}, + [6742] = {.lex_state = 397}, + [6743] = {.lex_state = 534}, + [6744] = {.lex_state = 429}, + [6745] = {.lex_state = 534}, + [6746] = {.lex_state = 534}, + [6747] = {.lex_state = 428, .external_lex_state = 112}, + [6748] = {.lex_state = 428, .external_lex_state = 112}, + [6749] = {.lex_state = 534}, + [6750] = {.lex_state = 423}, + [6751] = {.lex_state = 534}, + [6752] = {.lex_state = 428, .external_lex_state = 112}, + [6753] = {.lex_state = 474}, + [6754] = {.lex_state = 421}, + [6755] = {.lex_state = 534}, + [6756] = {.lex_state = 428, .external_lex_state = 112}, + [6757] = {.lex_state = 534}, + [6758] = {.lex_state = 534, .external_lex_state = 128}, + [6759] = {.lex_state = 534}, + [6760] = {.lex_state = 534}, + [6761] = {.lex_state = 534}, + [6762] = {.lex_state = 428, .external_lex_state = 112}, + [6763] = {.lex_state = 534, .external_lex_state = 128}, + [6764] = {.lex_state = 428, .external_lex_state = 112}, + [6765] = {.lex_state = 428, .external_lex_state = 112}, + [6766] = {.lex_state = 534}, + [6767] = {.lex_state = 428, .external_lex_state = 112}, + [6768] = {.lex_state = 534}, + [6769] = {.lex_state = 429}, + [6770] = {.lex_state = 534}, + [6771] = {.lex_state = 534}, + [6772] = {.lex_state = 534}, + [6773] = {.lex_state = 428, .external_lex_state = 112}, + [6774] = {.lex_state = 534}, + [6775] = {.lex_state = 429}, + [6776] = {.lex_state = 474}, + [6777] = {.lex_state = 534}, + [6778] = {.lex_state = 534}, + [6779] = {.lex_state = 428, .external_lex_state = 112}, + [6780] = {.lex_state = 474}, + [6781] = {.lex_state = 534}, + [6782] = {.lex_state = 428, .external_lex_state = 112}, + [6783] = {.lex_state = 534}, + [6784] = {.lex_state = 421}, + [6785] = {.lex_state = 534}, + [6786] = {.lex_state = 428, .external_lex_state = 112}, + [6787] = {.lex_state = 534}, + [6788] = {.lex_state = 534}, + [6789] = {.lex_state = 534, .external_lex_state = 127}, + [6790] = {.lex_state = 428, .external_lex_state = 112}, + [6791] = {.lex_state = 474}, + [6792] = {.lex_state = 421}, + [6793] = {.lex_state = 428, .external_lex_state = 112}, + [6794] = {.lex_state = 534}, + [6795] = {.lex_state = 534}, + [6796] = {.lex_state = 534}, + [6797] = {.lex_state = 534}, + [6798] = {.lex_state = 429}, + [6799] = {.lex_state = 428, .external_lex_state = 112}, + [6800] = {.lex_state = 428, .external_lex_state = 112}, + [6801] = {.lex_state = 534}, + [6802] = {.lex_state = 428, .external_lex_state = 112}, + [6803] = {.lex_state = 397}, + [6804] = {.lex_state = 534}, + [6805] = {.lex_state = 534}, + [6806] = {.lex_state = 428, .external_lex_state = 112}, + [6807] = {.lex_state = 156, .external_lex_state = 117}, + [6808] = {.lex_state = 156, .external_lex_state = 117}, + [6809] = {.lex_state = 428, .external_lex_state = 112}, + [6810] = {.lex_state = 429}, + [6811] = {.lex_state = 428, .external_lex_state = 112}, + [6812] = {.lex_state = 534}, + [6813] = {.lex_state = 428, .external_lex_state = 112}, + [6814] = {.lex_state = 534}, + [6815] = {.lex_state = 534}, + [6816] = {.lex_state = 534}, + [6817] = {.lex_state = 429}, + [6818] = {.lex_state = 534}, + [6819] = {.lex_state = 428, .external_lex_state = 112}, + [6820] = {.lex_state = 421}, + [6821] = {.lex_state = 534}, + [6822] = {.lex_state = 534}, + [6823] = {.lex_state = 534}, + [6824] = {.lex_state = 429}, + [6825] = {.lex_state = 421}, + [6826] = {.lex_state = 534}, + [6827] = {.lex_state = 408}, + [6828] = {.lex_state = 429}, + [6829] = {.lex_state = 421}, + [6830] = {.lex_state = 421}, + [6831] = {.lex_state = 534}, + [6832] = {.lex_state = 429}, + [6833] = {.lex_state = 534}, + [6834] = {.lex_state = 156, .external_lex_state = 117}, + [6835] = {.lex_state = 428, .external_lex_state = 112}, + [6836] = {.lex_state = 156, .external_lex_state = 117}, + [6837] = {.lex_state = 429}, + [6838] = {.lex_state = 428, .external_lex_state = 112}, + [6839] = {.lex_state = 156, .external_lex_state = 117}, + [6840] = {.lex_state = 428, .external_lex_state = 112}, + [6841] = {.lex_state = 429}, + [6842] = {.lex_state = 428, .external_lex_state = 112}, + [6843] = {.lex_state = 534}, + [6844] = {.lex_state = 156, .external_lex_state = 117}, + [6845] = {.lex_state = 156, .external_lex_state = 117}, + [6846] = {.lex_state = 156, .external_lex_state = 117}, + [6847] = {.lex_state = 397}, + [6848] = {.lex_state = 156, .external_lex_state = 117}, + [6849] = {.lex_state = 428, .external_lex_state = 112}, + [6850] = {.lex_state = 428, .external_lex_state = 112}, + [6851] = {.lex_state = 534}, + [6852] = {.lex_state = 534}, + [6853] = {.lex_state = 534}, + [6854] = {.lex_state = 534}, + [6855] = {.lex_state = 534}, + [6856] = {.lex_state = 534}, + [6857] = {.lex_state = 428, .external_lex_state = 112}, + [6858] = {.lex_state = 428, .external_lex_state = 112}, + [6859] = {.lex_state = 421, .external_lex_state = 123}, + [6860] = {.lex_state = 156, .external_lex_state = 117}, + [6861] = {.lex_state = 474}, + [6862] = {.lex_state = 429}, + [6863] = {.lex_state = 156, .external_lex_state = 117}, + [6864] = {.lex_state = 534}, + [6865] = {.lex_state = 428, .external_lex_state = 112}, + [6866] = {.lex_state = 156, .external_lex_state = 117}, + [6867] = {.lex_state = 428, .external_lex_state = 112}, + [6868] = {.lex_state = 408}, + [6869] = {.lex_state = 534}, + [6870] = {.lex_state = 156, .external_lex_state = 117}, + [6871] = {.lex_state = 428, .external_lex_state = 112}, + [6872] = {.lex_state = 428, .external_lex_state = 112}, + [6873] = {.lex_state = 428, .external_lex_state = 112}, + [6874] = {.lex_state = 429}, + [6875] = {.lex_state = 534}, + [6876] = {.lex_state = 428, .external_lex_state = 112}, + [6877] = {.lex_state = 534}, + [6878] = {.lex_state = 428, .external_lex_state = 112}, + [6879] = {.lex_state = 534}, + [6880] = {.lex_state = 428, .external_lex_state = 112}, + [6881] = {.lex_state = 534}, + [6882] = {.lex_state = 534}, + [6883] = {.lex_state = 428}, + [6884] = {.lex_state = 534}, + [6885] = {.lex_state = 534}, + [6886] = {.lex_state = 534}, + [6887] = {.lex_state = 474}, + [6888] = {.lex_state = 534}, + [6889] = {.lex_state = 428, .external_lex_state = 112}, + [6890] = {.lex_state = 534}, + [6891] = {.lex_state = 534}, + [6892] = {.lex_state = 429}, + [6893] = {.lex_state = 421, .external_lex_state = 123}, + [6894] = {.lex_state = 534}, + [6895] = {.lex_state = 421, .external_lex_state = 123}, + [6896] = {.lex_state = 421}, + [6897] = {.lex_state = 534}, + [6898] = {.lex_state = 408, .external_lex_state = 126}, + [6899] = {.lex_state = 428, .external_lex_state = 112}, + [6900] = {.lex_state = 534, .external_lex_state = 127}, + [6901] = {.lex_state = 534, .external_lex_state = 127}, + [6902] = {.lex_state = 423}, + [6903] = {.lex_state = 408, .external_lex_state = 126}, + [6904] = {.lex_state = 428, .external_lex_state = 112}, + [6905] = {.lex_state = 474}, + [6906] = {.lex_state = 421}, + [6907] = {.lex_state = 421, .external_lex_state = 123}, + [6908] = {.lex_state = 429}, + [6909] = {.lex_state = 534}, + [6910] = {.lex_state = 534, .external_lex_state = 128}, + [6911] = {.lex_state = 534}, + [6912] = {.lex_state = 429}, + [6913] = {.lex_state = 534}, + [6914] = {.lex_state = 534, .external_lex_state = 128}, + [6915] = {.lex_state = 428, .external_lex_state = 112}, + [6916] = {.lex_state = 534}, + [6917] = {.lex_state = 534}, + [6918] = {.lex_state = 534}, + [6919] = {.lex_state = 534}, + [6920] = {.lex_state = 534}, + [6921] = {.lex_state = 534}, + [6922] = {.lex_state = 428, .external_lex_state = 112}, + [6923] = {.lex_state = 428, .external_lex_state = 112}, + [6924] = {.lex_state = 428, .external_lex_state = 112}, + [6925] = {.lex_state = 534}, + [6926] = {.lex_state = 421}, + [6927] = {.lex_state = 429}, + [6928] = {.lex_state = 428, .external_lex_state = 112}, + [6929] = {.lex_state = 428, .external_lex_state = 112}, + [6930] = {.lex_state = 534}, + [6931] = {.lex_state = 408, .external_lex_state = 126}, + [6932] = {.lex_state = 534}, + [6933] = {.lex_state = 428, .external_lex_state = 112}, + [6934] = {.lex_state = 534}, + [6935] = {.lex_state = 534}, + [6936] = {.lex_state = 534}, + [6937] = {.lex_state = 534}, + [6938] = {.lex_state = 534}, + [6939] = {.lex_state = 534}, + [6940] = {.lex_state = 534}, + [6941] = {.lex_state = 534}, + [6942] = {.lex_state = 428, .external_lex_state = 112}, + [6943] = {.lex_state = 156, .external_lex_state = 117}, + [6944] = {.lex_state = 534}, + [6945] = {.lex_state = 428, .external_lex_state = 112}, + [6946] = {.lex_state = 534}, + [6947] = {.lex_state = 429}, + [6948] = {.lex_state = 429}, + [6949] = {.lex_state = 408, .external_lex_state = 126}, + [6950] = {.lex_state = 534}, + [6951] = {.lex_state = 421, .external_lex_state = 123}, + [6952] = {.lex_state = 429}, + [6953] = {.lex_state = 474}, + [6954] = {.lex_state = 534}, + [6955] = {.lex_state = 429}, + [6956] = {.lex_state = 534}, + [6957] = {.lex_state = 429}, + [6958] = {.lex_state = 534}, + [6959] = {.lex_state = 428, .external_lex_state = 112}, + [6960] = {.lex_state = 534}, + [6961] = {.lex_state = 428, .external_lex_state = 112}, + [6962] = {.lex_state = 421}, + [6963] = {.lex_state = 534}, + [6964] = {.lex_state = 534}, + [6965] = {.lex_state = 534}, + [6966] = {.lex_state = 428, .external_lex_state = 112}, + [6967] = {.lex_state = 534}, + [6968] = {.lex_state = 534}, + [6969] = {.lex_state = 397}, + [6970] = {.lex_state = 474}, + [6971] = {.lex_state = 397}, + [6972] = {.lex_state = 534}, + [6973] = {.lex_state = 534}, + [6974] = {.lex_state = 534}, + [6975] = {.lex_state = 428, .external_lex_state = 112}, + [6976] = {.lex_state = 534}, + [6977] = {.lex_state = 534}, + [6978] = {.lex_state = 534}, + [6979] = {.lex_state = 534}, + [6980] = {.lex_state = 534}, + [6981] = {.lex_state = 534}, + [6982] = {.lex_state = 534}, + [6983] = {.lex_state = 421}, + [6984] = {.lex_state = 534}, + [6985] = {.lex_state = 534}, + [6986] = {.lex_state = 534}, + [6987] = {.lex_state = 428, .external_lex_state = 112}, + [6988] = {.lex_state = 474}, + [6989] = {.lex_state = 428, .external_lex_state = 112}, + [6990] = {.lex_state = 429}, + [6991] = {.lex_state = 428, .external_lex_state = 112}, + [6992] = {.lex_state = 429}, + [6993] = {.lex_state = 534}, + [6994] = {.lex_state = 429}, + [6995] = {.lex_state = 428, .external_lex_state = 112}, + [6996] = {.lex_state = 428, .external_lex_state = 112}, + [6997] = {.lex_state = 534}, + [6998] = {.lex_state = 428, .external_lex_state = 112}, + [6999] = {.lex_state = 534}, + [7000] = {.lex_state = 534}, + [7001] = {.lex_state = 534}, + [7002] = {.lex_state = 428, .external_lex_state = 112}, + [7003] = {.lex_state = 421}, + [7004] = {.lex_state = 534, .external_lex_state = 127}, + [7005] = {.lex_state = 534}, + [7006] = {.lex_state = 421}, + [7007] = {.lex_state = 534}, + [7008] = {.lex_state = 534}, + [7009] = {.lex_state = 474}, + [7010] = {.lex_state = 397}, + [7011] = {.lex_state = 423}, + [7012] = {.lex_state = 534}, + [7013] = {.lex_state = 421}, + [7014] = {.lex_state = 474}, + [7015] = {.lex_state = 421}, + [7016] = {.lex_state = 534}, + [7017] = {.lex_state = 408}, + [7018] = {.lex_state = 534}, + [7019] = {.lex_state = 534, .external_lex_state = 128}, + [7020] = {.lex_state = 534}, + [7021] = {.lex_state = 534}, + [7022] = {.lex_state = 421}, + [7023] = {.lex_state = 534, .external_lex_state = 128}, + [7024] = {.lex_state = 421}, + [7025] = {.lex_state = 534}, + [7026] = {.lex_state = 534}, + [7027] = {.lex_state = 428, .external_lex_state = 112}, + [7028] = {.lex_state = 534}, + [7029] = {.lex_state = 428, .external_lex_state = 112}, + [7030] = {.lex_state = 534}, + [7031] = {.lex_state = 534}, + [7032] = {.lex_state = 534}, + [7033] = {.lex_state = 421, .external_lex_state = 123}, + [7034] = {.lex_state = 534}, + [7035] = {.lex_state = 474}, + [7036] = {.lex_state = 534}, + [7037] = {.lex_state = 429}, + [7038] = {.lex_state = 534}, + [7039] = {.lex_state = 428, .external_lex_state = 112}, + [7040] = {.lex_state = 428, .external_lex_state = 112}, + [7041] = {.lex_state = 474}, + [7042] = {.lex_state = 421}, + [7043] = {.lex_state = 534}, + [7044] = {.lex_state = 534, .external_lex_state = 128}, + [7045] = {.lex_state = 534, .external_lex_state = 128}, + [7046] = {.lex_state = 421}, + [7047] = {.lex_state = 534, .external_lex_state = 128}, + [7048] = {.lex_state = 534}, + [7049] = {.lex_state = 534}, + [7050] = {.lex_state = 534}, + [7051] = {.lex_state = 428, .external_lex_state = 112}, + [7052] = {.lex_state = 428, .external_lex_state = 112}, + [7053] = {.lex_state = 428, .external_lex_state = 112}, + [7054] = {.lex_state = 156, .external_lex_state = 117}, + [7055] = {.lex_state = 156, .external_lex_state = 117}, + [7056] = {.lex_state = 534}, + [7057] = {.lex_state = 534}, + [7058] = {.lex_state = 408}, + [7059] = {.lex_state = 428, .external_lex_state = 112}, + [7060] = {.lex_state = 534}, + [7061] = {.lex_state = 421}, + [7062] = {.lex_state = 534}, + [7063] = {.lex_state = 534}, + [7064] = {.lex_state = 534}, + [7065] = {.lex_state = 421}, + [7066] = {.lex_state = 534, .external_lex_state = 128}, + [7067] = {.lex_state = 534, .external_lex_state = 128}, + [7068] = {.lex_state = 421}, + [7069] = {.lex_state = 421}, + [7070] = {.lex_state = 421}, + [7071] = {.lex_state = 421}, + [7072] = {.lex_state = 421}, + [7073] = {.lex_state = 421}, + [7074] = {.lex_state = 421}, + [7075] = {.lex_state = 421}, + [7076] = {.lex_state = 421}, + [7077] = {.lex_state = 421}, + [7078] = {.lex_state = 421}, + [7079] = {.lex_state = 421}, + [7080] = {.lex_state = 421}, + [7081] = {.lex_state = 421}, + [7082] = {.lex_state = 421}, + [7083] = {.lex_state = 421}, + [7084] = {.lex_state = 421}, + [7085] = {.lex_state = 421}, + [7086] = {.lex_state = 421}, + [7087] = {.lex_state = 421}, + [7088] = {.lex_state = 421}, + [7089] = {.lex_state = 421}, + [7090] = {.lex_state = 421}, + [7091] = {.lex_state = 421}, + [7092] = {.lex_state = 421}, + [7093] = {.lex_state = 421}, + [7094] = {.lex_state = 421}, + [7095] = {.lex_state = 421}, + [7096] = {.lex_state = 421}, + [7097] = {.lex_state = 421}, + [7098] = {.lex_state = 421}, + [7099] = {.lex_state = 421}, + [7100] = {.lex_state = 421}, + [7101] = {.lex_state = 421}, + [7102] = {.lex_state = 421}, + [7103] = {.lex_state = 421}, + [7104] = {.lex_state = 421}, + [7105] = {.lex_state = 421}, + [7106] = {.lex_state = 421}, + [7107] = {.lex_state = 421}, + [7108] = {.lex_state = 421}, + [7109] = {.lex_state = 421}, + [7110] = {.lex_state = 421}, + [7111] = {.lex_state = 421}, + [7112] = {.lex_state = 421}, + [7113] = {.lex_state = 421}, + [7114] = {.lex_state = 421}, + [7115] = {.lex_state = 421}, + [7116] = {.lex_state = 421}, + [7117] = {.lex_state = 421}, + [7118] = {.lex_state = 421}, + [7119] = {.lex_state = 421}, + [7120] = {.lex_state = 156, .external_lex_state = 117}, + [7121] = {.lex_state = 156, .external_lex_state = 117}, + [7122] = {.lex_state = 429}, + [7123] = {.lex_state = 421}, + [7124] = {.lex_state = 534}, + [7125] = {.lex_state = 429}, + [7126] = {.lex_state = 156, .external_lex_state = 117}, + [7127] = {.lex_state = 534}, + [7128] = {.lex_state = 421}, + [7129] = {.lex_state = 421}, + [7130] = {.lex_state = 428, .external_lex_state = 112}, + [7131] = {.lex_state = 156, .external_lex_state = 117}, + [7132] = {.lex_state = 429}, + [7133] = {.lex_state = 428, .external_lex_state = 112}, + [7134] = {.lex_state = 429}, + [7135] = {.lex_state = 421}, + [7136] = {.lex_state = 421}, + [7137] = {.lex_state = 421}, + [7138] = {.lex_state = 421}, + [7139] = {.lex_state = 421}, + [7140] = {.lex_state = 421}, + [7141] = {.lex_state = 421}, + [7142] = {.lex_state = 421}, + [7143] = {.lex_state = 421}, + [7144] = {.lex_state = 421}, + [7145] = {.lex_state = 421}, + [7146] = {.lex_state = 421}, + [7147] = {.lex_state = 421}, + [7148] = {.lex_state = 421}, + [7149] = {.lex_state = 421}, + [7150] = {.lex_state = 421}, + [7151] = {.lex_state = 421}, + [7152] = {.lex_state = 421}, + [7153] = {.lex_state = 421}, + [7154] = {.lex_state = 421}, + [7155] = {.lex_state = 421}, + [7156] = {.lex_state = 421}, + [7157] = {.lex_state = 421}, + [7158] = {.lex_state = 421}, + [7159] = {.lex_state = 421}, + [7160] = {.lex_state = 421}, + [7161] = {.lex_state = 421}, + [7162] = {.lex_state = 421}, + [7163] = {.lex_state = 421}, + [7164] = {.lex_state = 421}, + [7165] = {.lex_state = 421}, + [7166] = {.lex_state = 421}, + [7167] = {.lex_state = 421}, + [7168] = {.lex_state = 421}, + [7169] = {.lex_state = 421}, + [7170] = {.lex_state = 421}, + [7171] = {.lex_state = 421}, + [7172] = {.lex_state = 421}, + [7173] = {.lex_state = 421}, + [7174] = {.lex_state = 421}, + [7175] = {.lex_state = 421}, + [7176] = {.lex_state = 421}, + [7177] = {.lex_state = 421}, + [7178] = {.lex_state = 421}, + [7179] = {.lex_state = 421}, + [7180] = {.lex_state = 421}, + [7181] = {.lex_state = 421}, + [7182] = {.lex_state = 421}, + [7183] = {.lex_state = 421}, + [7184] = {.lex_state = 421}, + [7185] = {.lex_state = 421}, + [7186] = {.lex_state = 421}, + [7187] = {.lex_state = 421}, + [7188] = {.lex_state = 421}, + [7189] = {.lex_state = 534}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -28841,45 +27959,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(6869), + [sym__statements] = STATE(6917), + [sym__statement_not_pipeline] = STATE(6129), + [sym_redirected_statement] = STATE(4695), + [sym_for_statement] = STATE(4695), + [sym_c_style_for_statement] = STATE(4695), + [sym_while_statement] = STATE(4309), + [sym_if_statement] = STATE(4309), + [sym_case_statement] = STATE(4695), + [sym_function_definition] = STATE(4695), + [sym_compound_statement] = STATE(4695), + [sym_subshell] = STATE(4695), + [sym_pipeline] = STATE(4822), + [sym_list] = STATE(4695), + [sym_negated_command] = STATE(4695), + [sym_test_command] = STATE(4695), + [sym_declaration_command] = STATE(4695), + [sym_unset_command] = STATE(4695), + [sym_command] = STATE(4695), + [sym_command_name] = STATE(500), + [sym_variable_assignment] = STATE(920), + [sym_variable_assignments] = STATE(4695), + [sym_subscript] = STATE(6338), + [sym_file_redirect] = STATE(1764), + [sym_herestring_redirect] = STATE(1798), + [sym_arithmetic_expansion] = STATE(816), + [sym_brace_expression] = STATE(816), + [sym_concatenation] = STATE(1232), + [sym_string] = STATE(816), + [sym_translated_string] = STATE(816), + [sym_number] = STATE(816), + [sym_simple_expansion] = STATE(816), + [sym_expansion] = STATE(816), + [sym_command_substitution] = STATE(816), + [sym_process_substitution] = STATE(816), + [aux_sym__statements_repeat1] = STATE(398), + [aux_sym_redirected_statement_repeat2] = STATE(4149), + [aux_sym_command_repeat1] = STATE(807), + [aux_sym__literal_repeat1] = STATE(1089), [ts_builtin_sym_end] = ACTIONS(5), [sym_word] = ACTIONS(7), [anon_sym_for] = ACTIONS(9), @@ -28935,50 +28053,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(6508), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym__expression] = STATE(2745), + [sym_binary_expression] = STATE(2394), + [sym_ternary_expression] = STATE(2394), + [sym_unary_expression] = STATE(2394), + [sym_postfix_expression] = STATE(2394), + [sym_parenthesized_expression] = STATE(2394), + [sym_arithmetic_expansion] = STATE(439), + [sym_brace_expression] = STATE(439), + [sym_concatenation] = STATE(463), + [sym_string] = STATE(439), + [sym_translated_string] = STATE(439), + [sym_number] = STATE(439), + [sym_simple_expansion] = STATE(439), + [sym_expansion] = STATE(439), + [sym_command_substitution] = STATE(439), + [sym_process_substitution] = STATE(439), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(461), [sym_word] = ACTIONS(81), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -29038,50 +28156,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(6749), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym__expression] = STATE(2818), + [sym_binary_expression] = STATE(2394), + [sym_ternary_expression] = STATE(2394), + [sym_unary_expression] = STATE(2394), + [sym_postfix_expression] = STATE(2394), + [sym_parenthesized_expression] = STATE(2394), + [sym_arithmetic_expansion] = STATE(439), + [sym_brace_expression] = STATE(439), + [sym_concatenation] = STATE(463), + [sym_string] = STATE(439), + [sym_translated_string] = STATE(439), + [sym_number] = STATE(439), + [sym_simple_expansion] = STATE(439), + [sym_expansion] = STATE(439), + [sym_command_substitution] = STATE(439), + [sym_process_substitution] = STATE(439), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(461), [sym_word] = ACTIONS(81), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -29141,50 +28259,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(6946), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym__expression] = STATE(2818), + [sym_binary_expression] = STATE(2394), + [sym_ternary_expression] = STATE(2394), + [sym_unary_expression] = STATE(2394), + [sym_postfix_expression] = STATE(2394), + [sym_parenthesized_expression] = STATE(2394), + [sym_arithmetic_expansion] = STATE(439), + [sym_brace_expression] = STATE(439), + [sym_concatenation] = STATE(463), + [sym_string] = STATE(439), + [sym_translated_string] = STATE(439), + [sym_number] = STATE(439), + [sym_simple_expansion] = STATE(439), + [sym_expansion] = STATE(439), + [sym_command_substitution] = STATE(439), + [sym_process_substitution] = STATE(439), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(461), [sym_word] = ACTIONS(81), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -29244,48 +28362,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(6268), + [sym_redirected_statement] = STATE(5114), + [sym_for_statement] = STATE(5193), + [sym_c_style_for_statement] = STATE(5193), + [sym_while_statement] = STATE(4914), + [sym_if_statement] = STATE(4914), + [sym_case_statement] = STATE(5193), + [sym_function_definition] = STATE(5193), + [sym_compound_statement] = STATE(5193), + [sym_subshell] = STATE(5193), + [sym_pipeline] = STATE(5279), + [sym_list] = STATE(5193), + [sym_negated_command] = STATE(5193), + [sym_test_command] = STATE(5193), + [sym_declaration_command] = STATE(5193), + [sym_unset_command] = STATE(5193), + [sym_command] = STATE(5193), + [sym_command_name] = STATE(585), + [sym_variable_assignment] = STATE(1796), + [sym_variable_assignments] = STATE(5193), + [sym_subscript] = STATE(6353), + [sym_file_redirect] = STATE(2462), + [sym_herestring_redirect] = STATE(2465), + [sym__expression] = STATE(2817), + [sym_binary_expression] = STATE(2702), + [sym_ternary_expression] = STATE(2702), + [sym_unary_expression] = STATE(2702), + [sym_postfix_expression] = STATE(2702), + [sym_parenthesized_expression] = STATE(2702), + [sym_arithmetic_expansion] = STATE(467), + [sym_brace_expression] = STATE(467), + [sym_concatenation] = STATE(492), + [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_redirected_statement_repeat2] = STATE(4869), + [aux_sym_command_repeat1] = STATE(878), + [aux_sym__literal_repeat1] = STATE(490), [sym_word] = ACTIONS(141), [anon_sym_for] = ACTIONS(143), [anon_sym_select] = ACTIONS(145), @@ -29346,48 +28464,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(6268), + [sym_redirected_statement] = STATE(5033), + [sym_for_statement] = STATE(5193), + [sym_c_style_for_statement] = STATE(5193), + [sym_while_statement] = STATE(4914), + [sym_if_statement] = STATE(4914), + [sym_case_statement] = STATE(5193), + [sym_function_definition] = STATE(5193), + [sym_compound_statement] = STATE(5193), + [sym_subshell] = STATE(5193), + [sym_pipeline] = STATE(5279), + [sym_list] = STATE(5193), + [sym_negated_command] = STATE(5193), + [sym_test_command] = STATE(5193), + [sym_declaration_command] = STATE(5193), + [sym_unset_command] = STATE(5193), + [sym_command] = STATE(5193), + [sym_command_name] = STATE(585), + [sym_variable_assignment] = STATE(1796), + [sym_variable_assignments] = STATE(5193), + [sym_subscript] = STATE(6353), + [sym_file_redirect] = STATE(2462), + [sym_herestring_redirect] = STATE(2465), + [sym__expression] = STATE(2856), + [sym_binary_expression] = STATE(2702), + [sym_ternary_expression] = STATE(2702), + [sym_unary_expression] = STATE(2702), + [sym_postfix_expression] = STATE(2702), + [sym_parenthesized_expression] = STATE(2702), + [sym_arithmetic_expansion] = STATE(467), + [sym_brace_expression] = STATE(467), + [sym_concatenation] = STATE(492), + [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_redirected_statement_repeat2] = STATE(4869), + [aux_sym_command_repeat1] = STATE(878), + [aux_sym__literal_repeat1] = STATE(490), [sym_word] = ACTIONS(141), [anon_sym_for] = ACTIONS(143), [anon_sym_select] = ACTIONS(145), @@ -29448,48 +28566,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(6268), + [sym_redirected_statement] = STATE(5070), + [sym_for_statement] = STATE(5193), + [sym_c_style_for_statement] = STATE(5193), + [sym_while_statement] = STATE(4914), + [sym_if_statement] = STATE(4914), + [sym_case_statement] = STATE(5193), + [sym_function_definition] = STATE(5193), + [sym_compound_statement] = STATE(5193), + [sym_subshell] = STATE(5193), + [sym_pipeline] = STATE(5279), + [sym_list] = STATE(5193), + [sym_negated_command] = STATE(5193), + [sym_test_command] = STATE(5193), + [sym_declaration_command] = STATE(5193), + [sym_unset_command] = STATE(5193), + [sym_command] = STATE(5193), + [sym_command_name] = STATE(585), + [sym_variable_assignment] = STATE(1796), + [sym_variable_assignments] = STATE(5193), + [sym_subscript] = STATE(6353), + [sym_file_redirect] = STATE(2462), + [sym_herestring_redirect] = STATE(2465), + [sym__expression] = STATE(2842), + [sym_binary_expression] = STATE(2702), + [sym_ternary_expression] = STATE(2702), + [sym_unary_expression] = STATE(2702), + [sym_postfix_expression] = STATE(2702), + [sym_parenthesized_expression] = STATE(2702), + [sym_arithmetic_expansion] = STATE(467), + [sym_brace_expression] = STATE(467), + [sym_concatenation] = STATE(492), + [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_redirected_statement_repeat2] = STATE(4869), + [aux_sym_command_repeat1] = STATE(878), + [aux_sym__literal_repeat1] = STATE(490), [sym_word] = ACTIONS(141), [anon_sym_for] = ACTIONS(143), [anon_sym_select] = ACTIONS(145), @@ -29550,48 +28668,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(6268), + [sym_redirected_statement] = STATE(5117), + [sym_for_statement] = STATE(5193), + [sym_c_style_for_statement] = STATE(5193), + [sym_while_statement] = STATE(4914), + [sym_if_statement] = STATE(4914), + [sym_case_statement] = STATE(5193), + [sym_function_definition] = STATE(5193), + [sym_compound_statement] = STATE(5193), + [sym_subshell] = STATE(5193), + [sym_pipeline] = STATE(5279), + [sym_list] = STATE(5193), + [sym_negated_command] = STATE(5193), + [sym_test_command] = STATE(5193), + [sym_declaration_command] = STATE(5193), + [sym_unset_command] = STATE(5193), + [sym_command] = STATE(5193), + [sym_command_name] = STATE(585), + [sym_variable_assignment] = STATE(1796), + [sym_variable_assignments] = STATE(5193), + [sym_subscript] = STATE(6353), + [sym_file_redirect] = STATE(2462), + [sym_herestring_redirect] = STATE(2465), + [sym__expression] = STATE(2701), + [sym_binary_expression] = STATE(2702), + [sym_ternary_expression] = STATE(2702), + [sym_unary_expression] = STATE(2702), + [sym_postfix_expression] = STATE(2702), + [sym_parenthesized_expression] = STATE(2702), + [sym_arithmetic_expansion] = STATE(467), + [sym_brace_expression] = STATE(467), + [sym_concatenation] = STATE(492), + [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_redirected_statement_repeat2] = STATE(4869), + [aux_sym_command_repeat1] = STATE(878), + [aux_sym__literal_repeat1] = STATE(490), [sym_word] = ACTIONS(141), [anon_sym_for] = ACTIONS(143), [anon_sym_select] = ACTIONS(145), @@ -29652,48 +28770,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(6268), + [sym_redirected_statement] = STATE(4996), + [sym_for_statement] = STATE(5193), + [sym_c_style_for_statement] = STATE(5193), + [sym_while_statement] = STATE(4914), + [sym_if_statement] = STATE(4914), + [sym_case_statement] = STATE(5193), + [sym_function_definition] = STATE(5193), + [sym_compound_statement] = STATE(5193), + [sym_subshell] = STATE(5193), + [sym_pipeline] = STATE(5279), + [sym_list] = STATE(5193), + [sym_negated_command] = STATE(5193), + [sym_test_command] = STATE(5193), + [sym_declaration_command] = STATE(5193), + [sym_unset_command] = STATE(5193), + [sym_command] = STATE(5193), + [sym_command_name] = STATE(585), + [sym_variable_assignment] = STATE(1796), + [sym_variable_assignments] = STATE(5193), + [sym_subscript] = STATE(6353), + [sym_file_redirect] = STATE(2462), + [sym_herestring_redirect] = STATE(2465), + [sym__expression] = STATE(2804), + [sym_binary_expression] = STATE(2702), + [sym_ternary_expression] = STATE(2702), + [sym_unary_expression] = STATE(2702), + [sym_postfix_expression] = STATE(2702), + [sym_parenthesized_expression] = STATE(2702), + [sym_arithmetic_expansion] = STATE(467), + [sym_brace_expression] = STATE(467), + [sym_concatenation] = STATE(492), + [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_redirected_statement_repeat2] = STATE(4869), + [aux_sym_command_repeat1] = STATE(878), + [aux_sym__literal_repeat1] = STATE(490), [sym_word] = ACTIONS(141), [anon_sym_for] = ACTIONS(143), [anon_sym_select] = ACTIONS(145), @@ -29754,48 +28872,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(6268), + [sym_redirected_statement] = STATE(5120), + [sym_for_statement] = STATE(5193), + [sym_c_style_for_statement] = STATE(5193), + [sym_while_statement] = STATE(4914), + [sym_if_statement] = STATE(4914), + [sym_case_statement] = STATE(5193), + [sym_function_definition] = STATE(5193), + [sym_compound_statement] = STATE(5193), + [sym_subshell] = STATE(5193), + [sym_pipeline] = STATE(5279), + [sym_list] = STATE(5193), + [sym_negated_command] = STATE(5193), + [sym_test_command] = STATE(5193), + [sym_declaration_command] = STATE(5193), + [sym_unset_command] = STATE(5193), + [sym_command] = STATE(5193), + [sym_command_name] = STATE(585), + [sym_variable_assignment] = STATE(1796), + [sym_variable_assignments] = STATE(5193), + [sym_subscript] = STATE(6353), + [sym_file_redirect] = STATE(2462), + [sym_herestring_redirect] = STATE(2465), + [sym__expression] = STATE(2667), + [sym_binary_expression] = STATE(2702), + [sym_ternary_expression] = STATE(2702), + [sym_unary_expression] = STATE(2702), + [sym_postfix_expression] = STATE(2702), + [sym_parenthesized_expression] = STATE(2702), + [sym_arithmetic_expansion] = STATE(467), + [sym_brace_expression] = STATE(467), + [sym_concatenation] = STATE(492), + [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_redirected_statement_repeat2] = STATE(4869), + [aux_sym_command_repeat1] = STATE(878), + [aux_sym__literal_repeat1] = STATE(490), [sym_word] = ACTIONS(141), [anon_sym_for] = ACTIONS(143), [anon_sym_select] = ACTIONS(145), @@ -29856,48 +28974,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(6268), + [sym_redirected_statement] = STATE(5124), + [sym_for_statement] = STATE(5193), + [sym_c_style_for_statement] = STATE(5193), + [sym_while_statement] = STATE(4914), + [sym_if_statement] = STATE(4914), + [sym_case_statement] = STATE(5193), + [sym_function_definition] = STATE(5193), + [sym_compound_statement] = STATE(5193), + [sym_subshell] = STATE(5193), + [sym_pipeline] = STATE(5279), + [sym_list] = STATE(5193), + [sym_negated_command] = STATE(5193), + [sym_test_command] = STATE(5193), + [sym_declaration_command] = STATE(5193), + [sym_unset_command] = STATE(5193), + [sym_command] = STATE(5193), + [sym_command_name] = STATE(585), + [sym_variable_assignment] = STATE(1796), + [sym_variable_assignments] = STATE(5193), + [sym_subscript] = STATE(6353), + [sym_file_redirect] = STATE(2462), + [sym_herestring_redirect] = STATE(2465), + [sym__expression] = STATE(2716), + [sym_binary_expression] = STATE(2702), + [sym_ternary_expression] = STATE(2702), + [sym_unary_expression] = STATE(2702), + [sym_postfix_expression] = STATE(2702), + [sym_parenthesized_expression] = STATE(2702), + [sym_arithmetic_expansion] = STATE(467), + [sym_brace_expression] = STATE(467), + [sym_concatenation] = STATE(492), + [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_redirected_statement_repeat2] = STATE(4869), + [aux_sym_command_repeat1] = STATE(878), + [aux_sym__literal_repeat1] = STATE(490), [sym_word] = ACTIONS(141), [anon_sym_for] = ACTIONS(143), [anon_sym_select] = ACTIONS(145), @@ -29958,48 +29076,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(6268), + [sym_redirected_statement] = STATE(5091), + [sym_for_statement] = STATE(5193), + [sym_c_style_for_statement] = STATE(5193), + [sym_while_statement] = STATE(4914), + [sym_if_statement] = STATE(4914), + [sym_case_statement] = STATE(5193), + [sym_function_definition] = STATE(5193), + [sym_compound_statement] = STATE(5193), + [sym_subshell] = STATE(5193), + [sym_pipeline] = STATE(5279), + [sym_list] = STATE(5193), + [sym_negated_command] = STATE(5193), + [sym_test_command] = STATE(5193), + [sym_declaration_command] = STATE(5193), + [sym_unset_command] = STATE(5193), + [sym_command] = STATE(5193), + [sym_command_name] = STATE(585), + [sym_variable_assignment] = STATE(1796), + [sym_variable_assignments] = STATE(5193), + [sym_subscript] = STATE(6353), + [sym_file_redirect] = STATE(2462), + [sym_herestring_redirect] = STATE(2465), + [sym__expression] = STATE(2770), + [sym_binary_expression] = STATE(2702), + [sym_ternary_expression] = STATE(2702), + [sym_unary_expression] = STATE(2702), + [sym_postfix_expression] = STATE(2702), + [sym_parenthesized_expression] = STATE(2702), + [sym_arithmetic_expansion] = STATE(467), + [sym_brace_expression] = STATE(467), + [sym_concatenation] = STATE(492), + [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_redirected_statement_repeat2] = STATE(4869), + [aux_sym_command_repeat1] = STATE(878), + [aux_sym__literal_repeat1] = STATE(490), [sym_word] = ACTIONS(141), [anon_sym_for] = ACTIONS(143), [anon_sym_select] = ACTIONS(145), @@ -30060,24 +29178,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(2839), + [sym_binary_expression] = STATE(2394), + [sym_ternary_expression] = STATE(2394), + [sym_unary_expression] = STATE(2394), + [sym_postfix_expression] = STATE(2394), + [sym_parenthesized_expression] = STATE(2394), + [sym_arithmetic_expansion] = STATE(2268), + [sym_brace_expression] = STATE(2268), + [sym_concatenation] = STATE(2394), + [sym_string] = STATE(2268), + [sym_translated_string] = STATE(2268), + [sym_number] = STATE(2268), + [sym_simple_expansion] = STATE(2268), + [sym_expansion] = STATE(2268), + [sym_command_substitution] = STATE(2268), + [sym_process_substitution] = STATE(2268), + [aux_sym__literal_repeat1] = STATE(2197), + [aux_sym_concatenation_repeat1] = STATE(435), [sym_word] = ACTIONS(235), [anon_sym_SEMI] = ACTIONS(237), [anon_sym_EQ] = ACTIONS(239), @@ -30160,45 +29278,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [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), + [sym__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4739), + [sym_for_statement] = STATE(4739), + [sym_c_style_for_statement] = STATE(4739), + [sym_while_statement] = STATE(4369), + [sym_if_statement] = STATE(4369), + [sym_elif_clause] = STATE(5920), + [sym_else_clause] = STATE(6441), + [sym_case_statement] = STATE(4739), + [sym_function_definition] = STATE(4739), + [sym_compound_statement] = STATE(4739), + [sym_subshell] = STATE(4739), + [sym_pipeline] = STATE(4923), + [sym_list] = STATE(4739), + [sym_negated_command] = STATE(4739), + [sym_test_command] = STATE(4739), + [sym_declaration_command] = STATE(4739), + [sym_unset_command] = STATE(4739), + [sym_command] = STATE(4739), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1174), + [sym_variable_assignments] = STATE(4739), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_if_statement_repeat1] = STATE(5920), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -30256,46 +29374,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(25), + [sym__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4739), + [sym_for_statement] = STATE(4739), + [sym_c_style_for_statement] = STATE(4739), + [sym_while_statement] = STATE(4369), + [sym_if_statement] = STATE(4369), + [sym_elif_clause] = STATE(5842), + [sym_else_clause] = STATE(6391), + [sym_case_statement] = STATE(4739), + [sym_function_definition] = STATE(4739), + [sym_compound_statement] = STATE(4739), + [sym_subshell] = STATE(4739), + [sym_pipeline] = STATE(4923), + [sym_list] = STATE(4739), + [sym_negated_command] = STATE(4739), + [sym_test_command] = STATE(4739), + [sym_declaration_command] = STATE(4739), + [sym_unset_command] = STATE(4739), + [sym_command] = STATE(4739), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1174), + [sym_variable_assignments] = STATE(4739), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_if_statement_repeat1] = STATE(5842), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -30353,46 +29471,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(15), + [sym__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4739), + [sym_for_statement] = STATE(4739), + [sym_c_style_for_statement] = STATE(4739), + [sym_while_statement] = STATE(4369), + [sym_if_statement] = STATE(4369), + [sym_elif_clause] = STATE(5900), + [sym_else_clause] = STATE(7035), + [sym_case_statement] = STATE(4739), + [sym_function_definition] = STATE(4739), + [sym_compound_statement] = STATE(4739), + [sym_subshell] = STATE(4739), + [sym_pipeline] = STATE(4923), + [sym_list] = STATE(4739), + [sym_negated_command] = STATE(4739), + [sym_test_command] = STATE(4739), + [sym_declaration_command] = STATE(4739), + [sym_unset_command] = STATE(4739), + [sym_command] = STATE(4739), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1174), + [sym_variable_assignments] = STATE(4739), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_if_statement_repeat1] = STATE(5900), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -30450,46 +29568,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(6250), + [sym_redirected_statement] = STATE(4739), + [sym_for_statement] = STATE(4739), + [sym_c_style_for_statement] = STATE(4739), + [sym_while_statement] = STATE(4369), + [sym_if_statement] = STATE(4369), + [sym_elif_clause] = STATE(5848), + [sym_else_clause] = STATE(6776), + [sym_case_statement] = STATE(4739), + [sym_function_definition] = STATE(4739), + [sym_compound_statement] = STATE(4739), + [sym_subshell] = STATE(4739), + [sym_pipeline] = STATE(4923), + [sym_list] = STATE(4739), + [sym_negated_command] = STATE(4739), + [sym_test_command] = STATE(4739), + [sym_declaration_command] = STATE(4739), + [sym_unset_command] = STATE(4739), + [sym_command] = STATE(4739), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1174), + [sym_variable_assignments] = STATE(4739), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_if_statement_repeat1] = STATE(5848), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -30547,46 +29665,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(25), + [sym__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4739), + [sym_for_statement] = STATE(4739), + [sym_c_style_for_statement] = STATE(4739), + [sym_while_statement] = STATE(4369), + [sym_if_statement] = STATE(4369), + [sym_elif_clause] = STATE(5890), + [sym_else_clause] = STATE(6861), + [sym_case_statement] = STATE(4739), + [sym_function_definition] = STATE(4739), + [sym_compound_statement] = STATE(4739), + [sym_subshell] = STATE(4739), + [sym_pipeline] = STATE(4923), + [sym_list] = STATE(4739), + [sym_negated_command] = STATE(4739), + [sym_test_command] = STATE(4739), + [sym_declaration_command] = STATE(4739), + [sym_unset_command] = STATE(4739), + [sym_command] = STATE(4739), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1174), + [sym_variable_assignments] = STATE(4739), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_if_statement_repeat1] = STATE(5890), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -30645,45 +29763,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(19)] = { [aux_sym__terminated_statement] = STATE(20), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4899), - [sym_for_statement] = STATE(4899), - [sym_c_style_for_statement] = STATE(4899), - [sym_while_statement] = STATE(4335), - [sym_if_statement] = STATE(4335), - [sym_elif_clause] = STATE(6222), - [sym_else_clause] = STATE(6996), - [sym_case_statement] = STATE(4899), - [sym_function_definition] = STATE(4899), - [sym_compound_statement] = STATE(4899), - [sym_subshell] = STATE(4899), - [sym_pipeline] = STATE(5095), - [sym_list] = STATE(4899), - [sym_negated_command] = STATE(4899), - [sym_test_command] = STATE(4899), - [sym_declaration_command] = STATE(4899), - [sym_unset_command] = STATE(4899), - [sym_command] = STATE(4899), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1097), - [sym_variable_assignments] = STATE(4899), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_if_statement_repeat1] = STATE(6222), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [sym__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4739), + [sym_for_statement] = STATE(4739), + [sym_c_style_for_statement] = STATE(4739), + [sym_while_statement] = STATE(4369), + [sym_if_statement] = STATE(4369), + [sym_elif_clause] = STATE(5853), + [sym_else_clause] = STATE(6780), + [sym_case_statement] = STATE(4739), + [sym_function_definition] = STATE(4739), + [sym_compound_statement] = STATE(4739), + [sym_subshell] = STATE(4739), + [sym_pipeline] = STATE(4923), + [sym_list] = STATE(4739), + [sym_negated_command] = STATE(4739), + [sym_test_command] = STATE(4739), + [sym_declaration_command] = STATE(4739), + [sym_unset_command] = STATE(4739), + [sym_command] = STATE(4739), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1174), + [sym_variable_assignments] = STATE(4739), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_if_statement_repeat1] = STATE(5853), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -30741,46 +29859,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(25), + [sym__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4739), + [sym_for_statement] = STATE(4739), + [sym_c_style_for_statement] = STATE(4739), + [sym_while_statement] = STATE(4369), + [sym_if_statement] = STATE(4369), + [sym_elif_clause] = STATE(5921), + [sym_else_clause] = STATE(6421), + [sym_case_statement] = STATE(4739), + [sym_function_definition] = STATE(4739), + [sym_compound_statement] = STATE(4739), + [sym_subshell] = STATE(4739), + [sym_pipeline] = STATE(4923), + [sym_list] = STATE(4739), + [sym_negated_command] = STATE(4739), + [sym_test_command] = STATE(4739), + [sym_declaration_command] = STATE(4739), + [sym_unset_command] = STATE(4739), + [sym_command] = STATE(4739), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1174), + [sym_variable_assignments] = STATE(4739), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_if_statement_repeat1] = STATE(5921), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -30838,46 +29956,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(25), + [sym__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4739), + [sym_for_statement] = STATE(4739), + [sym_c_style_for_statement] = STATE(4739), + [sym_while_statement] = STATE(4369), + [sym_if_statement] = STATE(4369), + [sym_elif_clause] = STATE(5929), + [sym_else_clause] = STATE(6459), + [sym_case_statement] = STATE(4739), + [sym_function_definition] = STATE(4739), + [sym_compound_statement] = STATE(4739), + [sym_subshell] = STATE(4739), + [sym_pipeline] = STATE(4923), + [sym_list] = STATE(4739), + [sym_negated_command] = STATE(4739), + [sym_test_command] = STATE(4739), + [sym_declaration_command] = STATE(4739), + [sym_unset_command] = STATE(4739), + [sym_command] = STATE(4739), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1174), + [sym_variable_assignments] = STATE(4739), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_if_statement_repeat1] = STATE(5929), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -30935,15 +30053,495 @@ 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__statements] = STATE(6126), + [sym__statement_not_pipeline] = STATE(6206), + [sym_redirected_statement] = STATE(4243), + [sym_for_statement] = STATE(4243), + [sym_c_style_for_statement] = STATE(4243), + [sym_while_statement] = STATE(3994), + [sym_if_statement] = STATE(3994), + [sym_case_statement] = STATE(4243), + [sym_function_definition] = STATE(4243), + [sym_compound_statement] = STATE(4243), + [sym_subshell] = STATE(4243), + [sym_pipeline] = STATE(4716), + [sym_list] = STATE(4243), + [sym_negated_command] = STATE(4243), + [sym_test_command] = STATE(4243), + [sym_declaration_command] = STATE(4243), + [sym_unset_command] = STATE(4243), + [sym_command] = STATE(4243), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(777), + [sym_variable_assignments] = STATE(4243), + [sym_subscript] = STATE(6366), + [sym_file_redirect] = STATE(1453), + [sym_herestring_redirect] = STATE(1454), + [sym_arithmetic_expansion] = STATE(726), + [sym_brace_expression] = STATE(726), + [sym_concatenation] = STATE(906), + [sym_string] = STATE(726), + [sym_translated_string] = STATE(726), + [sym_number] = STATE(726), + [sym_simple_expansion] = STATE(726), + [sym_expansion] = STATE(726), + [sym_command_substitution] = STATE(726), + [sym_process_substitution] = STATE(726), + [aux_sym__statements_repeat1] = STATE(396), + [aux_sym_redirected_statement_repeat2] = STATE(3977), + [aux_sym_command_repeat1] = STATE(805), + [aux_sym__literal_repeat1] = STATE(806), + [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(382), + [anon_sym_function] = ACTIONS(384), + [anon_sym_LBRACE] = ACTIONS(386), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_LBRACK_LBRACK] = ACTIONS(392), + [anon_sym_declare] = ACTIONS(394), + [anon_sym_typeset] = ACTIONS(394), + [anon_sym_export] = ACTIONS(394), + [anon_sym_readonly] = ACTIONS(394), + [anon_sym_local] = ACTIONS(394), + [anon_sym_unset] = ACTIONS(396), + [anon_sym_unsetenv] = ACTIONS(396), + [anon_sym_AMP_GT] = ACTIONS(364), + [anon_sym_AMP_GT_GT] = ACTIONS(366), + [anon_sym_LT_AMP] = ACTIONS(364), + [anon_sym_GT_AMP] = ACTIONS(364), + [anon_sym_GT_PIPE] = ACTIONS(366), + [anon_sym_LT_AMP_DASH] = ACTIONS(398), + [anon_sym_GT_AMP_DASH] = ACTIONS(398), + [anon_sym_LT_LT_LT] = ACTIONS(400), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(402), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(404), + [anon_sym_DOLLAR] = ACTIONS(406), + [sym__special_character] = ACTIONS(408), + [anon_sym_DQUOTE] = ACTIONS(410), + [sym_raw_string] = ACTIONS(412), + [sym_ansi_c_string] = ACTIONS(412), + [aux_sym_number_token1] = ACTIONS(414), + [aux_sym_number_token2] = ACTIONS(416), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(418), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(420), + [anon_sym_BQUOTE] = ACTIONS(422), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(424), + [anon_sym_LT_LPAREN] = ACTIONS(426), + [anon_sym_GT_LPAREN] = ACTIONS(426), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(428), + [sym_variable_name] = ACTIONS(430), + [sym_test_operator] = ACTIONS(432), + [sym__brace_start] = ACTIONS(434), + }, + [STATE(23)] = { + [sym__statements] = STATE(6098), + [sym__statement_not_pipeline] = STATE(6206), + [sym_redirected_statement] = STATE(4243), + [sym_for_statement] = STATE(4243), + [sym_c_style_for_statement] = STATE(4243), + [sym_while_statement] = STATE(3994), + [sym_if_statement] = STATE(3994), + [sym_case_statement] = STATE(4243), + [sym_function_definition] = STATE(4243), + [sym_compound_statement] = STATE(4243), + [sym_subshell] = STATE(4243), + [sym_pipeline] = STATE(4716), + [sym_list] = STATE(4243), + [sym_negated_command] = STATE(4243), + [sym_test_command] = STATE(4243), + [sym_declaration_command] = STATE(4243), + [sym_unset_command] = STATE(4243), + [sym_command] = STATE(4243), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(777), + [sym_variable_assignments] = STATE(4243), + [sym_subscript] = STATE(6366), + [sym_file_redirect] = STATE(1453), + [sym_herestring_redirect] = STATE(1454), + [sym_arithmetic_expansion] = STATE(726), + [sym_brace_expression] = STATE(726), + [sym_concatenation] = STATE(906), + [sym_string] = STATE(726), + [sym_translated_string] = STATE(726), + [sym_number] = STATE(726), + [sym_simple_expansion] = STATE(726), + [sym_expansion] = STATE(726), + [sym_command_substitution] = STATE(726), + [sym_process_substitution] = STATE(726), + [aux_sym__statements_repeat1] = STATE(396), + [aux_sym_redirected_statement_repeat2] = STATE(3977), + [aux_sym_command_repeat1] = STATE(805), + [aux_sym__literal_repeat1] = STATE(806), + [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(436), + [anon_sym_SEMI_AMP] = ACTIONS(438), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(440), + [anon_sym_function] = ACTIONS(384), + [anon_sym_LBRACE] = ACTIONS(386), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_LBRACK_LBRACK] = ACTIONS(392), + [anon_sym_declare] = ACTIONS(394), + [anon_sym_typeset] = ACTIONS(394), + [anon_sym_export] = ACTIONS(394), + [anon_sym_readonly] = ACTIONS(394), + [anon_sym_local] = ACTIONS(394), + [anon_sym_unset] = ACTIONS(396), + [anon_sym_unsetenv] = ACTIONS(396), + [anon_sym_AMP_GT] = ACTIONS(364), + [anon_sym_AMP_GT_GT] = ACTIONS(366), + [anon_sym_LT_AMP] = ACTIONS(364), + [anon_sym_GT_AMP] = ACTIONS(364), + [anon_sym_GT_PIPE] = ACTIONS(366), + [anon_sym_LT_AMP_DASH] = ACTIONS(398), + [anon_sym_GT_AMP_DASH] = ACTIONS(398), + [anon_sym_LT_LT_LT] = ACTIONS(400), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(402), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(404), + [anon_sym_DOLLAR] = ACTIONS(406), + [sym__special_character] = ACTIONS(408), + [anon_sym_DQUOTE] = ACTIONS(410), + [sym_raw_string] = ACTIONS(412), + [sym_ansi_c_string] = ACTIONS(412), + [aux_sym_number_token1] = ACTIONS(414), + [aux_sym_number_token2] = ACTIONS(416), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(418), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(420), + [anon_sym_BQUOTE] = ACTIONS(422), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(424), + [anon_sym_LT_LPAREN] = ACTIONS(426), + [anon_sym_GT_LPAREN] = ACTIONS(426), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(428), + [sym_variable_name] = ACTIONS(430), + [sym_test_operator] = ACTIONS(432), + [sym__brace_start] = ACTIONS(434), + }, + [STATE(24)] = { + [sym__statements] = STATE(6108), + [sym__statement_not_pipeline] = STATE(6206), + [sym_redirected_statement] = STATE(4243), + [sym_for_statement] = STATE(4243), + [sym_c_style_for_statement] = STATE(4243), + [sym_while_statement] = STATE(3994), + [sym_if_statement] = STATE(3994), + [sym_case_statement] = STATE(4243), + [sym_function_definition] = STATE(4243), + [sym_compound_statement] = STATE(4243), + [sym_subshell] = STATE(4243), + [sym_pipeline] = STATE(4716), + [sym_list] = STATE(4243), + [sym_negated_command] = STATE(4243), + [sym_test_command] = STATE(4243), + [sym_declaration_command] = STATE(4243), + [sym_unset_command] = STATE(4243), + [sym_command] = STATE(4243), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(777), + [sym_variable_assignments] = STATE(4243), + [sym_subscript] = STATE(6366), + [sym_file_redirect] = STATE(1453), + [sym_herestring_redirect] = STATE(1454), + [sym_arithmetic_expansion] = STATE(726), + [sym_brace_expression] = STATE(726), + [sym_concatenation] = STATE(906), + [sym_string] = STATE(726), + [sym_translated_string] = STATE(726), + [sym_number] = STATE(726), + [sym_simple_expansion] = STATE(726), + [sym_expansion] = STATE(726), + [sym_command_substitution] = STATE(726), + [sym_process_substitution] = STATE(726), + [aux_sym__statements_repeat1] = STATE(396), + [aux_sym_redirected_statement_repeat2] = STATE(3977), + [aux_sym_command_repeat1] = STATE(805), + [aux_sym__literal_repeat1] = STATE(806), + [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(448), + [anon_sym_function] = ACTIONS(384), + [anon_sym_LBRACE] = ACTIONS(386), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_LBRACK_LBRACK] = ACTIONS(392), + [anon_sym_declare] = ACTIONS(394), + [anon_sym_typeset] = ACTIONS(394), + [anon_sym_export] = ACTIONS(394), + [anon_sym_readonly] = ACTIONS(394), + [anon_sym_local] = ACTIONS(394), + [anon_sym_unset] = ACTIONS(396), + [anon_sym_unsetenv] = ACTIONS(396), + [anon_sym_AMP_GT] = ACTIONS(364), + [anon_sym_AMP_GT_GT] = ACTIONS(366), + [anon_sym_LT_AMP] = ACTIONS(364), + [anon_sym_GT_AMP] = ACTIONS(364), + [anon_sym_GT_PIPE] = ACTIONS(366), + [anon_sym_LT_AMP_DASH] = ACTIONS(398), + [anon_sym_GT_AMP_DASH] = ACTIONS(398), + [anon_sym_LT_LT_LT] = ACTIONS(400), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(402), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(404), + [anon_sym_DOLLAR] = ACTIONS(406), + [sym__special_character] = ACTIONS(408), + [anon_sym_DQUOTE] = ACTIONS(410), + [sym_raw_string] = ACTIONS(412), + [sym_ansi_c_string] = ACTIONS(412), + [aux_sym_number_token1] = ACTIONS(414), + [aux_sym_number_token2] = ACTIONS(416), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(418), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(420), + [anon_sym_BQUOTE] = ACTIONS(422), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(424), + [anon_sym_LT_LPAREN] = ACTIONS(426), + [anon_sym_GT_LPAREN] = ACTIONS(426), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(428), + [sym_variable_name] = ACTIONS(430), + [sym_test_operator] = ACTIONS(432), + [sym__brace_start] = ACTIONS(434), + }, + [STATE(25)] = { + [aux_sym__terminated_statement] = STATE(25), + [sym__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4739), + [sym_for_statement] = STATE(4739), + [sym_c_style_for_statement] = STATE(4739), + [sym_while_statement] = STATE(4369), + [sym_if_statement] = STATE(4369), + [sym_case_statement] = STATE(4739), + [sym_function_definition] = STATE(4739), + [sym_compound_statement] = STATE(4739), + [sym_subshell] = STATE(4739), + [sym_pipeline] = STATE(4923), + [sym_list] = STATE(4739), + [sym_negated_command] = STATE(4739), + [sym_test_command] = STATE(4739), + [sym_declaration_command] = STATE(4739), + [sym_unset_command] = STATE(4739), + [sym_command] = STATE(4739), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1174), + [sym_variable_assignments] = STATE(4739), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(450), + [anon_sym_for] = ACTIONS(453), + [anon_sym_select] = ACTIONS(456), + [anon_sym_LPAREN_LPAREN] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(462), + [anon_sym_GT] = ACTIONS(462), + [anon_sym_GT_GT] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(468), + [anon_sym_while] = ACTIONS(471), + [anon_sym_until] = ACTIONS(471), + [anon_sym_do] = ACTIONS(474), + [anon_sym_if] = ACTIONS(476), + [anon_sym_then] = ACTIONS(474), + [anon_sym_fi] = ACTIONS(474), + [anon_sym_elif] = ACTIONS(474), + [anon_sym_else] = ACTIONS(474), + [anon_sym_case] = ACTIONS(479), + [anon_sym_function] = ACTIONS(482), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_BANG] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(494), + [anon_sym_declare] = ACTIONS(497), + [anon_sym_typeset] = ACTIONS(497), + [anon_sym_export] = ACTIONS(497), + [anon_sym_readonly] = ACTIONS(497), + [anon_sym_local] = ACTIONS(497), + [anon_sym_unset] = ACTIONS(500), + [anon_sym_unsetenv] = ACTIONS(500), + [anon_sym_AMP_GT] = ACTIONS(462), + [anon_sym_AMP_GT_GT] = ACTIONS(465), + [anon_sym_LT_AMP] = ACTIONS(462), + [anon_sym_GT_AMP] = ACTIONS(462), + [anon_sym_GT_PIPE] = ACTIONS(465), + [anon_sym_LT_AMP_DASH] = ACTIONS(503), + [anon_sym_GT_AMP_DASH] = ACTIONS(503), + [anon_sym_LT_LT_LT] = ACTIONS(506), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(509), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(512), + [anon_sym_DOLLAR] = ACTIONS(515), + [sym__special_character] = ACTIONS(518), + [anon_sym_DQUOTE] = ACTIONS(521), + [sym_raw_string] = ACTIONS(524), + [sym_ansi_c_string] = ACTIONS(524), + [aux_sym_number_token1] = ACTIONS(527), + [aux_sym_number_token2] = ACTIONS(530), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(533), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(536), + [anon_sym_BQUOTE] = ACTIONS(539), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(542), + [anon_sym_LT_LPAREN] = ACTIONS(545), + [anon_sym_GT_LPAREN] = ACTIONS(545), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(548), + [sym_variable_name] = ACTIONS(551), + [sym_test_operator] = ACTIONS(554), + [sym__brace_start] = ACTIONS(557), + }, + [STATE(26)] = { + [sym__statements] = STATE(6088), + [sym__statement_not_pipeline] = STATE(6206), + [sym_redirected_statement] = STATE(4243), + [sym_for_statement] = STATE(4243), + [sym_c_style_for_statement] = STATE(4243), + [sym_while_statement] = STATE(3994), + [sym_if_statement] = STATE(3994), + [sym_case_statement] = STATE(4243), + [sym_function_definition] = STATE(4243), + [sym_compound_statement] = STATE(4243), + [sym_subshell] = STATE(4243), + [sym_pipeline] = STATE(4716), + [sym_list] = STATE(4243), + [sym_negated_command] = STATE(4243), + [sym_test_command] = STATE(4243), + [sym_declaration_command] = STATE(4243), + [sym_unset_command] = STATE(4243), + [sym_command] = STATE(4243), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(777), + [sym_variable_assignments] = STATE(4243), + [sym_subscript] = STATE(6366), + [sym_file_redirect] = STATE(1453), + [sym_herestring_redirect] = STATE(1454), + [sym_arithmetic_expansion] = STATE(726), + [sym_brace_expression] = STATE(726), + [sym_concatenation] = STATE(906), + [sym_string] = STATE(726), + [sym_translated_string] = STATE(726), + [sym_number] = STATE(726), + [sym_simple_expansion] = STATE(726), + [sym_expansion] = STATE(726), + [sym_command_substitution] = STATE(726), + [sym_process_substitution] = STATE(726), + [aux_sym__statements_repeat1] = STATE(396), + [aux_sym_redirected_statement_repeat2] = STATE(3977), + [aux_sym_command_repeat1] = STATE(805), + [aux_sym__literal_repeat1] = STATE(806), + [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(560), + [anon_sym_SEMI_AMP] = ACTIONS(562), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(564), + [anon_sym_function] = ACTIONS(384), + [anon_sym_LBRACE] = ACTIONS(386), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_LBRACK_LBRACK] = ACTIONS(392), + [anon_sym_declare] = ACTIONS(394), + [anon_sym_typeset] = ACTIONS(394), + [anon_sym_export] = ACTIONS(394), + [anon_sym_readonly] = ACTIONS(394), + [anon_sym_local] = ACTIONS(394), + [anon_sym_unset] = ACTIONS(396), + [anon_sym_unsetenv] = ACTIONS(396), + [anon_sym_AMP_GT] = ACTIONS(364), + [anon_sym_AMP_GT_GT] = ACTIONS(366), + [anon_sym_LT_AMP] = ACTIONS(364), + [anon_sym_GT_AMP] = ACTIONS(364), + [anon_sym_GT_PIPE] = ACTIONS(366), + [anon_sym_LT_AMP_DASH] = ACTIONS(398), + [anon_sym_GT_AMP_DASH] = ACTIONS(398), + [anon_sym_LT_LT_LT] = ACTIONS(400), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(402), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(404), + [anon_sym_DOLLAR] = ACTIONS(406), + [sym__special_character] = ACTIONS(408), + [anon_sym_DQUOTE] = ACTIONS(410), + [sym_raw_string] = ACTIONS(412), + [sym_ansi_c_string] = ACTIONS(412), + [aux_sym_number_token1] = ACTIONS(414), + [aux_sym_number_token2] = ACTIONS(416), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(418), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(420), + [anon_sym_BQUOTE] = ACTIONS(422), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(424), + [anon_sym_LT_LPAREN] = ACTIONS(426), + [anon_sym_GT_LPAREN] = ACTIONS(426), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(428), + [sym_variable_name] = ACTIONS(430), + [sym_test_operator] = ACTIONS(432), + [sym__brace_start] = ACTIONS(434), + }, + [STATE(27)] = { + [sym__expression] = STATE(2723), + [sym_binary_expression] = STATE(2702), + [sym_ternary_expression] = STATE(2702), + [sym_unary_expression] = STATE(2702), + [sym_postfix_expression] = STATE(2702), + [sym_parenthesized_expression] = STATE(2702), [sym_arithmetic_expansion] = STATE(2309), [sym_brace_expression] = STATE(2309), - [sym_concatenation] = STATE(2847), + [sym_concatenation] = STATE(2702), [sym_string] = STATE(2309), [sym_translated_string] = STATE(2309), [sym_number] = STATE(2309), @@ -30951,9 +30549,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_word] = ACTIONS(356), + [aux_sym__literal_repeat1] = STATE(2414), + [aux_sym_concatenation_repeat1] = STATE(464), + [sym_word] = ACTIONS(566), [anon_sym_EQ] = ACTIONS(239), [anon_sym_PLUS_PLUS] = ACTIONS(239), [anon_sym_DASH_DASH] = ACTIONS(239), @@ -30963,13 +30561,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(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), [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(568), + [anon_sym_PIPE_PIPE] = ACTIONS(570), + [anon_sym_AMP_AMP] = ACTIONS(570), [anon_sym_PIPE] = ACTIONS(241), [anon_sym_CARET] = ACTIONS(239), [anon_sym_AMP] = ACTIONS(239), @@ -30977,8 +30575,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(568), + [anon_sym_GT_EQ] = ACTIONS(568), [anon_sym_LT_LT] = ACTIONS(241), [anon_sym_GT_GT] = ACTIONS(241), [anon_sym_PLUS] = ACTIONS(239), @@ -30987,10 +30585,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(573), [anon_sym_PIPE_AMP] = ACTIONS(276), - [anon_sym_BANG] = ACTIONS(365), - [anon_sym_RBRACK] = ACTIONS(358), + [anon_sym_BANG] = ACTIONS(575), + [anon_sym_RBRACK] = ACTIONS(568), [anon_sym_EQ_TILDE] = ACTIONS(241), [anon_sym_AMP_GT] = ACTIONS(237), [anon_sym_AMP_GT_GT] = ACTIONS(276), @@ -31007,1316 +30605,836 @@ 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(577), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(579), + [aux_sym_concatenation_token1] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(583), + [sym__special_character] = ACTIONS(585), + [anon_sym_DQUOTE] = ACTIONS(587), + [sym_raw_string] = ACTIONS(589), + [sym_ansi_c_string] = ACTIONS(589), + [aux_sym_number_token1] = ACTIONS(591), + [aux_sym_number_token2] = ACTIONS(593), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(595), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(597), + [anon_sym_BQUOTE] = ACTIONS(599), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(601), + [anon_sym_LT_LPAREN] = ACTIONS(603), + [anon_sym_GT_LPAREN] = ACTIONS(603), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(276), - [sym__concat] = ACTIONS(371), - [sym_test_operator] = ACTIONS(395), + [sym__concat] = ACTIONS(581), + [sym_test_operator] = ACTIONS(605), [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), + [sym__brace_start] = ACTIONS(607), }, [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), + [sym__statements] = STATE(6077), + [sym__statement_not_pipeline] = STATE(6206), + [sym_redirected_statement] = STATE(4243), + [sym_for_statement] = STATE(4243), + [sym_c_style_for_statement] = STATE(4243), + [sym_while_statement] = STATE(3994), + [sym_if_statement] = STATE(3994), + [sym_case_statement] = STATE(4243), + [sym_function_definition] = STATE(4243), + [sym_compound_statement] = STATE(4243), + [sym_subshell] = STATE(4243), + [sym_pipeline] = STATE(4716), + [sym_list] = STATE(4243), + [sym_negated_command] = STATE(4243), + [sym_test_command] = STATE(4243), + [sym_declaration_command] = STATE(4243), + [sym_unset_command] = STATE(4243), + [sym_command] = STATE(4243), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(777), + [sym_variable_assignments] = STATE(4243), + [sym_subscript] = STATE(6366), + [sym_file_redirect] = STATE(1453), + [sym_herestring_redirect] = STATE(1454), + [sym_arithmetic_expansion] = STATE(726), + [sym_brace_expression] = STATE(726), + [sym_concatenation] = STATE(906), + [sym_string] = STATE(726), + [sym_translated_string] = STATE(726), + [sym_number] = STATE(726), + [sym_simple_expansion] = STATE(726), + [sym_expansion] = STATE(726), + [sym_command_substitution] = STATE(726), + [sym_process_substitution] = STATE(726), + [aux_sym__statements_repeat1] = STATE(396), + [aux_sym_redirected_statement_repeat2] = STATE(3977), + [aux_sym_command_repeat1] = STATE(805), + [aux_sym__literal_repeat1] = STATE(806), + [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(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), + [anon_sym_function] = ACTIONS(384), + [anon_sym_LBRACE] = ACTIONS(386), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_LBRACK_LBRACK] = ACTIONS(392), + [anon_sym_declare] = ACTIONS(394), + [anon_sym_typeset] = ACTIONS(394), + [anon_sym_export] = ACTIONS(394), + [anon_sym_readonly] = ACTIONS(394), + [anon_sym_local] = ACTIONS(394), + [anon_sym_unset] = ACTIONS(396), + [anon_sym_unsetenv] = ACTIONS(396), + [anon_sym_AMP_GT] = ACTIONS(364), + [anon_sym_AMP_GT_GT] = ACTIONS(366), + [anon_sym_LT_AMP] = ACTIONS(364), + [anon_sym_GT_AMP] = ACTIONS(364), + [anon_sym_GT_PIPE] = ACTIONS(366), + [anon_sym_LT_AMP_DASH] = ACTIONS(398), + [anon_sym_GT_AMP_DASH] = ACTIONS(398), + [anon_sym_LT_LT_LT] = ACTIONS(400), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(402), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(404), + [anon_sym_DOLLAR] = ACTIONS(406), + [sym__special_character] = ACTIONS(408), + [anon_sym_DQUOTE] = ACTIONS(410), + [sym_raw_string] = ACTIONS(412), + [sym_ansi_c_string] = ACTIONS(412), + [aux_sym_number_token1] = ACTIONS(414), + [aux_sym_number_token2] = ACTIONS(416), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(418), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(420), + [anon_sym_BQUOTE] = ACTIONS(422), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(424), + [anon_sym_LT_LPAREN] = ACTIONS(426), + [anon_sym_GT_LPAREN] = ACTIONS(426), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(471), - [sym_variable_name] = ACTIONS(473), - [sym_test_operator] = ACTIONS(475), - [sym__brace_start] = ACTIONS(477), + [sym_file_descriptor] = ACTIONS(428), + [sym_variable_name] = ACTIONS(430), + [sym_test_operator] = ACTIONS(432), + [sym__brace_start] = ACTIONS(434), }, [STATE(29)] = { - [sym__statements] = STATE(6440), - [sym__statement_not_pipeline] = STATE(6573), - [sym_redirected_statement] = STATE(4293), - [sym_for_statement] = STATE(4293), - [sym_c_style_for_statement] = STATE(4293), - [sym_while_statement] = STATE(4014), - [sym_if_statement] = STATE(4014), - [sym_case_statement] = STATE(4293), - [sym_function_definition] = STATE(4293), - [sym_compound_statement] = STATE(4293), - [sym_subshell] = STATE(4293), - [sym_pipeline] = STATE(4611), - [sym_list] = STATE(4293), - [sym_negated_command] = STATE(4293), - [sym_test_command] = STATE(4293), - [sym_declaration_command] = STATE(4293), - [sym_unset_command] = STATE(4293), - [sym_command] = STATE(4293), - [sym_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), + [sym__statements] = STATE(6110), + [sym__statement_not_pipeline] = STATE(6206), + [sym_redirected_statement] = STATE(4243), + [sym_for_statement] = STATE(4243), + [sym_c_style_for_statement] = STATE(4243), + [sym_while_statement] = STATE(3994), + [sym_if_statement] = STATE(3994), + [sym_case_statement] = STATE(4243), + [sym_function_definition] = STATE(4243), + [sym_compound_statement] = STATE(4243), + [sym_subshell] = STATE(4243), + [sym_pipeline] = STATE(4716), + [sym_list] = STATE(4243), + [sym_negated_command] = STATE(4243), + [sym_test_command] = STATE(4243), + [sym_declaration_command] = STATE(4243), + [sym_unset_command] = STATE(4243), + [sym_command] = STATE(4243), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(777), + [sym_variable_assignments] = STATE(4243), + [sym_subscript] = STATE(6366), + [sym_file_redirect] = STATE(1453), + [sym_herestring_redirect] = STATE(1454), + [sym_arithmetic_expansion] = STATE(726), + [sym_brace_expression] = STATE(726), + [sym_concatenation] = STATE(906), + [sym_string] = STATE(726), + [sym_translated_string] = STATE(726), + [sym_number] = STATE(726), + [sym_simple_expansion] = STATE(726), + [sym_expansion] = STATE(726), + [sym_command_substitution] = STATE(726), + [sym_process_substitution] = STATE(726), + [aux_sym__statements_repeat1] = STATE(396), + [aux_sym_redirected_statement_repeat2] = STATE(3977), + [aux_sym_command_repeat1] = STATE(805), + [aux_sym__literal_repeat1] = STATE(806), + [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(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), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(619), + [anon_sym_function] = ACTIONS(384), + [anon_sym_LBRACE] = ACTIONS(386), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_LBRACK_LBRACK] = ACTIONS(392), + [anon_sym_declare] = ACTIONS(394), + [anon_sym_typeset] = ACTIONS(394), + [anon_sym_export] = ACTIONS(394), + [anon_sym_readonly] = ACTIONS(394), + [anon_sym_local] = ACTIONS(394), + [anon_sym_unset] = ACTIONS(396), + [anon_sym_unsetenv] = ACTIONS(396), + [anon_sym_AMP_GT] = ACTIONS(364), + [anon_sym_AMP_GT_GT] = ACTIONS(366), + [anon_sym_LT_AMP] = ACTIONS(364), + [anon_sym_GT_AMP] = ACTIONS(364), + [anon_sym_GT_PIPE] = ACTIONS(366), + [anon_sym_LT_AMP_DASH] = ACTIONS(398), + [anon_sym_GT_AMP_DASH] = ACTIONS(398), + [anon_sym_LT_LT_LT] = ACTIONS(400), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(402), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(404), + [anon_sym_DOLLAR] = ACTIONS(406), + [sym__special_character] = ACTIONS(408), + [anon_sym_DQUOTE] = ACTIONS(410), + [sym_raw_string] = ACTIONS(412), + [sym_ansi_c_string] = ACTIONS(412), + [aux_sym_number_token1] = ACTIONS(414), + [aux_sym_number_token2] = ACTIONS(416), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(418), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(420), + [anon_sym_BQUOTE] = ACTIONS(422), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(424), + [anon_sym_LT_LPAREN] = ACTIONS(426), + [anon_sym_GT_LPAREN] = ACTIONS(426), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(471), - [sym_variable_name] = ACTIONS(473), - [sym_test_operator] = ACTIONS(475), - [sym__brace_start] = ACTIONS(477), + [sym_file_descriptor] = ACTIONS(428), + [sym_variable_name] = ACTIONS(430), + [sym_test_operator] = ACTIONS(432), + [sym__brace_start] = ACTIONS(434), }, [STATE(30)] = { - [sym__statements] = STATE(6442), - [sym__statement_not_pipeline] = STATE(6573), - [sym_redirected_statement] = STATE(4293), - [sym_for_statement] = STATE(4293), - [sym_c_style_for_statement] = STATE(4293), - [sym_while_statement] = STATE(4014), - [sym_if_statement] = STATE(4014), - [sym_case_statement] = STATE(4293), - [sym_function_definition] = STATE(4293), - [sym_compound_statement] = STATE(4293), - [sym_subshell] = STATE(4293), - [sym_pipeline] = STATE(4611), - [sym_list] = STATE(4293), - [sym_negated_command] = STATE(4293), - [sym_test_command] = STATE(4293), - [sym_declaration_command] = STATE(4293), - [sym_unset_command] = STATE(4293), - [sym_command] = STATE(4293), - [sym_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), + [sym__statements] = STATE(6111), + [sym__statement_not_pipeline] = STATE(6206), + [sym_redirected_statement] = STATE(4243), + [sym_for_statement] = STATE(4243), + [sym_c_style_for_statement] = STATE(4243), + [sym_while_statement] = STATE(3994), + [sym_if_statement] = STATE(3994), + [sym_case_statement] = STATE(4243), + [sym_function_definition] = STATE(4243), + [sym_compound_statement] = STATE(4243), + [sym_subshell] = STATE(4243), + [sym_pipeline] = STATE(4716), + [sym_list] = STATE(4243), + [sym_negated_command] = STATE(4243), + [sym_test_command] = STATE(4243), + [sym_declaration_command] = STATE(4243), + [sym_unset_command] = STATE(4243), + [sym_command] = STATE(4243), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(777), + [sym_variable_assignments] = STATE(4243), + [sym_subscript] = STATE(6366), + [sym_file_redirect] = STATE(1453), + [sym_herestring_redirect] = STATE(1454), + [sym_arithmetic_expansion] = STATE(726), + [sym_brace_expression] = STATE(726), + [sym_concatenation] = STATE(906), + [sym_string] = STATE(726), + [sym_translated_string] = STATE(726), + [sym_number] = STATE(726), + [sym_simple_expansion] = STATE(726), + [sym_expansion] = STATE(726), + [sym_command_substitution] = STATE(726), + [sym_process_substitution] = STATE(726), + [aux_sym__statements_repeat1] = STATE(396), + [aux_sym_redirected_statement_repeat2] = STATE(3977), + [aux_sym_command_repeat1] = STATE(805), + [aux_sym__literal_repeat1] = STATE(806), + [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(621), + [anon_sym_SEMI_SEMI] = ACTIONS(623), + [anon_sym_SEMI_AMP] = ACTIONS(625), [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), + [anon_sym_function] = ACTIONS(384), + [anon_sym_LBRACE] = ACTIONS(386), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_LBRACK_LBRACK] = ACTIONS(392), + [anon_sym_declare] = ACTIONS(394), + [anon_sym_typeset] = ACTIONS(394), + [anon_sym_export] = ACTIONS(394), + [anon_sym_readonly] = ACTIONS(394), + [anon_sym_local] = ACTIONS(394), + [anon_sym_unset] = ACTIONS(396), + [anon_sym_unsetenv] = ACTIONS(396), + [anon_sym_AMP_GT] = ACTIONS(364), + [anon_sym_AMP_GT_GT] = ACTIONS(366), + [anon_sym_LT_AMP] = ACTIONS(364), + [anon_sym_GT_AMP] = ACTIONS(364), + [anon_sym_GT_PIPE] = ACTIONS(366), + [anon_sym_LT_AMP_DASH] = ACTIONS(398), + [anon_sym_GT_AMP_DASH] = ACTIONS(398), + [anon_sym_LT_LT_LT] = ACTIONS(400), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(402), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(404), + [anon_sym_DOLLAR] = ACTIONS(406), + [sym__special_character] = ACTIONS(408), + [anon_sym_DQUOTE] = ACTIONS(410), + [sym_raw_string] = ACTIONS(412), + [sym_ansi_c_string] = ACTIONS(412), + [aux_sym_number_token1] = ACTIONS(414), + [aux_sym_number_token2] = ACTIONS(416), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(418), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(420), + [anon_sym_BQUOTE] = ACTIONS(422), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(424), + [anon_sym_LT_LPAREN] = ACTIONS(426), + [anon_sym_GT_LPAREN] = ACTIONS(426), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(471), - [sym_variable_name] = ACTIONS(473), - [sym_test_operator] = ACTIONS(475), - [sym__brace_start] = ACTIONS(477), + [sym_file_descriptor] = ACTIONS(428), + [sym_variable_name] = ACTIONS(430), + [sym_test_operator] = ACTIONS(432), + [sym__brace_start] = ACTIONS(434), }, [STATE(31)] = { - [sym__statements] = STATE(6443), - [sym__statement_not_pipeline] = STATE(6573), - [sym_redirected_statement] = STATE(4293), - [sym_for_statement] = STATE(4293), - [sym_c_style_for_statement] = STATE(4293), - [sym_while_statement] = STATE(4014), - [sym_if_statement] = STATE(4014), - [sym_case_statement] = STATE(4293), - [sym_function_definition] = STATE(4293), - [sym_compound_statement] = STATE(4293), - [sym_subshell] = STATE(4293), - [sym_pipeline] = STATE(4611), - [sym_list] = STATE(4293), - [sym_negated_command] = STATE(4293), - [sym_test_command] = STATE(4293), - [sym_declaration_command] = STATE(4293), - [sym_unset_command] = STATE(4293), - [sym_command] = STATE(4293), - [sym_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), + [sym__statements] = STATE(6071), + [sym__statement_not_pipeline] = STATE(6206), + [sym_redirected_statement] = STATE(4243), + [sym_for_statement] = STATE(4243), + [sym_c_style_for_statement] = STATE(4243), + [sym_while_statement] = STATE(3994), + [sym_if_statement] = STATE(3994), + [sym_case_statement] = STATE(4243), + [sym_function_definition] = STATE(4243), + [sym_compound_statement] = STATE(4243), + [sym_subshell] = STATE(4243), + [sym_pipeline] = STATE(4716), + [sym_list] = STATE(4243), + [sym_negated_command] = STATE(4243), + [sym_test_command] = STATE(4243), + [sym_declaration_command] = STATE(4243), + [sym_unset_command] = STATE(4243), + [sym_command] = STATE(4243), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(777), + [sym_variable_assignments] = STATE(4243), + [sym_subscript] = STATE(6366), + [sym_file_redirect] = STATE(1453), + [sym_herestring_redirect] = STATE(1454), + [sym_arithmetic_expansion] = STATE(726), + [sym_brace_expression] = STATE(726), + [sym_concatenation] = STATE(906), + [sym_string] = STATE(726), + [sym_translated_string] = STATE(726), + [sym_number] = STATE(726), + [sym_simple_expansion] = STATE(726), + [sym_expansion] = STATE(726), + [sym_command_substitution] = STATE(726), + [sym_process_substitution] = STATE(726), + [aux_sym__statements_repeat1] = STATE(396), + [aux_sym_redirected_statement_repeat2] = STATE(3977), + [aux_sym_command_repeat1] = STATE(805), + [aux_sym__literal_repeat1] = STATE(806), + [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(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), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(633), + [anon_sym_function] = ACTIONS(384), + [anon_sym_LBRACE] = ACTIONS(386), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_LBRACK_LBRACK] = ACTIONS(392), + [anon_sym_declare] = ACTIONS(394), + [anon_sym_typeset] = ACTIONS(394), + [anon_sym_export] = ACTIONS(394), + [anon_sym_readonly] = ACTIONS(394), + [anon_sym_local] = ACTIONS(394), + [anon_sym_unset] = ACTIONS(396), + [anon_sym_unsetenv] = ACTIONS(396), + [anon_sym_AMP_GT] = ACTIONS(364), + [anon_sym_AMP_GT_GT] = ACTIONS(366), + [anon_sym_LT_AMP] = ACTIONS(364), + [anon_sym_GT_AMP] = ACTIONS(364), + [anon_sym_GT_PIPE] = ACTIONS(366), + [anon_sym_LT_AMP_DASH] = ACTIONS(398), + [anon_sym_GT_AMP_DASH] = ACTIONS(398), + [anon_sym_LT_LT_LT] = ACTIONS(400), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(402), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(404), + [anon_sym_DOLLAR] = ACTIONS(406), + [sym__special_character] = ACTIONS(408), + [anon_sym_DQUOTE] = ACTIONS(410), + [sym_raw_string] = ACTIONS(412), + [sym_ansi_c_string] = ACTIONS(412), + [aux_sym_number_token1] = ACTIONS(414), + [aux_sym_number_token2] = ACTIONS(416), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(418), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(420), + [anon_sym_BQUOTE] = ACTIONS(422), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(424), + [anon_sym_LT_LPAREN] = ACTIONS(426), + [anon_sym_GT_LPAREN] = ACTIONS(426), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(471), - [sym_variable_name] = ACTIONS(473), - [sym_test_operator] = ACTIONS(475), - [sym__brace_start] = ACTIONS(477), + [sym_file_descriptor] = ACTIONS(428), + [sym_variable_name] = ACTIONS(430), + [sym_test_operator] = ACTIONS(432), + [sym__brace_start] = ACTIONS(434), }, [STATE(32)] = { - [sym__statements] = STATE(6444), - [sym__statement_not_pipeline] = STATE(6573), - [sym_redirected_statement] = STATE(4293), - [sym_for_statement] = STATE(4293), - [sym_c_style_for_statement] = STATE(4293), - [sym_while_statement] = STATE(4014), - [sym_if_statement] = STATE(4014), - [sym_case_statement] = STATE(4293), - [sym_function_definition] = STATE(4293), - [sym_compound_statement] = STATE(4293), - [sym_subshell] = STATE(4293), - [sym_pipeline] = STATE(4611), - [sym_list] = STATE(4293), - [sym_negated_command] = STATE(4293), - [sym_test_command] = STATE(4293), - [sym_declaration_command] = STATE(4293), - [sym_unset_command] = STATE(4293), - [sym_command] = STATE(4293), - [sym_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), + [sym__statements] = STATE(6103), + [sym__statement_not_pipeline] = STATE(6206), + [sym_redirected_statement] = STATE(4243), + [sym_for_statement] = STATE(4243), + [sym_c_style_for_statement] = STATE(4243), + [sym_while_statement] = STATE(3994), + [sym_if_statement] = STATE(3994), + [sym_case_statement] = STATE(4243), + [sym_function_definition] = STATE(4243), + [sym_compound_statement] = STATE(4243), + [sym_subshell] = STATE(4243), + [sym_pipeline] = STATE(4716), + [sym_list] = STATE(4243), + [sym_negated_command] = STATE(4243), + [sym_test_command] = STATE(4243), + [sym_declaration_command] = STATE(4243), + [sym_unset_command] = STATE(4243), + [sym_command] = STATE(4243), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(777), + [sym_variable_assignments] = STATE(4243), + [sym_subscript] = STATE(6366), + [sym_file_redirect] = STATE(1453), + [sym_herestring_redirect] = STATE(1454), + [sym_arithmetic_expansion] = STATE(726), + [sym_brace_expression] = STATE(726), + [sym_concatenation] = STATE(906), + [sym_string] = STATE(726), + [sym_translated_string] = STATE(726), + [sym_number] = STATE(726), + [sym_simple_expansion] = STATE(726), + [sym_expansion] = STATE(726), + [sym_command_substitution] = STATE(726), + [sym_process_substitution] = STATE(726), + [aux_sym__statements_repeat1] = STATE(396), + [aux_sym_redirected_statement_repeat2] = STATE(3977), + [aux_sym_command_repeat1] = STATE(805), + [aux_sym__literal_repeat1] = STATE(806), + [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(635), [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), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(639), + [anon_sym_function] = ACTIONS(384), + [anon_sym_LBRACE] = ACTIONS(386), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_LBRACK_LBRACK] = ACTIONS(392), + [anon_sym_declare] = ACTIONS(394), + [anon_sym_typeset] = ACTIONS(394), + [anon_sym_export] = ACTIONS(394), + [anon_sym_readonly] = ACTIONS(394), + [anon_sym_local] = ACTIONS(394), + [anon_sym_unset] = ACTIONS(396), + [anon_sym_unsetenv] = ACTIONS(396), + [anon_sym_AMP_GT] = ACTIONS(364), + [anon_sym_AMP_GT_GT] = ACTIONS(366), + [anon_sym_LT_AMP] = ACTIONS(364), + [anon_sym_GT_AMP] = ACTIONS(364), + [anon_sym_GT_PIPE] = ACTIONS(366), + [anon_sym_LT_AMP_DASH] = ACTIONS(398), + [anon_sym_GT_AMP_DASH] = ACTIONS(398), + [anon_sym_LT_LT_LT] = ACTIONS(400), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(402), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(404), + [anon_sym_DOLLAR] = ACTIONS(406), + [sym__special_character] = ACTIONS(408), + [anon_sym_DQUOTE] = ACTIONS(410), + [sym_raw_string] = ACTIONS(412), + [sym_ansi_c_string] = ACTIONS(412), + [aux_sym_number_token1] = ACTIONS(414), + [aux_sym_number_token2] = ACTIONS(416), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(418), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(420), + [anon_sym_BQUOTE] = ACTIONS(422), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(424), + [anon_sym_LT_LPAREN] = ACTIONS(426), + [anon_sym_GT_LPAREN] = ACTIONS(426), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(471), - [sym_variable_name] = ACTIONS(473), - [sym_test_operator] = ACTIONS(475), - [sym__brace_start] = ACTIONS(477), + [sym_file_descriptor] = ACTIONS(428), + [sym_variable_name] = ACTIONS(430), + [sym_test_operator] = ACTIONS(432), + [sym__brace_start] = ACTIONS(434), }, [STATE(33)] = { - [sym__statements] = STATE(6448), - [sym__statement_not_pipeline] = STATE(6573), - [sym_redirected_statement] = STATE(4293), - [sym_for_statement] = STATE(4293), - [sym_c_style_for_statement] = STATE(4293), - [sym_while_statement] = STATE(4014), - [sym_if_statement] = STATE(4014), - [sym_case_statement] = STATE(4293), - [sym_function_definition] = STATE(4293), - [sym_compound_statement] = STATE(4293), - [sym_subshell] = STATE(4293), - [sym_pipeline] = STATE(4611), - [sym_list] = STATE(4293), - [sym_negated_command] = STATE(4293), - [sym_test_command] = STATE(4293), - [sym_declaration_command] = STATE(4293), - [sym_unset_command] = STATE(4293), - [sym_command] = STATE(4293), - [sym_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), + [sym__statements] = STATE(6080), + [sym__statement_not_pipeline] = STATE(6206), + [sym_redirected_statement] = STATE(4243), + [sym_for_statement] = STATE(4243), + [sym_c_style_for_statement] = STATE(4243), + [sym_while_statement] = STATE(3994), + [sym_if_statement] = STATE(3994), + [sym_case_statement] = STATE(4243), + [sym_function_definition] = STATE(4243), + [sym_compound_statement] = STATE(4243), + [sym_subshell] = STATE(4243), + [sym_pipeline] = STATE(4716), + [sym_list] = STATE(4243), + [sym_negated_command] = STATE(4243), + [sym_test_command] = STATE(4243), + [sym_declaration_command] = STATE(4243), + [sym_unset_command] = STATE(4243), + [sym_command] = STATE(4243), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(777), + [sym_variable_assignments] = STATE(4243), + [sym_subscript] = STATE(6366), + [sym_file_redirect] = STATE(1453), + [sym_herestring_redirect] = STATE(1454), + [sym_arithmetic_expansion] = STATE(726), + [sym_brace_expression] = STATE(726), + [sym_concatenation] = STATE(906), + [sym_string] = STATE(726), + [sym_translated_string] = STATE(726), + [sym_number] = STATE(726), + [sym_simple_expansion] = STATE(726), + [sym_expansion] = STATE(726), + [sym_command_substitution] = STATE(726), + [sym_process_substitution] = STATE(726), + [aux_sym__statements_repeat1] = STATE(396), + [aux_sym_redirected_statement_repeat2] = STATE(3977), + [aux_sym_command_repeat1] = STATE(805), + [aux_sym__literal_repeat1] = STATE(806), + [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(641), [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), + [anon_sym_function] = ACTIONS(384), + [anon_sym_LBRACE] = ACTIONS(386), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_LBRACK_LBRACK] = ACTIONS(392), + [anon_sym_declare] = ACTIONS(394), + [anon_sym_typeset] = ACTIONS(394), + [anon_sym_export] = ACTIONS(394), + [anon_sym_readonly] = ACTIONS(394), + [anon_sym_local] = ACTIONS(394), + [anon_sym_unset] = ACTIONS(396), + [anon_sym_unsetenv] = ACTIONS(396), + [anon_sym_AMP_GT] = ACTIONS(364), + [anon_sym_AMP_GT_GT] = ACTIONS(366), + [anon_sym_LT_AMP] = ACTIONS(364), + [anon_sym_GT_AMP] = ACTIONS(364), + [anon_sym_GT_PIPE] = ACTIONS(366), + [anon_sym_LT_AMP_DASH] = ACTIONS(398), + [anon_sym_GT_AMP_DASH] = ACTIONS(398), + [anon_sym_LT_LT_LT] = ACTIONS(400), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(402), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(404), + [anon_sym_DOLLAR] = ACTIONS(406), + [sym__special_character] = ACTIONS(408), + [anon_sym_DQUOTE] = ACTIONS(410), + [sym_raw_string] = ACTIONS(412), + [sym_ansi_c_string] = ACTIONS(412), + [aux_sym_number_token1] = ACTIONS(414), + [aux_sym_number_token2] = ACTIONS(416), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(418), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(420), + [anon_sym_BQUOTE] = ACTIONS(422), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(424), + [anon_sym_LT_LPAREN] = ACTIONS(426), + [anon_sym_GT_LPAREN] = ACTIONS(426), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(471), - [sym_variable_name] = ACTIONS(473), - [sym_test_operator] = ACTIONS(475), - [sym__brace_start] = ACTIONS(477), + [sym_file_descriptor] = ACTIONS(428), + [sym_variable_name] = ACTIONS(430), + [sym_test_operator] = ACTIONS(432), + [sym__brace_start] = ACTIONS(434), }, [STATE(34)] = { - [sym__statements] = STATE(6397), - [sym__statement_not_pipeline] = STATE(6573), - [sym_redirected_statement] = STATE(4293), - [sym_for_statement] = STATE(4293), - [sym_c_style_for_statement] = STATE(4293), - [sym_while_statement] = STATE(4014), - [sym_if_statement] = STATE(4014), - [sym_case_statement] = STATE(4293), - [sym_function_definition] = STATE(4293), - [sym_compound_statement] = STATE(4293), - [sym_subshell] = STATE(4293), - [sym_pipeline] = STATE(4611), - [sym_list] = STATE(4293), - [sym_negated_command] = STATE(4293), - [sym_test_command] = STATE(4293), - [sym_declaration_command] = STATE(4293), - [sym_unset_command] = STATE(4293), - [sym_command] = STATE(4293), - [sym_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), + [sym__statements] = STATE(6074), + [sym__statement_not_pipeline] = STATE(6206), + [sym_redirected_statement] = STATE(4243), + [sym_for_statement] = STATE(4243), + [sym_c_style_for_statement] = STATE(4243), + [sym_while_statement] = STATE(3994), + [sym_if_statement] = STATE(3994), + [sym_case_statement] = STATE(4243), + [sym_function_definition] = STATE(4243), + [sym_compound_statement] = STATE(4243), + [sym_subshell] = STATE(4243), + [sym_pipeline] = STATE(4716), + [sym_list] = STATE(4243), + [sym_negated_command] = STATE(4243), + [sym_test_command] = STATE(4243), + [sym_declaration_command] = STATE(4243), + [sym_unset_command] = STATE(4243), + [sym_command] = STATE(4243), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(777), + [sym_variable_assignments] = STATE(4243), + [sym_subscript] = STATE(6366), + [sym_file_redirect] = STATE(1453), + [sym_herestring_redirect] = STATE(1454), + [sym_arithmetic_expansion] = STATE(726), + [sym_brace_expression] = STATE(726), + [sym_concatenation] = STATE(906), + [sym_string] = STATE(726), + [sym_translated_string] = STATE(726), + [sym_number] = STATE(726), + [sym_simple_expansion] = STATE(726), + [sym_expansion] = STATE(726), + [sym_command_substitution] = STATE(726), + [sym_process_substitution] = STATE(726), + [aux_sym__statements_repeat1] = STATE(396), + [aux_sym_redirected_statement_repeat2] = STATE(3977), + [aux_sym_command_repeat1] = STATE(805), + [aux_sym__literal_repeat1] = STATE(806), + [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(641), [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), + [anon_sym_function] = ACTIONS(384), + [anon_sym_LBRACE] = ACTIONS(386), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_LBRACK_LBRACK] = ACTIONS(392), + [anon_sym_declare] = ACTIONS(394), + [anon_sym_typeset] = ACTIONS(394), + [anon_sym_export] = ACTIONS(394), + [anon_sym_readonly] = ACTIONS(394), + [anon_sym_local] = ACTIONS(394), + [anon_sym_unset] = ACTIONS(396), + [anon_sym_unsetenv] = ACTIONS(396), + [anon_sym_AMP_GT] = ACTIONS(364), + [anon_sym_AMP_GT_GT] = ACTIONS(366), + [anon_sym_LT_AMP] = ACTIONS(364), + [anon_sym_GT_AMP] = ACTIONS(364), + [anon_sym_GT_PIPE] = ACTIONS(366), + [anon_sym_LT_AMP_DASH] = ACTIONS(398), + [anon_sym_GT_AMP_DASH] = ACTIONS(398), + [anon_sym_LT_LT_LT] = ACTIONS(400), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(402), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(404), + [anon_sym_DOLLAR] = ACTIONS(406), + [sym__special_character] = ACTIONS(408), + [anon_sym_DQUOTE] = ACTIONS(410), + [sym_raw_string] = ACTIONS(412), + [sym_ansi_c_string] = ACTIONS(412), + [aux_sym_number_token1] = ACTIONS(414), + [aux_sym_number_token2] = ACTIONS(416), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(418), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(420), + [anon_sym_BQUOTE] = ACTIONS(422), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(424), + [anon_sym_LT_LPAREN] = ACTIONS(426), + [anon_sym_GT_LPAREN] = ACTIONS(426), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(471), - [sym_variable_name] = ACTIONS(473), - [sym_test_operator] = ACTIONS(475), - [sym__brace_start] = ACTIONS(477), + [sym_file_descriptor] = ACTIONS(428), + [sym_variable_name] = ACTIONS(430), + [sym_test_operator] = ACTIONS(432), + [sym__brace_start] = ACTIONS(434), }, [STATE(35)] = { - [sym__statements] = STATE(6409), - [sym__statement_not_pipeline] = STATE(6573), - [sym_redirected_statement] = STATE(4293), - [sym_for_statement] = STATE(4293), - [sym_c_style_for_statement] = STATE(4293), - [sym_while_statement] = STATE(4014), - [sym_if_statement] = STATE(4014), - [sym_case_statement] = STATE(4293), - [sym_function_definition] = STATE(4293), - [sym_compound_statement] = STATE(4293), - [sym_subshell] = STATE(4293), - [sym_pipeline] = STATE(4611), - [sym_list] = STATE(4293), - [sym_negated_command] = STATE(4293), - [sym_test_command] = STATE(4293), - [sym_declaration_command] = STATE(4293), - [sym_unset_command] = STATE(4293), - [sym_command] = STATE(4293), - [sym_command_name] = STATE(524), - [sym_variable_assignment] = STATE(793), - [sym_variable_assignments] = STATE(4293), - [sym_subscript] = STATE(6697), - [sym_file_redirect] = STATE(1608), - [sym_herestring_redirect] = STATE(1609), - [sym_arithmetic_expansion] = STATE(781), - [sym_brace_expression] = STATE(781), - [sym_concatenation] = STATE(1056), - [sym_string] = STATE(781), - [sym_translated_string] = STATE(781), - [sym_number] = STATE(781), - [sym_simple_expansion] = STATE(781), - [sym_expansion] = STATE(781), - [sym_command_substitution] = STATE(781), - [sym_process_substitution] = STATE(781), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4152), - [aux_sym_command_repeat1] = STATE(942), - [aux_sym__literal_repeat1] = STATE(943), - [sym_word] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_LT] = ACTIONS(407), - [anon_sym_GT] = ACTIONS(407), - [anon_sym_GT_GT] = ACTIONS(409), - [anon_sym_LPAREN] = ACTIONS(411), - [anon_sym_while] = ACTIONS(413), - [anon_sym_until] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_case] = ACTIONS(417), - [anon_sym_esac] = ACTIONS(485), + [sym__statements] = STATE(6120), + [sym__statement_not_pipeline] = STATE(6206), + [sym_redirected_statement] = STATE(4243), + [sym_for_statement] = STATE(4243), + [sym_c_style_for_statement] = STATE(4243), + [sym_while_statement] = STATE(3994), + [sym_if_statement] = STATE(3994), + [sym_case_statement] = STATE(4243), + [sym_function_definition] = STATE(4243), + [sym_compound_statement] = STATE(4243), + [sym_subshell] = STATE(4243), + [sym_pipeline] = STATE(4716), + [sym_list] = STATE(4243), + [sym_negated_command] = STATE(4243), + [sym_test_command] = STATE(4243), + [sym_declaration_command] = STATE(4243), + [sym_unset_command] = STATE(4243), + [sym_command] = STATE(4243), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(777), + [sym_variable_assignments] = STATE(4243), + [sym_subscript] = STATE(6366), + [sym_file_redirect] = STATE(1453), + [sym_herestring_redirect] = STATE(1454), + [sym_arithmetic_expansion] = STATE(726), + [sym_brace_expression] = STATE(726), + [sym_concatenation] = STATE(906), + [sym_string] = STATE(726), + [sym_translated_string] = STATE(726), + [sym_number] = STATE(726), + [sym_simple_expansion] = STATE(726), + [sym_expansion] = STATE(726), + [sym_command_substitution] = STATE(726), + [sym_process_substitution] = STATE(726), + [aux_sym__statements_repeat1] = STATE(396), + [aux_sym_redirected_statement_repeat2] = STATE(3977), + [aux_sym_command_repeat1] = STATE(805), + [aux_sym__literal_repeat1] = STATE(806), + [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(621), [anon_sym_SEMI_SEMI] = ACTIONS(655), [anon_sym_SEMI_AMP] = ACTIONS(657), [anon_sym_SEMI_SEMI_AMP] = ACTIONS(659), - [anon_sym_function] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(429), - [anon_sym_BANG] = ACTIONS(431), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACK_LBRACK] = ACTIONS(435), - [anon_sym_declare] = ACTIONS(437), - [anon_sym_typeset] = ACTIONS(437), - [anon_sym_export] = ACTIONS(437), - [anon_sym_readonly] = ACTIONS(437), - [anon_sym_local] = ACTIONS(437), - [anon_sym_unset] = ACTIONS(439), - [anon_sym_unsetenv] = ACTIONS(439), - [anon_sym_AMP_GT] = ACTIONS(407), - [anon_sym_AMP_GT_GT] = ACTIONS(409), - [anon_sym_LT_AMP] = ACTIONS(407), - [anon_sym_GT_AMP] = ACTIONS(407), - [anon_sym_GT_PIPE] = ACTIONS(409), - [anon_sym_LT_AMP_DASH] = ACTIONS(441), - [anon_sym_GT_AMP_DASH] = ACTIONS(441), - [anon_sym_LT_LT_LT] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_DOLLAR] = ACTIONS(449), - [sym__special_character] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [sym_raw_string] = ACTIONS(455), - [sym_ansi_c_string] = ACTIONS(455), - [aux_sym_number_token1] = ACTIONS(457), - [aux_sym_number_token2] = ACTIONS(459), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(461), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(463), - [anon_sym_BQUOTE] = ACTIONS(465), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(467), - [anon_sym_LT_LPAREN] = ACTIONS(469), - [anon_sym_GT_LPAREN] = ACTIONS(469), + [anon_sym_function] = ACTIONS(384), + [anon_sym_LBRACE] = ACTIONS(386), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_LBRACK_LBRACK] = ACTIONS(392), + [anon_sym_declare] = ACTIONS(394), + [anon_sym_typeset] = ACTIONS(394), + [anon_sym_export] = ACTIONS(394), + [anon_sym_readonly] = ACTIONS(394), + [anon_sym_local] = ACTIONS(394), + [anon_sym_unset] = ACTIONS(396), + [anon_sym_unsetenv] = ACTIONS(396), + [anon_sym_AMP_GT] = ACTIONS(364), + [anon_sym_AMP_GT_GT] = ACTIONS(366), + [anon_sym_LT_AMP] = ACTIONS(364), + [anon_sym_GT_AMP] = ACTIONS(364), + [anon_sym_GT_PIPE] = ACTIONS(366), + [anon_sym_LT_AMP_DASH] = ACTIONS(398), + [anon_sym_GT_AMP_DASH] = ACTIONS(398), + [anon_sym_LT_LT_LT] = ACTIONS(400), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(402), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(404), + [anon_sym_DOLLAR] = ACTIONS(406), + [sym__special_character] = ACTIONS(408), + [anon_sym_DQUOTE] = ACTIONS(410), + [sym_raw_string] = ACTIONS(412), + [sym_ansi_c_string] = ACTIONS(412), + [aux_sym_number_token1] = ACTIONS(414), + [aux_sym_number_token2] = ACTIONS(416), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(418), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(420), + [anon_sym_BQUOTE] = ACTIONS(422), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(424), + [anon_sym_LT_LPAREN] = ACTIONS(426), + [anon_sym_GT_LPAREN] = ACTIONS(426), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(471), - [sym_variable_name] = ACTIONS(473), - [sym_test_operator] = ACTIONS(475), - [sym__brace_start] = ACTIONS(477), + [sym_file_descriptor] = ACTIONS(428), + [sym_variable_name] = ACTIONS(430), + [sym_test_operator] = ACTIONS(432), + [sym__brace_start] = ACTIONS(434), }, [STATE(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(6186), + [sym__statement_not_pipeline] = STATE(6224), + [sym_redirected_statement] = STATE(4385), + [sym_for_statement] = STATE(4385), + [sym_c_style_for_statement] = STATE(4385), + [sym_while_statement] = STATE(4096), + [sym_if_statement] = STATE(4096), + [sym_case_statement] = STATE(4385), + [sym_function_definition] = STATE(4385), + [sym_compound_statement] = STATE(4385), + [sym_subshell] = STATE(4385), + [sym_pipeline] = STATE(4726), + [sym_list] = STATE(4385), + [sym_negated_command] = STATE(4385), + [sym_test_command] = STATE(4385), + [sym_declaration_command] = STATE(4385), + [sym_unset_command] = STATE(4385), + [sym_command] = STATE(4385), + [sym_command_name] = STATE(497), + [sym_variable_assignment] = STATE(860), + [sym_variable_assignments] = STATE(4385), + [sym_subscript] = STATE(6317), + [sym_file_redirect] = STATE(1704), + [sym_herestring_redirect] = STATE(1706), + [sym_arithmetic_expansion] = STATE(779), + [sym_brace_expression] = STATE(779), + [sym_concatenation] = STATE(1094), + [sym_string] = STATE(779), + [sym_translated_string] = STATE(779), + [sym_number] = STATE(779), + [sym_simple_expansion] = STATE(779), + [sym_expansion] = STATE(779), + [sym_command_substitution] = STATE(779), + [sym_process_substitution] = STATE(779), + [aux_sym__statements_repeat1] = STATE(397), + [aux_sym_redirected_statement_repeat2] = STATE(4100), + [aux_sym_command_repeat1] = STATE(861), + [aux_sym__literal_repeat1] = STATE(940), [sym_word] = ACTIONS(661), [anon_sym_for] = ACTIONS(663), [anon_sym_select] = ACTIONS(665), @@ -32330,8 +31448,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(639), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(639), [anon_sym_function] = ACTIONS(683), [anon_sym_LBRACE] = ACTIONS(685), [anon_sym_BANG] = ACTIONS(687), @@ -32374,44 +31492,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(6149), + [sym__statement_not_pipeline] = STATE(6224), + [sym_redirected_statement] = STATE(4385), + [sym_for_statement] = STATE(4385), + [sym_c_style_for_statement] = STATE(4385), + [sym_while_statement] = STATE(4096), + [sym_if_statement] = STATE(4096), + [sym_case_statement] = STATE(4385), + [sym_function_definition] = STATE(4385), + [sym_compound_statement] = STATE(4385), + [sym_subshell] = STATE(4385), + [sym_pipeline] = STATE(4726), + [sym_list] = STATE(4385), + [sym_negated_command] = STATE(4385), + [sym_test_command] = STATE(4385), + [sym_declaration_command] = STATE(4385), + [sym_unset_command] = STATE(4385), + [sym_command] = STATE(4385), + [sym_command_name] = STATE(497), + [sym_variable_assignment] = STATE(860), + [sym_variable_assignments] = STATE(4385), + [sym_subscript] = STATE(6317), + [sym_file_redirect] = STATE(1704), + [sym_herestring_redirect] = STATE(1706), + [sym_arithmetic_expansion] = STATE(779), + [sym_brace_expression] = STATE(779), + [sym_concatenation] = STATE(1094), + [sym_string] = STATE(779), + [sym_translated_string] = STATE(779), + [sym_number] = STATE(779), + [sym_simple_expansion] = STATE(779), + [sym_expansion] = STATE(779), + [sym_command_substitution] = STATE(779), + [sym_process_substitution] = STATE(779), + [aux_sym__statements_repeat1] = STATE(397), + [aux_sym_redirected_statement_repeat2] = STATE(4100), + [aux_sym_command_repeat1] = STATE(861), + [aux_sym__literal_repeat1] = STATE(940), [sym_word] = ACTIONS(661), [anon_sym_for] = ACTIONS(663), [anon_sym_select] = ACTIONS(665), @@ -32425,8 +31543,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(613), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(613), [anon_sym_function] = ACTIONS(683), [anon_sym_LBRACE] = ACTIONS(685), [anon_sym_BANG] = ACTIONS(687), @@ -32469,44 +31587,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(6180), + [sym__statement_not_pipeline] = STATE(6224), + [sym_redirected_statement] = STATE(4385), + [sym_for_statement] = STATE(4385), + [sym_c_style_for_statement] = STATE(4385), + [sym_while_statement] = STATE(4096), + [sym_if_statement] = STATE(4096), + [sym_case_statement] = STATE(4385), + [sym_function_definition] = STATE(4385), + [sym_compound_statement] = STATE(4385), + [sym_subshell] = STATE(4385), + [sym_pipeline] = STATE(4726), + [sym_list] = STATE(4385), + [sym_negated_command] = STATE(4385), + [sym_test_command] = STATE(4385), + [sym_declaration_command] = STATE(4385), + [sym_unset_command] = STATE(4385), + [sym_command] = STATE(4385), + [sym_command_name] = STATE(497), + [sym_variable_assignment] = STATE(860), + [sym_variable_assignments] = STATE(4385), + [sym_subscript] = STATE(6317), + [sym_file_redirect] = STATE(1704), + [sym_herestring_redirect] = STATE(1706), + [sym_arithmetic_expansion] = STATE(779), + [sym_brace_expression] = STATE(779), + [sym_concatenation] = STATE(1094), + [sym_string] = STATE(779), + [sym_translated_string] = STATE(779), + [sym_number] = STATE(779), + [sym_simple_expansion] = STATE(779), + [sym_expansion] = STATE(779), + [sym_command_substitution] = STATE(779), + [sym_process_substitution] = STATE(779), + [aux_sym__statements_repeat1] = STATE(397), + [aux_sym_redirected_statement_repeat2] = STATE(4100), + [aux_sym_command_repeat1] = STATE(861), + [aux_sym__literal_repeat1] = STATE(940), [sym_word] = ACTIONS(661), [anon_sym_for] = ACTIONS(663), [anon_sym_select] = ACTIONS(665), @@ -32520,8 +31638,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(625), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(627), [anon_sym_function] = ACTIONS(683), [anon_sym_LBRACE] = ACTIONS(685), [anon_sym_BANG] = ACTIONS(687), @@ -32564,44 +31682,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(6142), + [sym__statement_not_pipeline] = STATE(6224), + [sym_redirected_statement] = STATE(4385), + [sym_for_statement] = STATE(4385), + [sym_c_style_for_statement] = STATE(4385), + [sym_while_statement] = STATE(4096), + [sym_if_statement] = STATE(4096), + [sym_case_statement] = STATE(4385), + [sym_function_definition] = STATE(4385), + [sym_compound_statement] = STATE(4385), + [sym_subshell] = STATE(4385), + [sym_pipeline] = STATE(4726), + [sym_list] = STATE(4385), + [sym_negated_command] = STATE(4385), + [sym_test_command] = STATE(4385), + [sym_declaration_command] = STATE(4385), + [sym_unset_command] = STATE(4385), + [sym_command] = STATE(4385), + [sym_command_name] = STATE(497), + [sym_variable_assignment] = STATE(860), + [sym_variable_assignments] = STATE(4385), + [sym_subscript] = STATE(6317), + [sym_file_redirect] = STATE(1704), + [sym_herestring_redirect] = STATE(1706), + [sym_arithmetic_expansion] = STATE(779), + [sym_brace_expression] = STATE(779), + [sym_concatenation] = STATE(1094), + [sym_string] = STATE(779), + [sym_translated_string] = STATE(779), + [sym_number] = STATE(779), + [sym_simple_expansion] = STATE(779), + [sym_expansion] = STATE(779), + [sym_command_substitution] = STATE(779), + [sym_process_substitution] = STATE(779), + [aux_sym__statements_repeat1] = STATE(397), + [aux_sym_redirected_statement_repeat2] = STATE(4100), + [aux_sym_command_repeat1] = STATE(861), + [aux_sym__literal_repeat1] = STATE(940), [sym_word] = ACTIONS(661), [anon_sym_for] = ACTIONS(663), [anon_sym_select] = ACTIONS(665), @@ -32616,7 +31734,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_SEMI_AMP] = ACTIONS(619), [anon_sym_function] = ACTIONS(683), [anon_sym_LBRACE] = ACTIONS(685), [anon_sym_BANG] = ACTIONS(687), @@ -32659,44 +31777,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(6183), + [sym__statement_not_pipeline] = STATE(6224), + [sym_redirected_statement] = STATE(4385), + [sym_for_statement] = STATE(4385), + [sym_c_style_for_statement] = STATE(4385), + [sym_while_statement] = STATE(4096), + [sym_if_statement] = STATE(4096), + [sym_case_statement] = STATE(4385), + [sym_function_definition] = STATE(4385), + [sym_compound_statement] = STATE(4385), + [sym_subshell] = STATE(4385), + [sym_pipeline] = STATE(4726), + [sym_list] = STATE(4385), + [sym_negated_command] = STATE(4385), + [sym_test_command] = STATE(4385), + [sym_declaration_command] = STATE(4385), + [sym_unset_command] = STATE(4385), + [sym_command] = STATE(4385), + [sym_command_name] = STATE(497), + [sym_variable_assignment] = STATE(860), + [sym_variable_assignments] = STATE(4385), + [sym_subscript] = STATE(6317), + [sym_file_redirect] = STATE(1704), + [sym_herestring_redirect] = STATE(1706), + [sym_arithmetic_expansion] = STATE(779), + [sym_brace_expression] = STATE(779), + [sym_concatenation] = STATE(1094), + [sym_string] = STATE(779), + [sym_translated_string] = STATE(779), + [sym_number] = STATE(779), + [sym_simple_expansion] = STATE(779), + [sym_expansion] = STATE(779), + [sym_command_substitution] = STATE(779), + [sym_process_substitution] = STATE(779), + [aux_sym__statements_repeat1] = STATE(397), + [aux_sym_redirected_statement_repeat2] = STATE(4100), + [aux_sym_command_repeat1] = STATE(861), + [aux_sym__literal_repeat1] = STATE(940), [sym_word] = ACTIONS(661), [anon_sym_for] = ACTIONS(663), [anon_sym_select] = ACTIONS(665), @@ -32710,8 +31828,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(633), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(633), [anon_sym_function] = ACTIONS(683), [anon_sym_LBRACE] = ACTIONS(685), [anon_sym_BANG] = ACTIONS(687), @@ -32754,44 +31872,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(6199), + [sym__statement_not_pipeline] = STATE(6224), + [sym_redirected_statement] = STATE(4385), + [sym_for_statement] = STATE(4385), + [sym_c_style_for_statement] = STATE(4385), + [sym_while_statement] = STATE(4096), + [sym_if_statement] = STATE(4096), + [sym_case_statement] = STATE(4385), + [sym_function_definition] = STATE(4385), + [sym_compound_statement] = STATE(4385), + [sym_subshell] = STATE(4385), + [sym_pipeline] = STATE(4726), + [sym_list] = STATE(4385), + [sym_negated_command] = STATE(4385), + [sym_test_command] = STATE(4385), + [sym_declaration_command] = STATE(4385), + [sym_unset_command] = STATE(4385), + [sym_command] = STATE(4385), + [sym_command_name] = STATE(497), + [sym_variable_assignment] = STATE(860), + [sym_variable_assignments] = STATE(4385), + [sym_subscript] = STATE(6317), + [sym_file_redirect] = STATE(1704), + [sym_herestring_redirect] = STATE(1706), + [sym_arithmetic_expansion] = STATE(779), + [sym_brace_expression] = STATE(779), + [sym_concatenation] = STATE(1094), + [sym_string] = STATE(779), + [sym_translated_string] = STATE(779), + [sym_number] = STATE(779), + [sym_simple_expansion] = STATE(779), + [sym_expansion] = STATE(779), + [sym_command_substitution] = STATE(779), + [sym_process_substitution] = STATE(779), + [aux_sym__statements_repeat1] = STATE(397), + [aux_sym_redirected_statement_repeat2] = STATE(4100), + [aux_sym_command_repeat1] = STATE(861), + [aux_sym__literal_repeat1] = STATE(940), [sym_word] = ACTIONS(661), [anon_sym_for] = ACTIONS(663), [anon_sym_select] = ACTIONS(665), @@ -32805,8 +31923,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(645), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(647), [anon_sym_function] = ACTIONS(683), [anon_sym_LBRACE] = ACTIONS(685), [anon_sym_BANG] = ACTIONS(687), @@ -32849,44 +31967,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(6203), + [sym__statement_not_pipeline] = STATE(6224), + [sym_redirected_statement] = STATE(4385), + [sym_for_statement] = STATE(4385), + [sym_c_style_for_statement] = STATE(4385), + [sym_while_statement] = STATE(4096), + [sym_if_statement] = STATE(4096), + [sym_case_statement] = STATE(4385), + [sym_function_definition] = STATE(4385), + [sym_compound_statement] = STATE(4385), + [sym_subshell] = STATE(4385), + [sym_pipeline] = STATE(4726), + [sym_list] = STATE(4385), + [sym_negated_command] = STATE(4385), + [sym_test_command] = STATE(4385), + [sym_declaration_command] = STATE(4385), + [sym_unset_command] = STATE(4385), + [sym_command] = STATE(4385), + [sym_command_name] = STATE(497), + [sym_variable_assignment] = STATE(860), + [sym_variable_assignments] = STATE(4385), + [sym_subscript] = STATE(6317), + [sym_file_redirect] = STATE(1704), + [sym_herestring_redirect] = STATE(1706), + [sym_arithmetic_expansion] = STATE(779), + [sym_brace_expression] = STATE(779), + [sym_concatenation] = STATE(1094), + [sym_string] = STATE(779), + [sym_translated_string] = STATE(779), + [sym_number] = STATE(779), + [sym_simple_expansion] = STATE(779), + [sym_expansion] = STATE(779), + [sym_command_substitution] = STATE(779), + [sym_process_substitution] = STATE(779), + [aux_sym__statements_repeat1] = STATE(397), + [aux_sym_redirected_statement_repeat2] = STATE(4100), + [aux_sym_command_repeat1] = STATE(861), + [aux_sym__literal_repeat1] = STATE(940), [sym_word] = ACTIONS(661), [anon_sym_for] = ACTIONS(663), [anon_sym_select] = ACTIONS(665), @@ -32900,8 +32018,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(651), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(653), [anon_sym_function] = ACTIONS(683), [anon_sym_LBRACE] = ACTIONS(685), [anon_sym_BANG] = ACTIONS(687), @@ -32944,44 +32062,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(6208), + [sym__statement_not_pipeline] = STATE(6224), + [sym_redirected_statement] = STATE(4385), + [sym_for_statement] = STATE(4385), + [sym_c_style_for_statement] = STATE(4385), + [sym_while_statement] = STATE(4096), + [sym_if_statement] = STATE(4096), + [sym_case_statement] = STATE(4385), + [sym_function_definition] = STATE(4385), + [sym_compound_statement] = STATE(4385), + [sym_subshell] = STATE(4385), + [sym_pipeline] = STATE(4726), + [sym_list] = STATE(4385), + [sym_negated_command] = STATE(4385), + [sym_test_command] = STATE(4385), + [sym_declaration_command] = STATE(4385), + [sym_unset_command] = STATE(4385), + [sym_command] = STATE(4385), + [sym_command_name] = STATE(497), + [sym_variable_assignment] = STATE(860), + [sym_variable_assignments] = STATE(4385), + [sym_subscript] = STATE(6317), + [sym_file_redirect] = STATE(1704), + [sym_herestring_redirect] = STATE(1706), + [sym_arithmetic_expansion] = STATE(779), + [sym_brace_expression] = STATE(779), + [sym_concatenation] = STATE(1094), + [sym_string] = STATE(779), + [sym_translated_string] = STATE(779), + [sym_number] = STATE(779), + [sym_simple_expansion] = STATE(779), + [sym_expansion] = STATE(779), + [sym_command_substitution] = STATE(779), + [sym_process_substitution] = STATE(779), + [aux_sym__statements_repeat1] = STATE(397), + [aux_sym_redirected_statement_repeat2] = STATE(4100), + [aux_sym_command_repeat1] = STATE(861), + [aux_sym__literal_repeat1] = STATE(940), [sym_word] = ACTIONS(661), [anon_sym_for] = ACTIONS(663), [anon_sym_select] = ACTIONS(665), @@ -32995,8 +32113,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(657), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(659), [anon_sym_function] = ACTIONS(683), [anon_sym_LBRACE] = ACTIONS(685), [anon_sym_BANG] = ACTIONS(687), @@ -33039,44 +32157,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(6212), + [sym__statement_not_pipeline] = STATE(6224), + [sym_redirected_statement] = STATE(4385), + [sym_for_statement] = STATE(4385), + [sym_c_style_for_statement] = STATE(4385), + [sym_while_statement] = STATE(4096), + [sym_if_statement] = STATE(4096), + [sym_case_statement] = STATE(4385), + [sym_function_definition] = STATE(4385), + [sym_compound_statement] = STATE(4385), + [sym_subshell] = STATE(4385), + [sym_pipeline] = STATE(4726), + [sym_list] = STATE(4385), + [sym_negated_command] = STATE(4385), + [sym_test_command] = STATE(4385), + [sym_declaration_command] = STATE(4385), + [sym_unset_command] = STATE(4385), + [sym_command] = STATE(4385), + [sym_command_name] = STATE(497), + [sym_variable_assignment] = STATE(860), + [sym_variable_assignments] = STATE(4385), + [sym_subscript] = STATE(6317), + [sym_file_redirect] = STATE(1704), + [sym_herestring_redirect] = STATE(1706), + [sym_arithmetic_expansion] = STATE(779), + [sym_brace_expression] = STATE(779), + [sym_concatenation] = STATE(1094), + [sym_string] = STATE(779), + [sym_translated_string] = STATE(779), + [sym_number] = STATE(779), + [sym_simple_expansion] = STATE(779), + [sym_expansion] = STATE(779), + [sym_command_substitution] = STATE(779), + [sym_process_substitution] = STATE(779), + [aux_sym__statements_repeat1] = STATE(397), + [aux_sym_redirected_statement_repeat2] = STATE(4100), + [aux_sym_command_repeat1] = STATE(861), + [aux_sym__literal_repeat1] = STATE(940), [sym_word] = ACTIONS(661), [anon_sym_for] = ACTIONS(663), [anon_sym_select] = ACTIONS(665), @@ -33090,8 +32208,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(438), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(440), [anon_sym_function] = ACTIONS(683), [anon_sym_LBRACE] = ACTIONS(685), [anon_sym_BANG] = ACTIONS(687), @@ -33134,44 +32252,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(6214), + [sym__statement_not_pipeline] = STATE(6224), + [sym_redirected_statement] = STATE(4385), + [sym_for_statement] = STATE(4385), + [sym_c_style_for_statement] = STATE(4385), + [sym_while_statement] = STATE(4096), + [sym_if_statement] = STATE(4096), + [sym_case_statement] = STATE(4385), + [sym_function_definition] = STATE(4385), + [sym_compound_statement] = STATE(4385), + [sym_subshell] = STATE(4385), + [sym_pipeline] = STATE(4726), + [sym_list] = STATE(4385), + [sym_negated_command] = STATE(4385), + [sym_test_command] = STATE(4385), + [sym_declaration_command] = STATE(4385), + [sym_unset_command] = STATE(4385), + [sym_command] = STATE(4385), + [sym_command_name] = STATE(497), + [sym_variable_assignment] = STATE(860), + [sym_variable_assignments] = STATE(4385), + [sym_subscript] = STATE(6317), + [sym_file_redirect] = STATE(1704), + [sym_herestring_redirect] = STATE(1706), + [sym_arithmetic_expansion] = STATE(779), + [sym_brace_expression] = STATE(779), + [sym_concatenation] = STATE(1094), + [sym_string] = STATE(779), + [sym_translated_string] = STATE(779), + [sym_number] = STATE(779), + [sym_simple_expansion] = STATE(779), + [sym_expansion] = STATE(779), + [sym_command_substitution] = STATE(779), + [sym_process_substitution] = STATE(779), + [aux_sym__statements_repeat1] = STATE(397), + [aux_sym_redirected_statement_repeat2] = STATE(4100), + [aux_sym_command_repeat1] = STATE(861), + [aux_sym__literal_repeat1] = STATE(940), [sym_word] = ACTIONS(661), [anon_sym_for] = ACTIONS(663), [anon_sym_select] = ACTIONS(665), @@ -33185,8 +32303,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(562), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(564), [anon_sym_function] = ACTIONS(683), [anon_sym_LBRACE] = ACTIONS(685), [anon_sym_BANG] = ACTIONS(687), @@ -33229,44 +32347,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(6218), + [sym__statement_not_pipeline] = STATE(6224), + [sym_redirected_statement] = STATE(4385), + [sym_for_statement] = STATE(4385), + [sym_c_style_for_statement] = STATE(4385), + [sym_while_statement] = STATE(4096), + [sym_if_statement] = STATE(4096), + [sym_case_statement] = STATE(4385), + [sym_function_definition] = STATE(4385), + [sym_compound_statement] = STATE(4385), + [sym_subshell] = STATE(4385), + [sym_pipeline] = STATE(4726), + [sym_list] = STATE(4385), + [sym_negated_command] = STATE(4385), + [sym_test_command] = STATE(4385), + [sym_declaration_command] = STATE(4385), + [sym_unset_command] = STATE(4385), + [sym_command] = STATE(4385), + [sym_command_name] = STATE(497), + [sym_variable_assignment] = STATE(860), + [sym_variable_assignments] = STATE(4385), + [sym_subscript] = STATE(6317), + [sym_file_redirect] = STATE(1704), + [sym_herestring_redirect] = STATE(1706), + [sym_arithmetic_expansion] = STATE(779), + [sym_brace_expression] = STATE(779), + [sym_concatenation] = STATE(1094), + [sym_string] = STATE(779), + [sym_translated_string] = STATE(779), + [sym_number] = STATE(779), + [sym_simple_expansion] = STATE(779), + [sym_expansion] = STATE(779), + [sym_command_substitution] = STATE(779), + [sym_process_substitution] = STATE(779), + [aux_sym__statements_repeat1] = STATE(397), + [aux_sym_redirected_statement_repeat2] = STATE(4100), + [aux_sym_command_repeat1] = STATE(861), + [aux_sym__literal_repeat1] = STATE(940), [sym_word] = ACTIONS(661), [anon_sym_for] = ACTIONS(663), [anon_sym_select] = ACTIONS(665), @@ -33280,8 +32398,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(446), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(448), [anon_sym_function] = ACTIONS(683), [anon_sym_LBRACE] = ACTIONS(685), [anon_sym_BANG] = ACTIONS(687), @@ -33324,44 +32442,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(6219), + [sym__statement_not_pipeline] = STATE(6224), + [sym_redirected_statement] = STATE(4385), + [sym_for_statement] = STATE(4385), + [sym_c_style_for_statement] = STATE(4385), + [sym_while_statement] = STATE(4096), + [sym_if_statement] = STATE(4096), + [sym_case_statement] = STATE(4385), + [sym_function_definition] = STATE(4385), + [sym_compound_statement] = STATE(4385), + [sym_subshell] = STATE(4385), + [sym_pipeline] = STATE(4726), + [sym_list] = STATE(4385), + [sym_negated_command] = STATE(4385), + [sym_test_command] = STATE(4385), + [sym_declaration_command] = STATE(4385), + [sym_unset_command] = STATE(4385), + [sym_command] = STATE(4385), + [sym_command_name] = STATE(497), + [sym_variable_assignment] = STATE(860), + [sym_variable_assignments] = STATE(4385), + [sym_subscript] = STATE(6317), + [sym_file_redirect] = STATE(1704), + [sym_herestring_redirect] = STATE(1706), + [sym_arithmetic_expansion] = STATE(779), + [sym_brace_expression] = STATE(779), + [sym_concatenation] = STATE(1094), + [sym_string] = STATE(779), + [sym_translated_string] = STATE(779), + [sym_number] = STATE(779), + [sym_simple_expansion] = STATE(779), + [sym_expansion] = STATE(779), + [sym_command_substitution] = STATE(779), + [sym_process_substitution] = STATE(779), + [aux_sym__statements_repeat1] = STATE(397), + [aux_sym_redirected_statement_repeat2] = STATE(4100), + [aux_sym_command_repeat1] = STATE(861), + [aux_sym__literal_repeat1] = STATE(940), [sym_word] = ACTIONS(661), [anon_sym_for] = ACTIONS(663), [anon_sym_select] = ACTIONS(665), @@ -33375,8 +32493,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(380), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(382), [anon_sym_function] = ACTIONS(683), [anon_sym_LBRACE] = ACTIONS(685), [anon_sym_BANG] = ACTIONS(687), @@ -33419,43 +32537,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(25), + [sym__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4739), + [sym_for_statement] = STATE(4739), + [sym_c_style_for_statement] = STATE(4739), + [sym_while_statement] = STATE(4369), + [sym_if_statement] = STATE(4369), + [sym_case_statement] = STATE(4739), + [sym_function_definition] = STATE(4739), + [sym_compound_statement] = STATE(4739), + [sym_subshell] = STATE(4739), + [sym_pipeline] = STATE(4923), + [sym_list] = STATE(4739), + [sym_negated_command] = STATE(4739), + [sym_test_command] = STATE(4739), + [sym_declaration_command] = STATE(4739), + [sym_unset_command] = STATE(4739), + [sym_command] = STATE(4739), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1174), + [sym_variable_assignments] = STATE(4739), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -33514,42 +32632,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(6250), + [sym_redirected_statement] = STATE(4739), + [sym_for_statement] = STATE(4739), + [sym_c_style_for_statement] = STATE(4739), + [sym_while_statement] = STATE(4369), + [sym_if_statement] = STATE(4369), + [sym_case_statement] = STATE(4739), + [sym_function_definition] = STATE(4739), + [sym_compound_statement] = STATE(4739), + [sym_subshell] = STATE(4739), + [sym_pipeline] = STATE(4923), + [sym_list] = STATE(4739), + [sym_negated_command] = STATE(4739), + [sym_test_command] = STATE(4739), + [sym_declaration_command] = STATE(4739), + [sym_unset_command] = STATE(4739), + [sym_command] = STATE(4739), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1174), + [sym_variable_assignments] = STATE(4739), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -33607,44 +32725,44 @@ 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), + [aux_sym__terminated_statement] = STATE(25), + [sym__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4739), + [sym_for_statement] = STATE(4739), + [sym_c_style_for_statement] = STATE(4739), + [sym_while_statement] = STATE(4369), + [sym_do_group] = STATE(4443), + [sym_if_statement] = STATE(4369), + [sym_case_statement] = STATE(4739), + [sym_function_definition] = STATE(4739), + [sym_compound_statement] = STATE(4739), + [sym_subshell] = STATE(4739), + [sym_pipeline] = STATE(4923), + [sym_list] = STATE(4739), + [sym_negated_command] = STATE(4739), + [sym_test_command] = STATE(4739), + [sym_declaration_command] = STATE(4739), + [sym_unset_command] = STATE(4739), + [sym_command] = STATE(4739), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1174), + [sym_variable_assignments] = STATE(4739), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -33700,44 +32818,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(51)] = { - [aux_sym__terminated_statement] = STATE(26), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4899), - [sym_for_statement] = STATE(4899), - [sym_c_style_for_statement] = STATE(4899), - [sym_while_statement] = STATE(4335), - [sym_do_group] = STATE(5515), - [sym_if_statement] = STATE(4335), - [sym_case_statement] = STATE(4899), - [sym_function_definition] = STATE(4899), - [sym_compound_statement] = STATE(4899), - [sym_subshell] = STATE(4899), - [sym_pipeline] = STATE(5095), - [sym_list] = STATE(4899), - [sym_negated_command] = STATE(4899), - [sym_test_command] = STATE(4899), - [sym_declaration_command] = STATE(4899), - [sym_unset_command] = STATE(4899), - [sym_command] = STATE(4899), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1097), - [sym_variable_assignments] = STATE(4899), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [aux_sym__terminated_statement] = STATE(25), + [sym__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4739), + [sym_for_statement] = STATE(4739), + [sym_c_style_for_statement] = STATE(4739), + [sym_while_statement] = STATE(4369), + [sym_do_group] = STATE(5235), + [sym_if_statement] = STATE(4369), + [sym_case_statement] = STATE(4739), + [sym_function_definition] = STATE(4739), + [sym_compound_statement] = STATE(4739), + [sym_subshell] = STATE(4739), + [sym_pipeline] = STATE(4923), + [sym_list] = STATE(4739), + [sym_negated_command] = STATE(4739), + [sym_test_command] = STATE(4739), + [sym_declaration_command] = STATE(4739), + [sym_unset_command] = STATE(4739), + [sym_command] = STATE(4739), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1174), + [sym_variable_assignments] = STATE(4739), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -33793,137 +32911,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(52)] = { - [sym__statements] = STATE(7103), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), - [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(767), - [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(53)] = { - [aux_sym__terminated_statement] = STATE(26), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4899), - [sym_for_statement] = STATE(4899), - [sym_c_style_for_statement] = STATE(4899), - [sym_while_statement] = STATE(4335), - [sym_do_group] = STATE(4719), - [sym_if_statement] = STATE(4335), - [sym_case_statement] = STATE(4899), - [sym_function_definition] = STATE(4899), - [sym_compound_statement] = STATE(4899), - [sym_subshell] = STATE(4899), - [sym_pipeline] = STATE(5095), - [sym_list] = STATE(4899), - [sym_negated_command] = STATE(4899), - [sym_test_command] = STATE(4899), - [sym_declaration_command] = STATE(4899), - [sym_unset_command] = STATE(4899), - [sym_command] = STATE(4899), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1097), - [sym_variable_assignments] = STATE(4899), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [aux_sym__terminated_statement] = STATE(25), + [sym__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4739), + [sym_for_statement] = STATE(4739), + [sym_c_style_for_statement] = STATE(4739), + [sym_while_statement] = STATE(4369), + [sym_do_group] = STATE(4399), + [sym_if_statement] = STATE(4369), + [sym_case_statement] = STATE(4739), + [sym_function_definition] = STATE(4739), + [sym_compound_statement] = STATE(4739), + [sym_subshell] = STATE(4739), + [sym_pipeline] = STATE(4923), + [sym_list] = STATE(4739), + [sym_negated_command] = STATE(4739), + [sym_test_command] = STATE(4739), + [sym_declaration_command] = STATE(4739), + [sym_unset_command] = STATE(4739), + [sym_command] = STATE(4739), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1174), + [sym_variable_assignments] = STATE(4739), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -33934,7 +32959,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(765), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), @@ -33978,46 +33003,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(53)] = { + [sym__statements] = STATE(6968), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -34025,14 +33050,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(769), [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(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -34053,10 +33078,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -34068,49 +33093,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(777), + [sym__brace_start] = ACTIONS(340), + }, + [STATE(54)] = { + [aux_sym__terminated_statement] = STATE(25), + [sym__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4739), + [sym_for_statement] = STATE(4739), + [sym_c_style_for_statement] = STATE(4739), + [sym_while_statement] = STATE(4369), + [sym_do_group] = STATE(4673), + [sym_if_statement] = STATE(4369), + [sym_case_statement] = STATE(4739), + [sym_function_definition] = STATE(4739), + [sym_compound_statement] = STATE(4739), + [sym_subshell] = STATE(4739), + [sym_pipeline] = STATE(4923), + [sym_list] = STATE(4739), + [sym_negated_command] = STATE(4739), + [sym_test_command] = STATE(4739), + [sym_declaration_command] = STATE(4739), + [sym_unset_command] = STATE(4739), + [sym_command] = STATE(4739), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1174), + [sym_variable_assignments] = STATE(4739), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), + [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(779), + [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(55)] = { - [sym__statements] = STATE(7225), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6528), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -34125,7 +33243,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -34146,10 +33264,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -34161,49 +33279,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(777), [sym__brace_start] = ACTIONS(340), }, [STATE(56)] = { - [sym__statements] = STATE(7367), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6734), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -34218,7 +33336,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -34239,10 +33357,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -34254,49 +33372,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(777), [sym__brace_start] = ACTIONS(340), }, [STATE(57)] = { - [sym__statements] = STATE(6775), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6843), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -34311,7 +33429,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -34332,10 +33450,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -34347,88 +33465,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(777), [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), + [sym__statements] = STATE(6968), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_GT_GT] = ACTIONS(288), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_GT_GT] = ACTIONS(85), [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_RPAREN] = ACTIONS(787), [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_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(298), + [anon_sym_BANG] = ACTIONS(771), [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(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(318), - [sym_ansi_c_string] = ACTIONS(318), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -34438,51 +33556,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(777), [sym__brace_start] = ACTIONS(340), }, [STATE(59)] = { - [sym__statements] = STATE(7103), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6968), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -34497,7 +33615,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -34518,10 +33636,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -34533,49 +33651,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(777), [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), + [sym__statements] = STATE(6968), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -34590,7 +33708,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -34611,10 +33729,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -34626,49 +33744,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(777), [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), + [sym__statements] = STATE(6968), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -34683,7 +33801,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -34704,10 +33822,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -34719,87 +33837,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(777), [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), + [aux_sym__terminated_statement] = STATE(67), + [sym__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4720), + [sym_for_statement] = STATE(4720), + [sym_c_style_for_statement] = STATE(4720), + [sym_while_statement] = STATE(4389), + [sym_if_statement] = STATE(4389), + [sym_case_statement] = STATE(4720), + [sym_function_definition] = STATE(4720), + [sym_compound_statement] = STATE(4720), + [sym_subshell] = STATE(4720), + [sym_pipeline] = STATE(4893), + [sym_list] = STATE(4720), + [sym_negated_command] = STATE(4720), + [sym_test_command] = STATE(4720), + [sym_declaration_command] = STATE(4720), + [sym_unset_command] = STATE(4720), + [sym_command] = STATE(4720), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1095), + [sym_variable_assignments] = STATE(4720), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_GT_GT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(286), + [anon_sym_GT] = ACTIONS(286), + [anon_sym_GT_GT] = ACTIONS(288), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(89), + [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_RBRACE] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(93), - [anon_sym_typeset] = ACTIONS(93), - [anon_sym_export] = ACTIONS(93), - [anon_sym_readonly] = ACTIONS(93), - [anon_sym_local] = ACTIONS(93), - [anon_sym_unset] = ACTIONS(95), - [anon_sym_unsetenv] = ACTIONS(95), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(85), - [anon_sym_LT_AMP] = ACTIONS(83), - [anon_sym_GT_AMP] = ACTIONS(83), - [anon_sym_GT_PIPE] = ACTIONS(85), - [anon_sym_LT_AMP_DASH] = ACTIONS(97), - [anon_sym_GT_AMP_DASH] = ACTIONS(97), - [anon_sym_LT_LT_LT] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(300), + [anon_sym_typeset] = ACTIONS(300), + [anon_sym_export] = ACTIONS(300), + [anon_sym_readonly] = ACTIONS(300), + [anon_sym_local] = ACTIONS(300), + [anon_sym_unset] = ACTIONS(302), + [anon_sym_unsetenv] = ACTIONS(302), + [anon_sym_AMP_GT] = ACTIONS(286), + [anon_sym_AMP_GT_GT] = ACTIONS(288), + [anon_sym_LT_AMP] = ACTIONS(286), + [anon_sym_GT_AMP] = ACTIONS(286), + [anon_sym_GT_PIPE] = ACTIONS(288), + [anon_sym_LT_AMP_DASH] = ACTIONS(304), + [anon_sym_GT_AMP_DASH] = ACTIONS(304), + [anon_sym_LT_LT_LT] = ACTIONS(306), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(314), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(318), + [sym_ansi_c_string] = ACTIONS(318), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -34809,51 +33927,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(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), + [sym__statements] = STATE(6856), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -34867,7 +33985,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -34888,10 +34006,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -34903,47 +34021,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(777), [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__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4720), + [sym_for_statement] = STATE(4720), + [sym_c_style_for_statement] = STATE(4720), + [sym_while_statement] = STATE(4389), + [sym_if_statement] = STATE(4389), + [sym_case_statement] = STATE(4720), + [sym_function_definition] = STATE(4720), + [sym_compound_statement] = STATE(4720), + [sym_subshell] = STATE(4720), + [sym_pipeline] = STATE(4893), + [sym_list] = STATE(4720), + [sym_negated_command] = STATE(4720), + [sym_test_command] = STATE(4720), + [sym_declaration_command] = STATE(4720), + [sym_unset_command] = STATE(4720), + [sym_command] = STATE(4720), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1095), + [sym_variable_assignments] = STATE(4720), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -34958,7 +34076,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(795), + [anon_sym_RBRACE] = ACTIONS(797), [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -34999,43 +34117,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(65)] = { - [aux_sym__terminated_statement] = STATE(26), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4899), - [sym_for_statement] = STATE(4899), - [sym_c_style_for_statement] = STATE(4899), - [sym_while_statement] = STATE(4335), - [sym_if_statement] = STATE(4335), - [sym_case_statement] = STATE(4899), - [sym_function_definition] = STATE(4899), - [sym_compound_statement] = STATE(4899), - [sym_subshell] = STATE(4899), - [sym_pipeline] = STATE(5095), - [sym_list] = STATE(4899), - [sym_negated_command] = STATE(4899), - [sym_test_command] = STATE(4899), - [sym_declaration_command] = STATE(4899), - [sym_unset_command] = STATE(4899), - [sym_command] = STATE(4899), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1097), - [sym_variable_assignments] = STATE(4899), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [aux_sym__terminated_statement] = STATE(25), + [sym__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4739), + [sym_for_statement] = STATE(4739), + [sym_c_style_for_statement] = STATE(4739), + [sym_while_statement] = STATE(4369), + [sym_if_statement] = STATE(4369), + [sym_case_statement] = STATE(4739), + [sym_function_definition] = STATE(4739), + [sym_compound_statement] = STATE(4739), + [sym_subshell] = STATE(4739), + [sym_pipeline] = STATE(4923), + [sym_list] = STATE(4739), + [sym_negated_command] = STATE(4739), + [sym_test_command] = STATE(4739), + [sym_declaration_command] = STATE(4739), + [sym_unset_command] = STATE(4739), + [sym_command] = STATE(4739), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1174), + [sym_variable_assignments] = STATE(4739), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -35047,7 +34165,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(799), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), @@ -35092,42 +34210,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [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__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4720), + [sym_for_statement] = STATE(4720), + [sym_c_style_for_statement] = STATE(4720), + [sym_while_statement] = STATE(4389), + [sym_if_statement] = STATE(4389), + [sym_case_statement] = STATE(4720), + [sym_function_definition] = STATE(4720), + [sym_compound_statement] = STATE(4720), + [sym_subshell] = STATE(4720), + [sym_pipeline] = STATE(4893), + [sym_list] = STATE(4720), + [sym_negated_command] = STATE(4720), + [sym_test_command] = STATE(4720), + [sym_declaration_command] = STATE(4720), + [sym_unset_command] = STATE(4720), + [sym_command] = STATE(4720), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1095), + [sym_variable_assignments] = STATE(4720), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -35142,7 +34260,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(799), + [anon_sym_RBRACE] = ACTIONS(801), [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -35184,226 +34302,226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [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__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4720), + [sym_for_statement] = STATE(4720), + [sym_c_style_for_statement] = STATE(4720), + [sym_while_statement] = STATE(4389), + [sym_if_statement] = STATE(4389), + [sym_case_statement] = STATE(4720), + [sym_function_definition] = STATE(4720), + [sym_compound_statement] = STATE(4720), + [sym_subshell] = STATE(4720), + [sym_pipeline] = STATE(4893), + [sym_list] = STATE(4720), + [sym_negated_command] = STATE(4720), + [sym_test_command] = STATE(4720), + [sym_declaration_command] = STATE(4720), + [sym_unset_command] = STATE(4720), + [sym_command] = STATE(4720), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1095), + [sym_variable_assignments] = STATE(4720), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(450), + [anon_sym_for] = ACTIONS(453), + [anon_sym_select] = ACTIONS(456), + [anon_sym_LPAREN_LPAREN] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(462), + [anon_sym_GT] = ACTIONS(462), + [anon_sym_GT_GT] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(468), + [anon_sym_while] = ACTIONS(471), + [anon_sym_until] = ACTIONS(471), + [anon_sym_if] = ACTIONS(476), + [anon_sym_case] = ACTIONS(479), + [anon_sym_function] = ACTIONS(482), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_RBRACE] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(494), + [anon_sym_declare] = ACTIONS(497), + [anon_sym_typeset] = ACTIONS(497), + [anon_sym_export] = ACTIONS(497), + [anon_sym_readonly] = ACTIONS(497), + [anon_sym_local] = ACTIONS(497), + [anon_sym_unset] = ACTIONS(500), + [anon_sym_unsetenv] = ACTIONS(500), + [anon_sym_AMP_GT] = ACTIONS(462), + [anon_sym_AMP_GT_GT] = ACTIONS(465), + [anon_sym_LT_AMP] = ACTIONS(462), + [anon_sym_GT_AMP] = ACTIONS(462), + [anon_sym_GT_PIPE] = ACTIONS(465), + [anon_sym_LT_AMP_DASH] = ACTIONS(503), + [anon_sym_GT_AMP_DASH] = ACTIONS(503), + [anon_sym_LT_LT_LT] = ACTIONS(506), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(509), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(512), + [anon_sym_DOLLAR] = ACTIONS(515), + [sym__special_character] = ACTIONS(518), + [anon_sym_DQUOTE] = ACTIONS(521), + [sym_raw_string] = ACTIONS(524), + [sym_ansi_c_string] = ACTIONS(524), + [aux_sym_number_token1] = ACTIONS(527), + [aux_sym_number_token2] = ACTIONS(530), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(533), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(536), + [anon_sym_BQUOTE] = ACTIONS(539), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(542), + [anon_sym_LT_LPAREN] = ACTIONS(545), + [anon_sym_GT_LPAREN] = ACTIONS(545), [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(548), + [sym_variable_name] = ACTIONS(551), + [sym_test_operator] = ACTIONS(554), + [sym__brace_start] = ACTIONS(557), }, [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(6250), + [sym_redirected_statement] = STATE(4758), + [sym_for_statement] = STATE(4758), + [sym_c_style_for_statement] = STATE(4758), + [sym_while_statement] = STATE(4388), + [sym_if_statement] = STATE(4388), + [sym_case_statement] = STATE(4758), + [sym_function_definition] = STATE(4758), + [sym_compound_statement] = STATE(4758), + [sym_subshell] = STATE(4758), + [sym_pipeline] = STATE(4934), + [sym_list] = STATE(4758), + [sym_negated_command] = STATE(4758), + [sym_test_command] = STATE(4758), + [sym_declaration_command] = STATE(4758), + [sym_unset_command] = STATE(4758), + [sym_command] = STATE(4758), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1102), + [sym_variable_assignments] = STATE(4758), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(450), + [anon_sym_for] = ACTIONS(453), + [anon_sym_select] = ACTIONS(456), + [anon_sym_LPAREN_LPAREN] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(462), + [anon_sym_GT] = ACTIONS(462), + [anon_sym_GT_GT] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(468), + [anon_sym_while] = ACTIONS(471), + [anon_sym_until] = ACTIONS(471), + [anon_sym_done] = ACTIONS(474), + [anon_sym_if] = ACTIONS(476), + [anon_sym_case] = ACTIONS(479), + [anon_sym_function] = ACTIONS(482), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_BANG] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(494), + [anon_sym_declare] = ACTIONS(497), + [anon_sym_typeset] = ACTIONS(497), + [anon_sym_export] = ACTIONS(497), + [anon_sym_readonly] = ACTIONS(497), + [anon_sym_local] = ACTIONS(497), + [anon_sym_unset] = ACTIONS(500), + [anon_sym_unsetenv] = ACTIONS(500), + [anon_sym_AMP_GT] = ACTIONS(462), + [anon_sym_AMP_GT_GT] = ACTIONS(465), + [anon_sym_LT_AMP] = ACTIONS(462), + [anon_sym_GT_AMP] = ACTIONS(462), + [anon_sym_GT_PIPE] = ACTIONS(465), + [anon_sym_LT_AMP_DASH] = ACTIONS(503), + [anon_sym_GT_AMP_DASH] = ACTIONS(503), + [anon_sym_LT_LT_LT] = ACTIONS(506), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(509), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(512), + [anon_sym_DOLLAR] = ACTIONS(515), + [sym__special_character] = ACTIONS(518), + [anon_sym_DQUOTE] = ACTIONS(521), + [sym_raw_string] = ACTIONS(524), + [sym_ansi_c_string] = ACTIONS(524), + [aux_sym_number_token1] = ACTIONS(527), + [aux_sym_number_token2] = ACTIONS(530), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(533), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(536), + [anon_sym_BQUOTE] = ACTIONS(539), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(542), + [anon_sym_LT_LPAREN] = ACTIONS(545), + [anon_sym_GT_LPAREN] = ACTIONS(545), [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(548), + [sym_variable_name] = ACTIONS(551), + [sym_test_operator] = ACTIONS(554), + [sym__brace_start] = ACTIONS(557), }, [STATE(69)] = { [aux_sym__terminated_statement] = STATE(71), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4894), - [sym_for_statement] = STATE(4894), - [sym_c_style_for_statement] = STATE(4894), - [sym_while_statement] = STATE(4485), - [sym_if_statement] = STATE(4485), - [sym_case_statement] = STATE(4894), - [sym_function_definition] = STATE(4894), - [sym_compound_statement] = STATE(4894), - [sym_subshell] = STATE(4894), - [sym_pipeline] = STATE(5091), - [sym_list] = STATE(4894), - [sym_negated_command] = STATE(4894), - [sym_test_command] = STATE(4894), - [sym_declaration_command] = STATE(4894), - [sym_unset_command] = STATE(4894), - [sym_command] = STATE(4894), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1047), - [sym_variable_assignments] = STATE(4894), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [sym__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4720), + [sym_for_statement] = STATE(4720), + [sym_c_style_for_statement] = STATE(4720), + [sym_while_statement] = STATE(4389), + [sym_if_statement] = STATE(4389), + [sym_case_statement] = STATE(4720), + [sym_function_definition] = STATE(4720), + [sym_compound_statement] = STATE(4720), + [sym_subshell] = STATE(4720), + [sym_pipeline] = STATE(4893), + [sym_list] = STATE(4720), + [sym_negated_command] = STATE(4720), + [sym_test_command] = STATE(4720), + [sym_declaration_command] = STATE(4720), + [sym_unset_command] = STATE(4720), + [sym_command] = STATE(4720), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1095), + [sym_variable_assignments] = STATE(4720), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -35418,7 +34536,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(803), + [anon_sym_RBRACE] = ACTIONS(805), [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -35459,43 +34577,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [aux_sym__terminated_statement] = STATE(84), + [sym__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4758), + [sym_for_statement] = STATE(4758), + [sym_c_style_for_statement] = STATE(4758), + [sym_while_statement] = STATE(4388), + [sym_if_statement] = STATE(4388), + [sym_case_statement] = STATE(4758), + [sym_function_definition] = STATE(4758), + [sym_compound_statement] = STATE(4758), + [sym_subshell] = STATE(4758), + [sym_pipeline] = STATE(4934), + [sym_list] = STATE(4758), + [sym_negated_command] = STATE(4758), + [sym_test_command] = STATE(4758), + [sym_declaration_command] = STATE(4758), + [sym_unset_command] = STATE(4758), + [sym_command] = STATE(4758), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1102), + [sym_variable_assignments] = STATE(4758), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -35506,7 +34624,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(807), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), @@ -35552,42 +34670,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(71)] = { [aux_sym__terminated_statement] = STATE(67), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4894), - [sym_for_statement] = STATE(4894), - [sym_c_style_for_statement] = STATE(4894), - [sym_while_statement] = STATE(4485), - [sym_if_statement] = STATE(4485), - [sym_case_statement] = STATE(4894), - [sym_function_definition] = STATE(4894), - [sym_compound_statement] = STATE(4894), - [sym_subshell] = STATE(4894), - [sym_pipeline] = STATE(5091), - [sym_list] = STATE(4894), - [sym_negated_command] = STATE(4894), - [sym_test_command] = STATE(4894), - [sym_declaration_command] = STATE(4894), - [sym_unset_command] = STATE(4894), - [sym_command] = STATE(4894), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1047), - [sym_variable_assignments] = STATE(4894), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [sym__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4720), + [sym_for_statement] = STATE(4720), + [sym_c_style_for_statement] = STATE(4720), + [sym_while_statement] = STATE(4389), + [sym_if_statement] = STATE(4389), + [sym_case_statement] = STATE(4720), + [sym_function_definition] = STATE(4720), + [sym_compound_statement] = STATE(4720), + [sym_subshell] = STATE(4720), + [sym_pipeline] = STATE(4893), + [sym_list] = STATE(4720), + [sym_negated_command] = STATE(4720), + [sym_test_command] = STATE(4720), + [sym_declaration_command] = STATE(4720), + [sym_unset_command] = STATE(4720), + [sym_command] = STATE(4720), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1095), + [sym_variable_assignments] = STATE(4720), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -35602,7 +34720,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(807), + [anon_sym_RBRACE] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -35644,42 +34762,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [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__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4758), + [sym_for_statement] = STATE(4758), + [sym_c_style_for_statement] = STATE(4758), + [sym_while_statement] = STATE(4388), + [sym_if_statement] = STATE(4388), + [sym_case_statement] = STATE(4758), + [sym_function_definition] = STATE(4758), + [sym_compound_statement] = STATE(4758), + [sym_subshell] = STATE(4758), + [sym_pipeline] = STATE(4934), + [sym_list] = STATE(4758), + [sym_negated_command] = STATE(4758), + [sym_test_command] = STATE(4758), + [sym_declaration_command] = STATE(4758), + [sym_unset_command] = STATE(4758), + [sym_command] = STATE(4758), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1102), + [sym_variable_assignments] = STATE(4758), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -35690,7 +34808,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(809), + [anon_sym_done] = ACTIONS(811), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), @@ -35736,42 +34854,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(73)] = { [aux_sym__terminated_statement] = STATE(68), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4798), - [sym_for_statement] = STATE(4798), - [sym_c_style_for_statement] = STATE(4798), - [sym_while_statement] = STATE(4379), - [sym_if_statement] = STATE(4379), - [sym_case_statement] = STATE(4798), - [sym_function_definition] = STATE(4798), - [sym_compound_statement] = STATE(4798), - [sym_subshell] = STATE(4798), - [sym_pipeline] = STATE(5096), - [sym_list] = STATE(4798), - [sym_negated_command] = STATE(4798), - [sym_test_command] = STATE(4798), - [sym_declaration_command] = STATE(4798), - [sym_unset_command] = STATE(4798), - [sym_command] = STATE(4798), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1060), - [sym_variable_assignments] = STATE(4798), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [sym__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4758), + [sym_for_statement] = STATE(4758), + [sym_c_style_for_statement] = STATE(4758), + [sym_while_statement] = STATE(4388), + [sym_if_statement] = STATE(4388), + [sym_case_statement] = STATE(4758), + [sym_function_definition] = STATE(4758), + [sym_compound_statement] = STATE(4758), + [sym_subshell] = STATE(4758), + [sym_pipeline] = STATE(4934), + [sym_list] = STATE(4758), + [sym_negated_command] = STATE(4758), + [sym_test_command] = STATE(4758), + [sym_declaration_command] = STATE(4758), + [sym_unset_command] = STATE(4758), + [sym_command] = STATE(4758), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1102), + [sym_variable_assignments] = STATE(4758), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -35782,7 +34900,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(813), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), @@ -35827,83 +34945,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [sym_word] = ACTIONS(284), + [sym__statements] = STATE(6730), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1980), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [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(813), - [anon_sym_BANG] = ACTIONS(298), + [anon_sym_BANG] = ACTIONS(771), [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(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(318), - [sym_ansi_c_string] = ACTIONS(318), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -35913,49 +35031,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(777), [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), + [aux_sym__terminated_statement] = STATE(76), + [sym__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4720), + [sym_for_statement] = STATE(4720), + [sym_c_style_for_statement] = STATE(4720), + [sym_while_statement] = STATE(4389), + [sym_if_statement] = STATE(4389), + [sym_case_statement] = STATE(4720), + [sym_function_definition] = STATE(4720), + [sym_compound_statement] = STATE(4720), + [sym_subshell] = STATE(4720), + [sym_pipeline] = STATE(4893), + [sym_list] = STATE(4720), + [sym_negated_command] = STATE(4720), + [sym_test_command] = STATE(4720), + [sym_declaration_command] = STATE(4720), + [sym_unset_command] = STATE(4720), + [sym_command] = STATE(4720), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1095), + [sym_variable_assignments] = STATE(4720), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -36011,43 +35129,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [aux_sym__terminated_statement] = STATE(67), + [sym__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4720), + [sym_for_statement] = STATE(4720), + [sym_c_style_for_statement] = STATE(4720), + [sym_while_statement] = STATE(4389), + [sym_if_statement] = STATE(4389), + [sym_case_statement] = STATE(4720), + [sym_function_definition] = STATE(4720), + [sym_compound_statement] = STATE(4720), + [sym_subshell] = STATE(4720), + [sym_pipeline] = STATE(4893), + [sym_list] = STATE(4720), + [sym_negated_command] = STATE(4720), + [sym_test_command] = STATE(4720), + [sym_declaration_command] = STATE(4720), + [sym_unset_command] = STATE(4720), + [sym_command] = STATE(4720), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1095), + [sym_variable_assignments] = STATE(4720), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -36058,11 +35176,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(817), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(817), [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -36103,43 +35221,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [aux_sym__terminated_statement] = STATE(78), + [sym__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4758), + [sym_for_statement] = STATE(4758), + [sym_c_style_for_statement] = STATE(4758), + [sym_while_statement] = STATE(4388), + [sym_if_statement] = STATE(4388), + [sym_case_statement] = STATE(4758), + [sym_function_definition] = STATE(4758), + [sym_compound_statement] = STATE(4758), + [sym_subshell] = STATE(4758), + [sym_pipeline] = STATE(4934), + [sym_list] = STATE(4758), + [sym_negated_command] = STATE(4758), + [sym_test_command] = STATE(4758), + [sym_declaration_command] = STATE(4758), + [sym_unset_command] = STATE(4758), + [sym_command] = STATE(4758), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1102), + [sym_variable_assignments] = STATE(4758), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -36195,43 +35313,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [aux_sym__terminated_statement] = STATE(68), + [sym__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4758), + [sym_for_statement] = STATE(4758), + [sym_c_style_for_statement] = STATE(4758), + [sym_while_statement] = STATE(4388), + [sym_if_statement] = STATE(4388), + [sym_case_statement] = STATE(4758), + [sym_function_definition] = STATE(4758), + [sym_compound_statement] = STATE(4758), + [sym_subshell] = STATE(4758), + [sym_pipeline] = STATE(4934), + [sym_list] = STATE(4758), + [sym_negated_command] = STATE(4758), + [sym_test_command] = STATE(4758), + [sym_declaration_command] = STATE(4758), + [sym_unset_command] = STATE(4758), + [sym_command] = STATE(4758), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1102), + [sym_variable_assignments] = STATE(4758), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -36242,11 +35360,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(821), [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), @@ -36287,43 +35405,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [aux_sym__terminated_statement] = STATE(80), + [sym__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4720), + [sym_for_statement] = STATE(4720), + [sym_c_style_for_statement] = STATE(4720), + [sym_while_statement] = STATE(4389), + [sym_if_statement] = STATE(4389), + [sym_case_statement] = STATE(4720), + [sym_function_definition] = STATE(4720), + [sym_compound_statement] = STATE(4720), + [sym_subshell] = STATE(4720), + [sym_pipeline] = STATE(4893), + [sym_list] = STATE(4720), + [sym_negated_command] = STATE(4720), + [sym_test_command] = STATE(4720), + [sym_declaration_command] = STATE(4720), + [sym_unset_command] = STATE(4720), + [sym_command] = STATE(4720), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1095), + [sym_variable_assignments] = STATE(4720), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -36379,43 +35497,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [aux_sym__terminated_statement] = STATE(67), + [sym__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4720), + [sym_for_statement] = STATE(4720), + [sym_c_style_for_statement] = STATE(4720), + [sym_while_statement] = STATE(4389), + [sym_if_statement] = STATE(4389), + [sym_case_statement] = STATE(4720), + [sym_function_definition] = STATE(4720), + [sym_compound_statement] = STATE(4720), + [sym_subshell] = STATE(4720), + [sym_pipeline] = STATE(4893), + [sym_list] = STATE(4720), + [sym_negated_command] = STATE(4720), + [sym_test_command] = STATE(4720), + [sym_declaration_command] = STATE(4720), + [sym_unset_command] = STATE(4720), + [sym_command] = STATE(4720), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1095), + [sym_variable_assignments] = STATE(4720), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -36426,11 +35544,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(825), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(825), [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -36471,43 +35589,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(81)] = { - [aux_sym__terminated_statement] = STATE(68), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4798), - [sym_for_statement] = STATE(4798), - [sym_c_style_for_statement] = STATE(4798), - [sym_while_statement] = STATE(4379), - [sym_if_statement] = STATE(4379), - [sym_case_statement] = STATE(4798), - [sym_function_definition] = STATE(4798), - [sym_compound_statement] = STATE(4798), - [sym_subshell] = STATE(4798), - [sym_pipeline] = STATE(5096), - [sym_list] = STATE(4798), - [sym_negated_command] = STATE(4798), - [sym_test_command] = STATE(4798), - [sym_declaration_command] = STATE(4798), - [sym_unset_command] = STATE(4798), - [sym_command] = STATE(4798), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1060), - [sym_variable_assignments] = STATE(4798), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [aux_sym__terminated_statement] = STATE(82), + [sym__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4758), + [sym_for_statement] = STATE(4758), + [sym_c_style_for_statement] = STATE(4758), + [sym_while_statement] = STATE(4388), + [sym_if_statement] = STATE(4388), + [sym_case_statement] = STATE(4758), + [sym_function_definition] = STATE(4758), + [sym_compound_statement] = STATE(4758), + [sym_subshell] = STATE(4758), + [sym_pipeline] = STATE(4934), + [sym_list] = STATE(4758), + [sym_negated_command] = STATE(4758), + [sym_test_command] = STATE(4758), + [sym_declaration_command] = STATE(4758), + [sym_unset_command] = STATE(4758), + [sym_command] = STATE(4758), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1102), + [sym_variable_assignments] = STATE(4758), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -36563,43 +35681,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [aux_sym__terminated_statement] = STATE(68), + [sym__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4758), + [sym_for_statement] = STATE(4758), + [sym_c_style_for_statement] = STATE(4758), + [sym_while_statement] = STATE(4388), + [sym_if_statement] = STATE(4388), + [sym_case_statement] = STATE(4758), + [sym_function_definition] = STATE(4758), + [sym_compound_statement] = STATE(4758), + [sym_subshell] = STATE(4758), + [sym_pipeline] = STATE(4934), + [sym_list] = STATE(4758), + [sym_negated_command] = STATE(4758), + [sym_test_command] = STATE(4758), + [sym_declaration_command] = STATE(4758), + [sym_unset_command] = STATE(4758), + [sym_command] = STATE(4758), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1102), + [sym_variable_assignments] = STATE(4758), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -36610,11 +35728,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(829), [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), @@ -36655,43 +35773,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [aux_sym__terminated_statement] = STATE(385), + [sym__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4720), + [sym_for_statement] = STATE(4720), + [sym_c_style_for_statement] = STATE(4720), + [sym_while_statement] = STATE(4389), + [sym_if_statement] = STATE(4389), + [sym_case_statement] = STATE(4720), + [sym_function_definition] = STATE(4720), + [sym_compound_statement] = STATE(4720), + [sym_subshell] = STATE(4720), + [sym_pipeline] = STATE(4893), + [sym_list] = STATE(4720), + [sym_negated_command] = STATE(4720), + [sym_test_command] = STATE(4720), + [sym_declaration_command] = STATE(4720), + [sym_unset_command] = STATE(4720), + [sym_command] = STATE(4720), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1095), + [sym_variable_assignments] = STATE(4720), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -36702,11 +35820,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(831), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(831), [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -36747,43 +35865,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [aux_sym__terminated_statement] = STATE(68), + [sym__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4758), + [sym_for_statement] = STATE(4758), + [sym_c_style_for_statement] = STATE(4758), + [sym_while_statement] = STATE(4388), + [sym_if_statement] = STATE(4388), + [sym_case_statement] = STATE(4758), + [sym_function_definition] = STATE(4758), + [sym_compound_statement] = STATE(4758), + [sym_subshell] = STATE(4758), + [sym_pipeline] = STATE(4934), + [sym_list] = STATE(4758), + [sym_negated_command] = STATE(4758), + [sym_test_command] = STATE(4758), + [sym_declaration_command] = STATE(4758), + [sym_unset_command] = STATE(4758), + [sym_command] = STATE(4758), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1102), + [sym_variable_assignments] = STATE(4758), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -36794,11 +35912,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(833), [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), @@ -36839,43 +35957,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [aux_sym__terminated_statement] = STATE(86), + [sym__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4758), + [sym_for_statement] = STATE(4758), + [sym_c_style_for_statement] = STATE(4758), + [sym_while_statement] = STATE(4388), + [sym_if_statement] = STATE(4388), + [sym_case_statement] = STATE(4758), + [sym_function_definition] = STATE(4758), + [sym_compound_statement] = STATE(4758), + [sym_subshell] = STATE(4758), + [sym_pipeline] = STATE(4934), + [sym_list] = STATE(4758), + [sym_negated_command] = STATE(4758), + [sym_test_command] = STATE(4758), + [sym_declaration_command] = STATE(4758), + [sym_unset_command] = STATE(4758), + [sym_command] = STATE(4758), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1102), + [sym_variable_assignments] = STATE(4758), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -36931,43 +36049,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [aux_sym__terminated_statement] = STATE(68), + [sym__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4758), + [sym_for_statement] = STATE(4758), + [sym_c_style_for_statement] = STATE(4758), + [sym_while_statement] = STATE(4388), + [sym_if_statement] = STATE(4388), + [sym_case_statement] = STATE(4758), + [sym_function_definition] = STATE(4758), + [sym_compound_statement] = STATE(4758), + [sym_subshell] = STATE(4758), + [sym_pipeline] = STATE(4934), + [sym_list] = STATE(4758), + [sym_negated_command] = STATE(4758), + [sym_test_command] = STATE(4758), + [sym_declaration_command] = STATE(4758), + [sym_unset_command] = STATE(4758), + [sym_command] = STATE(4758), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1102), + [sym_variable_assignments] = STATE(4758), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -36978,11 +36096,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(837), [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), @@ -37023,43 +36141,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [aux_sym__terminated_statement] = STATE(88), + [sym__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4720), + [sym_for_statement] = STATE(4720), + [sym_c_style_for_statement] = STATE(4720), + [sym_while_statement] = STATE(4389), + [sym_if_statement] = STATE(4389), + [sym_case_statement] = STATE(4720), + [sym_function_definition] = STATE(4720), + [sym_compound_statement] = STATE(4720), + [sym_subshell] = STATE(4720), + [sym_pipeline] = STATE(4893), + [sym_list] = STATE(4720), + [sym_negated_command] = STATE(4720), + [sym_test_command] = STATE(4720), + [sym_declaration_command] = STATE(4720), + [sym_unset_command] = STATE(4720), + [sym_command] = STATE(4720), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1095), + [sym_variable_assignments] = STATE(4720), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -37115,43 +36233,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [aux_sym__terminated_statement] = STATE(67), + [sym__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4720), + [sym_for_statement] = STATE(4720), + [sym_c_style_for_statement] = STATE(4720), + [sym_while_statement] = STATE(4389), + [sym_if_statement] = STATE(4389), + [sym_case_statement] = STATE(4720), + [sym_function_definition] = STATE(4720), + [sym_compound_statement] = STATE(4720), + [sym_subshell] = STATE(4720), + [sym_pipeline] = STATE(4893), + [sym_list] = STATE(4720), + [sym_negated_command] = STATE(4720), + [sym_test_command] = STATE(4720), + [sym_declaration_command] = STATE(4720), + [sym_unset_command] = STATE(4720), + [sym_command] = STATE(4720), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1095), + [sym_variable_assignments] = STATE(4720), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -37162,11 +36280,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(841), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(841), [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -37207,43 +36325,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(89)] = { - [aux_sym__terminated_statement] = STATE(68), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4798), - [sym_for_statement] = STATE(4798), - [sym_c_style_for_statement] = STATE(4798), - [sym_while_statement] = STATE(4379), - [sym_if_statement] = STATE(4379), - [sym_case_statement] = STATE(4798), - [sym_function_definition] = STATE(4798), - [sym_compound_statement] = STATE(4798), - [sym_subshell] = STATE(4798), - [sym_pipeline] = STATE(5096), - [sym_list] = STATE(4798), - [sym_negated_command] = STATE(4798), - [sym_test_command] = STATE(4798), - [sym_declaration_command] = STATE(4798), - [sym_unset_command] = STATE(4798), - [sym_command] = STATE(4798), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1060), - [sym_variable_assignments] = STATE(4798), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [aux_sym__terminated_statement] = STATE(90), + [sym__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4758), + [sym_for_statement] = STATE(4758), + [sym_c_style_for_statement] = STATE(4758), + [sym_while_statement] = STATE(4388), + [sym_if_statement] = STATE(4388), + [sym_case_statement] = STATE(4758), + [sym_function_definition] = STATE(4758), + [sym_compound_statement] = STATE(4758), + [sym_subshell] = STATE(4758), + [sym_pipeline] = STATE(4934), + [sym_list] = STATE(4758), + [sym_negated_command] = STATE(4758), + [sym_test_command] = STATE(4758), + [sym_declaration_command] = STATE(4758), + [sym_unset_command] = STATE(4758), + [sym_command] = STATE(4758), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1102), + [sym_variable_assignments] = STATE(4758), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -37299,43 +36417,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(90)] = { - [aux_sym__terminated_statement] = STATE(92), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4894), - [sym_for_statement] = STATE(4894), - [sym_c_style_for_statement] = STATE(4894), - [sym_while_statement] = STATE(4485), - [sym_if_statement] = STATE(4485), - [sym_case_statement] = STATE(4894), - [sym_function_definition] = STATE(4894), - [sym_compound_statement] = STATE(4894), - [sym_subshell] = STATE(4894), - [sym_pipeline] = STATE(5091), - [sym_list] = STATE(4894), - [sym_negated_command] = STATE(4894), - [sym_test_command] = STATE(4894), - [sym_declaration_command] = STATE(4894), - [sym_unset_command] = STATE(4894), - [sym_command] = STATE(4894), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1047), - [sym_variable_assignments] = STATE(4894), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [aux_sym__terminated_statement] = STATE(68), + [sym__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4758), + [sym_for_statement] = STATE(4758), + [sym_c_style_for_statement] = STATE(4758), + [sym_while_statement] = STATE(4388), + [sym_if_statement] = STATE(4388), + [sym_case_statement] = STATE(4758), + [sym_function_definition] = STATE(4758), + [sym_compound_statement] = STATE(4758), + [sym_subshell] = STATE(4758), + [sym_pipeline] = STATE(4934), + [sym_list] = STATE(4758), + [sym_negated_command] = STATE(4758), + [sym_test_command] = STATE(4758), + [sym_declaration_command] = STATE(4758), + [sym_unset_command] = STATE(4758), + [sym_command] = STATE(4758), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1102), + [sym_variable_assignments] = STATE(4758), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -37346,11 +36464,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(845), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(845), [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -37391,43 +36509,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [aux_sym__terminated_statement] = STATE(93), + [sym__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4720), + [sym_for_statement] = STATE(4720), + [sym_c_style_for_statement] = STATE(4720), + [sym_while_statement] = STATE(4389), + [sym_if_statement] = STATE(4389), + [sym_case_statement] = STATE(4720), + [sym_function_definition] = STATE(4720), + [sym_compound_statement] = STATE(4720), + [sym_subshell] = STATE(4720), + [sym_pipeline] = STATE(4893), + [sym_list] = STATE(4720), + [sym_negated_command] = STATE(4720), + [sym_test_command] = STATE(4720), + [sym_declaration_command] = STATE(4720), + [sym_unset_command] = STATE(4720), + [sym_command] = STATE(4720), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1095), + [sym_variable_assignments] = STATE(4720), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -37439,10 +36557,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_fi] = ACTIONS(847), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(847), [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -37483,43 +36601,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [aux_sym__terminated_statement] = STATE(383), + [sym__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4739), + [sym_for_statement] = STATE(4739), + [sym_c_style_for_statement] = STATE(4739), + [sym_while_statement] = STATE(4369), + [sym_if_statement] = STATE(4369), + [sym_case_statement] = STATE(4739), + [sym_function_definition] = STATE(4739), + [sym_compound_statement] = STATE(4739), + [sym_subshell] = STATE(4739), + [sym_pipeline] = STATE(4923), + [sym_list] = STATE(4739), + [sym_negated_command] = STATE(4739), + [sym_test_command] = STATE(4739), + [sym_declaration_command] = STATE(4739), + [sym_unset_command] = STATE(4739), + [sym_command] = STATE(4739), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1174), + [sym_variable_assignments] = STATE(4739), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -37531,10 +36649,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_fi] = ACTIONS(849), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(849), [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -37575,43 +36693,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [aux_sym__terminated_statement] = STATE(67), + [sym__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4720), + [sym_for_statement] = STATE(4720), + [sym_c_style_for_statement] = STATE(4720), + [sym_while_statement] = STATE(4389), + [sym_if_statement] = STATE(4389), + [sym_case_statement] = STATE(4720), + [sym_function_definition] = STATE(4720), + [sym_compound_statement] = STATE(4720), + [sym_subshell] = STATE(4720), + [sym_pipeline] = STATE(4893), + [sym_list] = STATE(4720), + [sym_negated_command] = STATE(4720), + [sym_test_command] = STATE(4720), + [sym_declaration_command] = STATE(4720), + [sym_unset_command] = STATE(4720), + [sym_command] = STATE(4720), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1095), + [sym_variable_assignments] = STATE(4720), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -37622,11 +36740,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(851), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(851), [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -37667,43 +36785,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [aux_sym__terminated_statement] = STATE(95), + [sym__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4758), + [sym_for_statement] = STATE(4758), + [sym_c_style_for_statement] = STATE(4758), + [sym_while_statement] = STATE(4388), + [sym_if_statement] = STATE(4388), + [sym_case_statement] = STATE(4758), + [sym_function_definition] = STATE(4758), + [sym_compound_statement] = STATE(4758), + [sym_subshell] = STATE(4758), + [sym_pipeline] = STATE(4934), + [sym_list] = STATE(4758), + [sym_negated_command] = STATE(4758), + [sym_test_command] = STATE(4758), + [sym_declaration_command] = STATE(4758), + [sym_unset_command] = STATE(4758), + [sym_command] = STATE(4758), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1102), + [sym_variable_assignments] = STATE(4758), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -37759,43 +36877,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [aux_sym__terminated_statement] = STATE(68), + [sym__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4758), + [sym_for_statement] = STATE(4758), + [sym_c_style_for_statement] = STATE(4758), + [sym_while_statement] = STATE(4388), + [sym_if_statement] = STATE(4388), + [sym_case_statement] = STATE(4758), + [sym_function_definition] = STATE(4758), + [sym_compound_statement] = STATE(4758), + [sym_subshell] = STATE(4758), + [sym_pipeline] = STATE(4934), + [sym_list] = STATE(4758), + [sym_negated_command] = STATE(4758), + [sym_test_command] = STATE(4758), + [sym_declaration_command] = STATE(4758), + [sym_unset_command] = STATE(4758), + [sym_command] = STATE(4758), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1102), + [sym_variable_assignments] = STATE(4758), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -37806,11 +36924,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(855), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(855), [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -37851,83 +36969,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [aux_sym__terminated_statement] = STATE(98), + [sym__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4720), + [sym_for_statement] = STATE(4720), + [sym_c_style_for_statement] = STATE(4720), + [sym_while_statement] = STATE(4389), + [sym_if_statement] = STATE(4389), + [sym_case_statement] = STATE(4720), + [sym_function_definition] = STATE(4720), + [sym_compound_statement] = STATE(4720), + [sym_subshell] = STATE(4720), + [sym_pipeline] = STATE(4893), + [sym_list] = STATE(4720), + [sym_negated_command] = STATE(4720), + [sym_test_command] = STATE(4720), + [sym_declaration_command] = STATE(4720), + [sym_unset_command] = STATE(4720), + [sym_command] = STATE(4720), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1095), + [sym_variable_assignments] = STATE(4720), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_GT_GT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(286), + [anon_sym_GT] = ACTIONS(286), + [anon_sym_GT_GT] = ACTIONS(288), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(89), + [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_RBRACE] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(93), - [anon_sym_typeset] = ACTIONS(93), - [anon_sym_export] = ACTIONS(93), - [anon_sym_readonly] = ACTIONS(93), - [anon_sym_local] = ACTIONS(93), - [anon_sym_unset] = ACTIONS(95), - [anon_sym_unsetenv] = ACTIONS(95), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(85), - [anon_sym_LT_AMP] = ACTIONS(83), - [anon_sym_GT_AMP] = ACTIONS(83), - [anon_sym_GT_PIPE] = ACTIONS(85), - [anon_sym_LT_AMP_DASH] = ACTIONS(97), - [anon_sym_GT_AMP_DASH] = ACTIONS(97), - [anon_sym_LT_LT_LT] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(300), + [anon_sym_typeset] = ACTIONS(300), + [anon_sym_export] = ACTIONS(300), + [anon_sym_readonly] = ACTIONS(300), + [anon_sym_local] = ACTIONS(300), + [anon_sym_unset] = ACTIONS(302), + [anon_sym_unsetenv] = ACTIONS(302), + [anon_sym_AMP_GT] = ACTIONS(286), + [anon_sym_AMP_GT_GT] = ACTIONS(288), + [anon_sym_LT_AMP] = ACTIONS(286), + [anon_sym_GT_AMP] = ACTIONS(286), + [anon_sym_GT_PIPE] = ACTIONS(288), + [anon_sym_LT_AMP_DASH] = ACTIONS(304), + [anon_sym_GT_AMP_DASH] = ACTIONS(304), + [anon_sym_LT_LT_LT] = ACTIONS(306), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(314), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(318), + [sym_ansi_c_string] = ACTIONS(318), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -37937,50 +37055,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(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), + [sym__statements] = STATE(6743), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -37992,19 +37111,18 @@ static const uint16_t ts_parse_table[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(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(857), - [anon_sym_BANG] = ACTIONS(298), + [anon_sym_BANG] = ACTIONS(863), [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(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -38035,43 +37153,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [aux_sym__terminated_statement] = STATE(67), + [sym__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4720), + [sym_for_statement] = STATE(4720), + [sym_c_style_for_statement] = STATE(4720), + [sym_while_statement] = STATE(4389), + [sym_if_statement] = STATE(4389), + [sym_case_statement] = STATE(4720), + [sym_function_definition] = STATE(4720), + [sym_compound_statement] = STATE(4720), + [sym_subshell] = STATE(4720), + [sym_pipeline] = STATE(4893), + [sym_list] = STATE(4720), + [sym_negated_command] = STATE(4720), + [sym_test_command] = STATE(4720), + [sym_declaration_command] = STATE(4720), + [sym_unset_command] = STATE(4720), + [sym_command] = STATE(4720), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1095), + [sym_variable_assignments] = STATE(4720), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -38082,11 +37200,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(859), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(869), [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -38127,43 +37245,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [aux_sym__terminated_statement] = STATE(100), + [sym__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4758), + [sym_for_statement] = STATE(4758), + [sym_c_style_for_statement] = STATE(4758), + [sym_while_statement] = STATE(4388), + [sym_if_statement] = STATE(4388), + [sym_case_statement] = STATE(4758), + [sym_function_definition] = STATE(4758), + [sym_compound_statement] = STATE(4758), + [sym_subshell] = STATE(4758), + [sym_pipeline] = STATE(4934), + [sym_list] = STATE(4758), + [sym_negated_command] = STATE(4758), + [sym_test_command] = STATE(4758), + [sym_declaration_command] = STATE(4758), + [sym_unset_command] = STATE(4758), + [sym_command] = STATE(4758), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1102), + [sym_variable_assignments] = STATE(4758), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -38174,7 +37292,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(861), + [anon_sym_done] = ACTIONS(871), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), @@ -38219,43 +37337,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [aux_sym__terminated_statement] = STATE(68), + [sym__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4758), + [sym_for_statement] = STATE(4758), + [sym_c_style_for_statement] = STATE(4758), + [sym_while_statement] = STATE(4388), + [sym_if_statement] = STATE(4388), + [sym_case_statement] = STATE(4758), + [sym_function_definition] = STATE(4758), + [sym_compound_statement] = STATE(4758), + [sym_subshell] = STATE(4758), + [sym_pipeline] = STATE(4934), + [sym_list] = STATE(4758), + [sym_negated_command] = STATE(4758), + [sym_test_command] = STATE(4758), + [sym_declaration_command] = STATE(4758), + [sym_unset_command] = STATE(4758), + [sym_command] = STATE(4758), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1102), + [sym_variable_assignments] = STATE(4758), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -38266,11 +37384,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(873), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(863), [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -38311,43 +37429,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [aux_sym__terminated_statement] = STATE(62), + [sym__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4720), + [sym_for_statement] = STATE(4720), + [sym_c_style_for_statement] = STATE(4720), + [sym_while_statement] = STATE(4389), + [sym_if_statement] = STATE(4389), + [sym_case_statement] = STATE(4720), + [sym_function_definition] = STATE(4720), + [sym_compound_statement] = STATE(4720), + [sym_subshell] = STATE(4720), + [sym_pipeline] = STATE(4893), + [sym_list] = STATE(4720), + [sym_negated_command] = STATE(4720), + [sym_test_command] = STATE(4720), + [sym_declaration_command] = STATE(4720), + [sym_unset_command] = STATE(4720), + [sym_command] = STATE(4720), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1095), + [sym_variable_assignments] = STATE(4720), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -38362,7 +37480,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(865), + [anon_sym_RBRACE] = ACTIONS(875), [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -38403,45 +37521,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__statements] = STATE(6749), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -38455,7 +37573,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -38476,10 +37594,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -38491,49 +37609,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(777), [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), + [sym__statements] = STATE(6508), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -38547,7 +37665,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -38568,10 +37686,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -38583,49 +37701,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(777), [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), + [sym__statements] = STATE(6511), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1857), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), + [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(771), + [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(773), + [anon_sym_DQUOTE] = ACTIONS(316), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [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(777), + [sym__brace_start] = ACTIONS(340), + }, + [STATE(105)] = { + [sym__statements] = STATE(6821), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -38637,18 +37847,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -38678,46 +37888,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(106)] = { + [sym__statements] = STATE(6897), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -38729,18 +37939,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -38770,46 +37980,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(107)] = { + [sym__statements] = STATE(6520), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -38823,7 +38033,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -38844,10 +38054,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -38859,47 +38069,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(777), [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(108)] = { + [aux_sym__terminated_statement] = STATE(25), + [sym__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4739), + [sym_for_statement] = STATE(4739), + [sym_c_style_for_statement] = STATE(4739), + [sym_while_statement] = STATE(4369), + [sym_if_statement] = STATE(4369), + [sym_case_statement] = STATE(4739), + [sym_function_definition] = STATE(4739), + [sym_compound_statement] = STATE(4739), + [sym_subshell] = STATE(4739), + [sym_pipeline] = STATE(4923), + [sym_list] = STATE(4739), + [sym_negated_command] = STATE(4739), + [sym_test_command] = STATE(4739), + [sym_declaration_command] = STATE(4739), + [sym_unset_command] = STATE(4739), + [sym_command] = STATE(4739), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1174), + [sym_variable_assignments] = STATE(4739), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -38954,46 +38164,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(109)] = { + [sym__statements] = STATE(6968), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -39007,7 +38217,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -39028,10 +38238,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -39043,49 +38253,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(777), [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(110)] = { + [sym__statements] = STATE(6997), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1880), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -39099,7 +38309,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -39120,10 +38330,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -39135,49 +38345,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(777), [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(111)] = { + [sym__statements] = STATE(7016), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -39189,18 +38399,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -39230,46 +38440,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(112)] = { + [sym__statements] = STATE(7020), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -39281,18 +38491,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -39322,46 +38532,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(113)] = { + [sym__statements] = STATE(7025), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -39375,7 +38585,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -39396,10 +38606,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -39411,47 +38621,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(777), [sym__brace_start] = ACTIONS(340), }, - [STATE(113)] = { - [aux_sym__terminated_statement] = STATE(26), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4899), - [sym_for_statement] = STATE(4899), - [sym_c_style_for_statement] = STATE(4899), - [sym_while_statement] = STATE(4335), - [sym_if_statement] = STATE(4335), - [sym_case_statement] = STATE(4899), - [sym_function_definition] = STATE(4899), - [sym_compound_statement] = STATE(4899), - [sym_subshell] = STATE(4899), - [sym_pipeline] = STATE(5095), - [sym_list] = STATE(4899), - [sym_negated_command] = STATE(4899), - [sym_test_command] = STATE(4899), - [sym_declaration_command] = STATE(4899), - [sym_unset_command] = STATE(4899), - [sym_command] = STATE(4899), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1097), - [sym_variable_assignments] = STATE(4899), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [STATE(114)] = { + [aux_sym__terminated_statement] = STATE(25), + [sym__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4739), + [sym_for_statement] = STATE(4739), + [sym_c_style_for_statement] = STATE(4739), + [sym_while_statement] = STATE(4369), + [sym_if_statement] = STATE(4369), + [sym_case_statement] = STATE(4739), + [sym_function_definition] = STATE(4739), + [sym_compound_statement] = STATE(4739), + [sym_subshell] = STATE(4739), + [sym_pipeline] = STATE(4923), + [sym_list] = STATE(4739), + [sym_negated_command] = STATE(4739), + [sym_test_command] = STATE(4739), + [sym_declaration_command] = STATE(4739), + [sym_unset_command] = STATE(4739), + [sym_command] = STATE(4739), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1174), + [sym_variable_assignments] = STATE(4739), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -39506,46 +38716,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, - [STATE(114)] = { - [sym__statements] = STATE(7225), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [STATE(115)] = { + [sym__statements] = STATE(6528), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -39559,7 +38769,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -39580,10 +38790,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -39595,49 +38805,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(777), [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(116)] = { + [sym__statements] = STATE(6384), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1885), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -39651,7 +38861,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -39672,10 +38882,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -39687,49 +38897,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(777), [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(117)] = { + [sym__statements] = STATE(6387), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -39741,18 +38951,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -39782,46 +38992,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(118)] = { + [sym__statements] = STATE(6388), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -39833,18 +39043,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -39874,46 +39084,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(119)] = { + [sym__statements] = STATE(6392), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -39927,7 +39137,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -39948,10 +39158,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -39963,47 +39173,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(777), [sym__brace_start] = ACTIONS(340), }, - [STATE(119)] = { - [aux_sym__terminated_statement] = STATE(26), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4899), - [sym_for_statement] = STATE(4899), - [sym_c_style_for_statement] = STATE(4899), - [sym_while_statement] = STATE(4335), - [sym_if_statement] = STATE(4335), - [sym_case_statement] = STATE(4899), - [sym_function_definition] = STATE(4899), - [sym_compound_statement] = STATE(4899), - [sym_subshell] = STATE(4899), - [sym_pipeline] = STATE(5095), - [sym_list] = STATE(4899), - [sym_negated_command] = STATE(4899), - [sym_test_command] = STATE(4899), - [sym_declaration_command] = STATE(4899), - [sym_unset_command] = STATE(4899), - [sym_command] = STATE(4899), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1097), - [sym_variable_assignments] = STATE(4899), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), + [STATE(120)] = { + [aux_sym__terminated_statement] = STATE(25), + [sym__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4739), + [sym_for_statement] = STATE(4739), + [sym_c_style_for_statement] = STATE(4739), + [sym_while_statement] = STATE(4369), + [sym_if_statement] = STATE(4369), + [sym_case_statement] = STATE(4739), + [sym_function_definition] = STATE(4739), + [sym_compound_statement] = STATE(4739), + [sym_subshell] = STATE(4739), + [sym_pipeline] = STATE(4923), + [sym_list] = STATE(4739), + [sym_negated_command] = STATE(4739), + [sym_test_command] = STATE(4739), + [sym_declaration_command] = STATE(4739), + [sym_unset_command] = STATE(4739), + [sym_command] = STATE(4739), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1174), + [sym_variable_assignments] = STATE(4739), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -40058,46 +39268,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, - [STATE(120)] = { - [sym__statements] = STATE(7314), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [STATE(121)] = { + [sym__statements] = STATE(6642), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -40111,7 +39321,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -40132,10 +39342,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -40147,49 +39357,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(777), [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(122)] = { + [sym__statements] = STATE(6549), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1888), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -40203,7 +39413,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -40224,10 +39434,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -40239,49 +39449,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(777), [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(123)] = { + [sym__statements] = STATE(6551), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -40293,18 +39503,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -40334,46 +39544,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(124)] = { + [sym__statements] = STATE(6552), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -40385,18 +39595,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -40426,46 +39636,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(125)] = { + [sym__statements] = STATE(6553), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -40479,7 +39689,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -40500,10 +39710,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -40515,49 +39725,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(777), [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(126)] = { + [sym__statements] = STATE(6797), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -40571,7 +39781,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -40592,10 +39802,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -40607,49 +39817,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(777), [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(127)] = { + [sym__statements] = STATE(6661), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1891), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -40663,7 +39873,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -40684,10 +39894,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -40699,49 +39909,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(777), [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(128)] = { + [sym__statements] = STATE(6663), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -40753,18 +39963,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -40794,46 +40004,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(129)] = { + [sym__statements] = STATE(6664), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -40845,18 +40055,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -40886,46 +40096,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(130)] = { + [sym__statements] = STATE(6665), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -40939,7 +40149,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -40960,10 +40170,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -40975,49 +40185,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(777), [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(131)] = { + [sym__statements] = STATE(6734), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -41031,7 +40241,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -41052,10 +40262,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -41067,49 +40277,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(777), [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(132)] = { + [sym__statements] = STATE(6751), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1892), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -41123,7 +40333,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -41144,10 +40354,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -41159,49 +40369,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(777), [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(133)] = { + [sym__statements] = STATE(6755), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -41213,18 +40423,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -41254,46 +40464,46 @@ 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(134)] = { + [sym__statements] = STATE(6759), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -41305,18 +40515,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -41346,46 +40556,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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(135)] = { + [sym__statements] = STATE(6760), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -41399,7 +40609,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -41420,10 +40630,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -41435,49 +40645,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(777), [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), + [STATE(136)] = { + [sym__statements] = STATE(6843), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -41491,7 +40701,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -41512,10 +40722,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -41527,49 +40737,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(777), [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), + [STATE(137)] = { + [sym__statements] = STATE(6812), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1895), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -41583,7 +40793,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -41604,10 +40814,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -41619,49 +40829,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(777), [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(138)] = { + [sym__statements] = STATE(6814), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -41673,18 +40883,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -41714,46 +40924,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(139)] = { + [sym__statements] = STATE(6815), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -41765,18 +40975,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -41806,46 +41016,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(140)] = { + [sym__statements] = STATE(6816), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -41859,7 +41069,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -41880,10 +41090,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -41895,49 +41105,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(777), [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(141)] = { + [sym__statements] = STATE(6851), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1896), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -41951,7 +41161,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -41972,10 +41182,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -41987,141 +41197,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(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), - [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(869), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = 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_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(777), [sym__brace_start] = ACTIONS(340), }, [STATE(142)] = { - [sym__statements] = STATE(7017), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(6853), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -42133,18 +41251,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -42175,321 +41293,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(143)] = { - [sym__statements] = STATE(7020), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), - [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(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), - [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(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), - [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(869), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = 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_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(146)] = { - [sym__statements] = STATE(7424), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(6854), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -42501,18 +41343,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -42542,46 +41384,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(144)] = { + [sym__statements] = STATE(6855), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -42595,7 +41437,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -42616,10 +41458,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -42631,49 +41473,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(777), [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(145)] = { + [sym__statements] = STATE(6881), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1897), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -42687,7 +41529,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -42708,10 +41550,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -42723,49 +41565,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(777), [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(146)] = { + [sym__statements] = STATE(6885), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -42777,18 +41619,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -42818,46 +41660,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(147)] = { + [sym__statements] = STATE(6886), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -42869,18 +41711,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -42910,46 +41752,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(148)] = { + [sym__statements] = STATE(6894), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -42963,7 +41805,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -42984,10 +41826,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -42999,49 +41841,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(777), [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(149)] = { + [sym__statements] = STATE(6935), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1898), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -43055,7 +41897,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -43076,10 +41918,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -43091,49 +41933,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(777), [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(150)] = { + [sym__statements] = STATE(6939), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -43145,18 +41987,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -43186,46 +42028,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(151)] = { + [sym__statements] = STATE(6940), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -43237,18 +42079,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -43278,46 +42120,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(152)] = { + [sym__statements] = STATE(6941), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -43331,7 +42173,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -43352,10 +42194,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -43367,49 +42209,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(777), [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(153)] = { + [sym__statements] = STATE(6976), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1899), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -43423,7 +42265,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -43444,10 +42286,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -43459,49 +42301,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(777), [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(154)] = { + [sym__statements] = STATE(6978), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -43513,18 +42355,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -43554,46 +42396,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(155)] = { + [sym__statements] = STATE(6985), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -43605,18 +42447,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -43646,46 +42488,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(156)] = { + [sym__statements] = STATE(6986), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -43699,7 +42541,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -43720,10 +42562,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -43735,49 +42577,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(777), [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(157)] = { + [sym__statements] = STATE(7028), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1900), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -43791,7 +42633,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -43812,10 +42654,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -43827,49 +42669,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(777), [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(158)] = { + [sym__statements] = STATE(7030), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -43881,18 +42723,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -43922,46 +42764,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(159)] = { + [sym__statements] = STATE(7031), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -43973,18 +42815,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -44014,46 +42856,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(160)] = { + [sym__statements] = STATE(7032), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -44067,7 +42909,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -44088,10 +42930,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -44103,49 +42945,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(777), [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(161)] = { + [sym__statements] = STATE(7060), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1901), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -44159,7 +43001,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -44180,10 +43022,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -44195,49 +43037,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(777), [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(162)] = { + [sym__statements] = STATE(7062), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -44249,18 +43091,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -44290,46 +43132,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(163)] = { + [sym__statements] = STATE(7063), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -44341,18 +43183,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -44382,46 +43224,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(164)] = { + [sym__statements] = STATE(7064), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -44435,7 +43277,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -44456,10 +43298,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -44471,49 +43313,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(777), [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(165)] = { + [sym__statements] = STATE(6733), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1902), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -44527,7 +43369,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -44548,10 +43390,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -44563,49 +43405,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(777), [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(166)] = { + [sym__statements] = STATE(6888), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -44617,18 +43459,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -44658,46 +43500,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(167)] = { + [sym__statements] = STATE(6913), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -44709,18 +43551,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -44750,46 +43592,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(168)] = { + [sym__statements] = STATE(6530), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -44803,7 +43645,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -44824,10 +43666,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -44839,49 +43681,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(777), [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(169)] = { + [sym__statements] = STATE(6602), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1903), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -44895,7 +43737,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -44916,10 +43758,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -44931,49 +43773,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(777), [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(170)] = { + [sym__statements] = STATE(6627), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -44985,18 +43827,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -45026,46 +43868,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(171)] = { + [sym__statements] = STATE(6629), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -45077,18 +43919,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -45118,46 +43960,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(172)] = { + [sym__statements] = STATE(6630), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -45171,7 +44013,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -45192,10 +44034,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -45207,49 +44049,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(777), [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(173)] = { + [sym__statements] = STATE(6911), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2050), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -45263,7 +44105,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -45284,10 +44126,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -45299,49 +44141,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(777), [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(174)] = { + [sym__statements] = STATE(6394), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -45353,18 +44195,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -45394,46 +44236,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(175)] = { + [sym__statements] = STATE(6496), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -45445,18 +44287,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -45486,46 +44328,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(176)] = { + [sym__statements] = STATE(6523), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -45539,7 +44381,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -45560,10 +44402,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -45575,49 +44417,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(777), [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(177)] = { + [sym__statements] = STATE(6864), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1905), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -45631,7 +44473,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -45652,10 +44494,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -45667,49 +44509,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(777), [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(178)] = { + [sym__statements] = STATE(6950), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -45721,18 +44563,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -45762,46 +44604,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(179)] = { + [sym__statements] = STATE(6954), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -45813,18 +44655,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -45854,46 +44696,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(180)] = { + [sym__statements] = STATE(6956), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -45907,7 +44749,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -45928,10 +44770,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -45943,49 +44785,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(777), [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(181)] = { + [sym__statements] = STATE(6386), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1906), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -45999,7 +44841,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -46020,10 +44862,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -46035,49 +44877,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(777), [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(182)] = { + [sym__statements] = STATE(6473), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -46089,18 +44931,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -46130,46 +44972,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(183)] = { + [sym__statements] = STATE(6482), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -46181,18 +45023,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -46222,46 +45064,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(184)] = { + [sym__statements] = STATE(6483), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -46275,7 +45117,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -46296,10 +45138,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -46311,49 +45153,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(777), [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(185)] = { + [sym__statements] = STATE(6703), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1907), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -46367,7 +45209,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -46388,10 +45230,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -46403,49 +45245,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(777), [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(186)] = { + [sym__statements] = STATE(6710), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -46457,18 +45299,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -46498,46 +45340,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(187)] = { + [sym__statements] = STATE(6711), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -46549,18 +45391,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -46590,46 +45432,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(188)] = { + [sym__statements] = STATE(6712), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -46643,7 +45485,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -46664,10 +45506,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -46679,49 +45521,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(777), [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(189)] = { + [sym__statements] = STATE(6974), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1908), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -46735,7 +45577,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -46756,10 +45598,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -46771,49 +45613,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(777), [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(190)] = { + [sym__statements] = STATE(7000), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -46825,18 +45667,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -46866,46 +45708,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(191)] = { + [sym__statements] = STATE(7049), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -46917,18 +45759,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -46958,46 +45800,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(192)] = { + [sym__statements] = STATE(7127), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -47011,7 +45853,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -47032,10 +45874,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -47047,49 +45889,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(777), [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(193)] = { + [sym__statements] = STATE(6564), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1909), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -47103,7 +45945,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -47124,10 +45966,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -47139,49 +45981,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(777), [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(194)] = { + [sym__statements] = STATE(6618), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -47193,18 +46035,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -47234,46 +46076,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(195)] = { + [sym__statements] = STATE(6636), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -47285,18 +46127,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -47326,46 +46168,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(196)] = { + [sym__statements] = STATE(6700), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -47379,7 +46221,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -47400,10 +46242,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -47415,49 +46257,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(777), [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(197)] = { + [sym__statements] = STATE(6396), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1910), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -47471,7 +46313,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -47492,10 +46334,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -47507,49 +46349,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(777), [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(198)] = { + [sym__statements] = STATE(6410), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -47561,18 +46403,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -47602,46 +46444,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(199)] = { + [sym__statements] = STATE(6430), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -47653,18 +46495,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -47694,46 +46536,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(200)] = { + [sym__statements] = STATE(6446), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -47747,7 +46589,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -47768,10 +46610,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -47783,49 +46625,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(777), [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(201)] = { + [sym__statements] = STATE(6532), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1912), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -47839,7 +46681,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -47860,10 +46702,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -47875,49 +46717,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(777), [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(202)] = { + [sym__statements] = STATE(6556), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -47929,18 +46771,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -47970,46 +46812,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(203)] = { + [sym__statements] = STATE(6577), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -48021,18 +46863,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -48062,46 +46904,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(204)] = { + [sym__statements] = STATE(6579), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -48115,7 +46957,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -48136,10 +46978,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -48151,49 +46993,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(777), [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(205)] = { + [sym__statements] = STATE(6648), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1913), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -48207,7 +47049,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -48228,10 +47070,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -48243,49 +47085,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(777), [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(206)] = { + [sym__statements] = STATE(6685), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -48297,18 +47139,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -48338,46 +47180,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(207)] = { + [sym__statements] = STATE(6693), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -48389,18 +47231,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -48430,46 +47272,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(208)] = { + [sym__statements] = STATE(6699), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -48483,7 +47325,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -48504,10 +47346,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -48519,49 +47361,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(777), [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(209)] = { + [sym__statements] = STATE(6761), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1914), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -48575,7 +47417,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -48596,10 +47438,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -48611,49 +47453,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(777), [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(210)] = { + [sym__statements] = STATE(6796), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -48665,18 +47507,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -48706,46 +47548,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(211)] = { + [sym__statements] = STATE(6804), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -48757,18 +47599,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -48798,46 +47640,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(212)] = { + [sym__statements] = STATE(6805), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -48851,7 +47693,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -48872,10 +47714,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -48887,49 +47729,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(777), [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(213)] = { + [sym__statements] = STATE(6890), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1915), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -48943,7 +47785,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -48964,10 +47806,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -48979,49 +47821,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(777), [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(214)] = { + [sym__statements] = STATE(6918), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -49033,18 +47875,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -49074,46 +47916,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(215)] = { + [sym__statements] = STATE(6919), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -49125,18 +47967,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -49166,46 +48008,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(216)] = { + [sym__statements] = STATE(6920), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -49219,7 +48061,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -49240,10 +48082,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -49255,49 +48097,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(777), [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(217)] = { + [sym__statements] = STATE(6999), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1916), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -49311,7 +48153,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -49332,10 +48174,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -49347,49 +48189,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(777), [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(218)] = { + [sym__statements] = STATE(7001), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -49401,18 +48243,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -49442,46 +48284,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(219)] = { + [sym__statements] = STATE(7026), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -49493,18 +48335,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -49534,46 +48376,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(220)] = { + [sym__statements] = STATE(7036), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -49587,7 +48429,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -49608,10 +48450,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -49623,49 +48465,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(777), [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(221)] = { + [sym__statements] = STATE(6921), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1917), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -49679,7 +48521,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -49700,10 +48542,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -49715,49 +48557,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(777), [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(222)] = { + [sym__statements] = STATE(6960), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -49769,18 +48611,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -49810,46 +48652,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(223)] = { + [sym__statements] = STATE(6984), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -49861,18 +48703,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -49902,46 +48744,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(224)] = { + [sym__statements] = STATE(6380), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -49955,7 +48797,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -49976,10 +48818,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -49991,49 +48833,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(777), [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(225)] = { + [sym__statements] = STATE(6398), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1918), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -50047,7 +48889,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -50068,10 +48910,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -50083,49 +48925,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(777), [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(226)] = { + [sym__statements] = STATE(6406), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -50137,18 +48979,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -50178,46 +49020,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(227)] = { + [sym__statements] = STATE(6416), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -50229,18 +49071,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -50270,46 +49112,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(228)] = { + [sym__statements] = STATE(6425), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -50323,7 +49165,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -50344,10 +49186,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -50359,49 +49201,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(777), [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(229)] = { + [sym__statements] = STATE(6684), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1919), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -50415,7 +49257,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -50436,10 +49278,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -50451,49 +49293,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(777), [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(230)] = { + [sym__statements] = STATE(6717), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -50505,18 +49347,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -50546,46 +49388,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(231)] = { + [sym__statements] = STATE(6724), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -50597,18 +49439,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -50638,46 +49480,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(232)] = { + [sym__statements] = STATE(6727), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -50691,7 +49533,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -50712,10 +49554,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -50727,49 +49569,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(777), [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(233)] = { + [sym__statements] = STATE(6958), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1920), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -50783,7 +49625,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -50804,10 +49646,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -50819,49 +49661,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(777), [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(234)] = { + [sym__statements] = STATE(6964), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -50873,18 +49715,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -50914,46 +49756,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(235)] = { + [sym__statements] = STATE(6972), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -50965,18 +49807,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -51006,46 +49848,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(236)] = { + [sym__statements] = STATE(6973), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -51059,7 +49901,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -51080,10 +49922,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -51095,49 +49937,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(777), [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(237)] = { + [sym__statements] = STATE(6429), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1921), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -51151,7 +49993,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -51172,10 +50014,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -51187,49 +50029,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(777), [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(238)] = { + [sym__statements] = STATE(6431), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -51241,18 +50083,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -51282,46 +50124,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(239)] = { + [sym__statements] = STATE(6432), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -51333,18 +50175,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -51374,46 +50216,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(240)] = { + [sym__statements] = STATE(6438), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -51427,7 +50269,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -51448,10 +50290,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -51463,49 +50305,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(777), [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(241)] = { + [sym__statements] = STATE(6501), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1922), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -51519,7 +50361,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -51540,10 +50382,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -51555,49 +50397,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(777), [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(242)] = { + [sym__statements] = STATE(6503), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -51609,18 +50451,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -51650,46 +50492,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(243)] = { + [sym__statements] = STATE(6504), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -51701,18 +50543,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -51742,46 +50584,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(244)] = { + [sym__statements] = STATE(6506), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -51795,7 +50637,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -51816,10 +50658,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -51831,49 +50673,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(777), [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(245)] = { + [sym__statements] = STATE(6555), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1923), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -51887,7 +50729,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -51908,10 +50750,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -51923,49 +50765,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(777), [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(246)] = { + [sym__statements] = STATE(6557), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -51977,18 +50819,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -52018,46 +50860,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(247)] = { + [sym__statements] = STATE(6559), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -52069,18 +50911,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -52110,46 +50952,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(248)] = { + [sym__statements] = STATE(6560), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -52163,7 +51005,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -52184,10 +51026,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -52199,49 +51041,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(777), [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(249)] = { + [sym__statements] = STATE(6607), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1924), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -52255,7 +51097,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -52276,10 +51118,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -52291,49 +51133,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(777), [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(250)] = { + [sym__statements] = STATE(6613), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -52345,18 +51187,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -52386,46 +51228,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(251)] = { + [sym__statements] = STATE(6614), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -52437,18 +51279,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -52478,46 +51320,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(252)] = { + [sym__statements] = STATE(6615), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -52531,7 +51373,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -52552,10 +51394,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -52567,49 +51409,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(777), [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(253)] = { + [sym__statements] = STATE(6658), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1925), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -52623,7 +51465,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -52644,10 +51486,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -52659,49 +51501,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(777), [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(254)] = { + [sym__statements] = STATE(6668), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -52713,18 +51555,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -52754,46 +51596,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(255)] = { + [sym__statements] = STATE(6670), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -52805,18 +51647,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -52846,46 +51688,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(256)] = { + [sym__statements] = STATE(6682), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -52899,7 +51741,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -52920,10 +51762,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -52935,49 +51777,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(777), [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(257)] = { + [sym__statements] = STATE(6714), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1926), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -52991,7 +51833,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -53012,10 +51854,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -53027,49 +51869,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(777), [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(258)] = { + [sym__statements] = STATE(6721), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -53081,18 +51923,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -53122,46 +51964,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(259)] = { + [sym__statements] = STATE(6722), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -53173,18 +52015,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -53214,46 +52056,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(260)] = { + [sym__statements] = STATE(6723), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -53267,7 +52109,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -53288,10 +52130,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -53303,49 +52145,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(777), [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(261)] = { + [sym__statements] = STATE(6771), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1927), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -53359,7 +52201,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -53380,10 +52222,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -53395,49 +52237,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(777), [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(262)] = { + [sym__statements] = STATE(6787), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -53449,18 +52291,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -53490,46 +52332,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(263)] = { + [sym__statements] = STATE(6788), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -53541,18 +52383,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -53582,46 +52424,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(264)] = { + [sym__statements] = STATE(6794), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -53635,7 +52477,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -53656,10 +52498,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -53671,49 +52513,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(777), [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(265)] = { + [sym__statements] = STATE(6826), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1928), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -53727,7 +52569,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -53748,10 +52590,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -53763,49 +52605,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(777), [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(266)] = { + [sym__statements] = STATE(6831), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -53817,18 +52659,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -53858,46 +52700,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(267)] = { + [sym__statements] = STATE(7189), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -53909,18 +52751,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -53950,46 +52792,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(268)] = { + [sym__statements] = STATE(6833), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -54003,7 +52845,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -54024,10 +52866,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -54039,49 +52881,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(777), [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(269)] = { + [sym__statements] = STATE(6877), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1929), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -54095,7 +52937,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -54116,10 +52958,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -54131,49 +52973,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(777), [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(270)] = { + [sym__statements] = STATE(6879), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -54185,18 +53027,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -54226,46 +53068,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(271)] = { + [sym__statements] = STATE(6882), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -54277,18 +53119,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -54318,46 +53160,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(272)] = { + [sym__statements] = STATE(6884), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -54371,7 +53213,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -54392,10 +53234,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -54407,49 +53249,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(777), [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(273)] = { + [sym__statements] = STATE(6930), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1930), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -54463,7 +53305,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -54484,10 +53326,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -54499,49 +53341,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(777), [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(274)] = { + [sym__statements] = STATE(6934), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -54553,18 +53395,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -54594,46 +53436,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(275)] = { + [sym__statements] = STATE(6936), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -54645,18 +53487,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -54686,46 +53528,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(276)] = { + [sym__statements] = STATE(6937), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -54739,7 +53581,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -54760,10 +53602,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -54775,49 +53617,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(777), [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(277)] = { + [sym__statements] = STATE(6967), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1931), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -54831,7 +53673,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -54852,10 +53694,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -54867,49 +53709,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(777), [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(278)] = { + [sym__statements] = STATE(6979), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -54921,18 +53763,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -54962,46 +53804,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(279)] = { + [sym__statements] = STATE(6980), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -55013,18 +53855,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -55054,46 +53896,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(280)] = { + [sym__statements] = STATE(6982), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -55107,7 +53949,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -55128,10 +53970,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -55143,49 +53985,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(777), [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(281)] = { + [sym__statements] = STATE(7048), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1932), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -55199,7 +54041,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -55220,10 +54062,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -55235,49 +54077,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(777), [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(282)] = { + [sym__statements] = STATE(7050), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -55289,18 +54131,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -55330,46 +54172,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(283)] = { + [sym__statements] = STATE(7056), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -55381,18 +54223,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -55422,46 +54264,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(284)] = { + [sym__statements] = STATE(7057), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -55475,7 +54317,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -55496,10 +54338,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -55511,49 +54353,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(777), [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(285)] = { + [sym__statements] = STATE(6965), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1933), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -55567,7 +54409,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -55588,10 +54430,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -55603,49 +54445,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(777), [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(286)] = { + [sym__statements] = STATE(6507), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -55657,18 +54499,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -55698,46 +54540,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(287)] = { + [sym__statements] = STATE(6678), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -55749,18 +54591,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -55790,46 +54632,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(288)] = { + [sym__statements] = STATE(6737), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -55843,7 +54685,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -55864,10 +54706,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -55879,49 +54721,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(777), [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(289)] = { + [sym__statements] = STATE(6415), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1934), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -55935,7 +54777,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -55956,10 +54798,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -55971,49 +54813,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(777), [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(290)] = { + [sym__statements] = STATE(6439), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -56025,18 +54867,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -56066,46 +54908,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(291)] = { + [sym__statements] = STATE(6443), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -56117,18 +54959,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -56158,46 +55000,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(292)] = { + [sym__statements] = STATE(6451), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -56211,7 +55053,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -56232,10 +55074,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -56247,49 +55089,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(777), [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(293)] = { + [sym__statements] = STATE(6944), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1935), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -56303,7 +55145,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -56324,10 +55166,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -56339,49 +55181,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(777), [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(294)] = { + [sym__statements] = STATE(6963), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -56393,18 +55235,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -56434,46 +55276,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(295)] = { + [sym__statements] = STATE(6977), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -56485,18 +55327,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -56526,46 +55368,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(296)] = { + [sym__statements] = STATE(6981), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -56579,7 +55421,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -56600,10 +55442,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -56615,49 +55457,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(777), [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(297)] = { + [sym__statements] = STATE(6467), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1936), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -56671,7 +55513,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -56692,10 +55534,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -56707,49 +55549,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(777), [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(298)] = { + [sym__statements] = STATE(6472), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -56761,18 +55603,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -56802,46 +55644,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(299)] = { + [sym__statements] = STATE(6476), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -56853,18 +55695,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -56894,46 +55736,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(300)] = { + [sym__statements] = STATE(6509), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -56947,7 +55789,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -56968,10 +55810,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -56983,49 +55825,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(777), [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(301)] = { + [sym__statements] = STATE(6641), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1937), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -57039,7 +55881,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -57060,10 +55902,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -57075,49 +55917,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(777), [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(302)] = { + [sym__statements] = STATE(6674), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -57129,18 +55971,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -57170,46 +56012,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(303)] = { + [sym__statements] = STATE(6675), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -57221,18 +56063,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -57262,46 +56104,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(304)] = { + [sym__statements] = STATE(6676), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -57315,7 +56157,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -57336,10 +56178,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -57351,49 +56193,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(777), [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(305)] = { + [sym__statements] = STATE(6781), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1938), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -57407,7 +56249,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -57428,10 +56270,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -57443,49 +56285,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(777), [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(306)] = { + [sym__statements] = STATE(6795), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -57497,18 +56339,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -57538,46 +56380,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(307)] = { + [sym__statements] = STATE(6801), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -57589,18 +56431,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -57630,46 +56472,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(308)] = { + [sym__statements] = STATE(6818), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -57683,7 +56525,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -57704,10 +56546,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -57719,49 +56561,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(777), [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(309)] = { + [sym__statements] = STATE(6916), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1939), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -57775,7 +56617,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -57796,10 +56638,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -57811,49 +56653,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(777), [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(310)] = { + [sym__statements] = STATE(6925), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -57865,18 +56707,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -57906,46 +56748,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(311)] = { + [sym__statements] = STATE(6932), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -57957,18 +56799,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -57998,46 +56840,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(312)] = { + [sym__statements] = STATE(6938), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -58051,7 +56893,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -58072,10 +56914,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -58087,49 +56929,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(777), [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(313)] = { + [sym__statements] = STATE(6993), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1940), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -58143,7 +56985,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -58164,10 +57006,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -58179,49 +57021,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(777), [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(314)] = { + [sym__statements] = STATE(7021), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -58233,18 +57075,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -58274,46 +57116,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(315)] = { + [sym__statements] = STATE(7034), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -58325,18 +57167,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -58366,46 +57208,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(316)] = { + [sym__statements] = STATE(7124), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -58419,7 +57261,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -58440,10 +57282,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -58455,49 +57297,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(777), [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(317)] = { + [sym__statements] = STATE(6405), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1941), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -58511,7 +57353,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -58532,10 +57374,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -58547,49 +57389,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(777), [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(318)] = { + [sym__statements] = STATE(6411), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -58601,18 +57443,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -58642,46 +57484,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(319)] = { + [sym__statements] = STATE(6413), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -58693,18 +57535,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -58734,46 +57576,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(320)] = { + [sym__statements] = STATE(6419), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -58787,7 +57629,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -58808,10 +57650,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -58823,49 +57665,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(777), [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(321)] = { + [sym__statements] = STATE(6448), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1942), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -58879,7 +57721,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -58900,10 +57742,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -58915,49 +57757,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(777), [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(322)] = { + [sym__statements] = STATE(6453), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -58969,18 +57811,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -59010,46 +57852,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(323)] = { + [sym__statements] = STATE(6455), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -59061,18 +57903,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -59102,46 +57944,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(324)] = { + [sym__statements] = STATE(6457), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -59155,7 +57997,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -59176,10 +58018,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -59191,49 +58033,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(777), [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(325)] = { + [sym__statements] = STATE(6486), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1943), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -59247,7 +58089,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -59268,10 +58110,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -59283,49 +58125,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(777), [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(326)] = { + [sym__statements] = STATE(6492), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -59337,18 +58179,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -59378,46 +58220,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(327)] = { + [sym__statements] = STATE(6493), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -59429,18 +58271,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -59470,46 +58312,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(328)] = { + [sym__statements] = STATE(6494), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -59523,7 +58365,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -59544,10 +58386,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -59559,49 +58401,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(777), [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(329)] = { + [sym__statements] = STATE(6513), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1944), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -59615,7 +58457,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -59636,10 +58478,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -59651,49 +58493,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(777), [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(330)] = { + [sym__statements] = STATE(6515), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -59705,18 +58547,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -59746,46 +58588,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(331)] = { + [sym__statements] = STATE(6516), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -59797,18 +58639,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -59838,46 +58680,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(332)] = { + [sym__statements] = STATE(6517), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -59891,7 +58733,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -59912,10 +58754,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -59927,49 +58769,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(777), [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(333)] = { + [sym__statements] = STATE(6535), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1945), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -59983,7 +58825,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -60004,10 +58846,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -60019,49 +58861,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(777), [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(334)] = { + [sym__statements] = STATE(6541), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -60073,18 +58915,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -60114,46 +58956,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(335)] = { + [sym__statements] = STATE(6542), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -60165,18 +59007,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -60206,46 +59048,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(336)] = { + [sym__statements] = STATE(6543), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -60259,7 +59101,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -60280,10 +59122,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -60295,49 +59137,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(777), [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(337)] = { + [sym__statements] = STATE(6567), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1946), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -60351,7 +59193,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -60372,10 +59214,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -60387,49 +59229,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(777), [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(338)] = { + [sym__statements] = STATE(6571), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -60441,18 +59283,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -60482,46 +59324,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(339)] = { + [sym__statements] = STATE(6573), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -60533,18 +59375,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -60574,46 +59416,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(340)] = { + [sym__statements] = STATE(6590), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1947), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -60627,7 +59469,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -60648,10 +59490,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -60663,49 +59505,233 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(777), [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(341)] = { + [sym__statements] = STATE(6595), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), + [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(861), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(863), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), + [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(342)] = { + [sym__statements] = STATE(6597), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), + [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(861), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(863), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), + [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(343)] = { + [sym__statements] = STATE(6606), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1948), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -60719,7 +59745,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -60740,10 +59766,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -60755,49 +59781,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(777), + [sym__brace_start] = ACTIONS(340), + }, + [STATE(344)] = { + [sym__statements] = STATE(6608), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), + [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(861), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(863), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), + [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(345)] = { - [sym__statements] = STATE(6929), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(6609), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -60809,18 +59927,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -60851,45 +59969,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(346)] = { - [sym__statements] = STATE(6930), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statements] = STATE(6621), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1949), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), + [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(771), + [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(773), + [anon_sym_DQUOTE] = ACTIONS(316), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), + [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(777), + [sym__brace_start] = ACTIONS(340), + }, + [STATE(347)] = { + [sym__statements] = STATE(6623), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -60901,18 +60111,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -60942,84 +60152,84 @@ 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(348)] = { + [sym__statements] = STATE(6625), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [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(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(863), [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(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), + [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), @@ -61029,51 +60239,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(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(349)] = { + [sym__statements] = STATE(6635), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1950), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -61087,7 +60297,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -61108,10 +60318,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -61123,49 +60333,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(777), [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(350)] = { + [sym__statements] = STATE(6637), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -61177,18 +60387,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -61218,46 +60428,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(351)] = { + [sym__statements] = STATE(6639), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -61269,18 +60479,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -61310,46 +60520,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(352)] = { + [sym__statements] = STATE(6653), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1951), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -61363,7 +60573,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -61384,10 +60594,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -61399,49 +60609,233 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(777), [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(353)] = { + [sym__statements] = STATE(6656), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), + [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(861), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(863), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), + [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(354)] = { + [sym__statements] = STATE(6657), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), + [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(861), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(863), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), + [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(355)] = { + [sym__statements] = STATE(6672), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1952), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -61455,7 +60849,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -61476,10 +60870,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -61491,49 +60885,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(777), [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(356)] = { + [sym__statements] = STATE(6677), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -61545,18 +60939,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -61586,46 +60980,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(357)] = { + [sym__statements] = STATE(6679), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -61637,18 +61031,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -61678,46 +61072,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(358)] = { + [sym__statements] = STATE(6692), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1953), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -61731,7 +61125,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -61752,10 +61146,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -61767,49 +61161,233 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(777), [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(359)] = { + [sym__statements] = STATE(6695), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), + [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(861), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(863), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), + [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(360)] = { + [sym__statements] = STATE(6698), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), + [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(861), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(863), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), + [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(361)] = { + [sym__statements] = STATE(6706), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1954), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -61823,7 +61401,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -61844,10 +61422,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -61859,49 +61437,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(777), [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(362)] = { + [sym__statements] = STATE(6708), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -61913,18 +61491,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -61954,46 +61532,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(363)] = { + [sym__statements] = STATE(6709), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -62005,18 +61583,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -62046,46 +61624,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(364)] = { + [sym__statements] = STATE(6716), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1955), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -62099,7 +61677,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -62120,10 +61698,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -62135,141 +61713,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(777), [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), - [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(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(365)] = { + [sym__statements] = STATE(6718), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -62281,18 +61767,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -62322,46 +61808,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(366)] = { + [sym__statements] = STATE(6719), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -62373,18 +61859,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -62414,138 +61900,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), - [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(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(367)] = { + [sym__statements] = STATE(6726), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1956), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -62559,7 +61953,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -62580,10 +61974,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -62595,49 +61989,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(777), [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(368)] = { + [sym__statements] = STATE(6728), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -62649,18 +62043,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -62690,46 +62084,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(369)] = { + [sym__statements] = STATE(6376), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -62741,18 +62135,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -62782,46 +62176,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(370)] = { + [sym__statements] = STATE(6741), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1957), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -62835,7 +62229,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -62856,10 +62250,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -62871,49 +62265,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(777), [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(371)] = { + [sym__statements] = STATE(6745), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -62925,18 +62319,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -62966,46 +62360,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(372)] = { + [sym__statements] = STATE(6746), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -63017,18 +62411,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -63058,46 +62452,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(373)] = { + [sym__statements] = STATE(6766), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1958), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -63111,7 +62505,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -63132,10 +62526,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -63147,49 +62541,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(777), [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(374)] = { + [sym__statements] = STATE(6768), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -63201,18 +62595,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -63242,46 +62636,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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(375)] = { + [sym__statements] = STATE(6770), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -63293,18 +62687,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -63334,46 +62728,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), + [STATE(376)] = { + [sym__statements] = STATE(6772), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1959), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -63387,7 +62781,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -63408,10 +62802,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -63423,49 +62817,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(777), [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(377)] = { + [sym__statements] = STATE(6774), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -63477,18 +62871,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -63518,46 +62912,46 @@ 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(378)] = { + [sym__statements] = STATE(6777), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -63569,18 +62963,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -63610,46 +63004,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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(379)] = { + [sym__statements] = STATE(6778), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4510), + [sym_for_statement] = STATE(4510), + [sym_c_style_for_statement] = STATE(4510), + [sym_while_statement] = STATE(4289), + [sym_if_statement] = STATE(4289), + [sym_case_statement] = STATE(4510), + [sym_function_definition] = STATE(4510), + [sym_compound_statement] = STATE(4510), + [sym_subshell] = STATE(4510), + [sym_pipeline] = STATE(4845), + [sym_list] = STATE(4510), + [sym_negated_command] = STATE(4510), + [sym_test_command] = STATE(4510), + [sym_declaration_command] = STATE(4510), + [sym_unset_command] = STATE(4510), + [sym_command] = STATE(4510), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(903), + [sym_variable_assignments] = STATE(4510), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(1960), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(391), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -63663,7 +63057,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -63684,10 +63078,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -63699,49 +63093,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(777), [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(380)] = { + [sym__statements] = STATE(6783), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -63753,18 +63147,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -63794,46 +63188,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(381)] = { + [sym__statements] = STATE(6785), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -63845,18 +63239,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -63886,138 +63280,45 @@ 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), - [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(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(382)] = { + [aux_sym__terminated_statement] = STATE(25), + [sym__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4739), + [sym_for_statement] = STATE(4739), + [sym_c_style_for_statement] = STATE(4739), + [sym_while_statement] = STATE(4369), + [sym_if_statement] = STATE(4369), + [sym_case_statement] = STATE(4739), + [sym_function_definition] = STATE(4739), + [sym_compound_statement] = STATE(4739), + [sym_subshell] = STATE(4739), + [sym_pipeline] = STATE(4923), + [sym_list] = STATE(4739), + [sym_negated_command] = STATE(4739), + [sym_test_command] = STATE(4739), + [sym_declaration_command] = STATE(4739), + [sym_unset_command] = STATE(4739), + [sym_command] = STATE(4739), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1174), + [sym_variable_assignments] = STATE(4739), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -64028,19 +63329,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), + [anon_sym_then] = ACTIONS(883), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(300), + [anon_sym_typeset] = ACTIONS(300), + [anon_sym_export] = ACTIONS(300), + [anon_sym_readonly] = ACTIONS(300), + [anon_sym_local] = ACTIONS(300), + [anon_sym_unset] = ACTIONS(302), + [anon_sym_unsetenv] = ACTIONS(302), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -64070,46 +63372,45 @@ 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(383)] = { + [aux_sym__terminated_statement] = STATE(25), + [sym__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4739), + [sym_for_statement] = STATE(4739), + [sym_c_style_for_statement] = STATE(4739), + [sym_while_statement] = STATE(4369), + [sym_if_statement] = STATE(4369), + [sym_case_statement] = STATE(4739), + [sym_function_definition] = STATE(4739), + [sym_compound_statement] = STATE(4739), + [sym_subshell] = STATE(4739), + [sym_pipeline] = STATE(4923), + [sym_list] = STATE(4739), + [sym_negated_command] = STATE(4739), + [sym_test_command] = STATE(4739), + [sym_declaration_command] = STATE(4739), + [sym_unset_command] = STATE(4739), + [sym_command] = STATE(4739), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1174), + [sym_variable_assignments] = STATE(4739), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -64120,19 +63421,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), + [anon_sym_fi] = ACTIONS(885), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(300), + [anon_sym_typeset] = ACTIONS(300), + [anon_sym_export] = ACTIONS(300), + [anon_sym_readonly] = ACTIONS(300), + [anon_sym_local] = ACTIONS(300), + [anon_sym_unset] = ACTIONS(302), + [anon_sym_unsetenv] = ACTIONS(302), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -64162,138 +63464,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), - [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(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(384)] = { + [sym__statements] = STATE(6852), + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4646), + [sym_for_statement] = STATE(4646), + [sym_c_style_for_statement] = STATE(4646), + [sym_while_statement] = STATE(4194), + [sym_if_statement] = STATE(4194), + [sym_case_statement] = STATE(4646), + [sym_function_definition] = STATE(4646), + [sym_compound_statement] = STATE(4646), + [sym_subshell] = STATE(4646), + [sym_pipeline] = STATE(4785), + [sym_list] = STATE(4646), + [sym_negated_command] = STATE(4646), + [sym_test_command] = STATE(4646), + [sym_declaration_command] = STATE(4646), + [sym_unset_command] = STATE(4646), + [sym_command] = STATE(4646), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(4646), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(395), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -64305,18 +63515,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -64346,46 +63556,45 @@ 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(385)] = { + [aux_sym__terminated_statement] = STATE(67), + [sym__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4720), + [sym_for_statement] = STATE(4720), + [sym_c_style_for_statement] = STATE(4720), + [sym_while_statement] = STATE(4389), + [sym_if_statement] = STATE(4389), + [sym_case_statement] = STATE(4720), + [sym_function_definition] = STATE(4720), + [sym_compound_statement] = STATE(4720), + [sym_subshell] = STATE(4720), + [sym_pipeline] = STATE(4893), + [sym_list] = STATE(4720), + [sym_negated_command] = STATE(4720), + [sym_test_command] = STATE(4720), + [sym_declaration_command] = STATE(4720), + [sym_unset_command] = STATE(4720), + [sym_command] = STATE(4720), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1095), + [sym_variable_assignments] = STATE(4720), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -64397,18 +63606,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_RBRACE] = ACTIONS(887), + [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(300), + [anon_sym_typeset] = ACTIONS(300), + [anon_sym_export] = ACTIONS(300), + [anon_sym_readonly] = ACTIONS(300), + [anon_sym_local] = ACTIONS(300), + [anon_sym_unset] = ACTIONS(302), + [anon_sym_unsetenv] = ACTIONS(302), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -64438,138 +63648,45 @@ 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), - [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(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), + [aux_sym__terminated_statement] = STATE(65), + [sym__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4739), + [sym_for_statement] = STATE(4739), + [sym_c_style_for_statement] = STATE(4739), + [sym_while_statement] = STATE(4369), + [sym_if_statement] = STATE(4369), + [sym_case_statement] = STATE(4739), + [sym_function_definition] = STATE(4739), + [sym_compound_statement] = STATE(4739), + [sym_subshell] = STATE(4739), + [sym_pipeline] = STATE(4923), + [sym_list] = STATE(4739), + [sym_negated_command] = STATE(4739), + [sym_test_command] = STATE(4739), + [sym_declaration_command] = STATE(4739), + [sym_unset_command] = STATE(4739), + [sym_command] = STATE(4739), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1174), + [sym_variable_assignments] = STATE(4739), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -64581,18 +63698,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(300), + [anon_sym_typeset] = ACTIONS(300), + [anon_sym_export] = ACTIONS(300), + [anon_sym_readonly] = ACTIONS(300), + [anon_sym_local] = ACTIONS(300), + [anon_sym_unset] = ACTIONS(302), + [anon_sym_unsetenv] = ACTIONS(302), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -64623,45 +63740,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(387)] = { - [sym__statements] = STATE(7203), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [aux_sym__terminated_statement] = STATE(120), + [sym__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4739), + [sym_for_statement] = STATE(4739), + [sym_c_style_for_statement] = STATE(4739), + [sym_while_statement] = STATE(4369), + [sym_if_statement] = STATE(4369), + [sym_case_statement] = STATE(4739), + [sym_function_definition] = STATE(4739), + [sym_compound_statement] = STATE(4739), + [sym_subshell] = STATE(4739), + [sym_pipeline] = STATE(4923), + [sym_list] = STATE(4739), + [sym_negated_command] = STATE(4739), + [sym_test_command] = STATE(4739), + [sym_declaration_command] = STATE(4739), + [sym_unset_command] = STATE(4739), + [sym_command] = STATE(4739), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1174), + [sym_variable_assignments] = STATE(4739), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -64673,18 +63789,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(300), + [anon_sym_typeset] = ACTIONS(300), + [anon_sym_export] = ACTIONS(300), + [anon_sym_readonly] = ACTIONS(300), + [anon_sym_local] = ACTIONS(300), + [anon_sym_unset] = ACTIONS(302), + [anon_sym_unsetenv] = ACTIONS(302), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -64715,137 +63831,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(388)] = { - [sym__statements] = STATE(7215), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2208), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), - [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(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), + [aux_sym__terminated_statement] = STATE(52), + [sym__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4739), + [sym_for_statement] = STATE(4739), + [sym_c_style_for_statement] = STATE(4739), + [sym_while_statement] = STATE(4369), + [sym_if_statement] = STATE(4369), + [sym_case_statement] = STATE(4739), + [sym_function_definition] = STATE(4739), + [sym_compound_statement] = STATE(4739), + [sym_subshell] = STATE(4739), + [sym_pipeline] = STATE(4923), + [sym_list] = STATE(4739), + [sym_negated_command] = STATE(4739), + [sym_test_command] = STATE(4739), + [sym_declaration_command] = STATE(4739), + [sym_unset_command] = STATE(4739), + [sym_command] = STATE(4739), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1174), + [sym_variable_assignments] = STATE(4739), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -64857,18 +63880,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(300), + [anon_sym_typeset] = ACTIONS(300), + [anon_sym_export] = ACTIONS(300), + [anon_sym_readonly] = ACTIONS(300), + [anon_sym_local] = ACTIONS(300), + [anon_sym_unset] = ACTIONS(302), + [anon_sym_unsetenv] = ACTIONS(302), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -64898,46 +63921,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, + [STATE(389)] = { + [sym__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4740), + [sym_for_statement] = STATE(4740), + [sym_c_style_for_statement] = STATE(4740), + [sym_while_statement] = STATE(4374), + [sym_if_statement] = STATE(4374), + [sym_case_statement] = STATE(4740), + [sym_function_definition] = STATE(4740), + [sym_compound_statement] = STATE(4740), + [sym_subshell] = STATE(4740), + [sym_pipeline] = STATE(4872), + [sym_list] = STATE(4740), + [sym_negated_command] = STATE(4740), + [sym_test_command] = STATE(4740), + [sym_declaration_command] = STATE(4740), + [sym_unset_command] = STATE(4740), + [sym_command] = STATE(4740), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1120), + [sym_variable_assignments] = STATE(4740), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(389), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(889), + [anon_sym_for] = ACTIONS(892), + [anon_sym_select] = ACTIONS(895), + [anon_sym_LPAREN_LPAREN] = ACTIONS(898), + [anon_sym_LT] = ACTIONS(901), + [anon_sym_GT] = ACTIONS(901), + [anon_sym_GT_GT] = ACTIONS(904), + [anon_sym_LPAREN] = ACTIONS(907), + [anon_sym_while] = ACTIONS(910), + [anon_sym_until] = ACTIONS(910), + [anon_sym_if] = ACTIONS(913), + [anon_sym_case] = ACTIONS(916), + [anon_sym_function] = ACTIONS(919), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(928), + [anon_sym_LBRACK_LBRACK] = ACTIONS(931), + [anon_sym_declare] = ACTIONS(934), + [anon_sym_typeset] = ACTIONS(934), + [anon_sym_export] = ACTIONS(934), + [anon_sym_readonly] = ACTIONS(934), + [anon_sym_local] = ACTIONS(934), + [anon_sym_unset] = ACTIONS(937), + [anon_sym_unsetenv] = ACTIONS(937), + [anon_sym_AMP_GT] = ACTIONS(901), + [anon_sym_AMP_GT_GT] = ACTIONS(904), + [anon_sym_LT_AMP] = ACTIONS(901), + [anon_sym_GT_AMP] = ACTIONS(901), + [anon_sym_GT_PIPE] = ACTIONS(904), + [anon_sym_LT_AMP_DASH] = ACTIONS(940), + [anon_sym_GT_AMP_DASH] = ACTIONS(940), + [anon_sym_LT_LT_LT] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(946), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(949), + [anon_sym_DOLLAR] = ACTIONS(952), + [sym__special_character] = ACTIONS(955), + [anon_sym_DQUOTE] = ACTIONS(958), + [sym_raw_string] = ACTIONS(961), + [sym_ansi_c_string] = ACTIONS(961), + [aux_sym_number_token1] = ACTIONS(964), + [aux_sym_number_token2] = ACTIONS(967), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(970), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(973), + [anon_sym_BQUOTE] = ACTIONS(976), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(979), + [anon_sym_LT_LPAREN] = ACTIONS(982), + [anon_sym_GT_LPAREN] = ACTIONS(982), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(985), + [sym_variable_name] = ACTIONS(988), + [sym_test_operator] = ACTIONS(991), + [sym__brace_start] = ACTIONS(994), + }, [STATE(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), + [aux_sym__terminated_statement] = STATE(382), + [sym__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4739), + [sym_for_statement] = STATE(4739), + [sym_c_style_for_statement] = STATE(4739), + [sym_while_statement] = STATE(4369), + [sym_if_statement] = STATE(4369), + [sym_case_statement] = STATE(4739), + [sym_function_definition] = STATE(4739), + [sym_compound_statement] = STATE(4739), + [sym_subshell] = STATE(4739), + [sym_pipeline] = STATE(4923), + [sym_list] = STATE(4739), + [sym_negated_command] = STATE(4739), + [sym_test_command] = STATE(4739), + [sym_declaration_command] = STATE(4739), + [sym_unset_command] = STATE(4739), + [sym_command] = STATE(4739), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1174), + [sym_variable_assignments] = STATE(4739), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -64949,18 +64062,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(300), + [anon_sym_typeset] = ACTIONS(300), + [anon_sym_export] = ACTIONS(300), + [anon_sym_readonly] = ACTIONS(300), + [anon_sym_local] = ACTIONS(300), + [anon_sym_unset] = ACTIONS(302), + [anon_sym_unsetenv] = ACTIONS(302), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -64991,45 +64104,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(391)] = { - [sym__statements] = STATE(7230), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2211), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4586), + [sym_for_statement] = STATE(4586), + [sym_c_style_for_statement] = STATE(4586), + [sym_while_statement] = STATE(4159), + [sym_if_statement] = STATE(4159), + [sym_case_statement] = STATE(4586), + [sym_function_definition] = STATE(4586), + [sym_compound_statement] = STATE(4586), + [sym_subshell] = STATE(4586), + [sym_pipeline] = STATE(4847), + [sym_list] = STATE(4586), + [sym_negated_command] = STATE(4586), + [sym_test_command] = STATE(4586), + [sym_declaration_command] = STATE(4586), + [sym_unset_command] = STATE(4586), + [sym_command] = STATE(4586), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(953), + [sym_variable_assignments] = STATE(4586), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym__statements_repeat1] = STATE(389), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -65043,7 +64155,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -65064,10 +64176,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -65079,49 +64191,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(777), [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), + [aux_sym__terminated_statement] = STATE(51), + [sym__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4739), + [sym_for_statement] = STATE(4739), + [sym_c_style_for_statement] = STATE(4739), + [sym_while_statement] = STATE(4369), + [sym_if_statement] = STATE(4369), + [sym_case_statement] = STATE(4739), + [sym_function_definition] = STATE(4739), + [sym_compound_statement] = STATE(4739), + [sym_subshell] = STATE(4739), + [sym_pipeline] = STATE(4923), + [sym_list] = STATE(4739), + [sym_negated_command] = STATE(4739), + [sym_test_command] = STATE(4739), + [sym_declaration_command] = STATE(4739), + [sym_unset_command] = STATE(4739), + [sym_command] = STATE(4739), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1174), + [sym_variable_assignments] = STATE(4739), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -65133,18 +64244,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(300), + [anon_sym_typeset] = ACTIONS(300), + [anon_sym_export] = ACTIONS(300), + [anon_sym_readonly] = ACTIONS(300), + [anon_sym_local] = ACTIONS(300), + [anon_sym_unset] = ACTIONS(302), + [anon_sym_unsetenv] = ACTIONS(302), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -65175,45 +64286,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(393)] = { - [sym__statements] = STATE(7236), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [aux_sym__terminated_statement] = STATE(50), + [sym__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4739), + [sym_for_statement] = STATE(4739), + [sym_c_style_for_statement] = STATE(4739), + [sym_while_statement] = STATE(4369), + [sym_if_statement] = STATE(4369), + [sym_case_statement] = STATE(4739), + [sym_function_definition] = STATE(4739), + [sym_compound_statement] = STATE(4739), + [sym_subshell] = STATE(4739), + [sym_pipeline] = STATE(4923), + [sym_list] = STATE(4739), + [sym_negated_command] = STATE(4739), + [sym_test_command] = STATE(4739), + [sym_declaration_command] = STATE(4739), + [sym_unset_command] = STATE(4739), + [sym_command] = STATE(4739), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1174), + [sym_variable_assignments] = STATE(4739), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -65225,18 +64335,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(300), + [anon_sym_typeset] = ACTIONS(300), + [anon_sym_export] = ACTIONS(300), + [anon_sym_readonly] = ACTIONS(300), + [anon_sym_local] = ACTIONS(300), + [anon_sym_unset] = ACTIONS(302), + [anon_sym_unsetenv] = ACTIONS(302), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -65267,137 +64377,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(394)] = { - [sym__statements] = STATE(7252), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2215), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), - [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(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), + [aux_sym__terminated_statement] = STATE(54), + [sym__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4739), + [sym_for_statement] = STATE(4739), + [sym_c_style_for_statement] = STATE(4739), + [sym_while_statement] = STATE(4369), + [sym_if_statement] = STATE(4369), + [sym_case_statement] = STATE(4739), + [sym_function_definition] = STATE(4739), + [sym_compound_statement] = STATE(4739), + [sym_subshell] = STATE(4739), + [sym_pipeline] = STATE(4923), + [sym_list] = STATE(4739), + [sym_negated_command] = STATE(4739), + [sym_test_command] = STATE(4739), + [sym_declaration_command] = STATE(4739), + [sym_unset_command] = STATE(4739), + [sym_command] = STATE(4739), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1174), + [sym_variable_assignments] = STATE(4739), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -65409,18 +64426,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(300), + [anon_sym_typeset] = ACTIONS(300), + [anon_sym_export] = ACTIONS(300), + [anon_sym_readonly] = ACTIONS(300), + [anon_sym_local] = ACTIONS(300), + [anon_sym_unset] = ACTIONS(302), + [anon_sym_unsetenv] = ACTIONS(302), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -65450,46 +64467,45 @@ 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(395)] = { + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4546), + [sym_for_statement] = STATE(4546), + [sym_c_style_for_statement] = STATE(4546), + [sym_while_statement] = STATE(4314), + [sym_if_statement] = STATE(4314), + [sym_case_statement] = STATE(4546), + [sym_function_definition] = STATE(4546), + [sym_compound_statement] = STATE(4546), + [sym_subshell] = STATE(4546), + [sym_pipeline] = STATE(4799), + [sym_list] = STATE(4546), + [sym_negated_command] = STATE(4546), + [sym_test_command] = STATE(4546), + [sym_declaration_command] = STATE(4546), + [sym_unset_command] = STATE(4546), + [sym_command] = STATE(4546), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1173), + [sym_variable_assignments] = STATE(4546), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym__statements_repeat1] = STATE(389), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -65501,18 +64517,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -65542,138 +64558,318 @@ 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__statement_not_pipeline] = STATE(6206), + [sym_redirected_statement] = STATE(4206), + [sym_for_statement] = STATE(4206), + [sym_c_style_for_statement] = STATE(4206), + [sym_while_statement] = STATE(3982), + [sym_if_statement] = STATE(3982), + [sym_case_statement] = STATE(4206), + [sym_function_definition] = STATE(4206), + [sym_compound_statement] = STATE(4206), + [sym_subshell] = STATE(4206), + [sym_pipeline] = STATE(4656), + [sym_list] = STATE(4206), + [sym_negated_command] = STATE(4206), + [sym_test_command] = STATE(4206), + [sym_declaration_command] = STATE(4206), + [sym_unset_command] = STATE(4206), + [sym_command] = STATE(4206), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(783), + [sym_variable_assignments] = STATE(4206), + [sym_subscript] = STATE(6366), + [sym_file_redirect] = STATE(1453), + [sym_herestring_redirect] = STATE(1454), + [sym_arithmetic_expansion] = STATE(726), + [sym_brace_expression] = STATE(726), + [sym_concatenation] = STATE(906), + [sym_string] = STATE(726), + [sym_translated_string] = STATE(726), + [sym_number] = STATE(726), + [sym_simple_expansion] = STATE(726), + [sym_expansion] = STATE(726), + [sym_command_substitution] = STATE(726), + [sym_process_substitution] = STATE(726), + [aux_sym__statements_repeat1] = STATE(389), + [aux_sym_redirected_statement_repeat2] = STATE(3977), + [aux_sym_command_repeat1] = STATE(805), + [aux_sym__literal_repeat1] = STATE(806), + [sym_word] = ACTIONS(356), + [anon_sym_for] = ACTIONS(358), + [anon_sym_select] = ACTIONS(360), + [anon_sym_LPAREN_LPAREN] = ACTIONS(362), + [anon_sym_LT] = ACTIONS(364), + [anon_sym_GT] = ACTIONS(364), + [anon_sym_GT_GT] = ACTIONS(366), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_while] = ACTIONS(370), + [anon_sym_until] = ACTIONS(370), + [anon_sym_if] = ACTIONS(372), + [anon_sym_case] = ACTIONS(374), + [anon_sym_function] = ACTIONS(384), + [anon_sym_LBRACE] = ACTIONS(386), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_LBRACK_LBRACK] = ACTIONS(392), + [anon_sym_declare] = ACTIONS(394), + [anon_sym_typeset] = ACTIONS(394), + [anon_sym_export] = ACTIONS(394), + [anon_sym_readonly] = ACTIONS(394), + [anon_sym_local] = ACTIONS(394), + [anon_sym_unset] = ACTIONS(396), + [anon_sym_unsetenv] = ACTIONS(396), + [anon_sym_AMP_GT] = ACTIONS(364), + [anon_sym_AMP_GT_GT] = ACTIONS(366), + [anon_sym_LT_AMP] = ACTIONS(364), + [anon_sym_GT_AMP] = ACTIONS(364), + [anon_sym_GT_PIPE] = ACTIONS(366), + [anon_sym_LT_AMP_DASH] = ACTIONS(398), + [anon_sym_GT_AMP_DASH] = ACTIONS(398), + [anon_sym_LT_LT_LT] = ACTIONS(400), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(402), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(404), + [anon_sym_DOLLAR] = ACTIONS(406), + [sym__special_character] = ACTIONS(408), + [anon_sym_DQUOTE] = ACTIONS(410), + [sym_raw_string] = ACTIONS(412), + [sym_ansi_c_string] = ACTIONS(412), + [aux_sym_number_token1] = ACTIONS(414), + [aux_sym_number_token2] = ACTIONS(416), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(418), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(420), + [anon_sym_BQUOTE] = ACTIONS(422), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(424), + [anon_sym_LT_LPAREN] = ACTIONS(426), + [anon_sym_GT_LPAREN] = ACTIONS(426), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(428), + [sym_variable_name] = ACTIONS(430), + [sym_test_operator] = ACTIONS(432), + [sym__brace_start] = ACTIONS(434), + }, [STATE(397)] = { - [sym__statements] = STATE(7279), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2074), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statement_not_pipeline] = STATE(6224), + [sym_redirected_statement] = STATE(4383), + [sym_for_statement] = STATE(4383), + [sym_c_style_for_statement] = STATE(4383), + [sym_while_statement] = STATE(4116), + [sym_if_statement] = STATE(4116), + [sym_case_statement] = STATE(4383), + [sym_function_definition] = STATE(4383), + [sym_compound_statement] = STATE(4383), + [sym_subshell] = STATE(4383), + [sym_pipeline] = STATE(4745), + [sym_list] = STATE(4383), + [sym_negated_command] = STATE(4383), + [sym_test_command] = STATE(4383), + [sym_declaration_command] = STATE(4383), + [sym_unset_command] = STATE(4383), + [sym_command] = STATE(4383), + [sym_command_name] = STATE(497), + [sym_variable_assignment] = STATE(865), + [sym_variable_assignments] = STATE(4383), + [sym_subscript] = STATE(6317), + [sym_file_redirect] = STATE(1704), + [sym_herestring_redirect] = STATE(1706), + [sym_arithmetic_expansion] = STATE(779), + [sym_brace_expression] = STATE(779), + [sym_concatenation] = STATE(1094), + [sym_string] = STATE(779), + [sym_translated_string] = STATE(779), + [sym_number] = STATE(779), + [sym_simple_expansion] = STATE(779), + [sym_expansion] = STATE(779), + [sym_command_substitution] = STATE(779), + [sym_process_substitution] = STATE(779), + [aux_sym__statements_repeat1] = STATE(389), + [aux_sym_redirected_statement_repeat2] = STATE(4100), + [aux_sym_command_repeat1] = STATE(861), + [aux_sym__literal_repeat1] = STATE(940), + [sym_word] = ACTIONS(661), + [anon_sym_for] = ACTIONS(663), + [anon_sym_select] = ACTIONS(665), + [anon_sym_LPAREN_LPAREN] = ACTIONS(667), + [anon_sym_LT] = ACTIONS(669), + [anon_sym_GT] = ACTIONS(669), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_while] = ACTIONS(675), + [anon_sym_until] = ACTIONS(675), + [anon_sym_if] = ACTIONS(677), + [anon_sym_case] = ACTIONS(679), + [anon_sym_function] = ACTIONS(683), + [anon_sym_LBRACE] = ACTIONS(685), + [anon_sym_BANG] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LBRACK_LBRACK] = ACTIONS(691), + [anon_sym_declare] = ACTIONS(693), + [anon_sym_typeset] = ACTIONS(693), + [anon_sym_export] = ACTIONS(693), + [anon_sym_readonly] = ACTIONS(693), + [anon_sym_local] = ACTIONS(693), + [anon_sym_unset] = ACTIONS(695), + [anon_sym_unsetenv] = ACTIONS(695), + [anon_sym_AMP_GT] = ACTIONS(669), + [anon_sym_AMP_GT_GT] = ACTIONS(671), + [anon_sym_LT_AMP] = ACTIONS(669), + [anon_sym_GT_AMP] = ACTIONS(669), + [anon_sym_GT_PIPE] = ACTIONS(671), + [anon_sym_LT_AMP_DASH] = ACTIONS(697), + [anon_sym_GT_AMP_DASH] = ACTIONS(697), + [anon_sym_LT_LT_LT] = ACTIONS(699), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(701), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(703), + [anon_sym_DOLLAR] = ACTIONS(705), + [sym__special_character] = ACTIONS(707), + [anon_sym_DQUOTE] = ACTIONS(709), + [sym_raw_string] = ACTIONS(711), + [sym_ansi_c_string] = ACTIONS(711), + [aux_sym_number_token1] = ACTIONS(713), + [aux_sym_number_token2] = ACTIONS(715), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(717), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(719), + [anon_sym_BQUOTE] = ACTIONS(721), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(723), + [anon_sym_LT_LPAREN] = ACTIONS(725), + [anon_sym_GT_LPAREN] = ACTIONS(725), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(727), + [sym_variable_name] = ACTIONS(729), + [sym_test_operator] = ACTIONS(731), + [sym__brace_start] = ACTIONS(733), + }, + [STATE(398)] = { + [sym__statement_not_pipeline] = STATE(6129), + [sym_redirected_statement] = STATE(4525), + [sym_for_statement] = STATE(4525), + [sym_c_style_for_statement] = STATE(4525), + [sym_while_statement] = STATE(4233), + [sym_if_statement] = STATE(4233), + [sym_case_statement] = STATE(4525), + [sym_function_definition] = STATE(4525), + [sym_compound_statement] = STATE(4525), + [sym_subshell] = STATE(4525), + [sym_pipeline] = STATE(4779), + [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(500), + [sym_variable_assignment] = STATE(899), + [sym_variable_assignments] = STATE(4525), + [sym_subscript] = STATE(6338), + [sym_file_redirect] = STATE(1764), + [sym_herestring_redirect] = STATE(1798), + [sym_arithmetic_expansion] = STATE(816), + [sym_brace_expression] = STATE(816), + [sym_concatenation] = STATE(1232), + [sym_string] = STATE(816), + [sym_translated_string] = STATE(816), + [sym_number] = STATE(816), + [sym_simple_expansion] = STATE(816), + [sym_expansion] = STATE(816), + [sym_command_substitution] = STATE(816), + [sym_process_substitution] = STATE(816), + [aux_sym__statements_repeat1] = STATE(389), + [aux_sym_redirected_statement_repeat2] = STATE(4149), + [aux_sym_command_repeat1] = STATE(807), + [aux_sym__literal_repeat1] = STATE(1089), + [sym_word] = ACTIONS(7), [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(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(89), + [anon_sym_function] = ACTIONS(27), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(31), [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(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(133), - [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), - [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(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(399)] = { + [aux_sym__terminated_statement] = STATE(108), + [sym__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4739), + [sym_for_statement] = STATE(4739), + [sym_c_style_for_statement] = STATE(4739), + [sym_while_statement] = STATE(4369), + [sym_if_statement] = STATE(4369), + [sym_case_statement] = STATE(4739), + [sym_function_definition] = STATE(4739), + [sym_compound_statement] = STATE(4739), + [sym_subshell] = STATE(4739), + [sym_pipeline] = STATE(4923), + [sym_list] = STATE(4739), + [sym_negated_command] = STATE(4739), + [sym_test_command] = STATE(4739), + [sym_declaration_command] = STATE(4739), + [sym_unset_command] = STATE(4739), + [sym_command] = STATE(4739), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1174), + [sym_variable_assignments] = STATE(4739), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -65685,18 +64881,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(300), + [anon_sym_typeset] = ACTIONS(300), + [anon_sym_export] = ACTIONS(300), + [anon_sym_readonly] = ACTIONS(300), + [anon_sym_local] = ACTIONS(300), + [anon_sym_unset] = ACTIONS(302), + [anon_sym_unsetenv] = ACTIONS(302), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -65726,46 +64922,45 @@ 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(400)] = { + [aux_sym__terminated_statement] = STATE(114), + [sym__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4739), + [sym_for_statement] = STATE(4739), + [sym_c_style_for_statement] = STATE(4739), + [sym_while_statement] = STATE(4369), + [sym_if_statement] = STATE(4369), + [sym_case_statement] = STATE(4739), + [sym_function_definition] = STATE(4739), + [sym_compound_statement] = STATE(4739), + [sym_subshell] = STATE(4739), + [sym_pipeline] = STATE(4923), + [sym_list] = STATE(4739), + [sym_negated_command] = STATE(4739), + [sym_test_command] = STATE(4739), + [sym_declaration_command] = STATE(4739), + [sym_unset_command] = STATE(4739), + [sym_command] = STATE(4739), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1174), + [sym_variable_assignments] = STATE(4739), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -65777,18 +64972,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(300), + [anon_sym_typeset] = ACTIONS(300), + [anon_sym_export] = ACTIONS(300), + [anon_sym_readonly] = ACTIONS(300), + [anon_sym_local] = ACTIONS(300), + [anon_sym_unset] = ACTIONS(302), + [anon_sym_unsetenv] = ACTIONS(302), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -65818,176 +65013,82 @@ 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), - [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(401)] = { - [sym__statements] = STATE(7296), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statement_not_pipeline] = STATE(6285), + [sym_redirected_statement] = STATE(5008), + [sym_for_statement] = STATE(5008), + [sym_c_style_for_statement] = STATE(5008), + [sym_while_statement] = STATE(4820), + [sym_if_statement] = STATE(4820), + [sym_case_statement] = STATE(5008), + [sym_function_definition] = STATE(5008), + [sym_compound_statement] = STATE(5008), + [sym_subshell] = STATE(5008), + [sym_pipeline] = STATE(5214), + [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(568), + [sym_variable_assignment] = STATE(1655), + [sym_variable_assignments] = STATE(5008), + [sym_subscript] = STATE(6362), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1543), + [sym_brace_expression] = STATE(1543), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1543), + [sym_translated_string] = STATE(1543), + [sym_number] = STATE(1543), + [sym_simple_expansion] = STATE(1543), + [sym_expansion] = STATE(1543), + [sym_command_substitution] = STATE(1543), + [sym_process_substitution] = STATE(1543), + [aux_sym_redirected_statement_repeat2] = STATE(4838), + [aux_sym_command_repeat1] = STATE(886), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(997), [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(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(869), + [anon_sym_function] = ACTIONS(1003), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(1005), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = 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(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(314), + [sym__special_character] = ACTIONS(1015), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(318), - [sym_ansi_c_string] = ACTIONS(318), + [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), @@ -65997,51 +65098,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(1019), + [sym_variable_name] = ACTIONS(1021), + [sym_test_operator] = ACTIONS(1023), [sym__brace_start] = ACTIONS(340), }, [STATE(402)] = { - [sym__statements] = STATE(7297), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statement_not_pipeline] = STATE(4411), + [sym_redirected_statement] = STATE(4411), + [sym_for_statement] = STATE(4411), + [sym_c_style_for_statement] = STATE(4411), + [sym_while_statement] = STATE(4313), + [sym_if_statement] = STATE(4313), + [sym_case_statement] = STATE(4411), + [sym_function_definition] = STATE(4411), + [sym_compound_statement] = STATE(4411), + [sym_subshell] = STATE(4411), + [sym_pipeline] = STATE(5257), + [sym_list] = STATE(4411), + [sym_negated_command] = STATE(4411), + [sym_test_command] = STATE(4411), + [sym_declaration_command] = STATE(4411), + [sym_unset_command] = STATE(4411), + [sym_command] = STATE(4411), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1097), + [sym_variable_assignments] = STATE(4411), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -66053,18 +65152,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -66095,45 +65194,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [STATE(403)] = { - [sym__statements] = STATE(7299), - [sym__statement_not_pipeline] = STATE(6462), - [sym_redirected_statement] = STATE(4617), - [sym_for_statement] = STATE(4617), - [sym_c_style_for_statement] = STATE(4617), - [sym_while_statement] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_case_statement] = STATE(4617), - [sym_function_definition] = STATE(4617), - [sym_compound_statement] = STATE(4617), - [sym_subshell] = STATE(4617), - [sym_pipeline] = STATE(5008), - [sym_list] = STATE(4617), - [sym_negated_command] = STATE(4617), - [sym_test_command] = STATE(4617), - [sym_declaration_command] = STATE(4617), - [sym_unset_command] = STATE(4617), - [sym_command] = STATE(4617), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(958), - [sym_variable_assignments] = STATE(4617), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(1908), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym__statements_repeat1] = STATE(418), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), + [sym__statement_not_pipeline] = STATE(6151), + [sym_redirected_statement] = STATE(4547), + [sym_for_statement] = STATE(4547), + [sym_c_style_for_statement] = STATE(4547), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4547), + [sym_function_definition] = STATE(4547), + [sym_compound_statement] = STATE(4547), + [sym_subshell] = STATE(4547), + [sym_pipeline] = STATE(4556), + [sym_list] = STATE(4547), + [sym_negated_command] = STATE(4547), + [sym_test_command] = STATE(4547), + [sym_declaration_command] = STATE(4547), + [sym_unset_command] = STATE(4547), + [sym_command] = STATE(4547), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(960), + [sym_variable_assignments] = STATE(4547), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -66147,7 +65244,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -66168,10 +65265,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -66183,87 +65280,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(777), [sym__brace_start] = ACTIONS(340), }, [STATE(404)] = { - [sym__statements] = STATE(7301), - [sym__statement_not_pipeline] = STATE(6555), - [sym_redirected_statement] = STATE(4592), - [sym_for_statement] = STATE(4592), - [sym_c_style_for_statement] = STATE(4592), - [sym_while_statement] = STATE(4287), - [sym_if_statement] = STATE(4287), - [sym_case_statement] = STATE(4592), - [sym_function_definition] = STATE(4592), - [sym_compound_statement] = STATE(4592), - [sym_subshell] = STATE(4592), - [sym_pipeline] = STATE(4971), - [sym_list] = STATE(4592), - [sym_negated_command] = STATE(4592), - [sym_test_command] = STATE(4592), - [sym_declaration_command] = STATE(4592), - [sym_unset_command] = STATE(4592), - [sym_command] = STATE(4592), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4592), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), + [sym__statement_not_pipeline] = STATE(6268), + [sym_redirected_statement] = STATE(5204), + [sym_for_statement] = STATE(5204), + [sym_c_style_for_statement] = STATE(5204), + [sym_while_statement] = STATE(4930), + [sym_if_statement] = STATE(4930), + [sym_case_statement] = STATE(5204), + [sym_function_definition] = STATE(5204), + [sym_compound_statement] = STATE(5204), + [sym_subshell] = STATE(5204), + [sym_pipeline] = STATE(5179), + [sym_list] = STATE(5204), + [sym_negated_command] = STATE(5204), + [sym_test_command] = STATE(5204), + [sym_declaration_command] = STATE(5204), + [sym_unset_command] = STATE(5204), + [sym_command] = STATE(5204), + [sym_command_name] = STATE(585), + [sym_variable_assignment] = STATE(1997), + [sym_variable_assignments] = STATE(5204), + [sym_subscript] = STATE(6353), + [sym_file_redirect] = STATE(2821), + [sym_herestring_redirect] = STATE(2823), + [sym_arithmetic_expansion] = STATE(1561), + [sym_brace_expression] = STATE(1561), + [sym_concatenation] = STATE(2250), + [sym_string] = STATE(1561), + [sym_translated_string] = STATE(1561), + [sym_number] = STATE(1561), + [sym_simple_expansion] = STATE(1561), + [sym_expansion] = STATE(1561), + [sym_command_substitution] = STATE(1561), + [sym_process_substitution] = STATE(1561), + [aux_sym_redirected_statement_repeat2] = STATE(4888), + [aux_sym_command_repeat1] = STATE(878), + [aux_sym__literal_repeat1] = STATE(2076), + [sym_word] = ACTIONS(1025), + [anon_sym_for] = ACTIONS(143), + [anon_sym_select] = ACTIONS(145), + [anon_sym_LPAREN_LPAREN] = ACTIONS(147), + [anon_sym_LT] = ACTIONS(1027), + [anon_sym_GT] = ACTIONS(1027), + [anon_sym_GT_GT] = ACTIONS(1029), + [anon_sym_LPAREN] = ACTIONS(1031), + [anon_sym_while] = ACTIONS(155), + [anon_sym_until] = ACTIONS(155), + [anon_sym_if] = ACTIONS(157), + [anon_sym_case] = ACTIONS(159), + [anon_sym_function] = ACTIONS(161), + [anon_sym_LBRACE] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(167), + [anon_sym_LBRACK_LBRACK] = ACTIONS(171), + [anon_sym_declare] = ACTIONS(173), + [anon_sym_typeset] = ACTIONS(173), + [anon_sym_export] = ACTIONS(173), + [anon_sym_readonly] = ACTIONS(173), + [anon_sym_local] = ACTIONS(173), + [anon_sym_unset] = ACTIONS(175), + [anon_sym_unsetenv] = ACTIONS(175), + [anon_sym_AMP_GT] = ACTIONS(1027), + [anon_sym_AMP_GT_GT] = ACTIONS(1029), + [anon_sym_LT_AMP] = ACTIONS(1027), + [anon_sym_GT_AMP] = ACTIONS(1027), + [anon_sym_GT_PIPE] = ACTIONS(1029), + [anon_sym_LT_AMP_DASH] = ACTIONS(1035), + [anon_sym_GT_AMP_DASH] = ACTIONS(1035), + [anon_sym_LT_LT_LT] = ACTIONS(1037), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1039), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1041), + [anon_sym_DOLLAR] = ACTIONS(1043), + [sym__special_character] = ACTIONS(1045), + [anon_sym_DQUOTE] = ACTIONS(1047), + [sym_raw_string] = ACTIONS(1049), + [sym_ansi_c_string] = ACTIONS(1049), + [aux_sym_number_token1] = ACTIONS(1051), + [aux_sym_number_token2] = ACTIONS(1053), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1055), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1057), + [anon_sym_BQUOTE] = ACTIONS(1059), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1061), + [anon_sym_LT_LPAREN] = ACTIONS(1063), + [anon_sym_GT_LPAREN] = ACTIONS(1063), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1065), + [sym_variable_name] = ACTIONS(215), + [sym_test_operator] = ACTIONS(1067), + [sym__brace_start] = ACTIONS(1069), + }, + [STATE(405)] = { + [sym__statement_not_pipeline] = STATE(6285), + [sym_redirected_statement] = STATE(5005), + [sym_for_statement] = STATE(5005), + [sym_c_style_for_statement] = STATE(5005), + [sym_while_statement] = STATE(4791), + [sym_if_statement] = STATE(4791), + [sym_case_statement] = STATE(5005), + [sym_function_definition] = STATE(5005), + [sym_compound_statement] = STATE(5005), + [sym_subshell] = STATE(5005), + [sym_pipeline] = STATE(5242), + [sym_list] = STATE(5005), + [sym_negated_command] = STATE(5005), + [sym_test_command] = STATE(5005), + [sym_declaration_command] = STATE(5005), + [sym_unset_command] = STATE(5005), + [sym_command] = STATE(5005), + [sym_command_name] = STATE(568), + [sym_variable_assignment] = STATE(1681), + [sym_variable_assignments] = STATE(5005), + [sym_subscript] = STATE(6362), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1543), + [sym_brace_expression] = STATE(1543), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1543), + [sym_translated_string] = STATE(1543), + [sym_number] = STATE(1543), + [sym_simple_expansion] = STATE(1543), + [sym_expansion] = STATE(1543), + [sym_command_substitution] = STATE(1543), + [sym_process_substitution] = STATE(1543), + [aux_sym_redirected_statement_repeat2] = STATE(4838), + [aux_sym_command_repeat1] = STATE(886), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(997), [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(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(869), + [anon_sym_function] = ACTIONS(1003), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(1005), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = 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(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(314), + [sym__special_character] = ACTIONS(1015), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(318), - [sym_ansi_c_string] = ACTIONS(318), + [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), @@ -66273,51 +65458,229 @@ 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(1019), + [sym_variable_name] = ACTIONS(1021), + [sym_test_operator] = ACTIONS(1023), [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(406)] = { + [sym__statement_not_pipeline] = STATE(4411), + [sym_redirected_statement] = STATE(4411), + [sym_for_statement] = STATE(4411), + [sym_c_style_for_statement] = STATE(4411), + [sym_while_statement] = STATE(4292), + [sym_if_statement] = STATE(4292), + [sym_case_statement] = STATE(4411), + [sym_function_definition] = STATE(4411), + [sym_compound_statement] = STATE(4411), + [sym_subshell] = STATE(4411), + [sym_pipeline] = STATE(5275), + [sym_list] = STATE(4411), + [sym_negated_command] = STATE(4411), + [sym_test_command] = STATE(4411), + [sym_declaration_command] = STATE(4411), + [sym_unset_command] = STATE(4411), + [sym_command] = STATE(4411), + [sym_command_name] = STATE(500), + [sym_variable_assignment] = STATE(934), + [sym_variable_assignments] = STATE(4411), + [sym_subscript] = STATE(6338), + [sym_file_redirect] = STATE(1764), + [sym_herestring_redirect] = STATE(1798), + [sym_arithmetic_expansion] = STATE(816), + [sym_brace_expression] = STATE(816), + [sym_concatenation] = STATE(1232), + [sym_string] = STATE(816), + [sym_translated_string] = STATE(816), + [sym_number] = STATE(816), + [sym_simple_expansion] = STATE(816), + [sym_expansion] = STATE(816), + [sym_command_substitution] = STATE(816), + [sym_process_substitution] = STATE(816), + [aux_sym_redirected_statement_repeat2] = STATE(4149), + [aux_sym_command_repeat1] = STATE(807), + [aux_sym__literal_repeat1] = STATE(1089), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(17), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(37), + [anon_sym_typeset] = ACTIONS(37), + [anon_sym_export] = ACTIONS(37), + [anon_sym_readonly] = ACTIONS(37), + [anon_sym_local] = ACTIONS(37), + [anon_sym_unset] = ACTIONS(39), + [anon_sym_unsetenv] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym__special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(73), + [sym_variable_name] = ACTIONS(75), + [sym_test_operator] = ACTIONS(77), + [sym__brace_start] = ACTIONS(79), + }, + [STATE(407)] = { + [sym__statement_not_pipeline] = STATE(5246), + [sym_redirected_statement] = STATE(5246), + [sym_for_statement] = STATE(5246), + [sym_c_style_for_statement] = STATE(5246), + [sym_while_statement] = STATE(4960), + [sym_if_statement] = STATE(4960), + [sym_case_statement] = STATE(5246), + [sym_function_definition] = STATE(5246), + [sym_compound_statement] = STATE(5246), + [sym_subshell] = STATE(5246), + [sym_pipeline] = STATE(5319), + [sym_list] = STATE(5246), + [sym_negated_command] = STATE(5246), + [sym_test_command] = STATE(5246), + [sym_declaration_command] = STATE(5246), + [sym_unset_command] = STATE(5246), + [sym_command] = STATE(5246), + [sym_command_name] = STATE(585), + [sym_variable_assignment] = STATE(2028), + [sym_variable_assignments] = STATE(5246), + [sym_subscript] = STATE(6353), + [sym_file_redirect] = STATE(2821), + [sym_herestring_redirect] = STATE(2823), + [sym_arithmetic_expansion] = STATE(1561), + [sym_brace_expression] = STATE(1561), + [sym_concatenation] = STATE(2250), + [sym_string] = STATE(1561), + [sym_translated_string] = STATE(1561), + [sym_number] = STATE(1561), + [sym_simple_expansion] = STATE(1561), + [sym_expansion] = STATE(1561), + [sym_command_substitution] = STATE(1561), + [sym_process_substitution] = STATE(1561), + [aux_sym_redirected_statement_repeat2] = STATE(4888), + [aux_sym_command_repeat1] = STATE(878), + [aux_sym__literal_repeat1] = STATE(2076), + [sym_word] = ACTIONS(1025), + [anon_sym_for] = ACTIONS(143), + [anon_sym_select] = ACTIONS(145), + [anon_sym_LPAREN_LPAREN] = ACTIONS(147), + [anon_sym_LT] = ACTIONS(1027), + [anon_sym_GT] = ACTIONS(1027), + [anon_sym_GT_GT] = ACTIONS(1029), + [anon_sym_LPAREN] = ACTIONS(1031), + [anon_sym_while] = ACTIONS(155), + [anon_sym_until] = ACTIONS(155), + [anon_sym_if] = ACTIONS(157), + [anon_sym_case] = ACTIONS(159), + [anon_sym_function] = ACTIONS(161), + [anon_sym_LBRACE] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(167), + [anon_sym_LBRACK_LBRACK] = ACTIONS(171), + [anon_sym_declare] = ACTIONS(173), + [anon_sym_typeset] = ACTIONS(173), + [anon_sym_export] = ACTIONS(173), + [anon_sym_readonly] = ACTIONS(173), + [anon_sym_local] = ACTIONS(173), + [anon_sym_unset] = ACTIONS(175), + [anon_sym_unsetenv] = ACTIONS(175), + [anon_sym_AMP_GT] = ACTIONS(1027), + [anon_sym_AMP_GT_GT] = ACTIONS(1029), + [anon_sym_LT_AMP] = ACTIONS(1027), + [anon_sym_GT_AMP] = ACTIONS(1027), + [anon_sym_GT_PIPE] = ACTIONS(1029), + [anon_sym_LT_AMP_DASH] = ACTIONS(1035), + [anon_sym_GT_AMP_DASH] = ACTIONS(1035), + [anon_sym_LT_LT_LT] = ACTIONS(1037), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1039), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1041), + [anon_sym_DOLLAR] = ACTIONS(1043), + [sym__special_character] = ACTIONS(1045), + [anon_sym_DQUOTE] = ACTIONS(1047), + [sym_raw_string] = ACTIONS(1049), + [sym_ansi_c_string] = ACTIONS(1049), + [aux_sym_number_token1] = ACTIONS(1051), + [aux_sym_number_token2] = ACTIONS(1053), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1055), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1057), + [anon_sym_BQUOTE] = ACTIONS(1059), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1061), + [anon_sym_LT_LPAREN] = ACTIONS(1063), + [anon_sym_GT_LPAREN] = ACTIONS(1063), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1065), + [sym_variable_name] = ACTIONS(215), + [sym_test_operator] = ACTIONS(1067), + [sym__brace_start] = ACTIONS(1069), + }, + [STATE(408)] = { + [sym__statement_not_pipeline] = STATE(6168), + [sym_redirected_statement] = STATE(4636), + [sym_for_statement] = STATE(4636), + [sym_c_style_for_statement] = STATE(4636), + [sym_while_statement] = STATE(4312), + [sym_if_statement] = STATE(4312), + [sym_case_statement] = STATE(4636), + [sym_function_definition] = STATE(4636), + [sym_compound_statement] = STATE(4636), + [sym_subshell] = STATE(4636), + [sym_pipeline] = STATE(4637), + [sym_list] = STATE(4636), + [sym_negated_command] = STATE(4636), + [sym_test_command] = STATE(4636), + [sym_declaration_command] = STATE(4636), + [sym_unset_command] = STATE(4636), + [sym_command] = STATE(4636), + [sym_command_name] = STATE(511), + [sym_variable_assignment] = STATE(1194), + [sym_variable_assignments] = STATE(4636), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2128), + [sym_herestring_redirect] = STATE(2130), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4200), + [aux_sym_command_repeat1] = STATE(862), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(859), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -66329,18 +65692,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(861), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(863), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(865), + [anon_sym_typeset] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_readonly] = ACTIONS(865), + [anon_sym_local] = ACTIONS(865), + [anon_sym_unset] = ACTIONS(867), + [anon_sym_unsetenv] = ACTIONS(867), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -66370,138 +65733,494 @@ 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(409)] = { + [sym__statement_not_pipeline] = STATE(6129), + [sym_redirected_statement] = STATE(4604), + [sym_for_statement] = STATE(4604), + [sym_c_style_for_statement] = STATE(4604), + [sym_while_statement] = STATE(4241), + [sym_if_statement] = STATE(4241), + [sym_case_statement] = STATE(4604), + [sym_function_definition] = STATE(4604), + [sym_compound_statement] = STATE(4604), + [sym_subshell] = STATE(4604), + [sym_pipeline] = STATE(4610), + [sym_list] = STATE(4604), + [sym_negated_command] = STATE(4604), + [sym_test_command] = STATE(4604), + [sym_declaration_command] = STATE(4604), + [sym_unset_command] = STATE(4604), + [sym_command] = STATE(4604), + [sym_command_name] = STATE(500), + [sym_variable_assignment] = STATE(947), + [sym_variable_assignments] = STATE(4604), + [sym_subscript] = STATE(6338), + [sym_file_redirect] = STATE(1764), + [sym_herestring_redirect] = STATE(1798), + [sym_arithmetic_expansion] = STATE(816), + [sym_brace_expression] = STATE(816), + [sym_concatenation] = STATE(1232), + [sym_string] = STATE(816), + [sym_translated_string] = STATE(816), + [sym_number] = STATE(816), + [sym_simple_expansion] = STATE(816), + [sym_expansion] = STATE(816), + [sym_command_substitution] = STATE(816), + [sym_process_substitution] = STATE(816), + [aux_sym_redirected_statement_repeat2] = STATE(4149), + [aux_sym_command_repeat1] = STATE(807), + [aux_sym__literal_repeat1] = STATE(1089), + [sym_word] = ACTIONS(7), [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(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(89), + [anon_sym_function] = ACTIONS(27), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(31), [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(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(133), - [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), - [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(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(410)] = { + [sym__statement_not_pipeline] = STATE(6224), + [sym_redirected_statement] = STATE(4464), + [sym_for_statement] = STATE(4464), + [sym_c_style_for_statement] = STATE(4464), + [sym_while_statement] = STATE(4035), + [sym_if_statement] = STATE(4035), + [sym_case_statement] = STATE(4464), + [sym_function_definition] = STATE(4464), + [sym_compound_statement] = STATE(4464), + [sym_subshell] = STATE(4464), + [sym_pipeline] = STATE(4491), + [sym_list] = STATE(4464), + [sym_negated_command] = STATE(4464), + [sym_test_command] = STATE(4464), + [sym_declaration_command] = STATE(4464), + [sym_unset_command] = STATE(4464), + [sym_command] = STATE(4464), + [sym_command_name] = STATE(497), + [sym_variable_assignment] = STATE(866), + [sym_variable_assignments] = STATE(4464), + [sym_subscript] = STATE(6317), + [sym_file_redirect] = STATE(1704), + [sym_herestring_redirect] = STATE(1706), + [sym_arithmetic_expansion] = STATE(779), + [sym_brace_expression] = STATE(779), + [sym_concatenation] = STATE(1094), + [sym_string] = STATE(779), + [sym_translated_string] = STATE(779), + [sym_number] = STATE(779), + [sym_simple_expansion] = STATE(779), + [sym_expansion] = STATE(779), + [sym_command_substitution] = STATE(779), + [sym_process_substitution] = STATE(779), + [aux_sym_redirected_statement_repeat2] = STATE(4100), + [aux_sym_command_repeat1] = STATE(861), + [aux_sym__literal_repeat1] = STATE(940), + [sym_word] = ACTIONS(661), + [anon_sym_for] = ACTIONS(663), + [anon_sym_select] = ACTIONS(665), + [anon_sym_LPAREN_LPAREN] = ACTIONS(667), + [anon_sym_LT] = ACTIONS(669), + [anon_sym_GT] = ACTIONS(669), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_while] = ACTIONS(675), + [anon_sym_until] = ACTIONS(675), + [anon_sym_if] = ACTIONS(677), + [anon_sym_case] = ACTIONS(679), + [anon_sym_function] = ACTIONS(683), + [anon_sym_LBRACE] = ACTIONS(685), + [anon_sym_BANG] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LBRACK_LBRACK] = ACTIONS(691), + [anon_sym_declare] = ACTIONS(693), + [anon_sym_typeset] = ACTIONS(693), + [anon_sym_export] = ACTIONS(693), + [anon_sym_readonly] = ACTIONS(693), + [anon_sym_local] = ACTIONS(693), + [anon_sym_unset] = ACTIONS(695), + [anon_sym_unsetenv] = ACTIONS(695), + [anon_sym_AMP_GT] = ACTIONS(669), + [anon_sym_AMP_GT_GT] = ACTIONS(671), + [anon_sym_LT_AMP] = ACTIONS(669), + [anon_sym_GT_AMP] = ACTIONS(669), + [anon_sym_GT_PIPE] = ACTIONS(671), + [anon_sym_LT_AMP_DASH] = ACTIONS(697), + [anon_sym_GT_AMP_DASH] = ACTIONS(697), + [anon_sym_LT_LT_LT] = ACTIONS(699), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(701), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(703), + [anon_sym_DOLLAR] = ACTIONS(705), + [sym__special_character] = ACTIONS(707), + [anon_sym_DQUOTE] = ACTIONS(709), + [sym_raw_string] = ACTIONS(711), + [sym_ansi_c_string] = ACTIONS(711), + [aux_sym_number_token1] = ACTIONS(713), + [aux_sym_number_token2] = ACTIONS(715), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(717), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(719), + [anon_sym_BQUOTE] = ACTIONS(721), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(723), + [anon_sym_LT_LPAREN] = ACTIONS(725), + [anon_sym_GT_LPAREN] = ACTIONS(725), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(727), + [sym_variable_name] = ACTIONS(729), + [sym_test_operator] = ACTIONS(731), + [sym__brace_start] = ACTIONS(733), + }, + [STATE(411)] = { + [sym__statement_not_pipeline] = STATE(4480), + [sym_redirected_statement] = STATE(4480), + [sym_for_statement] = STATE(4480), + [sym_c_style_for_statement] = STATE(4480), + [sym_while_statement] = STATE(3972), + [sym_if_statement] = STATE(3972), + [sym_case_statement] = STATE(4480), + [sym_function_definition] = STATE(4480), + [sym_compound_statement] = STATE(4480), + [sym_subshell] = STATE(4480), + [sym_pipeline] = STATE(5271), + [sym_list] = STATE(4480), + [sym_negated_command] = STATE(4480), + [sym_test_command] = STATE(4480), + [sym_declaration_command] = STATE(4480), + [sym_unset_command] = STATE(4480), + [sym_command] = STATE(4480), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(760), + [sym_variable_assignments] = STATE(4480), + [sym_subscript] = STATE(6366), + [sym_file_redirect] = STATE(1453), + [sym_herestring_redirect] = STATE(1454), + [sym_arithmetic_expansion] = STATE(726), + [sym_brace_expression] = STATE(726), + [sym_concatenation] = STATE(906), + [sym_string] = STATE(726), + [sym_translated_string] = STATE(726), + [sym_number] = STATE(726), + [sym_simple_expansion] = STATE(726), + [sym_expansion] = STATE(726), + [sym_command_substitution] = STATE(726), + [sym_process_substitution] = STATE(726), + [aux_sym_redirected_statement_repeat2] = STATE(3977), + [aux_sym_command_repeat1] = STATE(805), + [aux_sym__literal_repeat1] = STATE(806), + [sym_word] = ACTIONS(356), + [anon_sym_for] = ACTIONS(358), + [anon_sym_select] = ACTIONS(360), + [anon_sym_LPAREN_LPAREN] = ACTIONS(362), + [anon_sym_LT] = ACTIONS(364), + [anon_sym_GT] = ACTIONS(364), + [anon_sym_GT_GT] = ACTIONS(366), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_while] = ACTIONS(370), + [anon_sym_until] = ACTIONS(370), + [anon_sym_if] = ACTIONS(372), + [anon_sym_case] = ACTIONS(374), + [anon_sym_function] = ACTIONS(384), + [anon_sym_LBRACE] = ACTIONS(386), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_LBRACK_LBRACK] = ACTIONS(392), + [anon_sym_declare] = ACTIONS(394), + [anon_sym_typeset] = ACTIONS(394), + [anon_sym_export] = ACTIONS(394), + [anon_sym_readonly] = ACTIONS(394), + [anon_sym_local] = ACTIONS(394), + [anon_sym_unset] = ACTIONS(396), + [anon_sym_unsetenv] = ACTIONS(396), + [anon_sym_AMP_GT] = ACTIONS(364), + [anon_sym_AMP_GT_GT] = ACTIONS(366), + [anon_sym_LT_AMP] = ACTIONS(364), + [anon_sym_GT_AMP] = ACTIONS(364), + [anon_sym_GT_PIPE] = ACTIONS(366), + [anon_sym_LT_AMP_DASH] = ACTIONS(398), + [anon_sym_GT_AMP_DASH] = ACTIONS(398), + [anon_sym_LT_LT_LT] = ACTIONS(400), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(402), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(404), + [anon_sym_DOLLAR] = ACTIONS(406), + [sym__special_character] = ACTIONS(408), + [anon_sym_DQUOTE] = ACTIONS(410), + [sym_raw_string] = ACTIONS(412), + [sym_ansi_c_string] = ACTIONS(412), + [aux_sym_number_token1] = ACTIONS(414), + [aux_sym_number_token2] = ACTIONS(416), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(418), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(420), + [anon_sym_BQUOTE] = ACTIONS(422), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(424), + [anon_sym_LT_LPAREN] = ACTIONS(426), + [anon_sym_GT_LPAREN] = ACTIONS(426), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(428), + [sym_variable_name] = ACTIONS(430), + [sym_test_operator] = ACTIONS(432), + [sym__brace_start] = ACTIONS(434), + }, + [STATE(412)] = { + [sym__statement_not_pipeline] = STATE(6206), + [sym_redirected_statement] = STATE(4185), + [sym_for_statement] = STATE(4185), + [sym_c_style_for_statement] = STATE(4185), + [sym_while_statement] = STATE(3989), + [sym_if_statement] = STATE(3989), + [sym_case_statement] = STATE(4185), + [sym_function_definition] = STATE(4185), + [sym_compound_statement] = STATE(4185), + [sym_subshell] = STATE(4185), + [sym_pipeline] = STATE(4189), + [sym_list] = STATE(4185), + [sym_negated_command] = STATE(4185), + [sym_test_command] = STATE(4185), + [sym_declaration_command] = STATE(4185), + [sym_unset_command] = STATE(4185), + [sym_command] = STATE(4185), + [sym_command_name] = STATE(495), + [sym_variable_assignment] = STATE(782), + [sym_variable_assignments] = STATE(4185), + [sym_subscript] = STATE(6366), + [sym_file_redirect] = STATE(1453), + [sym_herestring_redirect] = STATE(1454), + [sym_arithmetic_expansion] = STATE(726), + [sym_brace_expression] = STATE(726), + [sym_concatenation] = STATE(906), + [sym_string] = STATE(726), + [sym_translated_string] = STATE(726), + [sym_number] = STATE(726), + [sym_simple_expansion] = STATE(726), + [sym_expansion] = STATE(726), + [sym_command_substitution] = STATE(726), + [sym_process_substitution] = STATE(726), + [aux_sym_redirected_statement_repeat2] = STATE(3977), + [aux_sym_command_repeat1] = STATE(805), + [aux_sym__literal_repeat1] = STATE(806), + [sym_word] = ACTIONS(356), + [anon_sym_for] = ACTIONS(358), + [anon_sym_select] = ACTIONS(360), + [anon_sym_LPAREN_LPAREN] = ACTIONS(362), + [anon_sym_LT] = ACTIONS(364), + [anon_sym_GT] = ACTIONS(364), + [anon_sym_GT_GT] = ACTIONS(366), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_while] = ACTIONS(370), + [anon_sym_until] = ACTIONS(370), + [anon_sym_if] = ACTIONS(372), + [anon_sym_case] = ACTIONS(374), + [anon_sym_function] = ACTIONS(384), + [anon_sym_LBRACE] = ACTIONS(386), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_LBRACK_LBRACK] = ACTIONS(392), + [anon_sym_declare] = ACTIONS(394), + [anon_sym_typeset] = ACTIONS(394), + [anon_sym_export] = ACTIONS(394), + [anon_sym_readonly] = ACTIONS(394), + [anon_sym_local] = ACTIONS(394), + [anon_sym_unset] = ACTIONS(396), + [anon_sym_unsetenv] = ACTIONS(396), + [anon_sym_AMP_GT] = ACTIONS(364), + [anon_sym_AMP_GT_GT] = ACTIONS(366), + [anon_sym_LT_AMP] = ACTIONS(364), + [anon_sym_GT_AMP] = ACTIONS(364), + [anon_sym_GT_PIPE] = ACTIONS(366), + [anon_sym_LT_AMP_DASH] = ACTIONS(398), + [anon_sym_GT_AMP_DASH] = ACTIONS(398), + [anon_sym_LT_LT_LT] = ACTIONS(400), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(402), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(404), + [anon_sym_DOLLAR] = ACTIONS(406), + [sym__special_character] = ACTIONS(408), + [anon_sym_DQUOTE] = ACTIONS(410), + [sym_raw_string] = ACTIONS(412), + [sym_ansi_c_string] = ACTIONS(412), + [aux_sym_number_token1] = ACTIONS(414), + [aux_sym_number_token2] = ACTIONS(416), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(418), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(420), + [anon_sym_BQUOTE] = ACTIONS(422), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(424), + [anon_sym_LT_LPAREN] = ACTIONS(426), + [anon_sym_GT_LPAREN] = ACTIONS(426), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(428), + [sym_variable_name] = ACTIONS(430), + [sym_test_operator] = ACTIONS(432), + [sym__brace_start] = ACTIONS(434), + }, + [STATE(413)] = { + [sym__statement_not_pipeline] = STATE(4709), + [sym_redirected_statement] = STATE(4709), + [sym_for_statement] = STATE(4709), + [sym_c_style_for_statement] = STATE(4709), + [sym_while_statement] = STATE(4106), + [sym_if_statement] = STATE(4106), + [sym_case_statement] = STATE(4709), + [sym_function_definition] = STATE(4709), + [sym_compound_statement] = STATE(4709), + [sym_subshell] = STATE(4709), + [sym_pipeline] = STATE(5281), + [sym_list] = STATE(4709), + [sym_negated_command] = STATE(4709), + [sym_test_command] = STATE(4709), + [sym_declaration_command] = STATE(4709), + [sym_unset_command] = STATE(4709), + [sym_command] = STATE(4709), + [sym_command_name] = STATE(497), + [sym_variable_assignment] = STATE(869), + [sym_variable_assignments] = STATE(4709), + [sym_subscript] = STATE(6317), + [sym_file_redirect] = STATE(1704), + [sym_herestring_redirect] = STATE(1706), + [sym_arithmetic_expansion] = STATE(779), + [sym_brace_expression] = STATE(779), + [sym_concatenation] = STATE(1094), + [sym_string] = STATE(779), + [sym_translated_string] = STATE(779), + [sym_number] = STATE(779), + [sym_simple_expansion] = STATE(779), + [sym_expansion] = STATE(779), + [sym_command_substitution] = STATE(779), + [sym_process_substitution] = STATE(779), + [aux_sym_redirected_statement_repeat2] = STATE(4100), + [aux_sym_command_repeat1] = STATE(861), + [aux_sym__literal_repeat1] = STATE(940), + [sym_word] = ACTIONS(661), + [anon_sym_for] = ACTIONS(663), + [anon_sym_select] = ACTIONS(665), + [anon_sym_LPAREN_LPAREN] = ACTIONS(667), + [anon_sym_LT] = ACTIONS(669), + [anon_sym_GT] = ACTIONS(669), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_while] = ACTIONS(675), + [anon_sym_until] = ACTIONS(675), + [anon_sym_if] = ACTIONS(677), + [anon_sym_case] = ACTIONS(679), + [anon_sym_function] = ACTIONS(683), + [anon_sym_LBRACE] = ACTIONS(685), + [anon_sym_BANG] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LBRACK_LBRACK] = ACTIONS(691), + [anon_sym_declare] = ACTIONS(693), + [anon_sym_typeset] = ACTIONS(693), + [anon_sym_export] = ACTIONS(693), + [anon_sym_readonly] = ACTIONS(693), + [anon_sym_local] = ACTIONS(693), + [anon_sym_unset] = ACTIONS(695), + [anon_sym_unsetenv] = ACTIONS(695), + [anon_sym_AMP_GT] = ACTIONS(669), + [anon_sym_AMP_GT_GT] = ACTIONS(671), + [anon_sym_LT_AMP] = ACTIONS(669), + [anon_sym_GT_AMP] = ACTIONS(669), + [anon_sym_GT_PIPE] = ACTIONS(671), + [anon_sym_LT_AMP_DASH] = ACTIONS(697), + [anon_sym_GT_AMP_DASH] = ACTIONS(697), + [anon_sym_LT_LT_LT] = ACTIONS(699), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(701), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(703), + [anon_sym_DOLLAR] = ACTIONS(705), + [sym__special_character] = ACTIONS(707), + [anon_sym_DQUOTE] = ACTIONS(709), + [sym_raw_string] = ACTIONS(711), + [sym_ansi_c_string] = ACTIONS(711), + [aux_sym_number_token1] = ACTIONS(713), + [aux_sym_number_token2] = ACTIONS(715), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(717), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(719), + [anon_sym_BQUOTE] = ACTIONS(721), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(723), + [anon_sym_LT_LPAREN] = ACTIONS(725), + [anon_sym_GT_LPAREN] = ACTIONS(725), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(727), + [sym_variable_name] = ACTIONS(729), + [sym_test_operator] = ACTIONS(731), + [sym__brace_start] = ACTIONS(733), + }, + [STATE(414)] = { + [sym__statement_not_pipeline] = STATE(4411), + [sym_redirected_statement] = STATE(4411), + [sym_for_statement] = STATE(4411), + [sym_c_style_for_statement] = STATE(4411), + [sym_while_statement] = STATE(4347), + [sym_if_statement] = STATE(4347), + [sym_case_statement] = STATE(4411), + [sym_function_definition] = STATE(4411), + [sym_compound_statement] = STATE(4411), + [sym_subshell] = STATE(4411), + [sym_pipeline] = STATE(5263), + [sym_list] = STATE(4411), + [sym_negated_command] = STATE(4411), + [sym_test_command] = STATE(4411), + [sym_declaration_command] = STATE(4411), + [sym_unset_command] = STATE(4411), + [sym_command] = STATE(4411), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1112), + [sym_variable_assignments] = STATE(4411), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -66513,18 +66232,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(300), + [anon_sym_typeset] = ACTIONS(300), + [anon_sym_export] = ACTIONS(300), + [anon_sym_readonly] = ACTIONS(300), + [anon_sym_local] = ACTIONS(300), + [anon_sym_unset] = ACTIONS(302), + [anon_sym_unsetenv] = ACTIONS(302), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -66554,46 +66273,44 @@ 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(415)] = { + [sym__statement_not_pipeline] = STATE(6250), + [sym_redirected_statement] = STATE(4636), + [sym_for_statement] = STATE(4636), + [sym_c_style_for_statement] = STATE(4636), + [sym_while_statement] = STATE(4420), + [sym_if_statement] = STATE(4420), + [sym_case_statement] = STATE(4636), + [sym_function_definition] = STATE(4636), + [sym_compound_statement] = STATE(4636), + [sym_subshell] = STATE(4636), + [sym_pipeline] = STATE(4637), + [sym_list] = STATE(4636), + [sym_negated_command] = STATE(4636), + [sym_test_command] = STATE(4636), + [sym_declaration_command] = STATE(4636), + [sym_unset_command] = STATE(4636), + [sym_command] = STATE(4636), + [sym_command_name] = STATE(517), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4636), + [sym_subscript] = STATE(6316), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1023), + [sym_brace_expression] = STATE(1023), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1023), + [sym_translated_string] = STATE(1023), + [sym_number] = STATE(1023), + [sym_simple_expansion] = STATE(1023), + [sym_expansion] = STATE(1023), + [sym_command_substitution] = STATE(1023), + [sym_process_substitution] = STATE(1023), + [aux_sym_redirected_statement_repeat2] = STATE(4416), + [aux_sym_command_repeat1] = STATE(884), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -66605,18 +66322,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(869), + [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_local] = ACTIONS(873), - [anon_sym_unset] = ACTIONS(875), - [anon_sym_unsetenv] = ACTIONS(875), + [anon_sym_declare] = ACTIONS(300), + [anon_sym_typeset] = ACTIONS(300), + [anon_sym_export] = ACTIONS(300), + [anon_sym_readonly] = ACTIONS(300), + [anon_sym_local] = ACTIONS(300), + [anon_sym_unset] = ACTIONS(302), + [anon_sym_unsetenv] = ACTIONS(302), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -66646,725 +66363,82 @@ 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(416)] = { + [sym__statement_not_pipeline] = STATE(4411), + [sym_redirected_statement] = STATE(4411), + [sym_for_statement] = STATE(4411), + [sym_c_style_for_statement] = STATE(4411), + [sym_while_statement] = STATE(4805), + [sym_if_statement] = STATE(4805), + [sym_case_statement] = STATE(4411), + [sym_function_definition] = STATE(4411), + [sym_compound_statement] = STATE(4411), + [sym_subshell] = STATE(4411), + [sym_pipeline] = STATE(5316), + [sym_list] = STATE(4411), + [sym_negated_command] = STATE(4411), + [sym_test_command] = STATE(4411), + [sym_declaration_command] = STATE(4411), + [sym_unset_command] = STATE(4411), + [sym_command] = STATE(4411), + [sym_command_name] = STATE(568), + [sym_variable_assignment] = STATE(1638), + [sym_variable_assignments] = STATE(4411), + [sym_subscript] = STATE(6362), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1543), + [sym_brace_expression] = STATE(1543), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1543), + [sym_translated_string] = STATE(1543), + [sym_number] = STATE(1543), + [sym_simple_expansion] = STATE(1543), + [sym_expansion] = STATE(1543), + [sym_command_substitution] = STATE(1543), + [sym_process_substitution] = STATE(1543), + [aux_sym_redirected_statement_repeat2] = STATE(4838), + [aux_sym_command_repeat1] = STATE(886), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(997), [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(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_then] = ACTIONS(883), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(296), + [anon_sym_function] = ACTIONS(1003), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(298), + [anon_sym_BANG] = ACTIONS(1005), [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(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), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(13), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_GT_GT] = ACTIONS(288), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_fi] = ACTIONS(885), - [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(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), - [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(869), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = 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_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(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), - [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(869), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = 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_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(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), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(13), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_GT_GT] = ACTIONS(288), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(887), - [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(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), - [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(415)] = { - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4916), - [sym_for_statement] = STATE(4916), - [sym_c_style_for_statement] = STATE(4916), - [sym_while_statement] = STATE(4337), - [sym_if_statement] = STATE(4337), - [sym_case_statement] = STATE(4916), - [sym_function_definition] = STATE(4916), - [sym_compound_statement] = STATE(4916), - [sym_subshell] = STATE(4916), - [sym_pipeline] = STATE(5051), - [sym_list] = STATE(4916), - [sym_negated_command] = STATE(4916), - [sym_test_command] = STATE(4916), - [sym_declaration_command] = STATE(4916), - [sym_unset_command] = STATE(4916), - [sym_command] = STATE(4916), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1136), - [sym_variable_assignments] = STATE(4916), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym__statements_repeat1] = STATE(415), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(889), - [anon_sym_for] = ACTIONS(892), - [anon_sym_select] = ACTIONS(895), - [anon_sym_LPAREN_LPAREN] = ACTIONS(898), - [anon_sym_LT] = ACTIONS(901), - [anon_sym_GT] = ACTIONS(901), - [anon_sym_GT_GT] = ACTIONS(904), - [anon_sym_LPAREN] = ACTIONS(907), - [anon_sym_while] = ACTIONS(910), - [anon_sym_until] = ACTIONS(910), - [anon_sym_if] = ACTIONS(913), - [anon_sym_case] = ACTIONS(916), - [anon_sym_function] = ACTIONS(919), - [anon_sym_LBRACE] = ACTIONS(922), - [anon_sym_BANG] = ACTIONS(925), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(934), - [anon_sym_typeset] = ACTIONS(934), - [anon_sym_export] = ACTIONS(934), - [anon_sym_readonly] = ACTIONS(934), - [anon_sym_local] = ACTIONS(934), - [anon_sym_unset] = ACTIONS(937), - [anon_sym_unsetenv] = ACTIONS(937), - [anon_sym_AMP_GT] = ACTIONS(901), - [anon_sym_AMP_GT_GT] = ACTIONS(904), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [anon_sym_GT_PIPE] = ACTIONS(904), - [anon_sym_LT_AMP_DASH] = ACTIONS(940), - [anon_sym_GT_AMP_DASH] = ACTIONS(940), - [anon_sym_LT_LT_LT] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(946), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(949), - [anon_sym_DOLLAR] = ACTIONS(952), - [sym__special_character] = ACTIONS(955), - [anon_sym_DQUOTE] = ACTIONS(958), - [sym_raw_string] = ACTIONS(961), - [sym_ansi_c_string] = ACTIONS(961), - [aux_sym_number_token1] = ACTIONS(964), - [aux_sym_number_token2] = ACTIONS(967), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(970), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(973), - [anon_sym_BQUOTE] = ACTIONS(976), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(979), - [anon_sym_LT_LPAREN] = ACTIONS(982), - [anon_sym_GT_LPAREN] = ACTIONS(982), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(985), - [sym_variable_name] = ACTIONS(988), - [sym_test_operator] = ACTIONS(991), - [sym__brace_start] = ACTIONS(994), - }, - [STATE(416)] = { - [aux_sym__terminated_statement] = STATE(58), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4899), - [sym_for_statement] = STATE(4899), - [sym_c_style_for_statement] = STATE(4899), - [sym_while_statement] = STATE(4335), - [sym_if_statement] = STATE(4335), - [sym_case_statement] = STATE(4899), - [sym_function_definition] = STATE(4899), - [sym_compound_statement] = STATE(4899), - [sym_subshell] = STATE(4899), - [sym_pipeline] = STATE(5095), - [sym_list] = STATE(4899), - [sym_negated_command] = STATE(4899), - [sym_test_command] = STATE(4899), - [sym_declaration_command] = STATE(4899), - [sym_unset_command] = STATE(4899), - [sym_command] = STATE(4899), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1097), - [sym_variable_assignments] = STATE(4899), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), - [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_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(314), + [sym__special_character] = ACTIONS(1015), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(318), - [sym_ansi_c_string] = ACTIONS(318), + [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), @@ -67374,1140 +66448,48 @@ 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(1019), + [sym_variable_name] = ACTIONS(1021), + [sym_test_operator] = ACTIONS(1023), [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), - [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(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), - [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(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), - [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(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), - [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(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), - [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(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), - [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(869), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = 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_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(423)] = { - [sym__statement_not_pipeline] = STATE(6573), - [sym_redirected_statement] = STATE(4180), - [sym_for_statement] = STATE(4180), - [sym_c_style_for_statement] = STATE(4180), - [sym_while_statement] = STATE(3905), - [sym_if_statement] = STATE(3905), - [sym_case_statement] = STATE(4180), - [sym_function_definition] = STATE(4180), - [sym_compound_statement] = STATE(4180), - [sym_subshell] = STATE(4180), - [sym_pipeline] = STATE(4548), - [sym_list] = STATE(4180), - [sym_negated_command] = STATE(4180), - [sym_test_command] = STATE(4180), - [sym_declaration_command] = STATE(4180), - [sym_unset_command] = STATE(4180), - [sym_command] = STATE(4180), - [sym_command_name] = STATE(524), - [sym_variable_assignment] = STATE(785), - [sym_variable_assignments] = STATE(4180), - [sym_subscript] = STATE(6697), - [sym_file_redirect] = STATE(1608), - [sym_herestring_redirect] = STATE(1609), - [sym_arithmetic_expansion] = STATE(781), - [sym_brace_expression] = STATE(781), - [sym_concatenation] = STATE(1056), - [sym_string] = STATE(781), - [sym_translated_string] = STATE(781), - [sym_number] = STATE(781), - [sym_simple_expansion] = STATE(781), - [sym_expansion] = STATE(781), - [sym_command_substitution] = STATE(781), - [sym_process_substitution] = STATE(781), - [aux_sym__statements_repeat1] = STATE(415), - [aux_sym_redirected_statement_repeat2] = STATE(4152), - [aux_sym_command_repeat1] = STATE(942), - [aux_sym__literal_repeat1] = STATE(943), - [sym_word] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_LT] = ACTIONS(407), - [anon_sym_GT] = ACTIONS(407), - [anon_sym_GT_GT] = ACTIONS(409), - [anon_sym_LPAREN] = ACTIONS(411), - [anon_sym_while] = ACTIONS(413), - [anon_sym_until] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_case] = ACTIONS(417), - [anon_sym_function] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(429), - [anon_sym_BANG] = ACTIONS(431), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACK_LBRACK] = ACTIONS(435), - [anon_sym_declare] = ACTIONS(437), - [anon_sym_typeset] = ACTIONS(437), - [anon_sym_export] = ACTIONS(437), - [anon_sym_readonly] = ACTIONS(437), - [anon_sym_local] = ACTIONS(437), - [anon_sym_unset] = ACTIONS(439), - [anon_sym_unsetenv] = ACTIONS(439), - [anon_sym_AMP_GT] = ACTIONS(407), - [anon_sym_AMP_GT_GT] = ACTIONS(409), - [anon_sym_LT_AMP] = ACTIONS(407), - [anon_sym_GT_AMP] = ACTIONS(407), - [anon_sym_GT_PIPE] = ACTIONS(409), - [anon_sym_LT_AMP_DASH] = ACTIONS(441), - [anon_sym_GT_AMP_DASH] = ACTIONS(441), - [anon_sym_LT_LT_LT] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_DOLLAR] = ACTIONS(449), - [sym__special_character] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [sym_raw_string] = ACTIONS(455), - [sym_ansi_c_string] = ACTIONS(455), - [aux_sym_number_token1] = ACTIONS(457), - [aux_sym_number_token2] = ACTIONS(459), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(461), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(463), - [anon_sym_BQUOTE] = ACTIONS(465), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(467), - [anon_sym_LT_LPAREN] = ACTIONS(469), - [anon_sym_GT_LPAREN] = ACTIONS(469), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(471), - [sym_variable_name] = ACTIONS(473), - [sym_test_operator] = ACTIONS(475), - [sym__brace_start] = ACTIONS(477), - }, - [STATE(424)] = { - [sym__statement_not_pipeline] = STATE(6592), - [sym_redirected_statement] = STATE(4361), - [sym_for_statement] = STATE(4361), - [sym_c_style_for_statement] = STATE(4361), - [sym_while_statement] = STATE(4140), - [sym_if_statement] = STATE(4140), - [sym_case_statement] = STATE(4361), - [sym_function_definition] = STATE(4361), - [sym_compound_statement] = STATE(4361), - [sym_subshell] = STATE(4361), - [sym_pipeline] = STATE(4710), - [sym_list] = STATE(4361), - [sym_negated_command] = STATE(4361), - [sym_test_command] = STATE(4361), - [sym_declaration_command] = STATE(4361), - [sym_unset_command] = STATE(4361), - [sym_command] = STATE(4361), - [sym_command_name] = STATE(526), - [sym_variable_assignment] = STATE(814), - [sym_variable_assignments] = STATE(4361), - [sym_subscript] = STATE(6673), - [sym_file_redirect] = STATE(1823), - [sym_herestring_redirect] = STATE(1824), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1220), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym__statements_repeat1] = STATE(415), - [aux_sym_redirected_statement_repeat2] = STATE(4217), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1089), - [sym_word] = ACTIONS(661), - [anon_sym_for] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_LPAREN_LPAREN] = ACTIONS(667), - [anon_sym_LT] = ACTIONS(669), - [anon_sym_GT] = ACTIONS(669), - [anon_sym_GT_GT] = ACTIONS(671), - [anon_sym_LPAREN] = ACTIONS(673), - [anon_sym_while] = ACTIONS(675), - [anon_sym_until] = ACTIONS(675), - [anon_sym_if] = ACTIONS(677), - [anon_sym_case] = ACTIONS(679), - [anon_sym_function] = ACTIONS(683), - [anon_sym_LBRACE] = ACTIONS(685), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(689), - [anon_sym_LBRACK_LBRACK] = ACTIONS(691), - [anon_sym_declare] = ACTIONS(693), - [anon_sym_typeset] = ACTIONS(693), - [anon_sym_export] = ACTIONS(693), - [anon_sym_readonly] = ACTIONS(693), - [anon_sym_local] = ACTIONS(693), - [anon_sym_unset] = ACTIONS(695), - [anon_sym_unsetenv] = ACTIONS(695), - [anon_sym_AMP_GT] = ACTIONS(669), - [anon_sym_AMP_GT_GT] = ACTIONS(671), - [anon_sym_LT_AMP] = ACTIONS(669), - [anon_sym_GT_AMP] = ACTIONS(669), - [anon_sym_GT_PIPE] = ACTIONS(671), - [anon_sym_LT_AMP_DASH] = ACTIONS(697), - [anon_sym_GT_AMP_DASH] = ACTIONS(697), - [anon_sym_LT_LT_LT] = ACTIONS(699), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(701), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(703), - [anon_sym_DOLLAR] = ACTIONS(705), - [sym__special_character] = ACTIONS(707), - [anon_sym_DQUOTE] = ACTIONS(709), - [sym_raw_string] = ACTIONS(711), - [sym_ansi_c_string] = ACTIONS(711), - [aux_sym_number_token1] = ACTIONS(713), - [aux_sym_number_token2] = ACTIONS(715), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(717), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(719), - [anon_sym_BQUOTE] = ACTIONS(721), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(723), - [anon_sym_LT_LPAREN] = ACTIONS(725), - [anon_sym_GT_LPAREN] = ACTIONS(725), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(727), - [sym_variable_name] = ACTIONS(729), - [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), - [sym_word] = ACTIONS(7), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(13), - [anon_sym_LT] = ACTIONS(15), - [anon_sym_GT] = ACTIONS(15), - [anon_sym_GT_GT] = ACTIONS(17), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(37), - [anon_sym_typeset] = ACTIONS(37), - [anon_sym_export] = ACTIONS(37), - [anon_sym_readonly] = ACTIONS(37), - [anon_sym_local] = ACTIONS(37), - [anon_sym_unset] = ACTIONS(39), - [anon_sym_unsetenv] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(15), - [anon_sym_AMP_GT_GT] = ACTIONS(17), - [anon_sym_LT_AMP] = ACTIONS(15), - [anon_sym_GT_AMP] = ACTIONS(15), - [anon_sym_GT_PIPE] = ACTIONS(17), - [anon_sym_LT_AMP_DASH] = ACTIONS(41), - [anon_sym_GT_AMP_DASH] = ACTIONS(41), - [anon_sym_LT_LT_LT] = ACTIONS(43), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), - [anon_sym_DOLLAR] = ACTIONS(49), - [sym__special_character] = ACTIONS(51), - [anon_sym_DQUOTE] = ACTIONS(53), - [sym_raw_string] = ACTIONS(55), - [sym_ansi_c_string] = ACTIONS(55), - [aux_sym_number_token1] = ACTIONS(57), - [aux_sym_number_token2] = ACTIONS(59), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), - [anon_sym_LT_LPAREN] = ACTIONS(69), - [anon_sym_GT_LPAREN] = ACTIONS(69), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(73), - [sym_variable_name] = ACTIONS(75), - [sym_test_operator] = ACTIONS(77), - [sym__brace_start] = ACTIONS(79), - }, - [STATE(426)] = { - [aux_sym__terminated_statement] = STATE(107), - [sym__statement_not_pipeline] = STATE(6583), - [sym_redirected_statement] = STATE(4899), - [sym_for_statement] = STATE(4899), - [sym_c_style_for_statement] = STATE(4899), - [sym_while_statement] = STATE(4335), - [sym_if_statement] = STATE(4335), - [sym_case_statement] = STATE(4899), - [sym_function_definition] = STATE(4899), - [sym_compound_statement] = STATE(4899), - [sym_subshell] = STATE(4899), - [sym_pipeline] = STATE(5095), - [sym_list] = STATE(4899), - [sym_negated_command] = STATE(4899), - [sym_test_command] = STATE(4899), - [sym_declaration_command] = STATE(4899), - [sym_unset_command] = STATE(4899), - [sym_command] = STATE(4899), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1097), - [sym_variable_assignments] = STATE(4899), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4529), - [aux_sym_command_repeat1] = STATE(970), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(284), - [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(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), - [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(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), - [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(429)] = { - [sym__statement_not_pipeline] = STATE(6604), - [sym_redirected_statement] = STATE(5115), - [sym_for_statement] = STATE(5115), - [sym_c_style_for_statement] = STATE(5115), - [sym_while_statement] = STATE(4947), - [sym_if_statement] = STATE(4947), - [sym_case_statement] = STATE(5115), - [sym_function_definition] = STATE(5115), - [sym_compound_statement] = STATE(5115), - [sym_subshell] = STATE(5115), - [sym_pipeline] = STATE(5416), - [sym_list] = STATE(5115), - [sym_negated_command] = STATE(5115), - [sym_test_command] = STATE(5115), - [sym_declaration_command] = STATE(5115), - [sym_unset_command] = STATE(5115), - [sym_command] = STATE(5115), - [sym_command_name] = STATE(581), - [sym_variable_assignment] = STATE(1602), - [sym_variable_assignments] = STATE(5115), - [sym_subscript] = STATE(6679), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1692), - [sym_brace_expression] = STATE(1692), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1692), - [sym_translated_string] = STATE(1692), - [sym_number] = STATE(1692), - [sym_simple_expansion] = STATE(1692), - [sym_expansion] = STATE(1692), - [sym_command_substitution] = STATE(1692), - [sym_process_substitution] = STATE(1692), - [aux_sym_redirected_statement_repeat2] = STATE(5057), - [aux_sym_command_repeat1] = STATE(974), - [aux_sym__literal_repeat1] = STATE(1237), + [sym__statement_not_pipeline] = STATE(6285), + [sym_redirected_statement] = STATE(5051), + [sym_for_statement] = STATE(5051), + [sym_c_style_for_statement] = STATE(5051), + [sym_while_statement] = STATE(4804), + [sym_if_statement] = STATE(4804), + [sym_case_statement] = STATE(5051), + [sym_function_definition] = STATE(5051), + [sym_compound_statement] = STATE(5051), + [sym_subshell] = STATE(5051), + [sym_pipeline] = STATE(5052), + [sym_list] = STATE(5051), + [sym_negated_command] = STATE(5051), + [sym_test_command] = STATE(5051), + [sym_declaration_command] = STATE(5051), + [sym_unset_command] = STATE(5051), + [sym_command] = STATE(5051), + [sym_command_name] = STATE(568), + [sym_variable_assignment] = STATE(1630), + [sym_variable_assignments] = STATE(5051), + [sym_subscript] = STATE(6362), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(1543), + [sym_brace_expression] = STATE(1543), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(1543), + [sym_translated_string] = STATE(1543), + [sym_number] = STATE(1543), + [sym_simple_expansion] = STATE(1543), + [sym_expansion] = STATE(1543), + [sym_command_substitution] = STATE(1543), + [sym_process_substitution] = STATE(1543), + [aux_sym_redirected_statement_repeat2] = STATE(4838), + [aux_sym_command_repeat1] = STATE(886), + [aux_sym__literal_repeat1] = STATE(1086), [sym_word] = ACTIONS(997), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -68561,44 +66543,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(1023), [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(418)] = { + [sym__statement_not_pipeline] = STATE(4411), + [sym_redirected_statement] = STATE(4411), + [sym_for_statement] = STATE(4411), + [sym_c_style_for_statement] = STATE(4411), + [sym_while_statement] = STATE(4317), + [sym_if_statement] = STATE(4317), + [sym_case_statement] = STATE(4411), + [sym_function_definition] = STATE(4411), + [sym_compound_statement] = STATE(4411), + [sym_subshell] = STATE(4411), + [sym_pipeline] = STATE(5276), + [sym_list] = STATE(4411), + [sym_negated_command] = STATE(4411), + [sym_test_command] = STATE(4411), + [sym_declaration_command] = STATE(4411), + [sym_unset_command] = STATE(4411), + [sym_command] = STATE(4411), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(1002), + [sym_variable_assignments] = STATE(4411), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(1904), + [sym_arithmetic_expansion] = STATE(827), + [sym_brace_expression] = STATE(827), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(827), + [sym_translated_string] = STATE(827), + [sym_number] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [aux_sym_redirected_statement_repeat2] = STATE(4290), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(1086), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -68612,7 +66594,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(89), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(771), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(93), @@ -68633,10 +66615,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), + [sym__special_character] = ACTIONS(773), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(775), + [sym_ansi_c_string] = ACTIONS(775), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -68648,1468 +66630,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(133), [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), + [sym_test_operator] = ACTIONS(777), [sym__brace_start] = ACTIONS(340), }, - [STATE(431)] = { - [sym__statement_not_pipeline] = STATE(6520), - [sym_redirected_statement] = STATE(5371), - [sym_for_statement] = STATE(5371), - [sym_c_style_for_statement] = STATE(5371), - [sym_while_statement] = STATE(5061), - [sym_if_statement] = STATE(5061), - [sym_case_statement] = STATE(5371), - [sym_function_definition] = STATE(5371), - [sym_compound_statement] = STATE(5371), - [sym_subshell] = STATE(5371), - [sym_pipeline] = STATE(5373), - [sym_list] = STATE(5371), - [sym_negated_command] = STATE(5371), - [sym_test_command] = STATE(5371), - [sym_declaration_command] = STATE(5371), - [sym_unset_command] = STATE(5371), - [sym_command] = STATE(5371), - [sym_command_name] = STATE(639), - [sym_variable_assignment] = STATE(1737), - [sym_variable_assignments] = STATE(5371), - [sym_subscript] = STATE(6641), - [sym_file_redirect] = STATE(2929), - [sym_herestring_redirect] = STATE(2930), - [sym_arithmetic_expansion] = STATE(1879), - [sym_brace_expression] = STATE(1879), - [sym_concatenation] = STATE(2412), - [sym_string] = STATE(1879), - [sym_translated_string] = STATE(1879), - [sym_number] = STATE(1879), - [sym_simple_expansion] = STATE(1879), - [sym_expansion] = STATE(1879), - [sym_command_substitution] = STATE(1879), - [sym_process_substitution] = STATE(1879), - [aux_sym_redirected_statement_repeat2] = STATE(5222), - [aux_sym_command_repeat1] = STATE(880), - [aux_sym__literal_repeat1] = STATE(2307), - [sym_word] = ACTIONS(1025), - [anon_sym_for] = ACTIONS(143), - [anon_sym_select] = ACTIONS(145), - [anon_sym_LPAREN_LPAREN] = ACTIONS(147), - [anon_sym_LT] = ACTIONS(1027), - [anon_sym_GT] = ACTIONS(1027), - [anon_sym_GT_GT] = ACTIONS(1029), - [anon_sym_LPAREN] = ACTIONS(1031), - [anon_sym_while] = ACTIONS(155), - [anon_sym_until] = ACTIONS(155), - [anon_sym_if] = ACTIONS(157), - [anon_sym_case] = ACTIONS(159), - [anon_sym_function] = ACTIONS(161), - [anon_sym_LBRACE] = ACTIONS(163), - [anon_sym_BANG] = ACTIONS(1033), - [anon_sym_LBRACK] = ACTIONS(167), - [anon_sym_LBRACK_LBRACK] = ACTIONS(171), - [anon_sym_declare] = ACTIONS(173), - [anon_sym_typeset] = ACTIONS(173), - [anon_sym_export] = ACTIONS(173), - [anon_sym_readonly] = ACTIONS(173), - [anon_sym_local] = ACTIONS(173), - [anon_sym_unset] = ACTIONS(175), - [anon_sym_unsetenv] = ACTIONS(175), - [anon_sym_AMP_GT] = ACTIONS(1027), - [anon_sym_AMP_GT_GT] = ACTIONS(1029), - [anon_sym_LT_AMP] = ACTIONS(1027), - [anon_sym_GT_AMP] = ACTIONS(1027), - [anon_sym_GT_PIPE] = ACTIONS(1029), - [anon_sym_LT_AMP_DASH] = ACTIONS(1035), - [anon_sym_GT_AMP_DASH] = ACTIONS(1035), - [anon_sym_LT_LT_LT] = ACTIONS(1037), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1039), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1041), - [anon_sym_DOLLAR] = ACTIONS(1043), - [sym__special_character] = ACTIONS(1045), - [anon_sym_DQUOTE] = ACTIONS(1047), - [sym_raw_string] = ACTIONS(1049), - [sym_ansi_c_string] = ACTIONS(1049), - [aux_sym_number_token1] = ACTIONS(1051), - [aux_sym_number_token2] = ACTIONS(1053), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1055), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1057), - [anon_sym_BQUOTE] = ACTIONS(1059), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1061), - [anon_sym_LT_LPAREN] = ACTIONS(1063), - [anon_sym_GT_LPAREN] = ACTIONS(1063), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1065), - [sym_variable_name] = ACTIONS(215), - [sym_test_operator] = ACTIONS(1067), - [sym__brace_start] = ACTIONS(1069), - }, - [STATE(432)] = { - [sym__statement_not_pipeline] = STATE(6604), - [sym_redirected_statement] = STATE(5170), - [sym_for_statement] = STATE(5170), - [sym_c_style_for_statement] = STATE(5170), - [sym_while_statement] = STATE(4999), - [sym_if_statement] = STATE(4999), - [sym_case_statement] = STATE(5170), - [sym_function_definition] = STATE(5170), - [sym_compound_statement] = STATE(5170), - [sym_subshell] = STATE(5170), - [sym_pipeline] = STATE(5412), - [sym_list] = STATE(5170), - [sym_negated_command] = STATE(5170), - [sym_test_command] = STATE(5170), - [sym_declaration_command] = STATE(5170), - [sym_unset_command] = STATE(5170), - [sym_command] = STATE(5170), - [sym_command_name] = STATE(581), - [sym_variable_assignment] = STATE(1601), - [sym_variable_assignments] = STATE(5170), - [sym_subscript] = STATE(6679), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(1692), - [sym_brace_expression] = STATE(1692), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1692), - [sym_translated_string] = STATE(1692), - [sym_number] = STATE(1692), - [sym_simple_expansion] = STATE(1692), - [sym_expansion] = STATE(1692), - [sym_command_substitution] = STATE(1692), - [sym_process_substitution] = STATE(1692), - [aux_sym_redirected_statement_repeat2] = STATE(5057), - [aux_sym_command_repeat1] = STATE(974), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(997), - [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(433)] = { - [sym__statement_not_pipeline] = STATE(5509), - [sym_redirected_statement] = STATE(5509), - [sym_for_statement] = STATE(5509), - [sym_c_style_for_statement] = STATE(5509), - [sym_while_statement] = STATE(5101), - [sym_if_statement] = STATE(5101), - [sym_case_statement] = STATE(5509), - [sym_function_definition] = STATE(5509), - [sym_compound_statement] = STATE(5509), - [sym_subshell] = STATE(5509), - [sym_pipeline] = STATE(5491), - [sym_list] = STATE(5509), - [sym_negated_command] = STATE(5509), - [sym_test_command] = STATE(5509), - [sym_declaration_command] = STATE(5509), - [sym_unset_command] = STATE(5509), - [sym_command] = STATE(5509), - [sym_command_name] = STATE(639), - [sym_variable_assignment] = STATE(1751), - [sym_variable_assignments] = STATE(5509), - [sym_subscript] = STATE(6641), - [sym_file_redirect] = STATE(2929), - [sym_herestring_redirect] = STATE(2930), - [sym_arithmetic_expansion] = STATE(1879), - [sym_brace_expression] = STATE(1879), - [sym_concatenation] = STATE(2412), - [sym_string] = STATE(1879), - [sym_translated_string] = STATE(1879), - [sym_number] = STATE(1879), - [sym_simple_expansion] = STATE(1879), - [sym_expansion] = STATE(1879), - [sym_command_substitution] = STATE(1879), - [sym_process_substitution] = STATE(1879), - [aux_sym_redirected_statement_repeat2] = STATE(5222), - [aux_sym_command_repeat1] = STATE(880), - [aux_sym__literal_repeat1] = STATE(2307), - [sym_word] = ACTIONS(1025), - [anon_sym_for] = ACTIONS(143), - [anon_sym_select] = ACTIONS(145), - [anon_sym_LPAREN_LPAREN] = ACTIONS(147), - [anon_sym_LT] = ACTIONS(1027), - [anon_sym_GT] = ACTIONS(1027), - [anon_sym_GT_GT] = ACTIONS(1029), - [anon_sym_LPAREN] = ACTIONS(1031), - [anon_sym_while] = ACTIONS(155), - [anon_sym_until] = ACTIONS(155), - [anon_sym_if] = ACTIONS(157), - [anon_sym_case] = ACTIONS(159), - [anon_sym_function] = ACTIONS(161), - [anon_sym_LBRACE] = ACTIONS(163), - [anon_sym_BANG] = ACTIONS(1033), - [anon_sym_LBRACK] = ACTIONS(167), - [anon_sym_LBRACK_LBRACK] = ACTIONS(171), - [anon_sym_declare] = ACTIONS(173), - [anon_sym_typeset] = ACTIONS(173), - [anon_sym_export] = ACTIONS(173), - [anon_sym_readonly] = ACTIONS(173), - [anon_sym_local] = ACTIONS(173), - [anon_sym_unset] = ACTIONS(175), - [anon_sym_unsetenv] = ACTIONS(175), - [anon_sym_AMP_GT] = ACTIONS(1027), - [anon_sym_AMP_GT_GT] = ACTIONS(1029), - [anon_sym_LT_AMP] = ACTIONS(1027), - [anon_sym_GT_AMP] = ACTIONS(1027), - [anon_sym_GT_PIPE] = ACTIONS(1029), - [anon_sym_LT_AMP_DASH] = ACTIONS(1035), - [anon_sym_GT_AMP_DASH] = ACTIONS(1035), - [anon_sym_LT_LT_LT] = ACTIONS(1037), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1039), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1041), - [anon_sym_DOLLAR] = ACTIONS(1043), - [sym__special_character] = ACTIONS(1045), - [anon_sym_DQUOTE] = ACTIONS(1047), - [sym_raw_string] = ACTIONS(1049), - [sym_ansi_c_string] = ACTIONS(1049), - [aux_sym_number_token1] = ACTIONS(1051), - [aux_sym_number_token2] = ACTIONS(1053), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1055), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1057), - [anon_sym_BQUOTE] = ACTIONS(1059), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1061), - [anon_sym_LT_LPAREN] = ACTIONS(1063), - [anon_sym_GT_LPAREN] = ACTIONS(1063), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1065), - [sym_variable_name] = ACTIONS(215), - [sym_test_operator] = ACTIONS(1067), - [sym__brace_start] = ACTIONS(1069), - }, - [STATE(434)] = { - [sym__statement_not_pipeline] = STATE(4562), - [sym_redirected_statement] = STATE(4562), - [sym_for_statement] = STATE(4562), - [sym_c_style_for_statement] = STATE(4562), - [sym_while_statement] = STATE(4211), - [sym_if_statement] = STATE(4211), - [sym_case_statement] = STATE(4562), - [sym_function_definition] = STATE(4562), - [sym_compound_statement] = STATE(4562), - [sym_subshell] = STATE(4562), - [sym_pipeline] = STATE(5501), - [sym_list] = STATE(4562), - [sym_negated_command] = STATE(4562), - [sym_test_command] = STATE(4562), - [sym_declaration_command] = STATE(4562), - [sym_unset_command] = STATE(4562), - [sym_command] = STATE(4562), - [sym_command_name] = STATE(538), - [sym_variable_assignment] = STATE(1092), - [sym_variable_assignments] = STATE(4562), - [sym_subscript] = STATE(6650), - [sym_file_redirect] = STATE(2268), - [sym_herestring_redirect] = STATE(2269), - [sym_arithmetic_expansion] = STATE(1126), - [sym_brace_expression] = STATE(1126), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(1126), - [sym_translated_string] = STATE(1126), - [sym_number] = STATE(1126), - [sym_simple_expansion] = STATE(1126), - [sym_expansion] = STATE(1126), - [sym_command_substitution] = STATE(1126), - [sym_process_substitution] = STATE(1126), - [aux_sym_redirected_statement_repeat2] = STATE(4363), - [aux_sym_command_repeat1] = STATE(938), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(867), - [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(869), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = 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_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__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), - [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(869), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_typeset] = ACTIONS(873), - [anon_sym_export] = 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_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(436)] = { - [sym__statement_not_pipeline] = STATE(4525), - [sym_redirected_statement] = STATE(4525), - [sym_for_statement] = STATE(4525), - [sym_c_style_for_statement] = STATE(4525), - [sym_while_statement] = STATE(3904), - [sym_if_statement] = STATE(3904), - [sym_case_statement] = STATE(4525), - [sym_function_definition] = STATE(4525), - [sym_compound_statement] = STATE(4525), - [sym_subshell] = STATE(4525), - [sym_pipeline] = STATE(5510), - [sym_list] = STATE(4525), - [sym_negated_command] = STATE(4525), - [sym_test_command] = STATE(4525), - [sym_declaration_command] = STATE(4525), - [sym_unset_command] = STATE(4525), - [sym_command] = STATE(4525), - [sym_command_name] = STATE(524), - [sym_variable_assignment] = STATE(800), - [sym_variable_assignments] = STATE(4525), - [sym_subscript] = STATE(6697), - [sym_file_redirect] = STATE(1608), - [sym_herestring_redirect] = STATE(1609), - [sym_arithmetic_expansion] = STATE(781), - [sym_brace_expression] = STATE(781), - [sym_concatenation] = STATE(1056), - [sym_string] = STATE(781), - [sym_translated_string] = STATE(781), - [sym_number] = STATE(781), - [sym_simple_expansion] = STATE(781), - [sym_expansion] = STATE(781), - [sym_command_substitution] = STATE(781), - [sym_process_substitution] = STATE(781), - [aux_sym_redirected_statement_repeat2] = STATE(4152), - [aux_sym_command_repeat1] = STATE(942), - [aux_sym__literal_repeat1] = STATE(943), - [sym_word] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_LT] = ACTIONS(407), - [anon_sym_GT] = ACTIONS(407), - [anon_sym_GT_GT] = ACTIONS(409), - [anon_sym_LPAREN] = ACTIONS(411), - [anon_sym_while] = ACTIONS(413), - [anon_sym_until] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_case] = ACTIONS(417), - [anon_sym_function] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(429), - [anon_sym_BANG] = ACTIONS(431), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACK_LBRACK] = ACTIONS(435), - [anon_sym_declare] = ACTIONS(437), - [anon_sym_typeset] = ACTIONS(437), - [anon_sym_export] = ACTIONS(437), - [anon_sym_readonly] = ACTIONS(437), - [anon_sym_local] = ACTIONS(437), - [anon_sym_unset] = ACTIONS(439), - [anon_sym_unsetenv] = ACTIONS(439), - [anon_sym_AMP_GT] = ACTIONS(407), - [anon_sym_AMP_GT_GT] = ACTIONS(409), - [anon_sym_LT_AMP] = ACTIONS(407), - [anon_sym_GT_AMP] = ACTIONS(407), - [anon_sym_GT_PIPE] = ACTIONS(409), - [anon_sym_LT_AMP_DASH] = ACTIONS(441), - [anon_sym_GT_AMP_DASH] = ACTIONS(441), - [anon_sym_LT_LT_LT] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_DOLLAR] = ACTIONS(449), - [sym__special_character] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [sym_raw_string] = ACTIONS(455), - [sym_ansi_c_string] = ACTIONS(455), - [aux_sym_number_token1] = ACTIONS(457), - [aux_sym_number_token2] = ACTIONS(459), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(461), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(463), - [anon_sym_BQUOTE] = ACTIONS(465), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(467), - [anon_sym_LT_LPAREN] = ACTIONS(469), - [anon_sym_GT_LPAREN] = ACTIONS(469), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(471), - [sym_variable_name] = ACTIONS(473), - [sym_test_operator] = ACTIONS(475), - [sym__brace_start] = ACTIONS(477), - }, - [STATE(437)] = { - [sym__statement_not_pipeline] = STATE(6573), - [sym_redirected_statement] = STATE(4238), - [sym_for_statement] = STATE(4238), - [sym_c_style_for_statement] = STATE(4238), - [sym_while_statement] = STATE(3800), - [sym_if_statement] = STATE(3800), - [sym_case_statement] = STATE(4238), - [sym_function_definition] = STATE(4238), - [sym_compound_statement] = STATE(4238), - [sym_subshell] = STATE(4238), - [sym_pipeline] = STATE(4233), - [sym_list] = STATE(4238), - [sym_negated_command] = STATE(4238), - [sym_test_command] = STATE(4238), - [sym_declaration_command] = STATE(4238), - [sym_unset_command] = STATE(4238), - [sym_command] = STATE(4238), - [sym_command_name] = STATE(524), - [sym_variable_assignment] = STATE(782), - [sym_variable_assignments] = STATE(4238), - [sym_subscript] = STATE(6697), - [sym_file_redirect] = STATE(1608), - [sym_herestring_redirect] = STATE(1609), - [sym_arithmetic_expansion] = STATE(781), - [sym_brace_expression] = STATE(781), - [sym_concatenation] = STATE(1056), - [sym_string] = STATE(781), - [sym_translated_string] = STATE(781), - [sym_number] = STATE(781), - [sym_simple_expansion] = STATE(781), - [sym_expansion] = STATE(781), - [sym_command_substitution] = STATE(781), - [sym_process_substitution] = STATE(781), - [aux_sym_redirected_statement_repeat2] = STATE(4152), - [aux_sym_command_repeat1] = STATE(942), - [aux_sym__literal_repeat1] = STATE(943), - [sym_word] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_LT] = ACTIONS(407), - [anon_sym_GT] = ACTIONS(407), - [anon_sym_GT_GT] = ACTIONS(409), - [anon_sym_LPAREN] = ACTIONS(411), - [anon_sym_while] = ACTIONS(413), - [anon_sym_until] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_case] = ACTIONS(417), - [anon_sym_function] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(429), - [anon_sym_BANG] = ACTIONS(431), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACK_LBRACK] = ACTIONS(435), - [anon_sym_declare] = ACTIONS(437), - [anon_sym_typeset] = ACTIONS(437), - [anon_sym_export] = ACTIONS(437), - [anon_sym_readonly] = ACTIONS(437), - [anon_sym_local] = ACTIONS(437), - [anon_sym_unset] = ACTIONS(439), - [anon_sym_unsetenv] = ACTIONS(439), - [anon_sym_AMP_GT] = ACTIONS(407), - [anon_sym_AMP_GT_GT] = ACTIONS(409), - [anon_sym_LT_AMP] = ACTIONS(407), - [anon_sym_GT_AMP] = ACTIONS(407), - [anon_sym_GT_PIPE] = ACTIONS(409), - [anon_sym_LT_AMP_DASH] = ACTIONS(441), - [anon_sym_GT_AMP_DASH] = ACTIONS(441), - [anon_sym_LT_LT_LT] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_DOLLAR] = ACTIONS(449), - [sym__special_character] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(453), - [sym_raw_string] = ACTIONS(455), - [sym_ansi_c_string] = ACTIONS(455), - [aux_sym_number_token1] = ACTIONS(457), - [aux_sym_number_token2] = ACTIONS(459), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(461), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(463), - [anon_sym_BQUOTE] = ACTIONS(465), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(467), - [anon_sym_LT_LPAREN] = ACTIONS(469), - [anon_sym_GT_LPAREN] = ACTIONS(469), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(471), - [sym_variable_name] = ACTIONS(473), - [sym_test_operator] = ACTIONS(475), - [sym__brace_start] = ACTIONS(477), - }, - [STATE(438)] = { - [sym__statement_not_pipeline] = STATE(4808), - [sym_redirected_statement] = STATE(4808), - [sym_for_statement] = STATE(4808), - [sym_c_style_for_statement] = STATE(4808), - [sym_while_statement] = STATE(4153), - [sym_if_statement] = STATE(4153), - [sym_case_statement] = STATE(4808), - [sym_function_definition] = STATE(4808), - [sym_compound_statement] = STATE(4808), - [sym_subshell] = STATE(4808), - [sym_pipeline] = STATE(5519), - [sym_list] = STATE(4808), - [sym_negated_command] = STATE(4808), - [sym_test_command] = STATE(4808), - [sym_declaration_command] = STATE(4808), - [sym_unset_command] = STATE(4808), - [sym_command] = STATE(4808), - [sym_command_name] = STATE(526), - [sym_variable_assignment] = STATE(860), - [sym_variable_assignments] = STATE(4808), - [sym_subscript] = STATE(6673), - [sym_file_redirect] = STATE(1823), - [sym_herestring_redirect] = STATE(1824), - [sym_arithmetic_expansion] = STATE(865), - [sym_brace_expression] = STATE(865), - [sym_concatenation] = STATE(1220), - [sym_string] = STATE(865), - [sym_translated_string] = STATE(865), - [sym_number] = STATE(865), - [sym_simple_expansion] = STATE(865), - [sym_expansion] = STATE(865), - [sym_command_substitution] = STATE(865), - [sym_process_substitution] = STATE(865), - [aux_sym_redirected_statement_repeat2] = STATE(4217), - [aux_sym_command_repeat1] = STATE(949), - [aux_sym__literal_repeat1] = STATE(1089), - [sym_word] = ACTIONS(661), - [anon_sym_for] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_LPAREN_LPAREN] = ACTIONS(667), - [anon_sym_LT] = ACTIONS(669), - [anon_sym_GT] = ACTIONS(669), - [anon_sym_GT_GT] = ACTIONS(671), - [anon_sym_LPAREN] = ACTIONS(673), - [anon_sym_while] = ACTIONS(675), - [anon_sym_until] = ACTIONS(675), - [anon_sym_if] = ACTIONS(677), - [anon_sym_case] = ACTIONS(679), - [anon_sym_function] = ACTIONS(683), - [anon_sym_LBRACE] = ACTIONS(685), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(689), - [anon_sym_LBRACK_LBRACK] = ACTIONS(691), - [anon_sym_declare] = ACTIONS(693), - [anon_sym_typeset] = ACTIONS(693), - [anon_sym_export] = ACTIONS(693), - [anon_sym_readonly] = ACTIONS(693), - [anon_sym_local] = ACTIONS(693), - [anon_sym_unset] = ACTIONS(695), - [anon_sym_unsetenv] = ACTIONS(695), - [anon_sym_AMP_GT] = ACTIONS(669), - [anon_sym_AMP_GT_GT] = ACTIONS(671), - [anon_sym_LT_AMP] = ACTIONS(669), - [anon_sym_GT_AMP] = ACTIONS(669), - [anon_sym_GT_PIPE] = ACTIONS(671), - [anon_sym_LT_AMP_DASH] = ACTIONS(697), - [anon_sym_GT_AMP_DASH] = ACTIONS(697), - [anon_sym_LT_LT_LT] = ACTIONS(699), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(701), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(703), - [anon_sym_DOLLAR] = ACTIONS(705), - [sym__special_character] = ACTIONS(707), - [anon_sym_DQUOTE] = ACTIONS(709), - [sym_raw_string] = ACTIONS(711), - [sym_ansi_c_string] = ACTIONS(711), - [aux_sym_number_token1] = ACTIONS(713), - [aux_sym_number_token2] = ACTIONS(715), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(717), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(719), - [anon_sym_BQUOTE] = ACTIONS(721), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(723), - [anon_sym_LT_LPAREN] = ACTIONS(725), - [anon_sym_GT_LPAREN] = ACTIONS(725), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(727), - [sym_variable_name] = ACTIONS(729), - [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), - [sym_word] = ACTIONS(661), - [anon_sym_for] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_LPAREN_LPAREN] = ACTIONS(667), - [anon_sym_LT] = ACTIONS(669), - [anon_sym_GT] = ACTIONS(669), - [anon_sym_GT_GT] = ACTIONS(671), - [anon_sym_LPAREN] = ACTIONS(673), - [anon_sym_while] = ACTIONS(675), - [anon_sym_until] = ACTIONS(675), - [anon_sym_if] = ACTIONS(677), - [anon_sym_case] = ACTIONS(679), - [anon_sym_function] = ACTIONS(683), - [anon_sym_LBRACE] = ACTIONS(685), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(689), - [anon_sym_LBRACK_LBRACK] = ACTIONS(691), - [anon_sym_declare] = ACTIONS(693), - [anon_sym_typeset] = ACTIONS(693), - [anon_sym_export] = ACTIONS(693), - [anon_sym_readonly] = ACTIONS(693), - [anon_sym_local] = ACTIONS(693), - [anon_sym_unset] = ACTIONS(695), - [anon_sym_unsetenv] = ACTIONS(695), - [anon_sym_AMP_GT] = ACTIONS(669), - [anon_sym_AMP_GT_GT] = ACTIONS(671), - [anon_sym_LT_AMP] = ACTIONS(669), - [anon_sym_GT_AMP] = ACTIONS(669), - [anon_sym_GT_PIPE] = ACTIONS(671), - [anon_sym_LT_AMP_DASH] = ACTIONS(697), - [anon_sym_GT_AMP_DASH] = ACTIONS(697), - [anon_sym_LT_LT_LT] = ACTIONS(699), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(701), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(703), - [anon_sym_DOLLAR] = ACTIONS(705), - [sym__special_character] = ACTIONS(707), - [anon_sym_DQUOTE] = ACTIONS(709), - [sym_raw_string] = ACTIONS(711), - [sym_ansi_c_string] = ACTIONS(711), - [aux_sym_number_token1] = ACTIONS(713), - [aux_sym_number_token2] = ACTIONS(715), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(717), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(719), - [anon_sym_BQUOTE] = ACTIONS(721), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(723), - [anon_sym_LT_LPAREN] = ACTIONS(725), - [anon_sym_GT_LPAREN] = ACTIONS(725), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(727), - [sym_variable_name] = ACTIONS(729), - [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), - [sym_word] = ACTIONS(7), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(13), - [anon_sym_LT] = ACTIONS(15), - [anon_sym_GT] = ACTIONS(15), - [anon_sym_GT_GT] = ACTIONS(17), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(37), - [anon_sym_typeset] = ACTIONS(37), - [anon_sym_export] = ACTIONS(37), - [anon_sym_readonly] = ACTIONS(37), - [anon_sym_local] = ACTIONS(37), - [anon_sym_unset] = ACTIONS(39), - [anon_sym_unsetenv] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(15), - [anon_sym_AMP_GT_GT] = ACTIONS(17), - [anon_sym_LT_AMP] = ACTIONS(15), - [anon_sym_GT_AMP] = ACTIONS(15), - [anon_sym_GT_PIPE] = ACTIONS(17), - [anon_sym_LT_AMP_DASH] = ACTIONS(41), - [anon_sym_GT_AMP_DASH] = ACTIONS(41), - [anon_sym_LT_LT_LT] = ACTIONS(43), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), - [anon_sym_DOLLAR] = ACTIONS(49), - [sym__special_character] = ACTIONS(51), - [anon_sym_DQUOTE] = ACTIONS(53), - [sym_raw_string] = ACTIONS(55), - [sym_ansi_c_string] = ACTIONS(55), - [aux_sym_number_token1] = ACTIONS(57), - [aux_sym_number_token2] = ACTIONS(59), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), - [anon_sym_LT_LPAREN] = ACTIONS(69), - [anon_sym_GT_LPAREN] = ACTIONS(69), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(73), - [sym_variable_name] = ACTIONS(75), - [sym_test_operator] = ACTIONS(77), - [sym__brace_start] = ACTIONS(79), - }, - [STATE(441)] = { - [sym__statement_not_pipeline] = STATE(6618), - [sym_redirected_statement] = STATE(4587), - [sym_for_statement] = STATE(4587), - [sym_c_style_for_statement] = STATE(4587), - [sym_while_statement] = STATE(4313), - [sym_if_statement] = STATE(4313), - [sym_case_statement] = STATE(4587), - [sym_function_definition] = STATE(4587), - [sym_compound_statement] = STATE(4587), - [sym_subshell] = STATE(4587), - [sym_pipeline] = STATE(4597), - [sym_list] = STATE(4587), - [sym_negated_command] = STATE(4587), - [sym_test_command] = STATE(4587), - [sym_declaration_command] = STATE(4587), - [sym_unset_command] = STATE(4587), - [sym_command] = STATE(4587), - [sym_command_name] = STATE(528), - [sym_variable_assignment] = STATE(939), - [sym_variable_assignments] = STATE(4587), - [sym_subscript] = STATE(6655), - [sym_file_redirect] = STATE(2125), - [sym_herestring_redirect] = STATE(2207), - [sym_arithmetic_expansion] = STATE(944), - [sym_brace_expression] = STATE(944), - [sym_concatenation] = STATE(1431), - [sym_string] = STATE(944), - [sym_translated_string] = STATE(944), - [sym_number] = STATE(944), - [sym_simple_expansion] = STATE(944), - [sym_expansion] = STATE(944), - [sym_command_substitution] = STATE(944), - [sym_process_substitution] = STATE(944), - [aux_sym_redirected_statement_repeat2] = STATE(4333), - [aux_sym_command_repeat1] = STATE(937), - [aux_sym__literal_repeat1] = STATE(1181), - [sym_word] = ACTIONS(7), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(13), - [anon_sym_LT] = ACTIONS(15), - [anon_sym_GT] = ACTIONS(15), - [anon_sym_GT_GT] = ACTIONS(17), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(37), - [anon_sym_typeset] = ACTIONS(37), - [anon_sym_export] = ACTIONS(37), - [anon_sym_readonly] = ACTIONS(37), - [anon_sym_local] = ACTIONS(37), - [anon_sym_unset] = ACTIONS(39), - [anon_sym_unsetenv] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(15), - [anon_sym_AMP_GT_GT] = ACTIONS(17), - [anon_sym_LT_AMP] = ACTIONS(15), - [anon_sym_GT_AMP] = ACTIONS(15), - [anon_sym_GT_PIPE] = ACTIONS(17), - [anon_sym_LT_AMP_DASH] = ACTIONS(41), - [anon_sym_GT_AMP_DASH] = ACTIONS(41), - [anon_sym_LT_LT_LT] = ACTIONS(43), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), - [anon_sym_DOLLAR] = ACTIONS(49), - [sym__special_character] = ACTIONS(51), - [anon_sym_DQUOTE] = ACTIONS(53), - [sym_raw_string] = ACTIONS(55), - [sym_ansi_c_string] = ACTIONS(55), - [aux_sym_number_token1] = ACTIONS(57), - [aux_sym_number_token2] = ACTIONS(59), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), - [anon_sym_LT_LPAREN] = ACTIONS(69), - [anon_sym_GT_LPAREN] = ACTIONS(69), - [sym_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_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(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), - [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(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), - [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(446)] = { - [sym__statement_not_pipeline] = STATE(4562), - [sym_redirected_statement] = STATE(4562), - [sym_for_statement] = STATE(4562), - [sym_c_style_for_statement] = STATE(4562), - [sym_while_statement] = STATE(4172), - [sym_if_statement] = STATE(4172), - [sym_case_statement] = STATE(4562), - [sym_function_definition] = STATE(4562), - [sym_compound_statement] = STATE(4562), - [sym_subshell] = STATE(4562), - [sym_pipeline] = STATE(5458), - [sym_list] = STATE(4562), - [sym_negated_command] = STATE(4562), - [sym_test_command] = STATE(4562), - [sym_declaration_command] = STATE(4562), - [sym_unset_command] = STATE(4562), - [sym_command] = STATE(4562), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(884), - [sym_variable_assignments] = STATE(4562), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(2018), - [sym_herestring_redirect] = STATE(2019), - [sym_arithmetic_expansion] = STATE(956), - [sym_brace_expression] = STATE(956), - [sym_concatenation] = STATE(1350), - [sym_string] = STATE(956), - [sym_translated_string] = STATE(956), - [sym_number] = STATE(956), - [sym_simple_expansion] = STATE(956), - [sym_expansion] = STATE(956), - [sym_command_substitution] = STATE(956), - [sym_process_substitution] = STATE(956), - [aux_sym_redirected_statement_repeat2] = STATE(4321), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(1237), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(13), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(83), - [anon_sym_GT_GT] = ACTIONS(85), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(93), - [anon_sym_typeset] = ACTIONS(93), - [anon_sym_export] = ACTIONS(93), - [anon_sym_readonly] = ACTIONS(93), - [anon_sym_local] = ACTIONS(93), - [anon_sym_unset] = ACTIONS(95), - [anon_sym_unsetenv] = ACTIONS(95), - [anon_sym_AMP_GT] = ACTIONS(83), - [anon_sym_AMP_GT_GT] = ACTIONS(85), - [anon_sym_LT_AMP] = ACTIONS(83), - [anon_sym_GT_AMP] = ACTIONS(83), - [anon_sym_GT_PIPE] = ACTIONS(85), - [anon_sym_LT_AMP_DASH] = ACTIONS(97), - [anon_sym_GT_AMP_DASH] = ACTIONS(97), - [anon_sym_LT_LT_LT] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), - [anon_sym_DOLLAR] = ACTIONS(312), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(320), - [aux_sym_number_token2] = ACTIONS(322), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(326), - [anon_sym_BQUOTE] = ACTIONS(328), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(330), - [anon_sym_LT_LPAREN] = ACTIONS(332), - [anon_sym_GT_LPAREN] = ACTIONS(332), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(133), - [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(340), - }, - [STATE(447)] = { - [sym__expression] = STATE(2624), - [sym_binary_expression] = STATE(2608), - [sym_ternary_expression] = STATE(2608), - [sym_unary_expression] = STATE(2608), - [sym_postfix_expression] = STATE(2608), - [sym_parenthesized_expression] = STATE(2608), - [sym_arithmetic_expansion] = STATE(2403), - [sym_brace_expression] = STATE(2403), - [sym_concatenation] = STATE(2608), - [sym_string] = STATE(2403), - [sym_translated_string] = STATE(2403), - [sym_number] = STATE(2403), - [sym_simple_expansion] = STATE(2403), - [sym_expansion] = STATE(2403), - [sym_command_substitution] = STATE(2403), - [sym_process_substitution] = STATE(2403), - [aux_sym__literal_repeat1] = STATE(2407), - [aux_sym_concatenation_repeat1] = STATE(2317), + [STATE(419)] = { + [sym__expression] = STATE(2569), + [sym_binary_expression] = STATE(2556), + [sym_ternary_expression] = STATE(2556), + [sym_unary_expression] = STATE(2556), + [sym_postfix_expression] = STATE(2556), + [sym_parenthesized_expression] = STATE(2556), + [sym_arithmetic_expansion] = STATE(2196), + [sym_brace_expression] = STATE(2196), + [sym_concatenation] = STATE(2556), + [sym_string] = STATE(2196), + [sym_translated_string] = STATE(2196), + [sym_number] = STATE(2196), + [sym_simple_expansion] = STATE(2196), + [sym_expansion] = STATE(2196), + [sym_command_substitution] = STATE(2196), + [sym_process_substitution] = STATE(2196), + [aux_sym__literal_repeat1] = STATE(2299), + [aux_sym_concatenation_repeat1] = STATE(2223), [sym_word] = ACTIONS(1071), [anon_sym_EQ] = ACTIONS(239), [anon_sym_PLUS_PLUS] = ACTIONS(239), @@ -70120,13 +66662,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(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), [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(568), + [anon_sym_PIPE_PIPE] = ACTIONS(568), + [anon_sym_AMP_AMP] = ACTIONS(568), [anon_sym_PIPE] = ACTIONS(239), [anon_sym_CARET] = ACTIONS(239), [anon_sym_AMP] = ACTIONS(239), @@ -70134,8 +66676,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(568), + [anon_sym_GT_EQ] = ACTIONS(568), [anon_sym_LT_LT] = ACTIONS(239), [anon_sym_GT_GT] = ACTIONS(239), [anon_sym_PLUS] = ACTIONS(239), @@ -70154,46 +66696,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(1081), [anon_sym_PLUS2] = ACTIONS(1081), [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(369), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(577), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(579), [aux_sym_concatenation_token1] = ACTIONS(1085), - [anon_sym_DOLLAR] = ACTIONS(373), + [anon_sym_DOLLAR] = ACTIONS(583), [sym__special_character] = ACTIONS(1087), - [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(587), [sym_raw_string] = ACTIONS(1089), [sym_ansi_c_string] = ACTIONS(1089), - [aux_sym_number_token1] = ACTIONS(381), - [aux_sym_number_token2] = ACTIONS(383), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(385), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(387), - [anon_sym_BQUOTE] = ACTIONS(389), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(391), - [anon_sym_LT_LPAREN] = ACTIONS(393), - [anon_sym_GT_LPAREN] = ACTIONS(393), + [aux_sym_number_token1] = ACTIONS(591), + [aux_sym_number_token2] = ACTIONS(593), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(595), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(597), + [anon_sym_BQUOTE] = ACTIONS(599), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(601), + [anon_sym_LT_LPAREN] = ACTIONS(603), + [anon_sym_GT_LPAREN] = ACTIONS(603), [sym_comment] = ACTIONS(71), [sym__concat] = ACTIONS(1091), [sym_test_operator] = ACTIONS(1093), - [sym__brace_start] = ACTIONS(397), + [sym__brace_start] = ACTIONS(607), }, - [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), + [STATE(420)] = { + [sym__expression] = STATE(2569), + [sym_binary_expression] = STATE(2556), + [sym_ternary_expression] = STATE(2556), + [sym_unary_expression] = STATE(2556), + [sym_postfix_expression] = STATE(2556), + [sym_parenthesized_expression] = STATE(2556), + [sym_arithmetic_expansion] = STATE(2196), + [sym_brace_expression] = STATE(2196), + [sym_concatenation] = STATE(2556), + [sym_string] = STATE(2196), + [sym_translated_string] = STATE(2196), + [sym_number] = STATE(2196), + [sym_simple_expansion] = STATE(2196), + [sym_expansion] = STATE(2196), + [sym_command_substitution] = STATE(2196), + [sym_process_substitution] = STATE(2196), + [aux_sym__literal_repeat1] = STATE(2299), + [aux_sym_concatenation_repeat1] = STATE(2223), [sym_word] = ACTIONS(1071), [anon_sym_EQ] = ACTIONS(239), [anon_sym_PLUS_PLUS] = ACTIONS(239), @@ -70204,13 +66746,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(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), [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(568), + [anon_sym_PIPE_PIPE] = ACTIONS(568), + [anon_sym_AMP_AMP] = ACTIONS(568), [anon_sym_PIPE] = ACTIONS(239), [anon_sym_CARET] = ACTIONS(239), [anon_sym_AMP] = ACTIONS(239), @@ -70218,8 +66760,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(568), + [anon_sym_GT_EQ] = ACTIONS(568), [anon_sym_LT_LT] = ACTIONS(239), [anon_sym_GT_GT] = ACTIONS(239), [anon_sym_PLUS] = ACTIONS(239), @@ -70238,46 +66780,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(1081), [anon_sym_PLUS2] = ACTIONS(1081), [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(369), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(577), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(579), [aux_sym_concatenation_token1] = ACTIONS(1085), - [anon_sym_DOLLAR] = ACTIONS(373), + [anon_sym_DOLLAR] = ACTIONS(583), [sym__special_character] = ACTIONS(1087), - [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(587), [sym_raw_string] = ACTIONS(1089), [sym_ansi_c_string] = ACTIONS(1089), - [aux_sym_number_token1] = ACTIONS(381), - [aux_sym_number_token2] = ACTIONS(383), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(385), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(387), - [anon_sym_BQUOTE] = ACTIONS(389), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(391), - [anon_sym_LT_LPAREN] = ACTIONS(393), - [anon_sym_GT_LPAREN] = ACTIONS(393), + [aux_sym_number_token1] = ACTIONS(591), + [aux_sym_number_token2] = ACTIONS(593), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(595), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(597), + [anon_sym_BQUOTE] = ACTIONS(599), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(601), + [anon_sym_LT_LPAREN] = ACTIONS(603), + [anon_sym_GT_LPAREN] = ACTIONS(603), [sym_comment] = ACTIONS(71), [sym__concat] = ACTIONS(1097), [sym_test_operator] = ACTIONS(1093), - [sym__brace_start] = ACTIONS(397), + [sym__brace_start] = ACTIONS(607), }, - [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), + [STATE(421)] = { + [sym__expression] = STATE(2839), + [sym_binary_expression] = STATE(2394), + [sym_ternary_expression] = STATE(2394), + [sym_unary_expression] = STATE(2394), + [sym_postfix_expression] = STATE(2394), + [sym_parenthesized_expression] = STATE(2394), + [sym_arithmetic_expansion] = STATE(2268), + [sym_brace_expression] = STATE(2268), + [sym_concatenation] = STATE(2394), + [sym_string] = STATE(2268), + [sym_translated_string] = STATE(2268), + [sym_number] = STATE(2268), + [sym_simple_expansion] = STATE(2268), + [sym_expansion] = STATE(2268), + [sym_command_substitution] = STATE(2268), + [sym_process_substitution] = STATE(2268), + [aux_sym__literal_repeat1] = STATE(2197), + [aux_sym_concatenation_repeat1] = STATE(2184), + [sym_word] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(239), + [anon_sym_PLUS_PLUS] = ACTIONS(239), + [anon_sym_DASH_DASH] = ACTIONS(239), + [anon_sym_PLUS_EQ] = ACTIONS(239), + [anon_sym_DASH_EQ] = ACTIONS(239), + [anon_sym_STAR_EQ] = ACTIONS(239), + [anon_sym_SLASH_EQ] = ACTIONS(239), + [anon_sym_PERCENT_EQ] = ACTIONS(239), + [anon_sym_STAR_STAR_EQ] = ACTIONS(239), + [anon_sym_LT_LT_EQ] = ACTIONS(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), + [anon_sym_CARET_EQ] = ACTIONS(239), + [anon_sym_PIPE_EQ] = ACTIONS(568), + [anon_sym_PIPE_PIPE] = ACTIONS(568), + [anon_sym_AMP_AMP] = ACTIONS(568), + [anon_sym_PIPE] = ACTIONS(239), + [anon_sym_CARET] = ACTIONS(239), + [anon_sym_AMP] = ACTIONS(239), + [anon_sym_EQ_EQ] = ACTIONS(239), + [anon_sym_BANG_EQ] = ACTIONS(239), + [anon_sym_LT] = ACTIONS(239), + [anon_sym_GT] = ACTIONS(239), + [anon_sym_LT_EQ] = ACTIONS(568), + [anon_sym_GT_EQ] = ACTIONS(568), + [anon_sym_LT_LT] = ACTIONS(239), + [anon_sym_GT_GT] = ACTIONS(239), + [anon_sym_PLUS] = ACTIONS(239), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(239), + [anon_sym_SLASH] = ACTIONS(239), + [anon_sym_PERCENT] = ACTIONS(239), + [anon_sym_STAR_STAR] = ACTIONS(239), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_RPAREN] = ACTIONS(568), + [anon_sym_BANG] = ACTIONS(246), + [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(1101), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1103), + [aux_sym_concatenation_token1] = ACTIONS(1105), + [anon_sym_DOLLAR] = ACTIONS(256), + [sym__special_character] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(1109), + [sym_raw_string] = ACTIONS(1111), + [sym_ansi_c_string] = ACTIONS(1111), + [aux_sym_number_token1] = ACTIONS(262), + [aux_sym_number_token2] = ACTIONS(264), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1113), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(268), + [anon_sym_BQUOTE] = ACTIONS(270), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1115), + [anon_sym_LT_LPAREN] = ACTIONS(1117), + [anon_sym_GT_LPAREN] = ACTIONS(1117), + [sym_comment] = ACTIONS(71), + [sym__concat] = ACTIONS(1105), + [sym_test_operator] = ACTIONS(280), + [sym__brace_start] = ACTIONS(282), + }, + [STATE(422)] = { + [sym__expression] = STATE(2569), + [sym_binary_expression] = STATE(2556), + [sym_ternary_expression] = STATE(2556), + [sym_unary_expression] = STATE(2556), + [sym_postfix_expression] = STATE(2556), + [sym_parenthesized_expression] = STATE(2556), + [sym_arithmetic_expansion] = STATE(2196), + [sym_brace_expression] = STATE(2196), + [sym_concatenation] = STATE(2556), + [sym_string] = STATE(2196), + [sym_translated_string] = STATE(2196), + [sym_number] = STATE(2196), + [sym_simple_expansion] = STATE(2196), + [sym_expansion] = STATE(2196), + [sym_command_substitution] = STATE(2196), + [sym_process_substitution] = STATE(2196), + [aux_sym__literal_repeat1] = STATE(2299), + [aux_sym_concatenation_repeat1] = STATE(2223), [sym_word] = ACTIONS(1071), [anon_sym_EQ] = ACTIONS(239), [anon_sym_PLUS_PLUS] = ACTIONS(239), @@ -70288,13 +66914,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(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), [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(568), + [anon_sym_PIPE_PIPE] = ACTIONS(568), + [anon_sym_AMP_AMP] = ACTIONS(568), [anon_sym_PIPE] = ACTIONS(239), [anon_sym_CARET] = ACTIONS(239), [anon_sym_AMP] = ACTIONS(239), @@ -70302,8 +66928,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(568), + [anon_sym_GT_EQ] = ACTIONS(568), [anon_sym_LT_LT] = ACTIONS(239), [anon_sym_GT_GT] = ACTIONS(239), [anon_sym_PLUS] = ACTIONS(239), @@ -70314,7 +66940,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_STAR] = ACTIONS(239), [anon_sym_LPAREN] = ACTIONS(1073), [anon_sym_BANG] = ACTIONS(1075), - [anon_sym_RBRACK] = ACTIONS(1099), + [anon_sym_RBRACK] = ACTIONS(1119), [anon_sym_EQ_TILDE] = ACTIONS(239), [anon_sym_QMARK] = ACTIONS(239), [anon_sym_PLUS_PLUS2] = ACTIONS(1079), @@ -70322,46 +66948,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(1081), [anon_sym_PLUS2] = ACTIONS(1081), [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(369), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(577), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(579), [aux_sym_concatenation_token1] = ACTIONS(1085), - [anon_sym_DOLLAR] = ACTIONS(373), + [anon_sym_DOLLAR] = ACTIONS(583), [sym__special_character] = ACTIONS(1087), - [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(587), [sym_raw_string] = ACTIONS(1089), [sym_ansi_c_string] = ACTIONS(1089), - [aux_sym_number_token1] = ACTIONS(381), - [aux_sym_number_token2] = ACTIONS(383), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(385), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(387), - [anon_sym_BQUOTE] = ACTIONS(389), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(391), - [anon_sym_LT_LPAREN] = ACTIONS(393), - [anon_sym_GT_LPAREN] = ACTIONS(393), + [aux_sym_number_token1] = ACTIONS(591), + [aux_sym_number_token2] = ACTIONS(593), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(595), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(597), + [anon_sym_BQUOTE] = ACTIONS(599), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(601), + [anon_sym_LT_LPAREN] = ACTIONS(603), + [anon_sym_GT_LPAREN] = ACTIONS(603), [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(1101), + [sym__concat] = ACTIONS(1121), [sym_test_operator] = ACTIONS(1093), - [sym__brace_start] = ACTIONS(397), + [sym__brace_start] = ACTIONS(607), }, - [STATE(450)] = { - [sym__expression] = STATE(2624), - [sym_binary_expression] = STATE(2608), - [sym_ternary_expression] = STATE(2608), - [sym_unary_expression] = STATE(2608), - [sym_postfix_expression] = STATE(2608), - [sym_parenthesized_expression] = STATE(2608), - [sym_arithmetic_expansion] = STATE(2403), - [sym_brace_expression] = STATE(2403), - [sym_concatenation] = STATE(2608), - [sym_string] = STATE(2403), - [sym_translated_string] = STATE(2403), - [sym_number] = STATE(2403), - [sym_simple_expansion] = STATE(2403), - [sym_expansion] = STATE(2403), - [sym_command_substitution] = STATE(2403), - [sym_process_substitution] = STATE(2403), - [aux_sym__literal_repeat1] = STATE(2407), - [aux_sym_concatenation_repeat1] = STATE(2317), + [STATE(423)] = { + [sym__expression] = STATE(2569), + [sym_binary_expression] = STATE(2556), + [sym_ternary_expression] = STATE(2556), + [sym_unary_expression] = STATE(2556), + [sym_postfix_expression] = STATE(2556), + [sym_parenthesized_expression] = STATE(2556), + [sym_arithmetic_expansion] = STATE(2196), + [sym_brace_expression] = STATE(2196), + [sym_concatenation] = STATE(2556), + [sym_string] = STATE(2196), + [sym_translated_string] = STATE(2196), + [sym_number] = STATE(2196), + [sym_simple_expansion] = STATE(2196), + [sym_expansion] = STATE(2196), + [sym_command_substitution] = STATE(2196), + [sym_process_substitution] = STATE(2196), + [aux_sym__literal_repeat1] = STATE(2299), + [aux_sym_concatenation_repeat1] = STATE(2223), [sym_word] = ACTIONS(1071), [anon_sym_EQ] = ACTIONS(239), [anon_sym_PLUS_PLUS] = ACTIONS(239), @@ -70372,13 +66998,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(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), [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(568), + [anon_sym_PIPE_PIPE] = ACTIONS(568), + [anon_sym_AMP_AMP] = ACTIONS(568), [anon_sym_PIPE] = ACTIONS(239), [anon_sym_CARET] = ACTIONS(239), [anon_sym_AMP] = ACTIONS(239), @@ -70386,8 +67012,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(568), + [anon_sym_GT_EQ] = ACTIONS(568), [anon_sym_LT_LT] = ACTIONS(239), [anon_sym_GT_GT] = ACTIONS(239), [anon_sym_PLUS] = ACTIONS(239), @@ -70398,7 +67024,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_STAR] = ACTIONS(239), [anon_sym_LPAREN] = ACTIONS(1073), [anon_sym_BANG] = ACTIONS(1075), - [anon_sym_RBRACK] = ACTIONS(1103), + [anon_sym_RBRACK] = ACTIONS(1123), [anon_sym_EQ_TILDE] = ACTIONS(239), [anon_sym_QMARK] = ACTIONS(239), [anon_sym_PLUS_PLUS2] = ACTIONS(1079), @@ -70406,46 +67032,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(1081), [anon_sym_PLUS2] = ACTIONS(1081), [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(369), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(577), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(579), [aux_sym_concatenation_token1] = ACTIONS(1085), - [anon_sym_DOLLAR] = ACTIONS(373), + [anon_sym_DOLLAR] = ACTIONS(583), [sym__special_character] = ACTIONS(1087), - [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(587), [sym_raw_string] = ACTIONS(1089), [sym_ansi_c_string] = ACTIONS(1089), - [aux_sym_number_token1] = ACTIONS(381), - [aux_sym_number_token2] = ACTIONS(383), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(385), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(387), - [anon_sym_BQUOTE] = ACTIONS(389), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(391), - [anon_sym_LT_LPAREN] = ACTIONS(393), - [anon_sym_GT_LPAREN] = ACTIONS(393), + [aux_sym_number_token1] = ACTIONS(591), + [aux_sym_number_token2] = ACTIONS(593), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(595), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(597), + [anon_sym_BQUOTE] = ACTIONS(599), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(601), + [anon_sym_LT_LPAREN] = ACTIONS(603), + [anon_sym_GT_LPAREN] = ACTIONS(603), [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(1105), + [sym__concat] = ACTIONS(1125), [sym_test_operator] = ACTIONS(1093), - [sym__brace_start] = ACTIONS(397), + [sym__brace_start] = ACTIONS(607), }, - [STATE(451)] = { - [sym__expression] = STATE(2624), - [sym_binary_expression] = STATE(2608), - [sym_ternary_expression] = STATE(2608), - [sym_unary_expression] = STATE(2608), - [sym_postfix_expression] = STATE(2608), - [sym_parenthesized_expression] = STATE(2608), - [sym_arithmetic_expansion] = STATE(2403), - [sym_brace_expression] = STATE(2403), - [sym_concatenation] = STATE(2608), - [sym_string] = STATE(2403), - [sym_translated_string] = STATE(2403), - [sym_number] = STATE(2403), - [sym_simple_expansion] = STATE(2403), - [sym_expansion] = STATE(2403), - [sym_command_substitution] = STATE(2403), - [sym_process_substitution] = STATE(2403), - [aux_sym__literal_repeat1] = STATE(2407), - [aux_sym_concatenation_repeat1] = STATE(2317), + [STATE(424)] = { + [sym__expression] = STATE(2569), + [sym_binary_expression] = STATE(2556), + [sym_ternary_expression] = STATE(2556), + [sym_unary_expression] = STATE(2556), + [sym_postfix_expression] = STATE(2556), + [sym_parenthesized_expression] = STATE(2556), + [sym_arithmetic_expansion] = STATE(2196), + [sym_brace_expression] = STATE(2196), + [sym_concatenation] = STATE(2556), + [sym_string] = STATE(2196), + [sym_translated_string] = STATE(2196), + [sym_number] = STATE(2196), + [sym_simple_expansion] = STATE(2196), + [sym_expansion] = STATE(2196), + [sym_command_substitution] = STATE(2196), + [sym_process_substitution] = STATE(2196), + [aux_sym__literal_repeat1] = STATE(2299), + [aux_sym_concatenation_repeat1] = STATE(2223), [sym_word] = ACTIONS(1071), [anon_sym_EQ] = ACTIONS(239), [anon_sym_PLUS_PLUS] = ACTIONS(239), @@ -70456,13 +67082,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(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), [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(568), + [anon_sym_PIPE_PIPE] = ACTIONS(568), + [anon_sym_AMP_AMP] = ACTIONS(568), [anon_sym_PIPE] = ACTIONS(239), [anon_sym_CARET] = ACTIONS(239), [anon_sym_AMP] = ACTIONS(239), @@ -70470,8 +67096,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(568), + [anon_sym_GT_EQ] = ACTIONS(568), [anon_sym_LT_LT] = ACTIONS(239), [anon_sym_GT_GT] = ACTIONS(239), [anon_sym_PLUS] = ACTIONS(239), @@ -70482,7 +67108,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_STAR] = ACTIONS(239), [anon_sym_LPAREN] = ACTIONS(1073), [anon_sym_BANG] = ACTIONS(1075), - [anon_sym_RBRACK] = ACTIONS(358), + [anon_sym_RBRACK] = ACTIONS(568), [anon_sym_EQ_TILDE] = ACTIONS(239), [anon_sym_QMARK] = ACTIONS(239), [anon_sym_PLUS_PLUS2] = ACTIONS(1079), @@ -70490,47 +67116,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(1081), [anon_sym_PLUS2] = ACTIONS(1081), [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(369), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(577), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(579), [aux_sym_concatenation_token1] = ACTIONS(1085), - [anon_sym_DOLLAR] = ACTIONS(373), + [anon_sym_DOLLAR] = ACTIONS(583), [sym__special_character] = ACTIONS(1087), - [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(587), [sym_raw_string] = ACTIONS(1089), [sym_ansi_c_string] = ACTIONS(1089), - [aux_sym_number_token1] = ACTIONS(381), - [aux_sym_number_token2] = ACTIONS(383), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(385), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(387), - [anon_sym_BQUOTE] = ACTIONS(389), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(391), - [anon_sym_LT_LPAREN] = ACTIONS(393), - [anon_sym_GT_LPAREN] = ACTIONS(393), + [aux_sym_number_token1] = ACTIONS(591), + [aux_sym_number_token2] = ACTIONS(593), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(595), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(597), + [anon_sym_BQUOTE] = ACTIONS(599), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(601), + [anon_sym_LT_LPAREN] = ACTIONS(603), + [anon_sym_GT_LPAREN] = ACTIONS(603), [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(358), + [sym__concat] = ACTIONS(568), [sym_test_operator] = ACTIONS(1093), - [sym__brace_start] = ACTIONS(397), + [sym__brace_start] = ACTIONS(607), }, - [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(425)] = { + [sym__expression] = STATE(2569), + [sym_binary_expression] = STATE(2556), + [sym_ternary_expression] = STATE(2556), + [sym_unary_expression] = STATE(2556), + [sym_postfix_expression] = STATE(2556), + [sym_parenthesized_expression] = STATE(2556), + [sym_arithmetic_expansion] = STATE(2196), + [sym_brace_expression] = STATE(2196), + [sym_concatenation] = STATE(2556), + [sym_string] = STATE(2196), + [sym_translated_string] = STATE(2196), + [sym_number] = STATE(2196), + [sym_simple_expansion] = STATE(2196), + [sym_expansion] = STATE(2196), + [sym_command_substitution] = STATE(2196), + [sym_process_substitution] = STATE(2196), + [aux_sym__literal_repeat1] = STATE(2299), + [aux_sym_concatenation_repeat1] = STATE(2223), + [sym_word] = ACTIONS(1071), [anon_sym_EQ] = ACTIONS(239), [anon_sym_PLUS_PLUS] = ACTIONS(239), [anon_sym_DASH_DASH] = ACTIONS(239), @@ -70540,13 +67166,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(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), [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(568), + [anon_sym_PIPE_PIPE] = ACTIONS(568), + [anon_sym_AMP_AMP] = ACTIONS(568), [anon_sym_PIPE] = ACTIONS(239), [anon_sym_CARET] = ACTIONS(239), [anon_sym_AMP] = ACTIONS(239), @@ -70554,8 +67180,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(568), + [anon_sym_GT_EQ] = ACTIONS(568), [anon_sym_LT_LT] = ACTIONS(239), [anon_sym_GT_GT] = ACTIONS(239), [anon_sym_PLUS] = ACTIONS(239), @@ -70564,57 +67190,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(1073), + [anon_sym_BANG] = ACTIONS(1075), + [anon_sym_RBRACK] = ACTIONS(1127), [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(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(577), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(579), + [aux_sym_concatenation_token1] = ACTIONS(1085), + [anon_sym_DOLLAR] = ACTIONS(583), + [sym__special_character] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(587), + [sym_raw_string] = ACTIONS(1089), + [sym_ansi_c_string] = ACTIONS(1089), + [aux_sym_number_token1] = ACTIONS(591), + [aux_sym_number_token2] = ACTIONS(593), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(595), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(597), + [anon_sym_BQUOTE] = ACTIONS(599), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(601), + [anon_sym_LT_LPAREN] = ACTIONS(603), + [anon_sym_GT_LPAREN] = ACTIONS(603), [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(1113), - [sym_test_operator] = ACTIONS(280), - [sym__brace_start] = ACTIONS(282), + [sym__concat] = ACTIONS(1129), + [sym_test_operator] = ACTIONS(1093), + [sym__brace_start] = ACTIONS(607), }, - [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(426)] = { + [sym__expression] = STATE(2723), + [sym_binary_expression] = STATE(2702), + [sym_ternary_expression] = STATE(2702), + [sym_unary_expression] = STATE(2702), + [sym_postfix_expression] = STATE(2702), + [sym_parenthesized_expression] = STATE(2702), + [sym_arithmetic_expansion] = STATE(2309), + [sym_brace_expression] = STATE(2309), + [sym_concatenation] = STATE(2702), + [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(2414), + [aux_sym_concatenation_repeat1] = STATE(2187), + [sym_word] = ACTIONS(566), [anon_sym_EQ] = ACTIONS(239), [anon_sym_PLUS_PLUS] = ACTIONS(239), [anon_sym_DASH_DASH] = ACTIONS(239), @@ -70624,13 +67250,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(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), [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(568), + [anon_sym_PIPE_PIPE] = ACTIONS(568), + [anon_sym_AMP_AMP] = ACTIONS(568), [anon_sym_PIPE] = ACTIONS(239), [anon_sym_CARET] = ACTIONS(239), [anon_sym_AMP] = ACTIONS(239), @@ -70638,8 +67264,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(568), + [anon_sym_GT_EQ] = ACTIONS(568), [anon_sym_LT_LT] = ACTIONS(239), [anon_sym_GT_GT] = ACTIONS(239), [anon_sym_PLUS] = ACTIONS(239), @@ -70648,56 +67274,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(239), [anon_sym_PERCENT] = ACTIONS(239), [anon_sym_STAR_STAR] = ACTIONS(239), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_RBRACK_RBRACK] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_BANG] = ACTIONS(575), + [anon_sym_RBRACK] = ACTIONS(568), [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(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(577), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(579), + [aux_sym_concatenation_token1] = ACTIONS(1085), + [anon_sym_DOLLAR] = ACTIONS(583), + [sym__special_character] = ACTIONS(585), + [anon_sym_DQUOTE] = ACTIONS(587), + [sym_raw_string] = ACTIONS(589), + [sym_ansi_c_string] = ACTIONS(589), + [aux_sym_number_token1] = ACTIONS(591), + [aux_sym_number_token2] = ACTIONS(593), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(595), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(597), + [anon_sym_BQUOTE] = ACTIONS(599), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(601), + [anon_sym_LT_LPAREN] = ACTIONS(603), + [anon_sym_GT_LPAREN] = ACTIONS(603), [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(1113), - [sym_test_operator] = ACTIONS(1141), - [sym__brace_start] = ACTIONS(282), + [sym__concat] = ACTIONS(1085), + [sym_test_operator] = ACTIONS(605), + [sym__brace_start] = ACTIONS(607), }, - [STATE(454)] = { - [sym__expression] = STATE(2624), - [sym_binary_expression] = STATE(2608), - [sym_ternary_expression] = STATE(2608), - [sym_unary_expression] = STATE(2608), - [sym_postfix_expression] = STATE(2608), - [sym_parenthesized_expression] = STATE(2608), - [sym_arithmetic_expansion] = STATE(2403), - [sym_brace_expression] = STATE(2403), - [sym_concatenation] = STATE(2608), - [sym_string] = STATE(2403), - [sym_translated_string] = STATE(2403), - [sym_number] = STATE(2403), - [sym_simple_expansion] = STATE(2403), - [sym_expansion] = STATE(2403), - [sym_command_substitution] = STATE(2403), - [sym_process_substitution] = STATE(2403), - [aux_sym__literal_repeat1] = STATE(2407), - [aux_sym_concatenation_repeat1] = STATE(2317), + [STATE(427)] = { + [sym__expression] = STATE(2569), + [sym_binary_expression] = STATE(2556), + [sym_ternary_expression] = STATE(2556), + [sym_unary_expression] = STATE(2556), + [sym_postfix_expression] = STATE(2556), + [sym_parenthesized_expression] = STATE(2556), + [sym_arithmetic_expansion] = STATE(2196), + [sym_brace_expression] = STATE(2196), + [sym_concatenation] = STATE(2556), + [sym_string] = STATE(2196), + [sym_translated_string] = STATE(2196), + [sym_number] = STATE(2196), + [sym_simple_expansion] = STATE(2196), + [sym_expansion] = STATE(2196), + [sym_command_substitution] = STATE(2196), + [sym_process_substitution] = STATE(2196), + [aux_sym__literal_repeat1] = STATE(2299), + [aux_sym_concatenation_repeat1] = STATE(2223), [sym_word] = ACTIONS(1071), [anon_sym_EQ] = ACTIONS(239), [anon_sym_PLUS_PLUS] = ACTIONS(239), @@ -70708,13 +67334,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(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), [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(568), + [anon_sym_PIPE_PIPE] = ACTIONS(568), + [anon_sym_AMP_AMP] = ACTIONS(568), [anon_sym_PIPE] = ACTIONS(239), [anon_sym_CARET] = ACTIONS(239), [anon_sym_AMP] = ACTIONS(239), @@ -70722,8 +67348,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(568), + [anon_sym_GT_EQ] = ACTIONS(568), [anon_sym_LT_LT] = ACTIONS(239), [anon_sym_GT_GT] = ACTIONS(239), [anon_sym_PLUS] = ACTIONS(239), @@ -70734,7 +67360,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_STAR] = ACTIONS(239), [anon_sym_LPAREN] = ACTIONS(1073), [anon_sym_BANG] = ACTIONS(1075), - [anon_sym_RBRACK] = ACTIONS(1143), + [anon_sym_RBRACK] = ACTIONS(1131), [anon_sym_EQ_TILDE] = ACTIONS(239), [anon_sym_QMARK] = ACTIONS(239), [anon_sym_PLUS_PLUS2] = ACTIONS(1079), @@ -70742,47 +67368,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(1081), [anon_sym_PLUS2] = ACTIONS(1081), [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(369), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(577), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(579), [aux_sym_concatenation_token1] = ACTIONS(1085), - [anon_sym_DOLLAR] = ACTIONS(373), + [anon_sym_DOLLAR] = ACTIONS(583), [sym__special_character] = ACTIONS(1087), - [anon_sym_DQUOTE] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(587), [sym_raw_string] = ACTIONS(1089), [sym_ansi_c_string] = ACTIONS(1089), - [aux_sym_number_token1] = ACTIONS(381), - [aux_sym_number_token2] = ACTIONS(383), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(385), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(387), - [anon_sym_BQUOTE] = ACTIONS(389), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(391), - [anon_sym_LT_LPAREN] = ACTIONS(393), - [anon_sym_GT_LPAREN] = ACTIONS(393), + [aux_sym_number_token1] = ACTIONS(591), + [aux_sym_number_token2] = ACTIONS(593), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(595), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(597), + [anon_sym_BQUOTE] = ACTIONS(599), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(601), + [anon_sym_LT_LPAREN] = ACTIONS(603), + [anon_sym_GT_LPAREN] = ACTIONS(603), [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(1145), + [sym__concat] = ACTIONS(1133), [sym_test_operator] = ACTIONS(1093), - [sym__brace_start] = ACTIONS(397), + [sym__brace_start] = ACTIONS(607), }, - [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(428)] = { + [sym__expression] = STATE(2852), + [sym_binary_expression] = STATE(2394), + [sym_ternary_expression] = STATE(2394), + [sym_unary_expression] = STATE(2394), + [sym_postfix_expression] = STATE(2394), + [sym_parenthesized_expression] = STATE(2394), + [sym_arithmetic_expansion] = STATE(2298), + [sym_brace_expression] = STATE(2298), + [sym_concatenation] = STATE(2394), + [sym_string] = STATE(2298), + [sym_translated_string] = STATE(2298), + [sym_number] = STATE(2298), + [sym_simple_expansion] = STATE(2298), + [sym_expansion] = STATE(2298), + [sym_command_substitution] = STATE(2298), + [sym_process_substitution] = STATE(2298), + [aux_sym__literal_repeat1] = STATE(2197), + [aux_sym_concatenation_repeat1] = STATE(2200), + [sym_word] = ACTIONS(1135), [anon_sym_EQ] = ACTIONS(239), [anon_sym_PLUS_PLUS] = ACTIONS(239), [anon_sym_DASH_DASH] = ACTIONS(239), @@ -70792,13 +67418,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(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), [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(568), + [anon_sym_PIPE_PIPE] = ACTIONS(568), + [anon_sym_AMP_AMP] = ACTIONS(568), [anon_sym_PIPE] = ACTIONS(239), [anon_sym_CARET] = ACTIONS(239), [anon_sym_AMP] = ACTIONS(239), @@ -70806,8 +67432,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(568), + [anon_sym_GT_EQ] = ACTIONS(568), [anon_sym_LT_LT] = ACTIONS(239), [anon_sym_GT_GT] = ACTIONS(239), [anon_sym_PLUS] = ACTIONS(239), @@ -70816,141 +67442,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(1099), + [anon_sym_BANG] = ACTIONS(1137), [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_PLUS_PLUS2] = ACTIONS(1139), + [anon_sym_DASH_DASH2] = ACTIONS(1139), + [anon_sym_DASH2] = ACTIONS(1141), + [anon_sym_PLUS2] = ACTIONS(1141), + [anon_sym_TILDE] = ACTIONS(1143), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1101), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1103), + [aux_sym_concatenation_token1] = ACTIONS(1105), [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), + [sym__special_character] = ACTIONS(1145), + [anon_sym_DQUOTE] = ACTIONS(1109), + [sym_raw_string] = ACTIONS(1147), + [sym_ansi_c_string] = ACTIONS(1147), [aux_sym_number_token1] = ACTIONS(262), [aux_sym_number_token2] = ACTIONS(264), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1121), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1113), [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(1115), + [anon_sym_LT_LPAREN] = ACTIONS(1117), + [anon_sym_GT_LPAREN] = ACTIONS(1117), [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(1113), - [sym_test_operator] = ACTIONS(1161), + [sym__concat] = ACTIONS(1105), + [sym_test_operator] = ACTIONS(1149), [sym__brace_start] = ACTIONS(282), }, - [STATE(456)] = { - [sym__expression] = STATE(2624), - [sym_binary_expression] = STATE(2608), - [sym_ternary_expression] = STATE(2608), - [sym_unary_expression] = STATE(2608), - [sym_postfix_expression] = STATE(2608), - [sym_parenthesized_expression] = STATE(2608), - [sym_arithmetic_expansion] = STATE(2403), - [sym_brace_expression] = STATE(2403), - [sym_concatenation] = STATE(2608), - [sym_string] = STATE(2403), - [sym_translated_string] = STATE(2403), - [sym_number] = STATE(2403), - [sym_simple_expansion] = STATE(2403), - [sym_expansion] = STATE(2403), - [sym_command_substitution] = STATE(2403), - [sym_process_substitution] = STATE(2403), - [aux_sym__literal_repeat1] = STATE(2407), - [aux_sym_concatenation_repeat1] = STATE(2317), - [sym_word] = ACTIONS(1071), - [anon_sym_EQ] = ACTIONS(239), - [anon_sym_PLUS_PLUS] = ACTIONS(239), - [anon_sym_DASH_DASH] = ACTIONS(239), - [anon_sym_PLUS_EQ] = ACTIONS(239), - [anon_sym_DASH_EQ] = ACTIONS(239), - [anon_sym_STAR_EQ] = ACTIONS(239), - [anon_sym_SLASH_EQ] = ACTIONS(239), - [anon_sym_PERCENT_EQ] = ACTIONS(239), - [anon_sym_STAR_STAR_EQ] = ACTIONS(239), - [anon_sym_LT_LT_EQ] = ACTIONS(358), - [anon_sym_GT_GT_EQ] = ACTIONS(358), - [anon_sym_AMP_EQ] = ACTIONS(358), - [anon_sym_CARET_EQ] = ACTIONS(239), - [anon_sym_PIPE_EQ] = ACTIONS(358), - [anon_sym_PIPE_PIPE] = ACTIONS(358), - [anon_sym_AMP_AMP] = ACTIONS(358), - [anon_sym_PIPE] = ACTIONS(239), - [anon_sym_CARET] = ACTIONS(239), - [anon_sym_AMP] = ACTIONS(239), - [anon_sym_EQ_EQ] = ACTIONS(239), - [anon_sym_BANG_EQ] = ACTIONS(239), - [anon_sym_LT] = ACTIONS(239), - [anon_sym_GT] = ACTIONS(239), - [anon_sym_LT_EQ] = ACTIONS(358), - [anon_sym_GT_EQ] = ACTIONS(358), - [anon_sym_LT_LT] = ACTIONS(239), - [anon_sym_GT_GT] = ACTIONS(239), - [anon_sym_PLUS] = ACTIONS(239), - [anon_sym_DASH] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(239), - [anon_sym_SLASH] = ACTIONS(239), - [anon_sym_PERCENT] = ACTIONS(239), - [anon_sym_STAR_STAR] = ACTIONS(239), - [anon_sym_LPAREN] = ACTIONS(1073), - [anon_sym_BANG] = ACTIONS(1075), - [anon_sym_RBRACK] = ACTIONS(1163), - [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), - [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(1165), - [sym_test_operator] = ACTIONS(1093), - [sym__brace_start] = ACTIONS(397), - }, - [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(429)] = { + [sym__expression] = STATE(2715), + [sym_binary_expression] = STATE(2394), + [sym_ternary_expression] = STATE(2394), + [sym_unary_expression] = STATE(2394), + [sym_postfix_expression] = STATE(2394), + [sym_parenthesized_expression] = STATE(2394), + [sym_arithmetic_expansion] = STATE(2227), + [sym_brace_expression] = STATE(2227), + [sym_concatenation] = STATE(2394), + [sym_string] = STATE(2227), + [sym_translated_string] = STATE(2227), + [sym_number] = STATE(2227), + [sym_simple_expansion] = STATE(2227), + [sym_expansion] = STATE(2227), + [sym_command_substitution] = STATE(2227), + [sym_process_substitution] = STATE(2227), + [aux_sym__literal_repeat1] = STATE(2398), + [aux_sym_concatenation_repeat1] = STATE(2256), + [sym_word] = ACTIONS(1151), [anon_sym_EQ] = ACTIONS(239), [anon_sym_PLUS_PLUS] = ACTIONS(239), [anon_sym_DASH_DASH] = ACTIONS(239), @@ -70960,13 +67502,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(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), [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(568), + [anon_sym_PIPE_PIPE] = ACTIONS(568), + [anon_sym_AMP_AMP] = ACTIONS(568), [anon_sym_PIPE] = ACTIONS(239), [anon_sym_CARET] = ACTIONS(239), [anon_sym_AMP] = ACTIONS(239), @@ -70974,8 +67516,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(568), + [anon_sym_GT_EQ] = ACTIONS(568), [anon_sym_LT_LT] = ACTIONS(239), [anon_sym_GT_GT] = ACTIONS(239), [anon_sym_PLUS] = ACTIONS(239), @@ -70984,56 +67526,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(239), [anon_sym_PERCENT] = ACTIONS(239), [anon_sym_STAR_STAR] = ACTIONS(239), - [anon_sym_LPAREN] = ACTIONS(363), - [anon_sym_BANG] = ACTIONS(365), - [anon_sym_RBRACK] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1153), + [anon_sym_RBRACK_RBRACK] = ACTIONS(568), [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(1155), + [anon_sym_DASH_DASH2] = ACTIONS(1155), + [anon_sym_DASH2] = ACTIONS(1157), + [anon_sym_PLUS2] = ACTIONS(1157), + [anon_sym_TILDE] = ACTIONS(1159), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1101), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1103), + [aux_sym_concatenation_token1] = ACTIONS(1105), + [anon_sym_DOLLAR] = ACTIONS(256), + [sym__special_character] = ACTIONS(1161), + [anon_sym_DQUOTE] = ACTIONS(1109), + [sym_raw_string] = ACTIONS(1163), + [sym_ansi_c_string] = ACTIONS(1163), + [aux_sym_number_token1] = ACTIONS(262), + [aux_sym_number_token2] = ACTIONS(264), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1113), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(268), + [anon_sym_BQUOTE] = ACTIONS(270), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1115), + [anon_sym_LT_LPAREN] = ACTIONS(1117), + [anon_sym_GT_LPAREN] = ACTIONS(1117), [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(1085), - [sym_test_operator] = ACTIONS(395), - [sym__brace_start] = ACTIONS(397), + [sym__concat] = ACTIONS(1105), + [sym_test_operator] = ACTIONS(1165), + [sym__brace_start] = ACTIONS(282), }, - [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), + [STATE(430)] = { + [sym__expression] = STATE(3116), + [sym_binary_expression] = STATE(2394), + [sym_ternary_expression] = STATE(2394), + [sym_unary_expression] = STATE(2394), + [sym_postfix_expression] = STATE(2394), + [sym_parenthesized_expression] = STATE(2394), + [sym_arithmetic_expansion] = STATE(2444), + [sym_brace_expression] = STATE(2444), + [sym_concatenation] = STATE(2394), + [sym_string] = STATE(2444), + [sym_translated_string] = STATE(2444), + [sym_number] = STATE(2444), + [sym_simple_expansion] = STATE(2444), + [sym_expansion] = STATE(2444), + [sym_command_substitution] = STATE(2444), + [sym_process_substitution] = STATE(2444), + [aux_sym__literal_repeat1] = STATE(2197), + [aux_sym_concatenation_repeat1] = STATE(2371), [sym_word] = ACTIONS(1167), [anon_sym_EQ] = ACTIONS(239), [anon_sym_PLUS_PLUS] = ACTIONS(239), @@ -71044,13 +67586,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(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), [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(568), + [anon_sym_PIPE_PIPE] = ACTIONS(568), + [anon_sym_AMP_AMP] = ACTIONS(568), [anon_sym_PIPE] = ACTIONS(239), [anon_sym_CARET] = ACTIONS(239), [anon_sym_AMP] = ACTIONS(239), @@ -71058,8 +67600,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(568), + [anon_sym_GT_EQ] = ACTIONS(568), [anon_sym_LT_LT] = ACTIONS(239), [anon_sym_GT_GT] = ACTIONS(239), [anon_sym_PLUS] = ACTIONS(239), @@ -71068,7 +67610,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(239), [anon_sym_PERCENT] = ACTIONS(239), [anon_sym_STAR_STAR] = ACTIONS(239), - [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_LPAREN] = ACTIONS(1099), [anon_sym_BANG] = ACTIONS(1169), [anon_sym_EQ_TILDE] = ACTIONS(239), [anon_sym_QMARK] = ACTIONS(239), @@ -71077,29 +67619,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(1173), [anon_sym_PLUS2] = ACTIONS(1173), [anon_sym_TILDE] = ACTIONS(1175), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1109), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1111), - [aux_sym_concatenation_token1] = ACTIONS(1113), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1101), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1103), + [aux_sym_concatenation_token1] = ACTIONS(1105), [anon_sym_DOLLAR] = ACTIONS(256), [sym__special_character] = ACTIONS(1177), - [anon_sym_DQUOTE] = ACTIONS(1117), + [anon_sym_DQUOTE] = ACTIONS(1109), [sym_raw_string] = ACTIONS(1179), [sym_ansi_c_string] = ACTIONS(1179), [aux_sym_number_token1] = ACTIONS(262), [aux_sym_number_token2] = ACTIONS(264), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1121), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1113), [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(1115), + [anon_sym_LT_LPAREN] = ACTIONS(1117), + [anon_sym_GT_LPAREN] = ACTIONS(1117), [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(1113), + [sym__concat] = ACTIONS(1105), [sym_test_operator] = ACTIONS(1181), [sym__brace_start] = ACTIONS(282), }, - [STATE(459)] = { - [sym_string] = STATE(470), + [STATE(431)] = { + [sym_string] = STATE(459), [sym_word] = ACTIONS(1183), [anon_sym_SEMI] = ACTIONS(1183), [anon_sym_EQ] = ACTIONS(1183), @@ -71179,8 +67721,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1191), [sym__brace_start] = ACTIONS(1191), }, - [STATE(460)] = { - [sym_string] = STATE(470), + [STATE(432)] = { + [sym_string] = STATE(459), [sym_word] = ACTIONS(1195), [anon_sym_SEMI] = ACTIONS(1195), [anon_sym_EQ] = ACTIONS(1195), @@ -71260,86 +67802,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [STATE(433)] = { + [sym_string] = STATE(473), [sym_word] = ACTIONS(1195), [anon_sym_EQ] = ACTIONS(1195), [anon_sym_PLUS_PLUS] = ACTIONS(1195), @@ -71416,28 +67880,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [STATE(434)] = { + [sym_string] = STATE(473), + [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(435)] = { + [aux_sym_concatenation_repeat1] = STATE(437), + [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), @@ -71492,8 +68034,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1209), [sym__brace_start] = ACTIONS(1209), }, - [STATE(464)] = { - [aux_sym_concatenation_repeat1] = STATE(464), + [STATE(436)] = { + [aux_sym_concatenation_repeat1] = STATE(437), [sym_word] = ACTIONS(1213), [anon_sym_SEMI] = ACTIONS(1213), [anon_sym_EQ] = ACTIONS(1213), @@ -71547,7 +68089,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(1213), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1213), [anon_sym_DOLLAR_LBRACK] = ACTIONS(1213), - [aux_sym_concatenation_token1] = ACTIONS(1217), + [aux_sym_concatenation_token1] = ACTIONS(254), [anon_sym_DOLLAR] = ACTIONS(1213), [sym__special_character] = ACTIONS(1213), [anon_sym_DQUOTE] = ACTIONS(1213), @@ -71563,165 +68105,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(1213), [sym_comment] = ACTIONS(3), [sym_file_descriptor] = ACTIONS(1215), - [sym__concat] = ACTIONS(1220), + [sym__concat] = ACTIONS(1217), [sym_test_operator] = ACTIONS(1215), [sym__bare_dollar] = ACTIONS(1215), [sym__brace_start] = ACTIONS(1215), }, - [STATE(465)] = { - [aux_sym_concatenation_repeat1] = STATE(466), - [sym_word] = ACTIONS(1223), - [anon_sym_SEMI] = ACTIONS(1223), - [anon_sym_EQ] = ACTIONS(1223), - [anon_sym_PLUS_PLUS] = ACTIONS(1223), - [anon_sym_DASH_DASH] = ACTIONS(1223), - [anon_sym_PLUS_EQ] = ACTIONS(1223), - [anon_sym_DASH_EQ] = ACTIONS(1223), - [anon_sym_STAR_EQ] = ACTIONS(1223), - [anon_sym_SLASH_EQ] = ACTIONS(1223), - [anon_sym_PERCENT_EQ] = ACTIONS(1223), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1223), - [anon_sym_LT_LT_EQ] = ACTIONS(1223), - [anon_sym_GT_GT_EQ] = ACTIONS(1223), - [anon_sym_AMP_EQ] = ACTIONS(1223), - [anon_sym_CARET_EQ] = ACTIONS(1223), - [anon_sym_PIPE_EQ] = ACTIONS(1223), - [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), + [STATE(437)] = { + [aux_sym_concatenation_repeat1] = STATE(437), + [sym_word] = ACTIONS(1219), + [anon_sym_SEMI] = ACTIONS(1219), + [anon_sym_EQ] = ACTIONS(1219), + [anon_sym_PLUS_PLUS] = ACTIONS(1219), + [anon_sym_DASH_DASH] = ACTIONS(1219), + [anon_sym_PLUS_EQ] = ACTIONS(1219), + [anon_sym_DASH_EQ] = ACTIONS(1219), + [anon_sym_STAR_EQ] = ACTIONS(1219), + [anon_sym_SLASH_EQ] = ACTIONS(1219), + [anon_sym_PERCENT_EQ] = ACTIONS(1219), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1219), + [anon_sym_LT_LT_EQ] = ACTIONS(1219), + [anon_sym_GT_GT_EQ] = ACTIONS(1219), + [anon_sym_AMP_EQ] = ACTIONS(1219), + [anon_sym_CARET_EQ] = ACTIONS(1219), + [anon_sym_PIPE_EQ] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(1219), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_LT] = ACTIONS(1219), + [anon_sym_GT] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1219), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1219), + [anon_sym_DASH] = ACTIONS(1219), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_SLASH] = ACTIONS(1219), + [anon_sym_PERCENT] = ACTIONS(1219), + [anon_sym_STAR_STAR] = ACTIONS(1219), + [anon_sym_LPAREN] = ACTIONS(1219), + [anon_sym_RPAREN] = ACTIONS(1219), + [anon_sym_SEMI_SEMI] = ACTIONS(1219), + [anon_sym_PIPE_AMP] = ACTIONS(1219), + [anon_sym_EQ_TILDE] = ACTIONS(1219), + [anon_sym_AMP_GT] = ACTIONS(1219), + [anon_sym_AMP_GT_GT] = ACTIONS(1219), + [anon_sym_LT_AMP] = ACTIONS(1219), + [anon_sym_GT_AMP] = ACTIONS(1219), + [anon_sym_GT_PIPE] = ACTIONS(1219), + [anon_sym_LT_AMP_DASH] = ACTIONS(1219), + [anon_sym_GT_AMP_DASH] = ACTIONS(1219), + [anon_sym_LT_LT_DASH] = ACTIONS(1219), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1221), + [anon_sym_LT_LT_LT] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1219), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1219), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1219), + [aux_sym_concatenation_token1] = ACTIONS(1223), + [anon_sym_DOLLAR] = ACTIONS(1219), + [sym__special_character] = ACTIONS(1219), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(1219), + [sym_ansi_c_string] = ACTIONS(1219), + [aux_sym_number_token1] = ACTIONS(1219), + [aux_sym_number_token2] = ACTIONS(1219), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1219), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1219), + [anon_sym_BQUOTE] = ACTIONS(1219), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1219), + [anon_sym_LT_LPAREN] = ACTIONS(1219), + [anon_sym_GT_LPAREN] = ACTIONS(1219), [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1225), - [sym__concat] = ACTIONS(278), - [sym_test_operator] = ACTIONS(1225), - [sym__bare_dollar] = ACTIONS(1225), - [sym__brace_start] = ACTIONS(1225), + [sym_file_descriptor] = ACTIONS(1221), + [sym__concat] = ACTIONS(1226), + [sym_test_operator] = ACTIONS(1221), + [sym__bare_dollar] = ACTIONS(1221), + [sym__brace_start] = ACTIONS(1221), }, - [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), + [STATE(438)] = { + [aux_sym_concatenation_repeat1] = STATE(435), + [sym_word] = ACTIONS(1229), + [anon_sym_SEMI] = ACTIONS(1229), + [anon_sym_EQ] = ACTIONS(1229), + [anon_sym_PLUS_PLUS] = ACTIONS(1229), + [anon_sym_DASH_DASH] = ACTIONS(1229), + [anon_sym_PLUS_EQ] = ACTIONS(1229), + [anon_sym_DASH_EQ] = ACTIONS(1229), + [anon_sym_STAR_EQ] = ACTIONS(1229), + [anon_sym_SLASH_EQ] = ACTIONS(1229), + [anon_sym_PERCENT_EQ] = ACTIONS(1229), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1229), + [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(1229), + [anon_sym_PIPE_EQ] = ACTIONS(1229), + [anon_sym_PIPE_PIPE] = ACTIONS(1229), + [anon_sym_AMP_AMP] = ACTIONS(1229), + [anon_sym_PIPE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1229), + [anon_sym_EQ_EQ] = ACTIONS(1229), + [anon_sym_BANG_EQ] = ACTIONS(1229), + [anon_sym_LT] = ACTIONS(1229), + [anon_sym_GT] = ACTIONS(1229), + [anon_sym_LT_EQ] = ACTIONS(1229), + [anon_sym_GT_EQ] = ACTIONS(1229), + [anon_sym_LT_LT] = ACTIONS(1229), + [anon_sym_GT_GT] = ACTIONS(1229), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1229), + [anon_sym_PERCENT] = ACTIONS(1229), + [anon_sym_STAR_STAR] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(1229), + [anon_sym_RPAREN] = ACTIONS(1229), + [anon_sym_SEMI_SEMI] = ACTIONS(1229), + [anon_sym_PIPE_AMP] = ACTIONS(1229), + [anon_sym_EQ_TILDE] = ACTIONS(1229), + [anon_sym_AMP_GT] = ACTIONS(1229), + [anon_sym_AMP_GT_GT] = ACTIONS(1229), + [anon_sym_LT_AMP] = ACTIONS(1229), + [anon_sym_GT_AMP] = ACTIONS(1229), + [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), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1231), + [anon_sym_LT_LT_LT] = ACTIONS(1229), + [anon_sym_QMARK] = ACTIONS(1229), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1229), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1229), [aux_sym_concatenation_token1] = ACTIONS(254), - [anon_sym_DOLLAR] = ACTIONS(1227), - [sym__special_character] = ACTIONS(1227), - [anon_sym_DQUOTE] = ACTIONS(1227), - [sym_raw_string] = ACTIONS(1227), - [sym_ansi_c_string] = ACTIONS(1227), - [aux_sym_number_token1] = ACTIONS(1227), - [aux_sym_number_token2] = ACTIONS(1227), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1227), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), - [anon_sym_BQUOTE] = ACTIONS(1227), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1227), - [anon_sym_LT_LPAREN] = ACTIONS(1227), - [anon_sym_GT_LPAREN] = ACTIONS(1227), + [anon_sym_DOLLAR] = ACTIONS(1229), + [sym__special_character] = ACTIONS(1229), + [anon_sym_DQUOTE] = ACTIONS(1229), + [sym_raw_string] = ACTIONS(1229), + [sym_ansi_c_string] = ACTIONS(1229), + [aux_sym_number_token1] = ACTIONS(1229), + [aux_sym_number_token2] = ACTIONS(1229), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1229), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1229), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1229), + [anon_sym_GT_LPAREN] = ACTIONS(1229), [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1229), - [sym__concat] = ACTIONS(1231), - [sym_test_operator] = ACTIONS(1229), - [sym__bare_dollar] = ACTIONS(1229), - [sym__brace_start] = ACTIONS(1229), + [sym_file_descriptor] = ACTIONS(1231), + [sym__concat] = ACTIONS(278), + [sym_test_operator] = ACTIONS(1231), + [sym__bare_dollar] = ACTIONS(1231), + [sym__brace_start] = ACTIONS(1231), }, - [STATE(467)] = { - [aux_sym_concatenation_repeat1] = STATE(463), + [STATE(439)] = { + [aux_sym_concatenation_repeat1] = STATE(436), [sym_word] = ACTIONS(1233), [anon_sym_SEMI] = ACTIONS(1233), [anon_sym_EQ] = ACTIONS(1235), @@ -71796,8 +68338,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1240), [sym__brace_start] = ACTIONS(1240), }, - [STATE(468)] = { - [aux_sym_concatenation_repeat1] = STATE(463), + [STATE(440)] = { + [aux_sym_concatenation_repeat1] = STATE(436), [sym_word] = ACTIONS(1233), [anon_sym_SEMI] = ACTIONS(1233), [anon_sym_EQ] = ACTIONS(1235), @@ -71872,7 +68414,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1240), [sym__brace_start] = ACTIONS(1240), }, - [STATE(469)] = { + [STATE(441)] = { [sym_word] = ACTIONS(1248), [anon_sym_SEMI] = ACTIONS(1248), [anon_sym_EQ] = ACTIONS(1248), @@ -71947,7 +68489,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1250), [sym__brace_start] = ACTIONS(1250), }, - [STATE(470)] = { + [STATE(442)] = { [sym_word] = ACTIONS(1252), [anon_sym_SEMI] = ACTIONS(1252), [anon_sym_EQ] = ACTIONS(1252), @@ -72022,7 +68564,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1254), [sym__brace_start] = ACTIONS(1254), }, - [STATE(471)] = { + [STATE(443)] = { [sym_word] = ACTIONS(1256), [anon_sym_SEMI] = ACTIONS(1256), [anon_sym_EQ] = ACTIONS(1256), @@ -72097,7 +68639,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1258), [sym__brace_start] = ACTIONS(1258), }, - [STATE(472)] = { + [STATE(444)] = { [sym_word] = ACTIONS(1260), [anon_sym_SEMI] = ACTIONS(1260), [anon_sym_EQ] = ACTIONS(1260), @@ -72172,7 +68714,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1262), [sym__brace_start] = ACTIONS(1262), }, - [STATE(473)] = { + [STATE(445)] = { [sym_word] = ACTIONS(1264), [anon_sym_SEMI] = ACTIONS(1264), [anon_sym_EQ] = ACTIONS(1264), @@ -72247,7 +68789,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1266), [sym__brace_start] = ACTIONS(1266), }, - [STATE(474)] = { + [STATE(446)] = { [sym_word] = ACTIONS(1268), [anon_sym_SEMI] = ACTIONS(1268), [anon_sym_EQ] = ACTIONS(1268), @@ -72322,7 +68864,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1270), [sym__brace_start] = ACTIONS(1270), }, - [STATE(475)] = { + [STATE(447)] = { [sym_word] = ACTIONS(1272), [anon_sym_SEMI] = ACTIONS(1272), [anon_sym_EQ] = ACTIONS(1272), @@ -72397,7 +68939,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1274), [sym__brace_start] = ACTIONS(1274), }, - [STATE(476)] = { + [STATE(448)] = { [sym_word] = ACTIONS(1276), [anon_sym_SEMI] = ACTIONS(1276), [anon_sym_EQ] = ACTIONS(1276), @@ -72472,7 +69014,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1278), [sym__brace_start] = ACTIONS(1278), }, - [STATE(477)] = { + [STATE(449)] = { + [sym_word] = ACTIONS(1219), + [anon_sym_SEMI] = ACTIONS(1219), + [anon_sym_EQ] = ACTIONS(1219), + [anon_sym_PLUS_PLUS] = ACTIONS(1219), + [anon_sym_DASH_DASH] = ACTIONS(1219), + [anon_sym_PLUS_EQ] = ACTIONS(1219), + [anon_sym_DASH_EQ] = ACTIONS(1219), + [anon_sym_STAR_EQ] = ACTIONS(1219), + [anon_sym_SLASH_EQ] = ACTIONS(1219), + [anon_sym_PERCENT_EQ] = ACTIONS(1219), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1219), + [anon_sym_LT_LT_EQ] = ACTIONS(1219), + [anon_sym_GT_GT_EQ] = ACTIONS(1219), + [anon_sym_AMP_EQ] = ACTIONS(1219), + [anon_sym_CARET_EQ] = ACTIONS(1219), + [anon_sym_PIPE_EQ] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(1219), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_LT] = ACTIONS(1219), + [anon_sym_GT] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1219), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1219), + [anon_sym_DASH] = ACTIONS(1219), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_SLASH] = ACTIONS(1219), + [anon_sym_PERCENT] = ACTIONS(1219), + [anon_sym_STAR_STAR] = ACTIONS(1219), + [anon_sym_LPAREN] = ACTIONS(1219), + [anon_sym_RPAREN] = ACTIONS(1219), + [anon_sym_SEMI_SEMI] = ACTIONS(1219), + [anon_sym_PIPE_AMP] = ACTIONS(1219), + [anon_sym_EQ_TILDE] = ACTIONS(1219), + [anon_sym_AMP_GT] = ACTIONS(1219), + [anon_sym_AMP_GT_GT] = ACTIONS(1219), + [anon_sym_LT_AMP] = ACTIONS(1219), + [anon_sym_GT_AMP] = ACTIONS(1219), + [anon_sym_GT_PIPE] = ACTIONS(1219), + [anon_sym_LT_AMP_DASH] = ACTIONS(1219), + [anon_sym_GT_AMP_DASH] = ACTIONS(1219), + [anon_sym_LT_LT_DASH] = ACTIONS(1219), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1221), + [anon_sym_LT_LT_LT] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1219), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1219), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1219), + [aux_sym_concatenation_token1] = ACTIONS(1219), + [anon_sym_DOLLAR] = ACTIONS(1219), + [sym__special_character] = ACTIONS(1219), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(1219), + [sym_ansi_c_string] = ACTIONS(1219), + [aux_sym_number_token1] = ACTIONS(1219), + [aux_sym_number_token2] = ACTIONS(1219), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1219), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1219), + [anon_sym_BQUOTE] = ACTIONS(1219), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1219), + [anon_sym_LT_LPAREN] = ACTIONS(1219), + [anon_sym_GT_LPAREN] = ACTIONS(1219), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(1221), + [sym__concat] = ACTIONS(1221), + [sym_test_operator] = ACTIONS(1221), + [sym__bare_dollar] = ACTIONS(1221), + [sym__brace_start] = ACTIONS(1221), + }, + [STATE(450)] = { [sym_word] = ACTIONS(1280), [anon_sym_SEMI] = ACTIONS(1280), [anon_sym_EQ] = ACTIONS(1280), @@ -72547,7 +69164,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1282), [sym__brace_start] = ACTIONS(1282), }, - [STATE(478)] = { + [STATE(451)] = { [sym_word] = ACTIONS(1284), [anon_sym_SEMI] = ACTIONS(1284), [anon_sym_EQ] = ACTIONS(1284), @@ -72622,7 +69239,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1286), [sym__brace_start] = ACTIONS(1286), }, - [STATE(479)] = { + [STATE(452)] = { [sym_word] = ACTIONS(1288), [anon_sym_SEMI] = ACTIONS(1288), [anon_sym_EQ] = ACTIONS(1288), @@ -72697,7 +69314,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1290), [sym__brace_start] = ACTIONS(1290), }, - [STATE(480)] = { + [STATE(453)] = { [sym_word] = ACTIONS(1292), [anon_sym_SEMI] = ACTIONS(1292), [anon_sym_EQ] = ACTIONS(1292), @@ -72772,7 +69389,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1294), [sym__brace_start] = ACTIONS(1294), }, - [STATE(481)] = { + [STATE(454)] = { [sym_word] = ACTIONS(1296), [anon_sym_SEMI] = ACTIONS(1296), [anon_sym_EQ] = ACTIONS(1296), @@ -72847,7 +69464,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1298), [sym__brace_start] = ACTIONS(1298), }, - [STATE(482)] = { + [STATE(455)] = { [sym_word] = ACTIONS(1300), [anon_sym_SEMI] = ACTIONS(1300), [anon_sym_EQ] = ACTIONS(1300), @@ -72922,7 +69539,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1302), [sym__brace_start] = ACTIONS(1302), }, - [STATE(483)] = { + [STATE(456)] = { [sym_word] = ACTIONS(1304), [anon_sym_SEMI] = ACTIONS(1304), [anon_sym_EQ] = ACTIONS(1304), @@ -72997,7 +69614,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1306), [sym__brace_start] = ACTIONS(1306), }, - [STATE(484)] = { + [STATE(457)] = { [sym_word] = ACTIONS(1300), [anon_sym_SEMI] = ACTIONS(1300), [anon_sym_EQ] = ACTIONS(1300), @@ -73072,7 +69689,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1302), [sym__brace_start] = ACTIONS(1302), }, - [STATE(485)] = { + [STATE(458)] = { [sym_word] = ACTIONS(1308), [anon_sym_SEMI] = ACTIONS(1308), [anon_sym_EQ] = ACTIONS(1308), @@ -73147,82 +69764,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1310), [sym__brace_start] = ACTIONS(1310), }, - [STATE(486)] = { - [sym_word] = ACTIONS(1213), - [anon_sym_SEMI] = ACTIONS(1213), - [anon_sym_EQ] = ACTIONS(1213), - [anon_sym_PLUS_PLUS] = ACTIONS(1213), - [anon_sym_DASH_DASH] = ACTIONS(1213), - [anon_sym_PLUS_EQ] = ACTIONS(1213), - [anon_sym_DASH_EQ] = ACTIONS(1213), - [anon_sym_STAR_EQ] = ACTIONS(1213), - [anon_sym_SLASH_EQ] = ACTIONS(1213), - [anon_sym_PERCENT_EQ] = ACTIONS(1213), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1213), - [anon_sym_LT_LT_EQ] = ACTIONS(1213), - [anon_sym_GT_GT_EQ] = ACTIONS(1213), - [anon_sym_AMP_EQ] = ACTIONS(1213), - [anon_sym_CARET_EQ] = ACTIONS(1213), - [anon_sym_PIPE_EQ] = ACTIONS(1213), - [anon_sym_PIPE_PIPE] = ACTIONS(1213), - [anon_sym_AMP_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1213), - [anon_sym_CARET] = ACTIONS(1213), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_EQ_EQ] = ACTIONS(1213), - [anon_sym_BANG_EQ] = ACTIONS(1213), - [anon_sym_LT] = ACTIONS(1213), - [anon_sym_GT] = ACTIONS(1213), - [anon_sym_LT_EQ] = ACTIONS(1213), - [anon_sym_GT_EQ] = ACTIONS(1213), - [anon_sym_LT_LT] = ACTIONS(1213), - [anon_sym_GT_GT] = ACTIONS(1213), - [anon_sym_PLUS] = ACTIONS(1213), - [anon_sym_DASH] = ACTIONS(1213), - [anon_sym_STAR] = ACTIONS(1213), - [anon_sym_SLASH] = ACTIONS(1213), - [anon_sym_PERCENT] = ACTIONS(1213), - [anon_sym_STAR_STAR] = ACTIONS(1213), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_RPAREN] = ACTIONS(1213), - [anon_sym_SEMI_SEMI] = ACTIONS(1213), - [anon_sym_PIPE_AMP] = ACTIONS(1213), - [anon_sym_EQ_TILDE] = ACTIONS(1213), - [anon_sym_AMP_GT] = ACTIONS(1213), - [anon_sym_AMP_GT_GT] = ACTIONS(1213), - [anon_sym_LT_AMP] = ACTIONS(1213), - [anon_sym_GT_AMP] = ACTIONS(1213), - [anon_sym_GT_PIPE] = ACTIONS(1213), - [anon_sym_LT_AMP_DASH] = ACTIONS(1213), - [anon_sym_GT_AMP_DASH] = ACTIONS(1213), - [anon_sym_LT_LT_DASH] = ACTIONS(1213), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1215), - [anon_sym_LT_LT_LT] = ACTIONS(1213), - [anon_sym_QMARK] = ACTIONS(1213), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1213), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1213), - [aux_sym_concatenation_token1] = ACTIONS(1213), - [anon_sym_DOLLAR] = ACTIONS(1213), - [sym__special_character] = ACTIONS(1213), - [anon_sym_DQUOTE] = ACTIONS(1213), - [sym_raw_string] = ACTIONS(1213), - [sym_ansi_c_string] = ACTIONS(1213), - [aux_sym_number_token1] = ACTIONS(1213), - [aux_sym_number_token2] = ACTIONS(1213), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1213), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1213), - [anon_sym_BQUOTE] = ACTIONS(1213), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1213), - [anon_sym_LT_LPAREN] = ACTIONS(1213), - [anon_sym_GT_LPAREN] = ACTIONS(1213), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1215), - [sym__concat] = ACTIONS(1215), - [sym_test_operator] = ACTIONS(1215), - [sym__bare_dollar] = ACTIONS(1215), - [sym__brace_start] = ACTIONS(1215), - }, - [STATE(487)] = { + [STATE(459)] = { [sym_word] = ACTIONS(1312), [anon_sym_SEMI] = ACTIONS(1312), [anon_sym_EQ] = ACTIONS(1312), @@ -73297,8 +69839,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1314), [sym__brace_start] = ACTIONS(1314), }, - [STATE(488)] = { - [aux_sym__literal_repeat1] = STATE(488), + [STATE(460)] = { + [aux_sym__literal_repeat1] = STATE(460), [sym_word] = ACTIONS(1316), [anon_sym_SEMI] = ACTIONS(1316), [anon_sym_EQ] = ACTIONS(1316), @@ -73371,8 +69913,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1318), [sym__brace_start] = ACTIONS(1318), }, - [STATE(489)] = { - [aux_sym__literal_repeat1] = STATE(488), + [STATE(461)] = { + [aux_sym__literal_repeat1] = STATE(460), [sym_word] = ACTIONS(237), [anon_sym_SEMI] = ACTIONS(237), [anon_sym_EQ] = ACTIONS(239), @@ -73441,11 +69983,84 @@ 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(570), [sym__bare_dollar] = ACTIONS(276), [sym__brace_start] = ACTIONS(276), }, - [STATE(490)] = { + [STATE(462)] = { + [sym_word] = ACTIONS(1229), + [anon_sym_SEMI] = ACTIONS(1229), + [anon_sym_EQ] = ACTIONS(1229), + [anon_sym_PLUS_PLUS] = ACTIONS(1229), + [anon_sym_DASH_DASH] = ACTIONS(1229), + [anon_sym_PLUS_EQ] = ACTIONS(1229), + [anon_sym_DASH_EQ] = ACTIONS(1229), + [anon_sym_STAR_EQ] = ACTIONS(1229), + [anon_sym_SLASH_EQ] = ACTIONS(1229), + [anon_sym_PERCENT_EQ] = ACTIONS(1229), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1229), + [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(1229), + [anon_sym_PIPE_EQ] = ACTIONS(1229), + [anon_sym_PIPE_PIPE] = ACTIONS(1229), + [anon_sym_AMP_AMP] = ACTIONS(1229), + [anon_sym_PIPE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1229), + [anon_sym_EQ_EQ] = ACTIONS(1229), + [anon_sym_BANG_EQ] = ACTIONS(1229), + [anon_sym_LT] = ACTIONS(1229), + [anon_sym_GT] = ACTIONS(1229), + [anon_sym_LT_EQ] = ACTIONS(1229), + [anon_sym_GT_EQ] = ACTIONS(1229), + [anon_sym_LT_LT] = ACTIONS(1229), + [anon_sym_GT_GT] = ACTIONS(1229), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1229), + [anon_sym_PERCENT] = ACTIONS(1229), + [anon_sym_STAR_STAR] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(1229), + [anon_sym_RPAREN] = ACTIONS(1229), + [anon_sym_SEMI_SEMI] = ACTIONS(1229), + [anon_sym_PIPE_AMP] = ACTIONS(1229), + [anon_sym_EQ_TILDE] = ACTIONS(1229), + [anon_sym_AMP_GT] = ACTIONS(1229), + [anon_sym_AMP_GT_GT] = ACTIONS(1229), + [anon_sym_LT_AMP] = ACTIONS(1229), + [anon_sym_GT_AMP] = ACTIONS(1229), + [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), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1231), + [anon_sym_LT_LT_LT] = ACTIONS(1229), + [anon_sym_QMARK] = ACTIONS(1229), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1229), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1229), + [anon_sym_DOLLAR] = ACTIONS(1229), + [sym__special_character] = ACTIONS(1229), + [anon_sym_DQUOTE] = ACTIONS(1229), + [sym_raw_string] = ACTIONS(1229), + [sym_ansi_c_string] = ACTIONS(1229), + [aux_sym_number_token1] = ACTIONS(1229), + [aux_sym_number_token2] = ACTIONS(1229), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1229), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1229), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1229), + [anon_sym_GT_LPAREN] = ACTIONS(1229), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(1231), + [sym_test_operator] = ACTIONS(1231), + [sym__bare_dollar] = ACTIONS(1231), + [sym__brace_start] = ACTIONS(1231), + }, + [STATE(463)] = { [sym_word] = ACTIONS(1233), [anon_sym_SEMI] = ACTIONS(1233), [anon_sym_EQ] = ACTIONS(1235), @@ -73518,154 +70133,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [STATE(464)] = { + [aux_sym_concatenation_repeat1] = STATE(468), [sym_word] = ACTIONS(1207), [anon_sym_EQ] = ACTIONS(1207), [anon_sym_PLUS_PLUS] = ACTIONS(1207), @@ -73716,7 +70185,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(1207), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1209), [anon_sym_DOLLAR_LBRACK] = ACTIONS(1209), - [aux_sym_concatenation_token1] = ACTIONS(371), + [aux_sym_concatenation_token1] = ACTIONS(581), [anon_sym_DOLLAR] = ACTIONS(1207), [sym__special_character] = ACTIONS(1207), [anon_sym_DQUOTE] = ACTIONS(1209), @@ -73732,13 +70201,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(1209), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(1209), - [sym__concat] = ACTIONS(1327), + [sym__concat] = ACTIONS(1325), [sym_test_operator] = ACTIONS(1209), [sym__bare_dollar] = ACTIONS(1209), [sym__brace_start] = ACTIONS(1209), }, - [STATE(494)] = { - [aux_sym_concatenation_repeat1] = STATE(494), + [STATE(465)] = { + [aux_sym_concatenation_repeat1] = STATE(468), [sym_word] = ACTIONS(1213), [anon_sym_EQ] = ACTIONS(1213), [anon_sym_PLUS_PLUS] = ACTIONS(1213), @@ -73789,7 +70258,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(1213), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1215), [anon_sym_DOLLAR_LBRACK] = ACTIONS(1215), - [aux_sym_concatenation_token1] = ACTIONS(1329), + [aux_sym_concatenation_token1] = ACTIONS(581), [anon_sym_DOLLAR] = ACTIONS(1213), [sym__special_character] = ACTIONS(1213), [anon_sym_DQUOTE] = ACTIONS(1215), @@ -73805,13 +70274,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(1215), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(1215), - [sym__concat] = ACTIONS(1329), + [sym__concat] = ACTIONS(1327), [sym_test_operator] = ACTIONS(1215), [sym__bare_dollar] = ACTIONS(1215), [sym__brace_start] = ACTIONS(1215), }, - [STATE(495)] = { - [aux_sym_concatenation_repeat1] = STATE(493), + [STATE(466)] = { + [aux_sym_concatenation_repeat1] = STATE(465), [sym_word] = ACTIONS(1233), [anon_sym_EQ] = ACTIONS(1235), [anon_sym_PLUS_PLUS] = ACTIONS(1235), @@ -73822,11 +70291,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_LT_LT_EQ] = ACTIONS(1329), + [anon_sym_GT_GT_EQ] = ACTIONS(1329), + [anon_sym_AMP_EQ] = ACTIONS(1329), [anon_sym_CARET_EQ] = ACTIONS(1235), - [anon_sym_PIPE_EQ] = ACTIONS(1332), + [anon_sym_PIPE_EQ] = ACTIONS(1329), [anon_sym_PIPE_PIPE] = ACTIONS(1242), [anon_sym_AMP_AMP] = ACTIONS(1242), [anon_sym_PIPE] = ACTIONS(1237), @@ -73836,8 +70305,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_EQ] = ACTIONS(1329), + [anon_sym_GT_EQ] = ACTIONS(1329), [anon_sym_LT_LT] = ACTIONS(1237), [anon_sym_GT_GT] = ACTIONS(1237), [anon_sym_PLUS] = ACTIONS(1235), @@ -73846,9 +70315,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(1235), [anon_sym_PERCENT] = ACTIONS(1235), [anon_sym_STAR_STAR] = ACTIONS(1235), - [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_LPAREN] = ACTIONS(1331), [anon_sym_PIPE_AMP] = ACTIONS(1240), - [anon_sym_RBRACK] = ACTIONS(1332), + [anon_sym_RBRACK] = ACTIONS(1329), [anon_sym_EQ_TILDE] = ACTIONS(1237), [anon_sym_AMP_GT] = ACTIONS(1233), [anon_sym_AMP_GT_GT] = ACTIONS(1240), @@ -73862,7 +70331,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(1235), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1240), [anon_sym_DOLLAR_LBRACK] = ACTIONS(1240), - [aux_sym_concatenation_token1] = ACTIONS(371), + [aux_sym_concatenation_token1] = ACTIONS(581), [anon_sym_DOLLAR] = ACTIONS(1233), [sym__special_character] = ACTIONS(1233), [anon_sym_DQUOTE] = ACTIONS(1240), @@ -73878,13 +70347,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(1240), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(1240), - [sym__concat] = ACTIONS(371), + [sym__concat] = ACTIONS(581), [sym_test_operator] = ACTIONS(1242), [sym__bare_dollar] = ACTIONS(1240), [sym__brace_start] = ACTIONS(1240), }, - [STATE(496)] = { - [aux_sym_concatenation_repeat1] = STATE(493), + [STATE(467)] = { + [aux_sym_concatenation_repeat1] = STATE(465), [sym_word] = ACTIONS(1233), [anon_sym_EQ] = ACTIONS(1235), [anon_sym_PLUS_PLUS] = ACTIONS(1235), @@ -73895,11 +70364,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_LT_LT_EQ] = ACTIONS(1329), + [anon_sym_GT_GT_EQ] = ACTIONS(1329), + [anon_sym_AMP_EQ] = ACTIONS(1329), [anon_sym_CARET_EQ] = ACTIONS(1235), - [anon_sym_PIPE_EQ] = ACTIONS(1332), + [anon_sym_PIPE_EQ] = ACTIONS(1329), [anon_sym_PIPE_PIPE] = ACTIONS(1242), [anon_sym_AMP_AMP] = ACTIONS(1242), [anon_sym_PIPE] = ACTIONS(1237), @@ -73909,8 +70378,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_EQ] = ACTIONS(1329), + [anon_sym_GT_EQ] = ACTIONS(1329), [anon_sym_LT_LT] = ACTIONS(1237), [anon_sym_GT_GT] = ACTIONS(1237), [anon_sym_PLUS] = ACTIONS(1235), @@ -73921,7 +70390,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_STAR] = ACTIONS(1235), [anon_sym_LPAREN] = ACTIONS(1240), [anon_sym_PIPE_AMP] = ACTIONS(1240), - [anon_sym_RBRACK] = ACTIONS(1332), + [anon_sym_RBRACK] = ACTIONS(1329), [anon_sym_EQ_TILDE] = ACTIONS(1237), [anon_sym_AMP_GT] = ACTIONS(1233), [anon_sym_AMP_GT_GT] = ACTIONS(1240), @@ -73935,7 +70404,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(1235), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1240), [anon_sym_DOLLAR_LBRACK] = ACTIONS(1240), - [aux_sym_concatenation_token1] = ACTIONS(371), + [aux_sym_concatenation_token1] = ACTIONS(581), [anon_sym_DOLLAR] = ACTIONS(1233), [sym__special_character] = ACTIONS(1233), [anon_sym_DQUOTE] = ACTIONS(1240), @@ -73951,85 +70420,878 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(1240), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(1240), - [sym__concat] = ACTIONS(371), + [sym__concat] = ACTIONS(581), [sym_test_operator] = ACTIONS(1242), [sym__bare_dollar] = ACTIONS(1240), [sym__brace_start] = ACTIONS(1240), }, - [STATE(497)] = { - [aux_sym_concatenation_repeat1] = STATE(492), - [sym_word] = ACTIONS(1223), - [anon_sym_EQ] = ACTIONS(1223), - [anon_sym_PLUS_PLUS] = ACTIONS(1223), - [anon_sym_DASH_DASH] = ACTIONS(1223), - [anon_sym_PLUS_EQ] = ACTIONS(1223), - [anon_sym_DASH_EQ] = ACTIONS(1223), - [anon_sym_STAR_EQ] = ACTIONS(1223), - [anon_sym_SLASH_EQ] = ACTIONS(1223), - [anon_sym_PERCENT_EQ] = ACTIONS(1223), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1223), - [anon_sym_LT_LT_EQ] = ACTIONS(1225), - [anon_sym_GT_GT_EQ] = ACTIONS(1225), - [anon_sym_AMP_EQ] = ACTIONS(1225), - [anon_sym_CARET_EQ] = ACTIONS(1223), - [anon_sym_PIPE_EQ] = ACTIONS(1225), - [anon_sym_PIPE_PIPE] = ACTIONS(1225), - [anon_sym_AMP_AMP] = ACTIONS(1225), - [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(468)] = { + [aux_sym_concatenation_repeat1] = STATE(468), + [sym_word] = ACTIONS(1219), + [anon_sym_EQ] = ACTIONS(1219), + [anon_sym_PLUS_PLUS] = ACTIONS(1219), + [anon_sym_DASH_DASH] = ACTIONS(1219), + [anon_sym_PLUS_EQ] = ACTIONS(1219), + [anon_sym_DASH_EQ] = ACTIONS(1219), + [anon_sym_STAR_EQ] = ACTIONS(1219), + [anon_sym_SLASH_EQ] = ACTIONS(1219), + [anon_sym_PERCENT_EQ] = ACTIONS(1219), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1219), + [anon_sym_LT_LT_EQ] = ACTIONS(1221), + [anon_sym_GT_GT_EQ] = ACTIONS(1221), + [anon_sym_AMP_EQ] = ACTIONS(1221), + [anon_sym_CARET_EQ] = ACTIONS(1219), + [anon_sym_PIPE_EQ] = ACTIONS(1221), + [anon_sym_PIPE_PIPE] = ACTIONS(1221), + [anon_sym_AMP_AMP] = ACTIONS(1221), + [anon_sym_PIPE] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(1219), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_LT] = ACTIONS(1219), + [anon_sym_GT] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1221), + [anon_sym_GT_EQ] = ACTIONS(1221), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1219), + [anon_sym_DASH] = ACTIONS(1219), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_SLASH] = ACTIONS(1219), + [anon_sym_PERCENT] = ACTIONS(1219), + [anon_sym_STAR_STAR] = ACTIONS(1219), + [anon_sym_LPAREN] = ACTIONS(1221), + [anon_sym_PIPE_AMP] = ACTIONS(1221), + [anon_sym_RBRACK] = ACTIONS(1221), + [anon_sym_EQ_TILDE] = ACTIONS(1219), + [anon_sym_AMP_GT] = ACTIONS(1219), + [anon_sym_AMP_GT_GT] = ACTIONS(1221), + [anon_sym_LT_AMP] = ACTIONS(1219), + [anon_sym_GT_AMP] = ACTIONS(1219), + [anon_sym_GT_PIPE] = ACTIONS(1221), + [anon_sym_LT_AMP_DASH] = ACTIONS(1221), + [anon_sym_GT_AMP_DASH] = ACTIONS(1221), + [anon_sym_LT_LT_DASH] = ACTIONS(1221), + [anon_sym_LT_LT_LT] = ACTIONS(1221), + [anon_sym_QMARK] = ACTIONS(1219), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1221), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1221), + [aux_sym_concatenation_token1] = ACTIONS(1334), + [anon_sym_DOLLAR] = ACTIONS(1219), + [sym__special_character] = ACTIONS(1219), + [anon_sym_DQUOTE] = ACTIONS(1221), + [sym_raw_string] = ACTIONS(1221), + [sym_ansi_c_string] = ACTIONS(1221), + [aux_sym_number_token1] = ACTIONS(1219), + [aux_sym_number_token2] = ACTIONS(1219), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1221), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1219), + [anon_sym_BQUOTE] = ACTIONS(1219), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1221), + [anon_sym_LT_LPAREN] = ACTIONS(1221), + [anon_sym_GT_LPAREN] = ACTIONS(1221), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1221), + [sym__concat] = ACTIONS(1334), + [sym_test_operator] = ACTIONS(1221), + [sym__bare_dollar] = ACTIONS(1221), + [sym__brace_start] = ACTIONS(1221), + }, + [STATE(469)] = { + [aux_sym_concatenation_repeat1] = STATE(464), + [sym_word] = ACTIONS(1229), + [anon_sym_EQ] = ACTIONS(1229), + [anon_sym_PLUS_PLUS] = ACTIONS(1229), + [anon_sym_DASH_DASH] = ACTIONS(1229), + [anon_sym_PLUS_EQ] = ACTIONS(1229), + [anon_sym_DASH_EQ] = ACTIONS(1229), + [anon_sym_STAR_EQ] = ACTIONS(1229), + [anon_sym_SLASH_EQ] = ACTIONS(1229), + [anon_sym_PERCENT_EQ] = ACTIONS(1229), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1229), + [anon_sym_LT_LT_EQ] = ACTIONS(1231), + [anon_sym_GT_GT_EQ] = ACTIONS(1231), + [anon_sym_AMP_EQ] = ACTIONS(1231), + [anon_sym_CARET_EQ] = ACTIONS(1229), + [anon_sym_PIPE_EQ] = ACTIONS(1231), + [anon_sym_PIPE_PIPE] = ACTIONS(1231), + [anon_sym_AMP_AMP] = ACTIONS(1231), + [anon_sym_PIPE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1229), + [anon_sym_EQ_EQ] = ACTIONS(1229), + [anon_sym_BANG_EQ] = ACTIONS(1229), + [anon_sym_LT] = ACTIONS(1229), + [anon_sym_GT] = ACTIONS(1229), + [anon_sym_LT_EQ] = ACTIONS(1231), + [anon_sym_GT_EQ] = ACTIONS(1231), + [anon_sym_LT_LT] = ACTIONS(1229), + [anon_sym_GT_GT] = ACTIONS(1229), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1229), + [anon_sym_PERCENT] = ACTIONS(1229), + [anon_sym_STAR_STAR] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(1231), + [anon_sym_PIPE_AMP] = ACTIONS(1231), + [anon_sym_RBRACK] = ACTIONS(1231), + [anon_sym_EQ_TILDE] = ACTIONS(1229), + [anon_sym_AMP_GT] = ACTIONS(1229), + [anon_sym_AMP_GT_GT] = ACTIONS(1231), + [anon_sym_LT_AMP] = ACTIONS(1229), + [anon_sym_GT_AMP] = ACTIONS(1229), + [anon_sym_GT_PIPE] = ACTIONS(1231), + [anon_sym_LT_AMP_DASH] = ACTIONS(1231), + [anon_sym_GT_AMP_DASH] = ACTIONS(1231), + [anon_sym_LT_LT_DASH] = ACTIONS(1231), + [anon_sym_LT_LT_LT] = ACTIONS(1231), + [anon_sym_QMARK] = ACTIONS(1229), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1231), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1231), + [aux_sym_concatenation_token1] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(1229), + [sym__special_character] = ACTIONS(1229), + [anon_sym_DQUOTE] = ACTIONS(1231), + [sym_raw_string] = ACTIONS(1231), + [sym_ansi_c_string] = ACTIONS(1231), + [aux_sym_number_token1] = ACTIONS(1229), + [aux_sym_number_token2] = ACTIONS(1229), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1231), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1229), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1231), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1231), + [sym__concat] = ACTIONS(581), + [sym_test_operator] = ACTIONS(1231), + [sym__bare_dollar] = ACTIONS(1231), + [sym__brace_start] = ACTIONS(1231), + }, + [STATE(470)] = { + [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), + [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), + }, + [STATE(471)] = { + [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), + [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), + }, + [STATE(472)] = { + [sym_word] = ACTIONS(1308), + [anon_sym_EQ] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_EQ] = ACTIONS(1308), + [anon_sym_DASH_EQ] = ACTIONS(1308), + [anon_sym_STAR_EQ] = ACTIONS(1308), + [anon_sym_SLASH_EQ] = ACTIONS(1308), + [anon_sym_PERCENT_EQ] = ACTIONS(1308), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1308), + [anon_sym_LT_LT_EQ] = ACTIONS(1310), + [anon_sym_GT_GT_EQ] = ACTIONS(1310), + [anon_sym_AMP_EQ] = ACTIONS(1310), + [anon_sym_CARET_EQ] = ACTIONS(1308), + [anon_sym_PIPE_EQ] = ACTIONS(1310), + [anon_sym_PIPE_PIPE] = ACTIONS(1310), + [anon_sym_AMP_AMP] = ACTIONS(1310), + [anon_sym_PIPE] = ACTIONS(1308), + [anon_sym_CARET] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_EQ_EQ] = ACTIONS(1308), + [anon_sym_BANG_EQ] = ACTIONS(1308), + [anon_sym_LT] = ACTIONS(1308), + [anon_sym_GT] = ACTIONS(1308), + [anon_sym_LT_EQ] = ACTIONS(1310), + [anon_sym_GT_EQ] = ACTIONS(1310), + [anon_sym_LT_LT] = ACTIONS(1308), + [anon_sym_GT_GT] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1308), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_SLASH] = ACTIONS(1308), + [anon_sym_PERCENT] = ACTIONS(1308), + [anon_sym_STAR_STAR] = ACTIONS(1308), + [anon_sym_LPAREN] = ACTIONS(1310), + [anon_sym_PIPE_AMP] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(1310), + [anon_sym_EQ_TILDE] = ACTIONS(1308), + [anon_sym_AMP_GT] = ACTIONS(1308), + [anon_sym_AMP_GT_GT] = ACTIONS(1310), + [anon_sym_LT_AMP] = ACTIONS(1308), + [anon_sym_GT_AMP] = ACTIONS(1308), + [anon_sym_GT_PIPE] = ACTIONS(1310), + [anon_sym_LT_AMP_DASH] = ACTIONS(1310), + [anon_sym_GT_AMP_DASH] = ACTIONS(1310), + [anon_sym_LT_LT_DASH] = ACTIONS(1310), + [anon_sym_LT_LT_LT] = ACTIONS(1310), + [anon_sym_QMARK] = ACTIONS(1308), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1310), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1310), + [aux_sym_concatenation_token1] = ACTIONS(1310), + [anon_sym_DOLLAR] = ACTIONS(1308), + [sym__special_character] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1310), + [sym_raw_string] = ACTIONS(1310), + [sym_ansi_c_string] = ACTIONS(1310), + [aux_sym_number_token1] = ACTIONS(1308), + [aux_sym_number_token2] = ACTIONS(1308), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1310), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1308), + [anon_sym_BQUOTE] = ACTIONS(1308), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1310), + [anon_sym_LT_LPAREN] = ACTIONS(1310), + [anon_sym_GT_LPAREN] = ACTIONS(1310), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1310), + [sym__concat] = ACTIONS(1310), + [sym_test_operator] = ACTIONS(1310), + [sym__bare_dollar] = ACTIONS(1310), + [sym__brace_start] = ACTIONS(1310), + }, + [STATE(473)] = { + [sym_word] = ACTIONS(1312), + [anon_sym_EQ] = ACTIONS(1312), + [anon_sym_PLUS_PLUS] = ACTIONS(1312), + [anon_sym_DASH_DASH] = ACTIONS(1312), + [anon_sym_PLUS_EQ] = ACTIONS(1312), + [anon_sym_DASH_EQ] = ACTIONS(1312), + [anon_sym_STAR_EQ] = ACTIONS(1312), + [anon_sym_SLASH_EQ] = ACTIONS(1312), + [anon_sym_PERCENT_EQ] = ACTIONS(1312), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1312), + [anon_sym_LT_LT_EQ] = ACTIONS(1314), + [anon_sym_GT_GT_EQ] = ACTIONS(1314), + [anon_sym_AMP_EQ] = ACTIONS(1314), + [anon_sym_CARET_EQ] = ACTIONS(1312), + [anon_sym_PIPE_EQ] = ACTIONS(1314), + [anon_sym_PIPE_PIPE] = ACTIONS(1314), + [anon_sym_AMP_AMP] = ACTIONS(1314), + [anon_sym_PIPE] = ACTIONS(1312), + [anon_sym_CARET] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_EQ_EQ] = ACTIONS(1312), + [anon_sym_BANG_EQ] = ACTIONS(1312), + [anon_sym_LT] = ACTIONS(1312), + [anon_sym_GT] = ACTIONS(1312), + [anon_sym_LT_EQ] = ACTIONS(1314), + [anon_sym_GT_EQ] = ACTIONS(1314), + [anon_sym_LT_LT] = ACTIONS(1312), + [anon_sym_GT_GT] = ACTIONS(1312), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_SLASH] = ACTIONS(1312), + [anon_sym_PERCENT] = ACTIONS(1312), + [anon_sym_STAR_STAR] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_PIPE_AMP] = ACTIONS(1314), + [anon_sym_RBRACK] = ACTIONS(1314), + [anon_sym_EQ_TILDE] = ACTIONS(1312), + [anon_sym_AMP_GT] = ACTIONS(1312), + [anon_sym_AMP_GT_GT] = ACTIONS(1314), + [anon_sym_LT_AMP] = ACTIONS(1312), + [anon_sym_GT_AMP] = ACTIONS(1312), + [anon_sym_GT_PIPE] = ACTIONS(1314), + [anon_sym_LT_AMP_DASH] = ACTIONS(1314), + [anon_sym_GT_AMP_DASH] = ACTIONS(1314), + [anon_sym_LT_LT_DASH] = ACTIONS(1314), + [anon_sym_LT_LT_LT] = ACTIONS(1314), + [anon_sym_QMARK] = ACTIONS(1312), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1314), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1314), + [aux_sym_concatenation_token1] = ACTIONS(1314), + [anon_sym_DOLLAR] = ACTIONS(1312), + [sym__special_character] = ACTIONS(1312), + [anon_sym_DQUOTE] = ACTIONS(1314), + [sym_raw_string] = ACTIONS(1314), + [sym_ansi_c_string] = ACTIONS(1314), + [aux_sym_number_token1] = ACTIONS(1312), + [aux_sym_number_token2] = ACTIONS(1312), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1314), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1312), + [anon_sym_BQUOTE] = ACTIONS(1312), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1314), + [anon_sym_LT_LPAREN] = ACTIONS(1314), + [anon_sym_GT_LPAREN] = ACTIONS(1314), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1314), + [sym__concat] = ACTIONS(1314), + [sym_test_operator] = ACTIONS(1314), + [sym__bare_dollar] = ACTIONS(1314), + [sym__brace_start] = ACTIONS(1314), + }, + [STATE(474)] = { + [sym_word] = ACTIONS(1256), + [anon_sym_EQ] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1256), + [anon_sym_DASH_DASH] = ACTIONS(1256), + [anon_sym_PLUS_EQ] = ACTIONS(1256), + [anon_sym_DASH_EQ] = ACTIONS(1256), + [anon_sym_STAR_EQ] = ACTIONS(1256), + [anon_sym_SLASH_EQ] = ACTIONS(1256), + [anon_sym_PERCENT_EQ] = ACTIONS(1256), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1256), + [anon_sym_LT_LT_EQ] = ACTIONS(1258), + [anon_sym_GT_GT_EQ] = ACTIONS(1258), + [anon_sym_AMP_EQ] = ACTIONS(1258), + [anon_sym_CARET_EQ] = ACTIONS(1256), + [anon_sym_PIPE_EQ] = ACTIONS(1258), + [anon_sym_PIPE_PIPE] = ACTIONS(1258), + [anon_sym_AMP_AMP] = ACTIONS(1258), + [anon_sym_PIPE] = ACTIONS(1256), + [anon_sym_CARET] = ACTIONS(1256), + [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_EQ_EQ] = ACTIONS(1256), + [anon_sym_BANG_EQ] = ACTIONS(1256), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_GT] = ACTIONS(1256), + [anon_sym_LT_EQ] = ACTIONS(1258), + [anon_sym_GT_EQ] = ACTIONS(1258), + [anon_sym_LT_LT] = ACTIONS(1256), + [anon_sym_GT_GT] = ACTIONS(1256), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(1256), + [anon_sym_PERCENT] = ACTIONS(1256), + [anon_sym_STAR_STAR] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(1258), + [anon_sym_PIPE_AMP] = ACTIONS(1258), + [anon_sym_RBRACK] = ACTIONS(1258), + [anon_sym_EQ_TILDE] = ACTIONS(1256), + [anon_sym_AMP_GT] = ACTIONS(1256), + [anon_sym_AMP_GT_GT] = ACTIONS(1258), + [anon_sym_LT_AMP] = ACTIONS(1256), + [anon_sym_GT_AMP] = ACTIONS(1256), + [anon_sym_GT_PIPE] = ACTIONS(1258), + [anon_sym_LT_AMP_DASH] = ACTIONS(1258), + [anon_sym_GT_AMP_DASH] = ACTIONS(1258), + [anon_sym_LT_LT_DASH] = ACTIONS(1258), + [anon_sym_LT_LT_LT] = ACTIONS(1258), + [anon_sym_QMARK] = ACTIONS(1256), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1258), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1258), + [aux_sym_concatenation_token1] = ACTIONS(1258), + [anon_sym_DOLLAR] = ACTIONS(1256), + [sym__special_character] = ACTIONS(1256), + [anon_sym_DQUOTE] = ACTIONS(1258), + [sym_raw_string] = ACTIONS(1258), + [sym_ansi_c_string] = ACTIONS(1258), + [aux_sym_number_token1] = ACTIONS(1256), + [aux_sym_number_token2] = ACTIONS(1256), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1258), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1256), + [anon_sym_BQUOTE] = ACTIONS(1256), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1258), + [anon_sym_LT_LPAREN] = ACTIONS(1258), + [anon_sym_GT_LPAREN] = ACTIONS(1258), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1258), + [sym__concat] = ACTIONS(1258), + [sym_test_operator] = ACTIONS(1258), + [sym__bare_dollar] = ACTIONS(1258), + [sym__brace_start] = ACTIONS(1258), + }, + [STATE(475)] = { + [sym_word] = ACTIONS(1219), + [anon_sym_EQ] = ACTIONS(1219), + [anon_sym_PLUS_PLUS] = ACTIONS(1219), + [anon_sym_DASH_DASH] = ACTIONS(1219), + [anon_sym_PLUS_EQ] = ACTIONS(1219), + [anon_sym_DASH_EQ] = ACTIONS(1219), + [anon_sym_STAR_EQ] = ACTIONS(1219), + [anon_sym_SLASH_EQ] = ACTIONS(1219), + [anon_sym_PERCENT_EQ] = ACTIONS(1219), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1219), + [anon_sym_LT_LT_EQ] = ACTIONS(1221), + [anon_sym_GT_GT_EQ] = ACTIONS(1221), + [anon_sym_AMP_EQ] = ACTIONS(1221), + [anon_sym_CARET_EQ] = ACTIONS(1219), + [anon_sym_PIPE_EQ] = ACTIONS(1221), + [anon_sym_PIPE_PIPE] = ACTIONS(1221), + [anon_sym_AMP_AMP] = ACTIONS(1221), + [anon_sym_PIPE] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(1219), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_LT] = ACTIONS(1219), + [anon_sym_GT] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1221), + [anon_sym_GT_EQ] = ACTIONS(1221), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1219), + [anon_sym_DASH] = ACTIONS(1219), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_SLASH] = ACTIONS(1219), + [anon_sym_PERCENT] = ACTIONS(1219), + [anon_sym_STAR_STAR] = ACTIONS(1219), + [anon_sym_LPAREN] = ACTIONS(1221), + [anon_sym_PIPE_AMP] = ACTIONS(1221), + [anon_sym_RBRACK] = ACTIONS(1221), + [anon_sym_EQ_TILDE] = ACTIONS(1219), + [anon_sym_AMP_GT] = ACTIONS(1219), + [anon_sym_AMP_GT_GT] = ACTIONS(1221), + [anon_sym_LT_AMP] = ACTIONS(1219), + [anon_sym_GT_AMP] = ACTIONS(1219), + [anon_sym_GT_PIPE] = ACTIONS(1221), + [anon_sym_LT_AMP_DASH] = ACTIONS(1221), + [anon_sym_GT_AMP_DASH] = ACTIONS(1221), + [anon_sym_LT_LT_DASH] = ACTIONS(1221), + [anon_sym_LT_LT_LT] = ACTIONS(1221), + [anon_sym_QMARK] = ACTIONS(1219), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1221), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1221), + [aux_sym_concatenation_token1] = ACTIONS(1221), + [anon_sym_DOLLAR] = ACTIONS(1219), + [sym__special_character] = ACTIONS(1219), + [anon_sym_DQUOTE] = ACTIONS(1221), + [sym_raw_string] = ACTIONS(1221), + [sym_ansi_c_string] = ACTIONS(1221), + [aux_sym_number_token1] = ACTIONS(1219), + [aux_sym_number_token2] = ACTIONS(1219), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1221), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1219), + [anon_sym_BQUOTE] = ACTIONS(1219), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1221), + [anon_sym_LT_LPAREN] = ACTIONS(1221), + [anon_sym_GT_LPAREN] = ACTIONS(1221), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1221), + [sym__concat] = ACTIONS(1221), + [sym_test_operator] = ACTIONS(1221), + [sym__bare_dollar] = ACTIONS(1221), + [sym__brace_start] = ACTIONS(1221), + }, + [STATE(476)] = { + [sym_word] = ACTIONS(1252), + [anon_sym_EQ] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1252), + [anon_sym_DASH_DASH] = ACTIONS(1252), + [anon_sym_PLUS_EQ] = ACTIONS(1252), + [anon_sym_DASH_EQ] = ACTIONS(1252), + [anon_sym_STAR_EQ] = ACTIONS(1252), + [anon_sym_SLASH_EQ] = ACTIONS(1252), + [anon_sym_PERCENT_EQ] = ACTIONS(1252), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1252), + [anon_sym_LT_LT_EQ] = ACTIONS(1254), + [anon_sym_GT_GT_EQ] = ACTIONS(1254), + [anon_sym_AMP_EQ] = ACTIONS(1254), + [anon_sym_CARET_EQ] = ACTIONS(1252), + [anon_sym_PIPE_EQ] = ACTIONS(1254), + [anon_sym_PIPE_PIPE] = ACTIONS(1254), + [anon_sym_AMP_AMP] = ACTIONS(1254), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_CARET] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1252), + [anon_sym_EQ_EQ] = ACTIONS(1252), + [anon_sym_BANG_EQ] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(1252), + [anon_sym_GT] = ACTIONS(1252), + [anon_sym_LT_EQ] = ACTIONS(1254), + [anon_sym_GT_EQ] = ACTIONS(1254), + [anon_sym_LT_LT] = ACTIONS(1252), + [anon_sym_GT_GT] = ACTIONS(1252), + [anon_sym_PLUS] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1252), + [anon_sym_STAR] = ACTIONS(1252), + [anon_sym_SLASH] = ACTIONS(1252), + [anon_sym_PERCENT] = ACTIONS(1252), + [anon_sym_STAR_STAR] = ACTIONS(1252), + [anon_sym_LPAREN] = ACTIONS(1254), + [anon_sym_PIPE_AMP] = ACTIONS(1254), + [anon_sym_RBRACK] = ACTIONS(1254), + [anon_sym_EQ_TILDE] = ACTIONS(1252), + [anon_sym_AMP_GT] = ACTIONS(1252), + [anon_sym_AMP_GT_GT] = ACTIONS(1254), + [anon_sym_LT_AMP] = ACTIONS(1252), + [anon_sym_GT_AMP] = ACTIONS(1252), + [anon_sym_GT_PIPE] = ACTIONS(1254), + [anon_sym_LT_AMP_DASH] = ACTIONS(1254), + [anon_sym_GT_AMP_DASH] = ACTIONS(1254), + [anon_sym_LT_LT_DASH] = ACTIONS(1254), + [anon_sym_LT_LT_LT] = ACTIONS(1254), + [anon_sym_QMARK] = ACTIONS(1252), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1254), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1254), + [aux_sym_concatenation_token1] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1252), + [sym__special_character] = ACTIONS(1252), + [anon_sym_DQUOTE] = ACTIONS(1254), + [sym_raw_string] = ACTIONS(1254), + [sym_ansi_c_string] = ACTIONS(1254), + [aux_sym_number_token1] = ACTIONS(1252), + [aux_sym_number_token2] = ACTIONS(1252), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1254), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1252), + [anon_sym_BQUOTE] = ACTIONS(1252), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1254), + [anon_sym_LT_LPAREN] = ACTIONS(1254), + [anon_sym_GT_LPAREN] = ACTIONS(1254), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1254), + [sym__concat] = ACTIONS(1254), + [sym_test_operator] = ACTIONS(1254), + [sym__bare_dollar] = ACTIONS(1254), + [sym__brace_start] = ACTIONS(1254), + }, + [STATE(477)] = { + [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), + [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), + }, + [STATE(478)] = { + [sym_word] = ACTIONS(1284), + [anon_sym_EQ] = ACTIONS(1284), + [anon_sym_PLUS_PLUS] = ACTIONS(1284), + [anon_sym_DASH_DASH] = ACTIONS(1284), + [anon_sym_PLUS_EQ] = ACTIONS(1284), + [anon_sym_DASH_EQ] = ACTIONS(1284), + [anon_sym_STAR_EQ] = ACTIONS(1284), + [anon_sym_SLASH_EQ] = ACTIONS(1284), + [anon_sym_PERCENT_EQ] = ACTIONS(1284), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1284), + [anon_sym_LT_LT_EQ] = ACTIONS(1286), + [anon_sym_GT_GT_EQ] = ACTIONS(1286), + [anon_sym_AMP_EQ] = ACTIONS(1286), + [anon_sym_CARET_EQ] = ACTIONS(1284), + [anon_sym_PIPE_EQ] = ACTIONS(1286), + [anon_sym_PIPE_PIPE] = ACTIONS(1286), + [anon_sym_AMP_AMP] = ACTIONS(1286), + [anon_sym_PIPE] = ACTIONS(1284), + [anon_sym_CARET] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1284), + [anon_sym_EQ_EQ] = ACTIONS(1284), + [anon_sym_BANG_EQ] = ACTIONS(1284), + [anon_sym_LT] = ACTIONS(1284), + [anon_sym_GT] = ACTIONS(1284), + [anon_sym_LT_EQ] = ACTIONS(1286), + [anon_sym_GT_EQ] = ACTIONS(1286), + [anon_sym_LT_LT] = ACTIONS(1284), + [anon_sym_GT_GT] = ACTIONS(1284), + [anon_sym_PLUS] = ACTIONS(1284), + [anon_sym_DASH] = ACTIONS(1284), + [anon_sym_STAR] = ACTIONS(1284), + [anon_sym_SLASH] = ACTIONS(1284), + [anon_sym_PERCENT] = ACTIONS(1284), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_PIPE_AMP] = ACTIONS(1286), + [anon_sym_RBRACK] = ACTIONS(1286), + [anon_sym_EQ_TILDE] = ACTIONS(1284), + [anon_sym_AMP_GT] = ACTIONS(1284), + [anon_sym_AMP_GT_GT] = ACTIONS(1286), + [anon_sym_LT_AMP] = ACTIONS(1284), + [anon_sym_GT_AMP] = ACTIONS(1284), + [anon_sym_GT_PIPE] = ACTIONS(1286), + [anon_sym_LT_AMP_DASH] = ACTIONS(1286), + [anon_sym_GT_AMP_DASH] = ACTIONS(1286), + [anon_sym_LT_LT_DASH] = ACTIONS(1286), + [anon_sym_LT_LT_LT] = ACTIONS(1286), + [anon_sym_QMARK] = ACTIONS(1284), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1286), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1286), + [aux_sym_concatenation_token1] = ACTIONS(1286), + [anon_sym_DOLLAR] = ACTIONS(1284), + [sym__special_character] = ACTIONS(1284), + [anon_sym_DQUOTE] = ACTIONS(1286), + [sym_raw_string] = ACTIONS(1286), + [sym_ansi_c_string] = ACTIONS(1286), + [aux_sym_number_token1] = ACTIONS(1284), + [aux_sym_number_token2] = ACTIONS(1284), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1286), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1284), + [anon_sym_BQUOTE] = ACTIONS(1284), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1286), + [anon_sym_LT_LPAREN] = ACTIONS(1286), + [anon_sym_GT_LPAREN] = ACTIONS(1286), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1286), + [sym__concat] = ACTIONS(1286), + [sym_test_operator] = ACTIONS(1286), + [sym__bare_dollar] = ACTIONS(1286), + [sym__brace_start] = ACTIONS(1286), + }, + [STATE(479)] = { + [sym_word] = ACTIONS(1288), + [anon_sym_EQ] = ACTIONS(1288), + [anon_sym_PLUS_PLUS] = ACTIONS(1288), + [anon_sym_DASH_DASH] = ACTIONS(1288), + [anon_sym_PLUS_EQ] = ACTIONS(1288), + [anon_sym_DASH_EQ] = ACTIONS(1288), + [anon_sym_STAR_EQ] = ACTIONS(1288), + [anon_sym_SLASH_EQ] = ACTIONS(1288), + [anon_sym_PERCENT_EQ] = ACTIONS(1288), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1288), + [anon_sym_LT_LT_EQ] = ACTIONS(1290), + [anon_sym_GT_GT_EQ] = ACTIONS(1290), + [anon_sym_AMP_EQ] = ACTIONS(1290), + [anon_sym_CARET_EQ] = ACTIONS(1288), + [anon_sym_PIPE_EQ] = ACTIONS(1290), + [anon_sym_PIPE_PIPE] = ACTIONS(1290), + [anon_sym_AMP_AMP] = ACTIONS(1290), + [anon_sym_PIPE] = ACTIONS(1288), + [anon_sym_CARET] = ACTIONS(1288), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_EQ_EQ] = ACTIONS(1288), + [anon_sym_BANG_EQ] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1288), + [anon_sym_GT] = ACTIONS(1288), + [anon_sym_LT_EQ] = ACTIONS(1290), + [anon_sym_GT_EQ] = ACTIONS(1290), + [anon_sym_LT_LT] = ACTIONS(1288), + [anon_sym_GT_GT] = ACTIONS(1288), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_STAR] = ACTIONS(1288), + [anon_sym_SLASH] = ACTIONS(1288), + [anon_sym_PERCENT] = ACTIONS(1288), + [anon_sym_STAR_STAR] = ACTIONS(1288), + [anon_sym_LPAREN] = ACTIONS(1290), + [anon_sym_PIPE_AMP] = ACTIONS(1290), + [anon_sym_RBRACK] = ACTIONS(1290), + [anon_sym_EQ_TILDE] = ACTIONS(1288), + [anon_sym_AMP_GT] = ACTIONS(1288), + [anon_sym_AMP_GT_GT] = ACTIONS(1290), + [anon_sym_LT_AMP] = ACTIONS(1288), + [anon_sym_GT_AMP] = ACTIONS(1288), + [anon_sym_GT_PIPE] = ACTIONS(1290), + [anon_sym_LT_AMP_DASH] = ACTIONS(1290), + [anon_sym_GT_AMP_DASH] = ACTIONS(1290), + [anon_sym_LT_LT_DASH] = ACTIONS(1290), + [anon_sym_LT_LT_LT] = ACTIONS(1290), + [anon_sym_QMARK] = ACTIONS(1288), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1290), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1290), + [aux_sym_concatenation_token1] = ACTIONS(1290), + [anon_sym_DOLLAR] = ACTIONS(1288), + [sym__special_character] = ACTIONS(1288), + [anon_sym_DQUOTE] = ACTIONS(1290), + [sym_raw_string] = ACTIONS(1290), + [sym_ansi_c_string] = ACTIONS(1290), + [aux_sym_number_token1] = ACTIONS(1288), + [aux_sym_number_token2] = ACTIONS(1288), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1290), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1288), + [anon_sym_BQUOTE] = ACTIONS(1288), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1290), + [anon_sym_LT_LPAREN] = ACTIONS(1290), + [anon_sym_GT_LPAREN] = ACTIONS(1290), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1225), - [sym__concat] = ACTIONS(371), - [sym_test_operator] = ACTIONS(1225), - [sym__bare_dollar] = ACTIONS(1225), - [sym__brace_start] = ACTIONS(1225), + [sym_file_descriptor] = ACTIONS(1290), + [sym__concat] = ACTIONS(1290), + [sym_test_operator] = ACTIONS(1290), + [sym__bare_dollar] = ACTIONS(1290), + [sym__brace_start] = ACTIONS(1290), }, - [STATE(498)] = { + [STATE(480)] = { [sym_word] = ACTIONS(1264), [anon_sym_EQ] = ACTIONS(1264), [anon_sym_PLUS_PLUS] = ACTIONS(1264), @@ -74101,79 +71363,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1266), [sym__brace_start] = ACTIONS(1266), }, - [STATE(499)] = { - [sym_word] = ACTIONS(1292), - [anon_sym_EQ] = ACTIONS(1292), - [anon_sym_PLUS_PLUS] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1292), - [anon_sym_PLUS_EQ] = ACTIONS(1292), - [anon_sym_DASH_EQ] = ACTIONS(1292), - [anon_sym_STAR_EQ] = ACTIONS(1292), - [anon_sym_SLASH_EQ] = ACTIONS(1292), - [anon_sym_PERCENT_EQ] = ACTIONS(1292), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1292), - [anon_sym_LT_LT_EQ] = ACTIONS(1294), - [anon_sym_GT_GT_EQ] = ACTIONS(1294), - [anon_sym_AMP_EQ] = ACTIONS(1294), - [anon_sym_CARET_EQ] = ACTIONS(1292), - [anon_sym_PIPE_EQ] = ACTIONS(1294), - [anon_sym_PIPE_PIPE] = ACTIONS(1294), - [anon_sym_AMP_AMP] = ACTIONS(1294), - [anon_sym_PIPE] = ACTIONS(1292), - [anon_sym_CARET] = ACTIONS(1292), - [anon_sym_AMP] = ACTIONS(1292), - [anon_sym_EQ_EQ] = ACTIONS(1292), - [anon_sym_BANG_EQ] = ACTIONS(1292), - [anon_sym_LT] = ACTIONS(1292), - [anon_sym_GT] = ACTIONS(1292), - [anon_sym_LT_EQ] = ACTIONS(1294), - [anon_sym_GT_EQ] = ACTIONS(1294), - [anon_sym_LT_LT] = ACTIONS(1292), - [anon_sym_GT_GT] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1292), - [anon_sym_DASH] = ACTIONS(1292), - [anon_sym_STAR] = ACTIONS(1292), - [anon_sym_SLASH] = ACTIONS(1292), - [anon_sym_PERCENT] = ACTIONS(1292), - [anon_sym_STAR_STAR] = ACTIONS(1292), - [anon_sym_LPAREN] = ACTIONS(1294), - [anon_sym_PIPE_AMP] = ACTIONS(1294), - [anon_sym_RBRACK] = ACTIONS(1294), - [anon_sym_EQ_TILDE] = ACTIONS(1292), - [anon_sym_AMP_GT] = ACTIONS(1292), - [anon_sym_AMP_GT_GT] = ACTIONS(1294), - [anon_sym_LT_AMP] = ACTIONS(1292), - [anon_sym_GT_AMP] = ACTIONS(1292), - [anon_sym_GT_PIPE] = ACTIONS(1294), - [anon_sym_LT_AMP_DASH] = ACTIONS(1294), - [anon_sym_GT_AMP_DASH] = ACTIONS(1294), - [anon_sym_LT_LT_DASH] = ACTIONS(1294), - [anon_sym_LT_LT_LT] = ACTIONS(1294), - [anon_sym_QMARK] = ACTIONS(1292), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1294), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1294), - [aux_sym_concatenation_token1] = ACTIONS(1294), - [anon_sym_DOLLAR] = ACTIONS(1292), - [sym__special_character] = ACTIONS(1292), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym_raw_string] = ACTIONS(1294), - [sym_ansi_c_string] = ACTIONS(1294), - [aux_sym_number_token1] = ACTIONS(1292), - [aux_sym_number_token2] = ACTIONS(1292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1292), - [anon_sym_BQUOTE] = ACTIONS(1292), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1294), - [anon_sym_LT_LPAREN] = ACTIONS(1294), - [anon_sym_GT_LPAREN] = ACTIONS(1294), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1294), - [sym__concat] = ACTIONS(1294), - [sym_test_operator] = ACTIONS(1294), - [sym__bare_dollar] = ACTIONS(1294), - [sym__brace_start] = ACTIONS(1294), - }, - [STATE(500)] = { + [STATE(481)] = { [sym_word] = ACTIONS(1248), [anon_sym_EQ] = ACTIONS(1248), [anon_sym_PLUS_PLUS] = ACTIONS(1248), @@ -74245,79 +71435,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1250), [sym__brace_start] = ACTIONS(1250), }, - [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(482)] = { + [sym_word] = ACTIONS(1292), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_PLUS_PLUS] = ACTIONS(1292), + [anon_sym_DASH_DASH] = ACTIONS(1292), + [anon_sym_PLUS_EQ] = ACTIONS(1292), + [anon_sym_DASH_EQ] = ACTIONS(1292), + [anon_sym_STAR_EQ] = ACTIONS(1292), + [anon_sym_SLASH_EQ] = ACTIONS(1292), + [anon_sym_PERCENT_EQ] = ACTIONS(1292), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1292), + [anon_sym_LT_LT_EQ] = ACTIONS(1294), + [anon_sym_GT_GT_EQ] = ACTIONS(1294), + [anon_sym_AMP_EQ] = ACTIONS(1294), + [anon_sym_CARET_EQ] = ACTIONS(1292), + [anon_sym_PIPE_EQ] = ACTIONS(1294), + [anon_sym_PIPE_PIPE] = ACTIONS(1294), + [anon_sym_AMP_AMP] = ACTIONS(1294), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1292), + [anon_sym_BANG_EQ] = ACTIONS(1292), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1294), + [anon_sym_GT_EQ] = ACTIONS(1294), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_STAR] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_PERCENT] = ACTIONS(1292), + [anon_sym_STAR_STAR] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1294), + [anon_sym_PIPE_AMP] = ACTIONS(1294), + [anon_sym_RBRACK] = ACTIONS(1294), + [anon_sym_EQ_TILDE] = ACTIONS(1292), + [anon_sym_AMP_GT] = ACTIONS(1292), + [anon_sym_AMP_GT_GT] = ACTIONS(1294), + [anon_sym_LT_AMP] = ACTIONS(1292), + [anon_sym_GT_AMP] = ACTIONS(1292), + [anon_sym_GT_PIPE] = ACTIONS(1294), + [anon_sym_LT_AMP_DASH] = ACTIONS(1294), + [anon_sym_GT_AMP_DASH] = ACTIONS(1294), + [anon_sym_LT_LT_DASH] = ACTIONS(1294), + [anon_sym_LT_LT_LT] = ACTIONS(1294), + [anon_sym_QMARK] = ACTIONS(1292), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1294), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1294), + [aux_sym_concatenation_token1] = ACTIONS(1294), + [anon_sym_DOLLAR] = ACTIONS(1292), + [sym__special_character] = ACTIONS(1292), + [anon_sym_DQUOTE] = ACTIONS(1294), + [sym_raw_string] = ACTIONS(1294), + [sym_ansi_c_string] = ACTIONS(1294), + [aux_sym_number_token1] = ACTIONS(1292), + [aux_sym_number_token2] = ACTIONS(1292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1292), + [anon_sym_BQUOTE] = ACTIONS(1292), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1294), + [anon_sym_LT_LPAREN] = ACTIONS(1294), + [anon_sym_GT_LPAREN] = ACTIONS(1294), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1298), - [sym__concat] = ACTIONS(1298), - [sym_test_operator] = ACTIONS(1298), - [sym__bare_dollar] = ACTIONS(1298), - [sym__brace_start] = ACTIONS(1298), + [sym_file_descriptor] = ACTIONS(1294), + [sym__concat] = ACTIONS(1294), + [sym_test_operator] = ACTIONS(1294), + [sym__bare_dollar] = ACTIONS(1294), + [sym__brace_start] = ACTIONS(1294), }, - [STATE(502)] = { + [STATE(483)] = { [sym_word] = ACTIONS(1300), [anon_sym_EQ] = ACTIONS(1300), [anon_sym_PLUS_PLUS] = ACTIONS(1300), @@ -74389,122 +71579,266 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1302), [sym__brace_start] = ACTIONS(1302), }, - [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), - [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), - }, - [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), + [STATE(484)] = { + [sym_word] = ACTIONS(1296), + [anon_sym_EQ] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1296), + [anon_sym_DASH_DASH] = ACTIONS(1296), + [anon_sym_PLUS_EQ] = ACTIONS(1296), + [anon_sym_DASH_EQ] = ACTIONS(1296), + [anon_sym_STAR_EQ] = ACTIONS(1296), + [anon_sym_SLASH_EQ] = ACTIONS(1296), + [anon_sym_PERCENT_EQ] = ACTIONS(1296), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1296), + [anon_sym_LT_LT_EQ] = ACTIONS(1298), + [anon_sym_GT_GT_EQ] = ACTIONS(1298), + [anon_sym_AMP_EQ] = ACTIONS(1298), + [anon_sym_CARET_EQ] = ACTIONS(1296), + [anon_sym_PIPE_EQ] = ACTIONS(1298), + [anon_sym_PIPE_PIPE] = ACTIONS(1298), + [anon_sym_AMP_AMP] = ACTIONS(1298), + [anon_sym_PIPE] = ACTIONS(1296), + [anon_sym_CARET] = ACTIONS(1296), + [anon_sym_AMP] = ACTIONS(1296), + [anon_sym_EQ_EQ] = ACTIONS(1296), + [anon_sym_BANG_EQ] = ACTIONS(1296), + [anon_sym_LT] = ACTIONS(1296), + [anon_sym_GT] = ACTIONS(1296), + [anon_sym_LT_EQ] = ACTIONS(1298), + [anon_sym_GT_EQ] = ACTIONS(1298), + [anon_sym_LT_LT] = ACTIONS(1296), + [anon_sym_GT_GT] = ACTIONS(1296), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_STAR] = ACTIONS(1296), + [anon_sym_SLASH] = ACTIONS(1296), + [anon_sym_PERCENT] = ACTIONS(1296), + [anon_sym_STAR_STAR] = ACTIONS(1296), + [anon_sym_LPAREN] = ACTIONS(1298), + [anon_sym_PIPE_AMP] = ACTIONS(1298), + [anon_sym_RBRACK] = ACTIONS(1298), + [anon_sym_EQ_TILDE] = ACTIONS(1296), + [anon_sym_AMP_GT] = ACTIONS(1296), + [anon_sym_AMP_GT_GT] = ACTIONS(1298), + [anon_sym_LT_AMP] = ACTIONS(1296), + [anon_sym_GT_AMP] = ACTIONS(1296), + [anon_sym_GT_PIPE] = ACTIONS(1298), + [anon_sym_LT_AMP_DASH] = ACTIONS(1298), + [anon_sym_GT_AMP_DASH] = ACTIONS(1298), + [anon_sym_LT_LT_DASH] = ACTIONS(1298), + [anon_sym_LT_LT_LT] = ACTIONS(1298), + [anon_sym_QMARK] = ACTIONS(1296), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1298), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1298), + [aux_sym_concatenation_token1] = ACTIONS(1298), + [anon_sym_DOLLAR] = ACTIONS(1296), + [sym__special_character] = ACTIONS(1296), + [anon_sym_DQUOTE] = ACTIONS(1298), + [sym_raw_string] = ACTIONS(1298), + [sym_ansi_c_string] = ACTIONS(1298), + [aux_sym_number_token1] = ACTIONS(1296), + [aux_sym_number_token2] = ACTIONS(1296), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1298), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1296), + [anon_sym_BQUOTE] = ACTIONS(1296), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1298), + [anon_sym_LT_LPAREN] = ACTIONS(1298), + [anon_sym_GT_LPAREN] = ACTIONS(1298), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1298), + [sym__concat] = ACTIONS(1298), + [sym_test_operator] = ACTIONS(1298), + [sym__bare_dollar] = ACTIONS(1298), + [sym__brace_start] = ACTIONS(1298), + }, + [STATE(485)] = { + [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), + [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), + }, + [STATE(486)] = { + [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), + [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), + }, + [STATE(487)] = { + [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), @@ -74533,79 +71867,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1302), [sym__brace_start] = ACTIONS(1302), }, - [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), - [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), - }, - [STATE(506)] = { + [STATE(488)] = { [sym_word] = ACTIONS(1280), [anon_sym_EQ] = ACTIONS(1280), [anon_sym_PLUS_PLUS] = ACTIONS(1280), @@ -74677,1145 +71939,425 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1282), [sym__brace_start] = ACTIONS(1282), }, - [STATE(507)] = { - [sym_word] = ACTIONS(1284), - [anon_sym_EQ] = ACTIONS(1284), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [anon_sym_PLUS_EQ] = ACTIONS(1284), - [anon_sym_DASH_EQ] = ACTIONS(1284), - [anon_sym_STAR_EQ] = ACTIONS(1284), - [anon_sym_SLASH_EQ] = ACTIONS(1284), - [anon_sym_PERCENT_EQ] = ACTIONS(1284), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1284), - [anon_sym_LT_LT_EQ] = ACTIONS(1286), - [anon_sym_GT_GT_EQ] = ACTIONS(1286), - [anon_sym_AMP_EQ] = ACTIONS(1286), - [anon_sym_CARET_EQ] = ACTIONS(1284), - [anon_sym_PIPE_EQ] = ACTIONS(1286), - [anon_sym_PIPE_PIPE] = ACTIONS(1286), - [anon_sym_AMP_AMP] = ACTIONS(1286), - [anon_sym_PIPE] = ACTIONS(1284), - [anon_sym_CARET] = ACTIONS(1284), - [anon_sym_AMP] = ACTIONS(1284), - [anon_sym_EQ_EQ] = ACTIONS(1284), - [anon_sym_BANG_EQ] = ACTIONS(1284), - [anon_sym_LT] = ACTIONS(1284), - [anon_sym_GT] = ACTIONS(1284), - [anon_sym_LT_EQ] = ACTIONS(1286), - [anon_sym_GT_EQ] = ACTIONS(1286), - [anon_sym_LT_LT] = ACTIONS(1284), - [anon_sym_GT_GT] = ACTIONS(1284), - [anon_sym_PLUS] = ACTIONS(1284), - [anon_sym_DASH] = ACTIONS(1284), - [anon_sym_STAR] = ACTIONS(1284), - [anon_sym_SLASH] = ACTIONS(1284), - [anon_sym_PERCENT] = ACTIONS(1284), - [anon_sym_STAR_STAR] = ACTIONS(1284), - [anon_sym_LPAREN] = ACTIONS(1286), - [anon_sym_PIPE_AMP] = ACTIONS(1286), - [anon_sym_RBRACK] = ACTIONS(1286), - [anon_sym_EQ_TILDE] = ACTIONS(1284), - [anon_sym_AMP_GT] = ACTIONS(1284), - [anon_sym_AMP_GT_GT] = ACTIONS(1286), - [anon_sym_LT_AMP] = ACTIONS(1284), - [anon_sym_GT_AMP] = ACTIONS(1284), - [anon_sym_GT_PIPE] = ACTIONS(1286), - [anon_sym_LT_AMP_DASH] = ACTIONS(1286), - [anon_sym_GT_AMP_DASH] = ACTIONS(1286), - [anon_sym_LT_LT_DASH] = ACTIONS(1286), - [anon_sym_LT_LT_LT] = ACTIONS(1286), - [anon_sym_QMARK] = ACTIONS(1284), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1286), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1286), - [aux_sym_concatenation_token1] = ACTIONS(1286), - [anon_sym_DOLLAR] = ACTIONS(1284), - [sym__special_character] = ACTIONS(1284), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym_raw_string] = ACTIONS(1286), - [sym_ansi_c_string] = ACTIONS(1286), - [aux_sym_number_token1] = ACTIONS(1284), - [aux_sym_number_token2] = ACTIONS(1284), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1286), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1284), - [anon_sym_BQUOTE] = ACTIONS(1284), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1286), - [anon_sym_LT_LPAREN] = ACTIONS(1286), - [anon_sym_GT_LPAREN] = ACTIONS(1286), + [STATE(489)] = { + [aux_sym__literal_repeat1] = STATE(489), + [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(1337), + [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(1286), - [sym__concat] = ACTIONS(1286), - [sym_test_operator] = ACTIONS(1286), - [sym__bare_dollar] = ACTIONS(1286), - [sym__brace_start] = ACTIONS(1286), + [sym_file_descriptor] = ACTIONS(1318), + [sym_test_operator] = ACTIONS(1318), + [sym__bare_dollar] = ACTIONS(1318), + [sym__brace_start] = ACTIONS(1318), }, - [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(490)] = { + [aux_sym__literal_repeat1] = STATE(489), + [sym_word] = ACTIONS(237), + [anon_sym_EQ] = ACTIONS(239), + [anon_sym_PLUS_PLUS] = ACTIONS(239), + [anon_sym_DASH_DASH] = ACTIONS(239), + [anon_sym_PLUS_EQ] = ACTIONS(239), + [anon_sym_DASH_EQ] = ACTIONS(239), + [anon_sym_STAR_EQ] = ACTIONS(239), + [anon_sym_SLASH_EQ] = ACTIONS(239), + [anon_sym_PERCENT_EQ] = ACTIONS(239), + [anon_sym_STAR_STAR_EQ] = ACTIONS(239), + [anon_sym_LT_LT_EQ] = ACTIONS(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), + [anon_sym_CARET_EQ] = ACTIONS(239), + [anon_sym_PIPE_EQ] = ACTIONS(568), + [anon_sym_PIPE_PIPE] = ACTIONS(570), + [anon_sym_AMP_AMP] = ACTIONS(570), + [anon_sym_PIPE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(239), + [anon_sym_AMP] = ACTIONS(239), + [anon_sym_EQ_EQ] = ACTIONS(241), + [anon_sym_BANG_EQ] = ACTIONS(239), + [anon_sym_LT] = ACTIONS(241), + [anon_sym_GT] = ACTIONS(241), + [anon_sym_LT_EQ] = ACTIONS(568), + [anon_sym_GT_EQ] = ACTIONS(568), + [anon_sym_LT_LT] = ACTIONS(241), + [anon_sym_GT_GT] = ACTIONS(241), + [anon_sym_PLUS] = ACTIONS(239), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(239), + [anon_sym_SLASH] = ACTIONS(239), + [anon_sym_PERCENT] = ACTIONS(239), + [anon_sym_STAR_STAR] = ACTIONS(239), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_PIPE_AMP] = ACTIONS(276), + [anon_sym_RBRACK] = ACTIONS(568), + [anon_sym_EQ_TILDE] = ACTIONS(241), + [anon_sym_AMP_GT] = ACTIONS(237), + [anon_sym_AMP_GT_GT] = ACTIONS(276), + [anon_sym_LT_AMP] = ACTIONS(237), + [anon_sym_GT_AMP] = ACTIONS(237), + [anon_sym_GT_PIPE] = ACTIONS(276), + [anon_sym_LT_AMP_DASH] = ACTIONS(276), + [anon_sym_GT_AMP_DASH] = ACTIONS(276), + [anon_sym_LT_LT_DASH] = ACTIONS(276), + [anon_sym_LT_LT_LT] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(239), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(276), + [anon_sym_DOLLAR] = ACTIONS(237), + [sym__special_character] = ACTIONS(1340), + [anon_sym_DQUOTE] = ACTIONS(276), + [sym_raw_string] = ACTIONS(276), + [sym_ansi_c_string] = ACTIONS(276), + [aux_sym_number_token1] = ACTIONS(237), + [aux_sym_number_token2] = ACTIONS(237), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(276), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(276), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(276), + [anon_sym_LT_LPAREN] = ACTIONS(276), + [anon_sym_GT_LPAREN] = ACTIONS(276), [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(276), + [sym_test_operator] = ACTIONS(570), + [sym__bare_dollar] = ACTIONS(276), + [sym__brace_start] = ACTIONS(276), }, - [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(491)] = { + [sym_word] = ACTIONS(1229), + [anon_sym_EQ] = ACTIONS(1229), + [anon_sym_PLUS_PLUS] = ACTIONS(1229), + [anon_sym_DASH_DASH] = ACTIONS(1229), + [anon_sym_PLUS_EQ] = ACTIONS(1229), + [anon_sym_DASH_EQ] = ACTIONS(1229), + [anon_sym_STAR_EQ] = ACTIONS(1229), + [anon_sym_SLASH_EQ] = ACTIONS(1229), + [anon_sym_PERCENT_EQ] = ACTIONS(1229), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1229), + [anon_sym_LT_LT_EQ] = ACTIONS(1231), + [anon_sym_GT_GT_EQ] = ACTIONS(1231), + [anon_sym_AMP_EQ] = ACTIONS(1231), + [anon_sym_CARET_EQ] = ACTIONS(1229), + [anon_sym_PIPE_EQ] = ACTIONS(1231), + [anon_sym_PIPE_PIPE] = ACTIONS(1231), + [anon_sym_AMP_AMP] = ACTIONS(1231), + [anon_sym_PIPE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1229), + [anon_sym_EQ_EQ] = ACTIONS(1229), + [anon_sym_BANG_EQ] = ACTIONS(1229), + [anon_sym_LT] = ACTIONS(1229), + [anon_sym_GT] = ACTIONS(1229), + [anon_sym_LT_EQ] = ACTIONS(1231), + [anon_sym_GT_EQ] = ACTIONS(1231), + [anon_sym_LT_LT] = ACTIONS(1229), + [anon_sym_GT_GT] = ACTIONS(1229), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1229), + [anon_sym_PERCENT] = ACTIONS(1229), + [anon_sym_STAR_STAR] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(1231), + [anon_sym_PIPE_AMP] = ACTIONS(1231), + [anon_sym_RBRACK] = ACTIONS(1231), + [anon_sym_EQ_TILDE] = ACTIONS(1229), + [anon_sym_AMP_GT] = ACTIONS(1229), + [anon_sym_AMP_GT_GT] = ACTIONS(1231), + [anon_sym_LT_AMP] = ACTIONS(1229), + [anon_sym_GT_AMP] = ACTIONS(1229), + [anon_sym_GT_PIPE] = ACTIONS(1231), + [anon_sym_LT_AMP_DASH] = ACTIONS(1231), + [anon_sym_GT_AMP_DASH] = ACTIONS(1231), + [anon_sym_LT_LT_DASH] = ACTIONS(1231), + [anon_sym_LT_LT_LT] = ACTIONS(1231), + [anon_sym_QMARK] = ACTIONS(1229), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1231), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1231), + [anon_sym_DOLLAR] = ACTIONS(1229), + [sym__special_character] = ACTIONS(1229), + [anon_sym_DQUOTE] = ACTIONS(1231), + [sym_raw_string] = ACTIONS(1231), + [sym_ansi_c_string] = ACTIONS(1231), + [aux_sym_number_token1] = ACTIONS(1229), + [aux_sym_number_token2] = ACTIONS(1229), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1231), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1229), + [anon_sym_BQUOTE] = ACTIONS(1231), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1231), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), [sym_comment] = ACTIONS(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(1231), + [sym_test_operator] = ACTIONS(1231), + [sym__bare_dollar] = ACTIONS(1231), + [sym__brace_start] = ACTIONS(1231), }, - [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(492)] = { + [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(1329), + [anon_sym_GT_GT_EQ] = ACTIONS(1329), + [anon_sym_AMP_EQ] = ACTIONS(1329), + [anon_sym_CARET_EQ] = ACTIONS(1235), + [anon_sym_PIPE_EQ] = ACTIONS(1329), + [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(1329), + [anon_sym_GT_EQ] = ACTIONS(1329), + [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(1329), + [anon_sym_EQ_TILDE] = ACTIONS(1237), + [anon_sym_AMP_GT] = ACTIONS(1233), + [anon_sym_AMP_GT_GT] = ACTIONS(1240), + [anon_sym_LT_AMP] = ACTIONS(1233), + [anon_sym_GT_AMP] = ACTIONS(1233), + [anon_sym_GT_PIPE] = ACTIONS(1240), + [anon_sym_LT_AMP_DASH] = ACTIONS(1240), + [anon_sym_GT_AMP_DASH] = ACTIONS(1240), + [anon_sym_LT_LT_DASH] = ACTIONS(1240), + [anon_sym_LT_LT_LT] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1235), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1240), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1240), + [anon_sym_DOLLAR] = ACTIONS(1233), + [sym__special_character] = ACTIONS(1233), + [anon_sym_DQUOTE] = ACTIONS(1240), + [sym_raw_string] = ACTIONS(1240), + [sym_ansi_c_string] = ACTIONS(1240), + [aux_sym_number_token1] = ACTIONS(1233), + [aux_sym_number_token2] = ACTIONS(1233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1240), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1233), + [anon_sym_BQUOTE] = ACTIONS(1240), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1240), + [anon_sym_LT_LPAREN] = ACTIONS(1240), + [anon_sym_GT_LPAREN] = ACTIONS(1240), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1314), - [sym__concat] = ACTIONS(1314), - [sym_test_operator] = ACTIONS(1314), - [sym__bare_dollar] = ACTIONS(1314), - [sym__brace_start] = ACTIONS(1314), + [sym_file_descriptor] = ACTIONS(1240), + [sym_test_operator] = ACTIONS(1242), + [sym__bare_dollar] = ACTIONS(1240), + [sym__brace_start] = ACTIONS(1240), }, - [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(493)] = { + [sym_subshell] = STATE(4691), + [sym_test_command] = STATE(4691), + [sym_command] = STATE(4694), + [sym_command_name] = STATE(505), + [sym_variable_assignment] = STATE(1768), + [sym_subscript] = STATE(6372), + [sym_file_redirect] = STATE(3382), + [sym_herestring_redirect] = STATE(3382), + [sym__expression] = STATE(2840), + [sym_binary_expression] = STATE(2394), + [sym_ternary_expression] = STATE(2394), + [sym_unary_expression] = STATE(2394), + [sym_postfix_expression] = STATE(2394), + [sym_parenthesized_expression] = STATE(2394), + [sym_arithmetic_expansion] = STATE(439), + [sym_brace_expression] = STATE(439), + [sym_concatenation] = STATE(463), + [sym_string] = STATE(439), + [sym_translated_string] = STATE(439), + [sym_number] = STATE(439), + [sym_simple_expansion] = STATE(439), + [sym_expansion] = STATE(439), + [sym_command_substitution] = STATE(439), + [sym_process_substitution] = STATE(439), + [aux_sym_command_repeat1] = STATE(851), + [aux_sym__literal_repeat1] = STATE(461), + [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), [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(1354), + [sym_variable_name] = ACTIONS(135), + [sym_test_operator] = ACTIONS(137), + [sym__brace_start] = ACTIONS(139), }, - [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(494)] = { + [sym_subshell] = STATE(5289), + [sym_test_command] = STATE(5289), + [sym_command] = STATE(5290), + [sym_command_name] = STATE(585), + [sym_variable_assignment] = STATE(2853), + [sym_subscript] = STATE(6353), + [sym_file_redirect] = STATE(3382), + [sym_herestring_redirect] = STATE(3382), + [sym__expression] = STATE(2767), + [sym_binary_expression] = STATE(2702), + [sym_ternary_expression] = STATE(2702), + [sym_unary_expression] = STATE(2702), + [sym_postfix_expression] = STATE(2702), + [sym_parenthesized_expression] = STATE(2702), + [sym_arithmetic_expansion] = STATE(467), + [sym_brace_expression] = STATE(467), + [sym_concatenation] = STATE(492), + [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(878), + [aux_sym__literal_repeat1] = STATE(490), + [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(575), + [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_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(187), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(191), + [sym__special_character] = ACTIONS(193), + [anon_sym_DQUOTE] = ACTIONS(195), + [sym_raw_string] = ACTIONS(197), + [sym_ansi_c_string] = ACTIONS(197), + [aux_sym_number_token1] = ACTIONS(199), + [aux_sym_number_token2] = ACTIONS(201), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(203), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(205), + [anon_sym_BQUOTE] = ACTIONS(207), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(209), + [anon_sym_LT_LPAREN] = ACTIONS(211), + [anon_sym_GT_LPAREN] = ACTIONS(211), [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), - }, - [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), - [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), - }, - [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), - [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), - }, - [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), - [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), - }, - [STATE(516)] = { - [sym_word] = ACTIONS(1252), - [anon_sym_EQ] = ACTIONS(1252), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1252), - [anon_sym_PLUS_EQ] = ACTIONS(1252), - [anon_sym_DASH_EQ] = ACTIONS(1252), - [anon_sym_STAR_EQ] = ACTIONS(1252), - [anon_sym_SLASH_EQ] = ACTIONS(1252), - [anon_sym_PERCENT_EQ] = ACTIONS(1252), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1252), - [anon_sym_LT_LT_EQ] = ACTIONS(1254), - [anon_sym_GT_GT_EQ] = ACTIONS(1254), - [anon_sym_AMP_EQ] = ACTIONS(1254), - [anon_sym_CARET_EQ] = ACTIONS(1252), - [anon_sym_PIPE_EQ] = ACTIONS(1254), - [anon_sym_PIPE_PIPE] = ACTIONS(1254), - [anon_sym_AMP_AMP] = ACTIONS(1254), - [anon_sym_PIPE] = ACTIONS(1252), - [anon_sym_CARET] = ACTIONS(1252), - [anon_sym_AMP] = ACTIONS(1252), - [anon_sym_EQ_EQ] = ACTIONS(1252), - [anon_sym_BANG_EQ] = ACTIONS(1252), - [anon_sym_LT] = ACTIONS(1252), - [anon_sym_GT] = ACTIONS(1252), - [anon_sym_LT_EQ] = ACTIONS(1254), - [anon_sym_GT_EQ] = ACTIONS(1254), - [anon_sym_LT_LT] = ACTIONS(1252), - [anon_sym_GT_GT] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1252), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym_PERCENT] = ACTIONS(1252), - [anon_sym_STAR_STAR] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_PIPE_AMP] = ACTIONS(1254), - [anon_sym_RBRACK] = ACTIONS(1254), - [anon_sym_EQ_TILDE] = ACTIONS(1252), - [anon_sym_AMP_GT] = ACTIONS(1252), - [anon_sym_AMP_GT_GT] = ACTIONS(1254), - [anon_sym_LT_AMP] = ACTIONS(1252), - [anon_sym_GT_AMP] = ACTIONS(1252), - [anon_sym_GT_PIPE] = ACTIONS(1254), - [anon_sym_LT_AMP_DASH] = ACTIONS(1254), - [anon_sym_GT_AMP_DASH] = ACTIONS(1254), - [anon_sym_LT_LT_DASH] = ACTIONS(1254), - [anon_sym_LT_LT_LT] = ACTIONS(1254), - [anon_sym_QMARK] = ACTIONS(1252), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1254), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1254), - [aux_sym_concatenation_token1] = ACTIONS(1254), - [anon_sym_DOLLAR] = ACTIONS(1252), - [sym__special_character] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1254), - [sym_raw_string] = ACTIONS(1254), - [sym_ansi_c_string] = ACTIONS(1254), - [aux_sym_number_token1] = ACTIONS(1252), - [aux_sym_number_token2] = ACTIONS(1252), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1254), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1252), - [anon_sym_BQUOTE] = ACTIONS(1252), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1254), - [anon_sym_LT_LPAREN] = ACTIONS(1254), - [anon_sym_GT_LPAREN] = ACTIONS(1254), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1254), - [sym__concat] = ACTIONS(1254), - [sym_test_operator] = ACTIONS(1254), - [sym__bare_dollar] = ACTIONS(1254), - [sym__brace_start] = ACTIONS(1254), - }, - [STATE(517)] = { - [aux_sym__literal_repeat1] = STATE(518), - [sym_word] = ACTIONS(237), - [anon_sym_EQ] = ACTIONS(239), - [anon_sym_PLUS_PLUS] = ACTIONS(239), - [anon_sym_DASH_DASH] = ACTIONS(239), - [anon_sym_PLUS_EQ] = ACTIONS(239), - [anon_sym_DASH_EQ] = ACTIONS(239), - [anon_sym_STAR_EQ] = ACTIONS(239), - [anon_sym_SLASH_EQ] = ACTIONS(239), - [anon_sym_PERCENT_EQ] = ACTIONS(239), - [anon_sym_STAR_STAR_EQ] = ACTIONS(239), - [anon_sym_LT_LT_EQ] = ACTIONS(358), - [anon_sym_GT_GT_EQ] = ACTIONS(358), - [anon_sym_AMP_EQ] = ACTIONS(358), - [anon_sym_CARET_EQ] = ACTIONS(239), - [anon_sym_PIPE_EQ] = ACTIONS(358), - [anon_sym_PIPE_PIPE] = ACTIONS(360), - [anon_sym_AMP_AMP] = ACTIONS(360), - [anon_sym_PIPE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(239), - [anon_sym_AMP] = ACTIONS(239), - [anon_sym_EQ_EQ] = ACTIONS(241), - [anon_sym_BANG_EQ] = ACTIONS(239), - [anon_sym_LT] = ACTIONS(241), - [anon_sym_GT] = ACTIONS(241), - [anon_sym_LT_EQ] = ACTIONS(358), - [anon_sym_GT_EQ] = ACTIONS(358), - [anon_sym_LT_LT] = ACTIONS(241), - [anon_sym_GT_GT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(239), - [anon_sym_DASH] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(239), - [anon_sym_SLASH] = ACTIONS(239), - [anon_sym_PERCENT] = ACTIONS(239), - [anon_sym_STAR_STAR] = ACTIONS(239), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_PIPE_AMP] = ACTIONS(276), - [anon_sym_RBRACK] = ACTIONS(358), - [anon_sym_EQ_TILDE] = ACTIONS(241), - [anon_sym_AMP_GT] = ACTIONS(237), - [anon_sym_AMP_GT_GT] = ACTIONS(276), - [anon_sym_LT_AMP] = ACTIONS(237), - [anon_sym_GT_AMP] = ACTIONS(237), - [anon_sym_GT_PIPE] = ACTIONS(276), - [anon_sym_LT_AMP_DASH] = ACTIONS(276), - [anon_sym_GT_AMP_DASH] = ACTIONS(276), - [anon_sym_LT_LT_DASH] = ACTIONS(276), - [anon_sym_LT_LT_LT] = ACTIONS(276), - [anon_sym_QMARK] = ACTIONS(239), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(276), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(276), - [anon_sym_DOLLAR] = ACTIONS(237), - [sym__special_character] = ACTIONS(1337), - [anon_sym_DQUOTE] = ACTIONS(276), - [sym_raw_string] = ACTIONS(276), - [sym_ansi_c_string] = ACTIONS(276), - [aux_sym_number_token1] = ACTIONS(237), - [aux_sym_number_token2] = ACTIONS(237), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(276), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), - [anon_sym_BQUOTE] = ACTIONS(276), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(276), - [anon_sym_LT_LPAREN] = ACTIONS(276), - [anon_sym_GT_LPAREN] = ACTIONS(276), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(276), - [sym_test_operator] = ACTIONS(360), - [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), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1225), - [sym_test_operator] = ACTIONS(1225), - [sym__bare_dollar] = ACTIONS(1225), - [sym__brace_start] = ACTIONS(1225), - }, - [STATE(520)] = { - [sym_word] = ACTIONS(1233), - [anon_sym_EQ] = ACTIONS(1235), - [anon_sym_PLUS_PLUS] = ACTIONS(1235), - [anon_sym_DASH_DASH] = ACTIONS(1235), - [anon_sym_PLUS_EQ] = ACTIONS(1235), - [anon_sym_DASH_EQ] = ACTIONS(1235), - [anon_sym_STAR_EQ] = ACTIONS(1235), - [anon_sym_SLASH_EQ] = ACTIONS(1235), - [anon_sym_PERCENT_EQ] = ACTIONS(1235), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1235), - [anon_sym_LT_LT_EQ] = ACTIONS(1332), - [anon_sym_GT_GT_EQ] = ACTIONS(1332), - [anon_sym_AMP_EQ] = ACTIONS(1332), - [anon_sym_CARET_EQ] = ACTIONS(1235), - [anon_sym_PIPE_EQ] = ACTIONS(1332), - [anon_sym_PIPE_PIPE] = ACTIONS(1242), - [anon_sym_AMP_AMP] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(1235), - [anon_sym_AMP] = ACTIONS(1235), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1235), - [anon_sym_LT] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1332), - [anon_sym_GT_EQ] = ACTIONS(1332), - [anon_sym_LT_LT] = ACTIONS(1237), - [anon_sym_GT_GT] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1235), - [anon_sym_DASH] = ACTIONS(1235), - [anon_sym_STAR] = ACTIONS(1235), - [anon_sym_SLASH] = ACTIONS(1235), - [anon_sym_PERCENT] = ACTIONS(1235), - [anon_sym_STAR_STAR] = ACTIONS(1235), - [anon_sym_LPAREN] = ACTIONS(1240), - [anon_sym_PIPE_AMP] = ACTIONS(1240), - [anon_sym_RBRACK] = ACTIONS(1332), - [anon_sym_EQ_TILDE] = ACTIONS(1237), - [anon_sym_AMP_GT] = ACTIONS(1233), - [anon_sym_AMP_GT_GT] = ACTIONS(1240), - [anon_sym_LT_AMP] = ACTIONS(1233), - [anon_sym_GT_AMP] = ACTIONS(1233), - [anon_sym_GT_PIPE] = ACTIONS(1240), - [anon_sym_LT_AMP_DASH] = ACTIONS(1240), - [anon_sym_GT_AMP_DASH] = ACTIONS(1240), - [anon_sym_LT_LT_DASH] = ACTIONS(1240), - [anon_sym_LT_LT_LT] = ACTIONS(1240), - [anon_sym_QMARK] = ACTIONS(1235), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1240), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1240), - [anon_sym_DOLLAR] = ACTIONS(1233), - [sym__special_character] = ACTIONS(1233), - [anon_sym_DQUOTE] = ACTIONS(1240), - [sym_raw_string] = ACTIONS(1240), - [sym_ansi_c_string] = ACTIONS(1240), - [aux_sym_number_token1] = ACTIONS(1233), - [aux_sym_number_token2] = ACTIONS(1233), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1240), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1233), - [anon_sym_BQUOTE] = ACTIONS(1240), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1240), - [anon_sym_LT_LPAREN] = ACTIONS(1240), - [anon_sym_GT_LPAREN] = ACTIONS(1240), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1240), - [sym_test_operator] = ACTIONS(1242), - [sym__bare_dollar] = ACTIONS(1240), - [sym__brace_start] = ACTIONS(1240), - }, - [STATE(521)] = { - [sym_subshell] = STATE(4724), - [sym_test_command] = STATE(4724), - [sym_command] = STATE(4726), - [sym_command_name] = STATE(532), - [sym_variable_assignment] = STATE(2030), - [sym_subscript] = STATE(6664), - [sym_file_redirect] = STATE(3491), - [sym_herestring_redirect] = STATE(3491), - [sym__expression] = STATE(2957), - [sym_binary_expression] = STATE(2518), - [sym_ternary_expression] = STATE(2518), - [sym_unary_expression] = STATE(2518), - [sym_postfix_expression] = STATE(2518), - [sym_parenthesized_expression] = STATE(2518), - [sym_arithmetic_expansion] = STATE(467), - [sym_brace_expression] = STATE(467), - [sym_concatenation] = STATE(490), - [sym_string] = STATE(467), - [sym_translated_string] = STATE(467), - [sym_number] = STATE(467), - [sym_simple_expansion] = STATE(467), - [sym_expansion] = STATE(467), - [sym_command_substitution] = STATE(467), - [sym_process_substitution] = STATE(467), - [aux_sym_command_repeat1] = STATE(961), - [aux_sym__literal_repeat1] = STATE(489), - [sym_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), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1354), - [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(137), - [sym__brace_start] = ACTIONS(139), - }, - [STATE(522)] = { - [sym_subshell] = STATE(5584), - [sym_test_command] = STATE(5584), - [sym_command] = STATE(5567), - [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), - [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_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(187), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(191), - [sym__special_character] = ACTIONS(193), - [anon_sym_DQUOTE] = ACTIONS(195), - [sym_raw_string] = ACTIONS(197), - [sym_ansi_c_string] = ACTIONS(197), - [aux_sym_number_token1] = ACTIONS(199), - [aux_sym_number_token2] = ACTIONS(201), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(203), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(205), - [anon_sym_BQUOTE] = ACTIONS(207), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(209), - [anon_sym_LT_LPAREN] = ACTIONS(211), - [anon_sym_GT_LPAREN] = ACTIONS(211), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1354), - [sym_variable_name] = ACTIONS(215), - [sym_test_operator] = ACTIONS(217), - [sym__brace_start] = ACTIONS(219), + [sym_file_descriptor] = ACTIONS(1354), + [sym_variable_name] = ACTIONS(215), + [sym_test_operator] = ACTIONS(217), + [sym__brace_start] = ACTIONS(219), }, }; @@ -75823,368 +72365,8 @@ static const uint16_t ts_small_parse_table[] = { [0] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(411), 1, - anon_sym_LPAREN, - ACTIONS(1368), 1, - anon_sym_LT_LT_LT, - ACTIONS(1370), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1372), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1374), 1, - anon_sym_DOLLAR, - ACTIONS(1376), 1, - sym__special_character, - ACTIONS(1378), 1, - anon_sym_DQUOTE, - ACTIONS(1380), 1, - aux_sym_number_token1, - ACTIONS(1382), 1, - aux_sym_number_token2, - ACTIONS(1384), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1386), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1388), 1, - anon_sym_BQUOTE, - ACTIONS(1390), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1394), 1, - sym_test_operator, - ACTIONS(1396), 1, - sym__bare_dollar, - ACTIONS(1398), 1, - sym__brace_start, - STATE(531), 1, - aux_sym_command_repeat2, - STATE(1071), 1, - aux_sym__literal_repeat1, - STATE(1196), 1, - sym_concatenation, - STATE(1197), 1, - sym_herestring_redirect, - STATE(4723), 1, - sym_subshell, - ACTIONS(1364), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1366), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1392), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1360), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(839), 9, - sym_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), 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, - [119] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(411), 1, - anon_sym_LPAREN, - ACTIONS(1368), 1, - anon_sym_LT_LT_LT, - ACTIONS(1370), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1372), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1374), 1, - anon_sym_DOLLAR, - ACTIONS(1376), 1, - sym__special_character, - ACTIONS(1378), 1, - anon_sym_DQUOTE, - ACTIONS(1380), 1, - aux_sym_number_token1, - ACTIONS(1382), 1, - aux_sym_number_token2, - ACTIONS(1384), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1386), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1388), 1, - anon_sym_BQUOTE, - ACTIONS(1390), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1394), 1, - sym_test_operator, - ACTIONS(1396), 1, - sym__bare_dollar, - ACTIONS(1398), 1, - sym__brace_start, - STATE(527), 1, - aux_sym_command_repeat2, - STATE(1071), 1, - aux_sym__literal_repeat1, - STATE(1196), 1, - sym_concatenation, - STATE(1197), 1, - sym_herestring_redirect, - STATE(4837), 1, - sym_subshell, - ACTIONS(1364), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1392), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1402), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1360), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(839), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1400), 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, - [238] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(673), 1, - anon_sym_LPAREN, - ACTIONS(1408), 1, - anon_sym_LT_LT_LT, - ACTIONS(1410), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1412), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1414), 1, - anon_sym_DOLLAR, - ACTIONS(1416), 1, - sym__special_character, - ACTIONS(1418), 1, - anon_sym_DQUOTE, - ACTIONS(1420), 1, - aux_sym_number_token1, - ACTIONS(1422), 1, - aux_sym_number_token2, - ACTIONS(1424), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1426), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1428), 1, - anon_sym_BQUOTE, - ACTIONS(1430), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1434), 1, - sym_test_operator, - ACTIONS(1436), 1, - sym__bare_dollar, - ACTIONS(1438), 1, - sym__brace_start, - STATE(545), 1, - aux_sym_command_repeat2, - STATE(1230), 1, - aux_sym__literal_repeat1, - STATE(1330), 1, - sym_concatenation, - STATE(1332), 1, - sym_herestring_redirect, - STATE(4960), 1, - sym_subshell, - ACTIONS(1366), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1406), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1432), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1404), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(952), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1362), 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, - [356] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(673), 1, + ACTIONS(368), 1, anon_sym_LPAREN, - ACTIONS(1408), 1, - anon_sym_LT_LT_LT, - ACTIONS(1410), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1412), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1414), 1, - anon_sym_DOLLAR, - ACTIONS(1416), 1, - sym__special_character, - ACTIONS(1418), 1, - anon_sym_DQUOTE, - ACTIONS(1420), 1, - aux_sym_number_token1, - ACTIONS(1422), 1, - aux_sym_number_token2, - ACTIONS(1424), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1426), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1428), 1, - anon_sym_BQUOTE, - ACTIONS(1430), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1434), 1, - sym_test_operator, - ACTIONS(1436), 1, - sym__bare_dollar, - ACTIONS(1438), 1, - sym__brace_start, - STATE(543), 1, - aux_sym_command_repeat2, - STATE(1230), 1, - aux_sym__literal_repeat1, - STATE(1330), 1, - sym_concatenation, - STATE(1332), 1, - sym_herestring_redirect, - STATE(5016), 1, - sym_subshell, - ACTIONS(1402), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1406), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1432), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1404), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(952), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1400), 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, - [474] = 26, - ACTIONS(3), 1, - sym_comment, ACTIONS(1368), 1, anon_sym_LT_LT_LT, ACTIONS(1370), 1, @@ -76193,6057 +72375,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, ACTIONS(1374), 1, anon_sym_DOLLAR, - ACTIONS(1376), 1, - sym__special_character, - ACTIONS(1378), 1, - anon_sym_DQUOTE, - ACTIONS(1380), 1, - aux_sym_number_token1, - ACTIONS(1382), 1, - aux_sym_number_token2, - ACTIONS(1384), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1386), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1388), 1, - anon_sym_BQUOTE, - ACTIONS(1390), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1394), 1, - sym_test_operator, - ACTIONS(1396), 1, - sym__bare_dollar, - ACTIONS(1398), 1, - sym__brace_start, - STATE(529), 1, - aux_sym_command_repeat2, - STATE(1071), 1, - aux_sym__literal_repeat1, - STATE(1196), 1, - sym_concatenation, - STATE(1197), 1, - sym_herestring_redirect, - ACTIONS(1364), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1392), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1442), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1360), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(839), 9, - sym_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), 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, - [587] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(1448), 1, - anon_sym_LT_LT_LT, - ACTIONS(1450), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1452), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1454), 1, - anon_sym_DOLLAR, - ACTIONS(1456), 1, - sym__special_character, - ACTIONS(1458), 1, - anon_sym_DQUOTE, - ACTIONS(1460), 1, - aux_sym_number_token1, - ACTIONS(1462), 1, - aux_sym_number_token2, - ACTIONS(1464), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1466), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1468), 1, - anon_sym_BQUOTE, - ACTIONS(1470), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1474), 1, - sym_test_operator, - ACTIONS(1476), 1, - sym__bare_dollar, - ACTIONS(1478), 1, - sym__brace_start, - STATE(552), 1, - aux_sym_command_repeat2, - STATE(1334), 1, - aux_sym__literal_repeat1, - STATE(1606), 1, - sym_concatenation, - STATE(1607), 1, - sym_herestring_redirect, - STATE(4842), 1, - sym_subshell, - ACTIONS(1446), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1472), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1402), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1444), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1095), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1400), 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, - [704] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1488), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1490), 1, - anon_sym_LT_LT_LT, - ACTIONS(1493), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1496), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1499), 1, - anon_sym_DOLLAR, - ACTIONS(1502), 1, - sym__special_character, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1508), 1, - aux_sym_number_token1, - ACTIONS(1511), 1, - aux_sym_number_token2, - ACTIONS(1514), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1517), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1520), 1, - anon_sym_BQUOTE, - ACTIONS(1523), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1529), 1, - sym_file_descriptor, - ACTIONS(1532), 1, - sym_test_operator, - ACTIONS(1535), 1, - sym__bare_dollar, - ACTIONS(1538), 1, - sym__brace_start, - STATE(529), 1, - aux_sym_command_repeat2, - STATE(1071), 1, - aux_sym__literal_repeat1, - STATE(1196), 1, - sym_concatenation, - STATE(1197), 1, - sym_herestring_redirect, - ACTIONS(1485), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1526), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1480), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(839), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1483), 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, - [819] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(1545), 1, - anon_sym_LT_LT_LT, - ACTIONS(1547), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1549), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1551), 1, - anon_sym_DOLLAR, - ACTIONS(1553), 1, - sym__special_character, - 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(1571), 1, - sym_test_operator, - ACTIONS(1573), 1, - sym__bare_dollar, - ACTIONS(1575), 1, - sym__brace_start, - STATE(548), 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(1543), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1569), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1541), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1118), 9, - sym_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), 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, - [936] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1368), 1, - anon_sym_LT_LT_LT, - ACTIONS(1370), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1372), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1374), 1, - anon_sym_DOLLAR, - ACTIONS(1376), 1, - sym__special_character, - ACTIONS(1378), 1, - anon_sym_DQUOTE, - ACTIONS(1380), 1, - aux_sym_number_token1, - ACTIONS(1382), 1, - aux_sym_number_token2, - ACTIONS(1384), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1386), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1388), 1, - anon_sym_BQUOTE, - ACTIONS(1390), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1394), 1, - sym_test_operator, - ACTIONS(1396), 1, - sym__bare_dollar, - ACTIONS(1398), 1, - sym__brace_start, - STATE(529), 1, - aux_sym_command_repeat2, - STATE(1071), 1, - aux_sym__literal_repeat1, - STATE(1196), 1, - sym_concatenation, - STATE(1197), 1, - sym_herestring_redirect, - ACTIONS(1364), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1392), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1579), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1360), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(839), 9, - sym_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), 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, - [1049] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(1545), 1, - anon_sym_LT_LT_LT, - ACTIONS(1547), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1549), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1551), 1, - anon_sym_DOLLAR, - ACTIONS(1553), 1, - sym__special_character, - 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(1571), 1, - sym_test_operator, - ACTIONS(1573), 1, - sym__bare_dollar, - ACTIONS(1575), 1, - sym__brace_start, - STATE(555), 1, - aux_sym_command_repeat2, - STATE(1412), 1, - aux_sym__literal_repeat1, - STATE(1649), 1, - sym_concatenation, - STATE(1654), 1, - sym_herestring_redirect, - STATE(4842), 1, - sym_subshell, - ACTIONS(1402), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1543), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1569), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1541), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1118), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1400), 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, - [1166] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(1448), 1, - anon_sym_LT_LT_LT, - ACTIONS(1450), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1452), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1454), 1, - anon_sym_DOLLAR, - ACTIONS(1456), 1, - sym__special_character, - ACTIONS(1458), 1, - anon_sym_DQUOTE, - ACTIONS(1460), 1, - aux_sym_number_token1, - ACTIONS(1462), 1, - aux_sym_number_token2, - ACTIONS(1464), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1466), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1468), 1, - anon_sym_BQUOTE, - ACTIONS(1470), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1474), 1, - sym_test_operator, - ACTIONS(1476), 1, - sym__bare_dollar, - ACTIONS(1478), 1, - sym__brace_start, - STATE(553), 1, - aux_sym_command_repeat2, - STATE(1334), 1, - aux_sym__literal_repeat1, - STATE(1606), 1, - sym_concatenation, - STATE(1607), 1, - sym_herestring_redirect, - STATE(4702), 1, - sym_subshell, - ACTIONS(1446), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1472), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1366), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1444), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1095), 9, - sym_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, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_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, - [1283] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1587), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1589), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1591), 1, - anon_sym_DOLLAR, - ACTIONS(1593), 1, - sym__special_character, - ACTIONS(1595), 1, - anon_sym_DQUOTE, - ACTIONS(1597), 1, - aux_sym_number_token1, - ACTIONS(1599), 1, - aux_sym_number_token2, - ACTIONS(1601), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1603), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1605), 1, - anon_sym_BQUOTE, - ACTIONS(1607), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1611), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(1613), 1, - sym_variable_name, - ACTIONS(1615), 1, - sym_test_operator, - ACTIONS(1617), 1, - sym__brace_start, - STATE(1427), 1, - aux_sym__literal_repeat1, - STATE(6651), 1, - sym_subscript, - ACTIONS(1585), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1609), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1581), 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, - sym_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), 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, - [1391] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1488), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1625), 1, - anon_sym_LT_LT_LT, - ACTIONS(1628), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1631), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1634), 1, - anon_sym_DOLLAR, - ACTIONS(1637), 1, - sym__special_character, - ACTIONS(1640), 1, - anon_sym_DQUOTE, - ACTIONS(1643), 1, - aux_sym_number_token1, - ACTIONS(1646), 1, - aux_sym_number_token2, - ACTIONS(1649), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1652), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1655), 1, - anon_sym_BQUOTE, - ACTIONS(1658), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1664), 1, - sym_file_descriptor, - ACTIONS(1667), 1, - sym_test_operator, - ACTIONS(1670), 1, - sym__bare_dollar, - ACTIONS(1673), 1, - sym__brace_start, - STATE(535), 1, - aux_sym_command_repeat2, - STATE(1230), 1, - aux_sym__literal_repeat1, - STATE(1330), 1, - sym_concatenation, - STATE(1332), 1, - sym_herestring_redirect, - ACTIONS(1622), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1661), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1619), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(952), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1483), 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, - [1505] = 8, - 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(1197), 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(1195), 41, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - 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, - [1581] = 8, - 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, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [1657] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(1547), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1549), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1551), 1, - anon_sym_DOLLAR, - ACTIONS(1555), 1, - anon_sym_DQUOTE, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1561), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1563), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(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(561), 1, - aux_sym_command_repeat2, - STATE(1412), 1, - aux_sym__literal_repeat1, - STATE(1649), 1, - sym_concatenation, - STATE(1654), 1, - sym_herestring_redirect, - STATE(4842), 1, - sym_subshell, - ACTIONS(1402), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1569), 2, - 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(1400), 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, - [1771] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1587), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1589), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1591), 1, - anon_sym_DOLLAR, - ACTIONS(1593), 1, - sym__special_character, - ACTIONS(1595), 1, - anon_sym_DQUOTE, - ACTIONS(1597), 1, - aux_sym_number_token1, - ACTIONS(1599), 1, - aux_sym_number_token2, - ACTIONS(1601), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1603), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1605), 1, - anon_sym_BQUOTE, - ACTIONS(1607), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1613), 1, - sym_variable_name, - ACTIONS(1615), 1, - sym_test_operator, - ACTIONS(1617), 1, - sym__brace_start, - ACTIONS(1698), 1, - aux_sym__simple_variable_name_token1, - STATE(1427), 1, - aux_sym__literal_repeat1, - STATE(6651), 1, - sym_subscript, - ACTIONS(1609), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1696), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1581), 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, - sym_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), 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, - [1879] = 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, - anon_sym_DOLLAR, - ACTIONS(1555), 1, - anon_sym_DQUOTE, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1561), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1563), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1567), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1573), 1, - sym__bare_dollar, - ACTIONS(1575), 1, - sym__brace_start, - ACTIONS(1688), 1, - anon_sym_LT_LT_LT, - ACTIONS(1690), 1, - sym__special_character, - ACTIONS(1692), 1, - sym_test_operator, - STATE(562), 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), 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, - [1993] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1707), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1710), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1713), 1, - anon_sym_DOLLAR, - ACTIONS(1716), 1, - sym__special_character, - ACTIONS(1719), 1, - anon_sym_DQUOTE, - ACTIONS(1722), 1, - aux_sym_number_token1, - ACTIONS(1725), 1, - aux_sym_number_token2, - ACTIONS(1728), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1731), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1734), 1, - anon_sym_BQUOTE, - ACTIONS(1737), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1743), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(1746), 1, - sym_variable_name, - ACTIONS(1749), 1, - sym_test_operator, - ACTIONS(1752), 1, - sym__brace_start, - STATE(1427), 1, - aux_sym__literal_repeat1, - STATE(6651), 1, - sym_subscript, - ACTIONS(1705), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1740), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1700), 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, - sym_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), 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, - [2101] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(1547), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1549), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1551), 1, - anon_sym_DOLLAR, - ACTIONS(1555), 1, - anon_sym_DQUOTE, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1561), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1563), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1565), 1, - anon_sym_BQUOTE, - ACTIONS(1567), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1573), 1, - sym__bare_dollar, - ACTIONS(1575), 1, - sym__brace_start, - ACTIONS(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, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_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, - [2217] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1408), 1, - anon_sym_LT_LT_LT, - ACTIONS(1410), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1412), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1414), 1, - anon_sym_DOLLAR, - ACTIONS(1416), 1, - sym__special_character, - ACTIONS(1418), 1, - anon_sym_DQUOTE, - ACTIONS(1420), 1, - aux_sym_number_token1, - ACTIONS(1422), 1, - aux_sym_number_token2, - ACTIONS(1424), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1426), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1428), 1, - anon_sym_BQUOTE, - ACTIONS(1430), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1434), 1, - sym_test_operator, - ACTIONS(1436), 1, - sym__bare_dollar, - ACTIONS(1438), 1, - sym__brace_start, - STATE(535), 1, - aux_sym_command_repeat2, - STATE(1230), 1, - aux_sym__literal_repeat1, - STATE(1330), 1, - sym_concatenation, - STATE(1332), 1, - sym_herestring_redirect, - ACTIONS(1406), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1432), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1442), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1404), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(952), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1440), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [2329] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(1547), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1549), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1551), 1, - anon_sym_DOLLAR, - ACTIONS(1555), 1, - anon_sym_DQUOTE, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1561), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1563), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1565), 1, - anon_sym_BQUOTE, - ACTIONS(1567), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1573), 1, - sym__bare_dollar, - ACTIONS(1575), 1, - sym__brace_start, - ACTIONS(1688), 1, - anon_sym_LT_LT_LT, - ACTIONS(1690), 1, - sym__special_character, - ACTIONS(1692), 1, - sym_test_operator, - STATE(577), 1, - aux_sym_command_repeat2, - STATE(1412), 1, - aux_sym__literal_repeat1, - STATE(1649), 1, - sym_concatenation, - STATE(1654), 1, - sym_herestring_redirect, - STATE(4842), 1, - sym_subshell, - ACTIONS(1402), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1569), 2, - 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(1400), 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, - [2445] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1408), 1, - anon_sym_LT_LT_LT, - ACTIONS(1410), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1412), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1414), 1, - anon_sym_DOLLAR, - ACTIONS(1416), 1, - sym__special_character, - ACTIONS(1418), 1, - anon_sym_DQUOTE, - ACTIONS(1420), 1, - aux_sym_number_token1, - ACTIONS(1422), 1, - aux_sym_number_token2, - ACTIONS(1424), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1426), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1428), 1, - anon_sym_BQUOTE, - ACTIONS(1430), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1434), 1, - sym_test_operator, - ACTIONS(1436), 1, - sym__bare_dollar, - ACTIONS(1438), 1, - sym__brace_start, - STATE(535), 1, - aux_sym_command_repeat2, - STATE(1230), 1, - aux_sym__literal_repeat1, - STATE(1330), 1, - sym_concatenation, - STATE(1332), 1, - sym_herestring_redirect, - ACTIONS(1406), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1432), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1579), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1404), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(952), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1577), 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, - [2557] = 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(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, - 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, - [2632] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 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(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, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_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, - 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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1545), 1, - anon_sym_LT_LT_LT, - ACTIONS(1547), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1549), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1551), 1, - anon_sym_DOLLAR, - ACTIONS(1553), 1, - sym__special_character, - 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(1571), 1, - sym_test_operator, - ACTIONS(1573), 1, - sym__bare_dollar, - ACTIONS(1575), 1, - sym__brace_start, - STATE(556), 1, - aux_sym_command_repeat2, - STATE(1412), 1, - aux_sym__literal_repeat1, - STATE(1649), 1, - sym_concatenation, - STATE(1654), 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, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1541), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1118), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1577), 20, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_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, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_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, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [2893] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1772), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1778), 1, - anon_sym_DOLLAR, - ACTIONS(1781), 1, - sym__special_character, - ACTIONS(1784), 1, - anon_sym_DQUOTE, - ACTIONS(1787), 1, - aux_sym_number_token1, - ACTIONS(1790), 1, - aux_sym_number_token2, - ACTIONS(1793), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1796), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1799), 1, - anon_sym_BQUOTE, - ACTIONS(1802), 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, - sym__brace_start, - STATE(1605), 1, - aux_sym__literal_repeat1, - STATE(6695), 1, - sym_subscript, - ACTIONS(1705), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1805), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1769), 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, - sym_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), 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, - [3000] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1826), 1, - anon_sym_LT_LT_LT, - ACTIONS(1829), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1832), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1835), 1, - anon_sym_DOLLAR, - ACTIONS(1838), 1, - sym__special_character, - ACTIONS(1841), 1, - anon_sym_DQUOTE, - ACTIONS(1844), 1, - aux_sym_number_token1, - ACTIONS(1847), 1, - aux_sym_number_token2, - ACTIONS(1850), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1853), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1856), 1, - anon_sym_BQUOTE, - ACTIONS(1859), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1865), 1, - sym_file_descriptor, - ACTIONS(1868), 1, - sym_test_operator, - ACTIONS(1871), 1, - sym__bare_dollar, - ACTIONS(1874), 1, - sym__brace_start, - STATE(551), 1, - aux_sym_command_repeat2, - STATE(1334), 1, - aux_sym__literal_repeat1, - STATE(1606), 1, - sym_concatenation, - STATE(1607), 1, - sym_herestring_redirect, - ACTIONS(1488), 2, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1823), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1862), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1820), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1095), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1483), 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, - [3113] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1448), 1, - anon_sym_LT_LT_LT, - ACTIONS(1450), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1452), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1454), 1, - anon_sym_DOLLAR, - ACTIONS(1456), 1, - sym__special_character, - ACTIONS(1458), 1, - anon_sym_DQUOTE, - ACTIONS(1460), 1, - aux_sym_number_token1, - ACTIONS(1462), 1, - aux_sym_number_token2, - ACTIONS(1464), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1466), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1468), 1, - anon_sym_BQUOTE, - ACTIONS(1470), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1474), 1, - sym_test_operator, - ACTIONS(1476), 1, - sym__bare_dollar, - ACTIONS(1478), 1, - sym__brace_start, - STATE(551), 1, - aux_sym_command_repeat2, - STATE(1334), 1, - aux_sym__literal_repeat1, - STATE(1606), 1, - sym_concatenation, - STATE(1607), 1, - sym_herestring_redirect, - ACTIONS(1446), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1472), 2, - 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, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1095), 9, - sym_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), 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, - [3224] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1448), 1, - anon_sym_LT_LT_LT, - ACTIONS(1450), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1452), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1454), 1, - anon_sym_DOLLAR, - ACTIONS(1456), 1, - sym__special_character, - ACTIONS(1458), 1, - anon_sym_DQUOTE, - ACTIONS(1460), 1, - aux_sym_number_token1, - ACTIONS(1462), 1, - aux_sym_number_token2, - ACTIONS(1464), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1466), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1468), 1, - anon_sym_BQUOTE, - ACTIONS(1470), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1474), 1, - sym_test_operator, - ACTIONS(1476), 1, - sym__bare_dollar, - ACTIONS(1478), 1, - sym__brace_start, - STATE(551), 1, - aux_sym_command_repeat2, - STATE(1334), 1, - aux_sym__literal_repeat1, - STATE(1606), 1, - sym_concatenation, - STATE(1607), 1, - sym_herestring_redirect, - ACTIONS(1446), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1472), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1444), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(1579), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - STATE(1095), 9, - sym_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, - [3335] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1879), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1881), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1883), 1, - anon_sym_DOLLAR, - ACTIONS(1885), 1, - sym__special_character, - ACTIONS(1887), 1, - anon_sym_DQUOTE, - ACTIONS(1889), 1, - aux_sym_number_token1, - ACTIONS(1891), 1, - aux_sym_number_token2, - ACTIONS(1893), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1895), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1897), 1, - anon_sym_BQUOTE, - ACTIONS(1899), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1903), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(1905), 1, - sym_variable_name, - ACTIONS(1907), 1, - sym_test_operator, - ACTIONS(1909), 1, - sym__brace_start, - STATE(1605), 1, - aux_sym__literal_repeat1, - STATE(6695), 1, - sym_subscript, - ACTIONS(1585), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1901), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1877), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(557), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1227), 9, - sym_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), 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, - [3442] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1545), 1, - anon_sym_LT_LT_LT, - ACTIONS(1547), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1549), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1551), 1, - anon_sym_DOLLAR, - ACTIONS(1553), 1, - sym__special_character, - 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(1571), 1, - sym_test_operator, - ACTIONS(1573), 1, - sym__bare_dollar, - ACTIONS(1575), 1, - sym__brace_start, - STATE(556), 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(1543), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1569), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1541), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1118), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1440), 20, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_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, - [3553] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1488), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1917), 1, - anon_sym_LT_LT_LT, - ACTIONS(1920), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1923), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1926), 1, - anon_sym_DOLLAR, - ACTIONS(1929), 1, - sym__special_character, - ACTIONS(1932), 1, - anon_sym_DQUOTE, - ACTIONS(1935), 1, - aux_sym_number_token1, - ACTIONS(1938), 1, - aux_sym_number_token2, - ACTIONS(1941), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1944), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1947), 1, - anon_sym_BQUOTE, - ACTIONS(1950), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1956), 1, - sym_file_descriptor, - ACTIONS(1959), 1, - sym_test_operator, - ACTIONS(1962), 1, - sym__bare_dollar, - ACTIONS(1965), 1, - sym__brace_start, - STATE(556), 1, - aux_sym_command_repeat2, - STATE(1412), 1, - aux_sym__literal_repeat1, - STATE(1649), 1, - sym_concatenation, - STATE(1654), 1, - sym_herestring_redirect, - ACTIONS(1914), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1953), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1911), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1118), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1483), 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, - [3666] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1879), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1881), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1883), 1, - anon_sym_DOLLAR, - ACTIONS(1885), 1, - sym__special_character, - ACTIONS(1887), 1, - anon_sym_DQUOTE, - ACTIONS(1889), 1, - aux_sym_number_token1, - ACTIONS(1891), 1, - aux_sym_number_token2, - ACTIONS(1893), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1895), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1897), 1, - anon_sym_BQUOTE, - ACTIONS(1899), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1905), 1, - sym_variable_name, - ACTIONS(1907), 1, - sym_test_operator, - ACTIONS(1909), 1, - sym__brace_start, - ACTIONS(1968), 1, - aux_sym__simple_variable_name_token1, - STATE(1605), 1, - aux_sym__literal_repeat1, - STATE(6695), 1, - sym_subscript, - ACTIONS(1696), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1901), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1877), 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, - sym_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), 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, - [3773] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 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, - 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(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_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, - 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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1973), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1976), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1979), 1, - anon_sym_DOLLAR, - ACTIONS(1982), 1, - sym__special_character, - ACTIONS(1985), 1, - anon_sym_DQUOTE, - ACTIONS(1988), 1, - aux_sym_number_token1, - ACTIONS(1991), 1, - aux_sym_number_token2, - ACTIONS(1994), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1997), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2000), 1, - anon_sym_BQUOTE, - ACTIONS(2003), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2009), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2012), 1, - sym_variable_name, - ACTIONS(2015), 1, - sym_test_operator, - ACTIONS(2018), 1, - sym__brace_start, - STATE(1771), 1, - aux_sym__literal_repeat1, - STATE(6634), 1, - sym_subscript, - ACTIONS(2006), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1705), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1970), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(559), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1445), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1703), 19, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [3954] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1418), 1, - anon_sym_DQUOTE, - ACTIONS(2025), 1, - sym_variable_name, - STATE(1012), 1, - sym_string, - ACTIONS(2023), 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(2021), 8, - 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), 39, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [4028] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1547), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1549), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1551), 1, - anon_sym_DOLLAR, - ACTIONS(1555), 1, - anon_sym_DQUOTE, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1561), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1563), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1567), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1573), 1, - sym__bare_dollar, - ACTIONS(1575), 1, - sym__brace_start, - ACTIONS(1688), 1, - anon_sym_LT_LT_LT, - ACTIONS(1690), 1, - sym__special_character, - ACTIONS(1692), 1, - sym_test_operator, - STATE(578), 1, - aux_sym_command_repeat2, - STATE(1412), 1, - aux_sym__literal_repeat1, - STATE(1649), 1, - sym_concatenation, - STATE(1654), 1, - sym_herestring_redirect, - ACTIONS(1442), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1569), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1686), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1684), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1270), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1440), 20, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [4136] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1547), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1549), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1551), 1, - anon_sym_DOLLAR, - ACTIONS(1555), 1, - anon_sym_DQUOTE, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1561), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1563), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1567), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1573), 1, - sym__bare_dollar, - ACTIONS(1575), 1, - sym__brace_start, - ACTIONS(1688), 1, - anon_sym_LT_LT_LT, - ACTIONS(1690), 1, - sym__special_character, - ACTIONS(1692), 1, - sym_test_operator, - STATE(578), 1, - aux_sym_command_repeat2, - STATE(1412), 1, - aux_sym__literal_repeat1, - STATE(1649), 1, - sym_concatenation, - STATE(1654), 1, - sym_herestring_redirect, - ACTIONS(1569), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1579), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1686), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1684), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1270), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1577), 20, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [4244] = 24, - 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(2035), 1, - sym__special_character, - 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(2053), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2055), 1, - sym_variable_name, - ACTIONS(2057), 1, - sym_test_operator, - ACTIONS(2059), 1, - sym__brace_start, - STATE(1820), 1, - aux_sym__literal_repeat1, - STATE(6636), 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(2027), 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, - sym_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_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, - [4350] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1418), 1, - anon_sym_DQUOTE, - ACTIONS(2025), 1, - sym_variable_name, - STATE(1012), 1, - sym_string, - ACTIONS(2023), 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(2021), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 39, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [4424] = 24, - 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, - 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, - sym_variable_name, - ACTIONS(2091), 1, - sym_test_operator, - ACTIONS(2093), 1, - 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, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_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, - [4530] = 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(2035), 1, - sym__special_character, - 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(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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2099), 1, - anon_sym_DQUOTE, - ACTIONS(2103), 1, - sym_variable_name, - STATE(1087), 1, - sym_string, - ACTIONS(2101), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 5, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(2097), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 38, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [4710] = 24, - 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(2117), 1, - sym__special_character, - 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(2144), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2147), 1, - sym_variable_name, - ACTIONS(2150), 1, - sym_test_operator, - ACTIONS(2153), 1, - sym__brace_start, - STATE(1820), 1, - aux_sym__literal_repeat1, - STATE(6636), 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(2105), 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(1703), 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, - [4816] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(1320), 1, - aux_sym__literal_repeat1, - STATE(572), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2158), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - STATE(1021), 9, - sym_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), 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, - [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, - ACTIONS(3), 1, - sym_comment, - STATE(1320), 1, - aux_sym__literal_repeat1, - STATE(572), 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(1021), 9, - sym_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), 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, - [5020] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2171), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2174), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2177), 1, - anon_sym_DOLLAR, - ACTIONS(2180), 1, - sym__special_character, - ACTIONS(2183), 1, - anon_sym_DQUOTE, - ACTIONS(2186), 1, - aux_sym_number_token1, - ACTIONS(2189), 1, - aux_sym_number_token2, - ACTIONS(2192), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2195), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2198), 1, - anon_sym_BQUOTE, - ACTIONS(2201), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2207), 1, - sym_test_operator, - ACTIONS(2210), 1, - sym__brace_start, - STATE(1320), 1, - aux_sym__literal_repeat1, - ACTIONS(2204), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(572), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2164), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(2169), 3, - sym_file_descriptor, - sym_variable_name, - aux_sym_heredoc_redirect_token1, - STATE(1021), 9, - sym_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), 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, - [5120] = 24, - 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, - 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(2089), 1, - sym_variable_name, - ACTIONS(2091), 1, - sym_test_operator, - ACTIONS(2093), 1, - sym__brace_start, - ACTIONS(2213), 1, - aux_sym__simple_variable_name_token1, - STATE(1771), 1, - aux_sym__literal_repeat1, - STATE(6634), 1, - sym_subscript, - ACTIONS(2085), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1696), 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(559), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1445), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1694), 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, - [5226] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2099), 1, - anon_sym_DQUOTE, - ACTIONS(2103), 1, - sym_variable_name, - STATE(1087), 1, - sym_string, - ACTIONS(2101), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 5, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(2097), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 38, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_SEMI_SEMI, - anon_sym_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, - [5300] = 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), 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, - 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, - [5374] = 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(1191), 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(1183), 39, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_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, - 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, - [5448] = 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(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), 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, - [5558] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1488), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1920), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1923), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1926), 1, - anon_sym_DOLLAR, - ACTIONS(1932), 1, - anon_sym_DQUOTE, - ACTIONS(1935), 1, - aux_sym_number_token1, - ACTIONS(1938), 1, - aux_sym_number_token2, - ACTIONS(1941), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1944), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1947), 1, - anon_sym_BQUOTE, - ACTIONS(1950), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1962), 1, - sym__bare_dollar, - ACTIONS(1965), 1, - sym__brace_start, - ACTIONS(2229), 1, - anon_sym_LT_LT_LT, - ACTIONS(2232), 1, - sym__special_character, - ACTIONS(2235), 1, - sym_file_descriptor, - ACTIONS(2238), 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(1953), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2226), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2223), 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(1483), 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, - [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, - 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, - 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, - [5847] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(1547), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1549), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1551), 1, - anon_sym_DOLLAR, - ACTIONS(1555), 1, - anon_sym_DQUOTE, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1561), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1563), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1565), 1, - anon_sym_BQUOTE, - ACTIONS(1567), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1573), 1, - sym__bare_dollar, - ACTIONS(1575), 1, - sym__brace_start, - ACTIONS(2253), 1, - anon_sym_LT_LT_LT, - ACTIONS(2255), 1, - sym__special_character, - ACTIONS(2257), 1, - sym_test_operator, - STATE(679), 1, - aux_sym_command_repeat2, - STATE(1412), 1, - aux_sym__literal_repeat1, - STATE(1649), 1, - sym_concatenation, - STATE(1654), 1, - sym_herestring_redirect, - STATE(4842), 1, - sym_subshell, - ACTIONS(1402), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1569), 2, - 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(1400), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [5960] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1458), 1, - anon_sym_DQUOTE, - ACTIONS(2263), 1, - sym_variable_name, - STATE(1246), 1, - sym_string, - ACTIONS(2261), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 5, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(2259), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(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, - [6033] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1458), 1, - anon_sym_DQUOTE, - ACTIONS(2263), 1, - sym_variable_name, - STATE(1246), 1, - sym_string, - ACTIONS(2261), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 5, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(2259), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 37, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - 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, - [6106] = 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(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, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_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, - 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, - [6179] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1555), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - sym_variable_name, - STATE(1273), 1, - sym_string, - ACTIONS(2267), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 4, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - ACTIONS(2265), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 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, - 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, - [6252] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(1457), 1, - aux_sym__literal_repeat1, - STATE(1479), 1, - sym_concatenation, - ACTIONS(2273), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - STATE(1015), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2271), 39, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_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, - [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, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - STATE(1096), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2275), 39, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_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, - [6390] = 22, - 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, - anon_sym_DQUOTE, - ACTIONS(2295), 1, - aux_sym_number_token1, - ACTIONS(2297), 1, - aux_sym_number_token2, - ACTIONS(2299), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2301), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2303), 1, - anon_sym_BQUOTE, - ACTIONS(2305), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2309), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2311), 1, - sym_test_operator, - ACTIONS(2313), 1, - sym__brace_start, - STATE(1464), 1, - aux_sym__literal_repeat1, - ACTIONS(2283), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2307), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(591), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2279), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1137), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2281), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [6491] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2029), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2031), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2033), 1, - anon_sym_DOLLAR, - ACTIONS(2037), 1, - anon_sym_DQUOTE, - ACTIONS(2039), 1, - aux_sym_number_token1, - ACTIONS(2041), 1, - aux_sym_number_token2, - ACTIONS(2043), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2045), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2049), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2059), 1, - sym__brace_start, - ACTIONS(2317), 1, - sym__special_character, - ACTIONS(2319), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2321), 1, - sym_variable_name, - ACTIONS(2323), 1, - sym_test_operator, - STATE(1820), 1, - aux_sym__literal_repeat1, - STATE(6652), 1, - sym_subscript, - ACTIONS(1696), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2051), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2315), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(603), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1666), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1694), 20, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_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, - [6594] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(2245), 1, - anon_sym_SEMI_SEMI, - ACTIONS(2247), 3, - anon_sym_RPAREN, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(2243), 23, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - 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, - [6661] = 22, - 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, - 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, - 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, - 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, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_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, - [6762] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2333), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2335), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2337), 1, - anon_sym_DOLLAR, - ACTIONS(2339), 1, - sym__special_character, - ACTIONS(2341), 1, - anon_sym_DQUOTE, - ACTIONS(2343), 1, - aux_sym_number_token1, - ACTIONS(2345), 1, - aux_sym_number_token2, - ACTIONS(2347), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2349), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2351), 1, - anon_sym_BQUOTE, - ACTIONS(2353), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2357), 1, - sym_test_operator, - ACTIONS(2359), 1, - sym__brace_start, - STATE(1491), 1, - 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, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2156), 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, - [6861] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2333), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2335), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2337), 1, - anon_sym_DOLLAR, - ACTIONS(2339), 1, - sym__special_character, - ACTIONS(2341), 1, - anon_sym_DQUOTE, - ACTIONS(2343), 1, - aux_sym_number_token1, - ACTIONS(2345), 1, - aux_sym_number_token2, - ACTIONS(2347), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2349), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2351), 1, - anon_sym_BQUOTE, - ACTIONS(2353), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2357), 1, - sym_test_operator, - ACTIONS(2359), 1, - sym__brace_start, - STATE(1491), 1, - aux_sym__literal_repeat1, - ACTIONS(2162), 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, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2160), 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, - [6960] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2364), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2367), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2370), 1, - anon_sym_DOLLAR, - ACTIONS(2373), 1, - sym__special_character, - ACTIONS(2376), 1, - anon_sym_DQUOTE, - ACTIONS(2379), 1, - aux_sym_number_token1, - ACTIONS(2382), 1, - aux_sym_number_token2, - ACTIONS(2385), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2388), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2391), 1, - anon_sym_BQUOTE, - ACTIONS(2394), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2400), 1, - sym_test_operator, - ACTIONS(2403), 1, - sym__brace_start, - STATE(1491), 1, - aux_sym__literal_repeat1, - ACTIONS(2169), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2397), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(594), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2361), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1165), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2167), 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, - [7059] = 6, - 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, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - 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(2156), 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, - [7128] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(1501), 1, - aux_sym__literal_repeat1, - STATE(597), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2162), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - 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(2160), 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, - [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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2458), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2461), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2464), 1, - anon_sym_DOLLAR, - ACTIONS(2467), 1, - sym__special_character, - ACTIONS(2470), 1, - anon_sym_DQUOTE, - ACTIONS(2473), 1, - aux_sym_number_token1, - ACTIONS(2476), 1, - aux_sym_number_token2, - ACTIONS(2479), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2482), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2485), 1, - anon_sym_BQUOTE, - ACTIONS(2488), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2494), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2497), 1, - sym_test_operator, - ACTIONS(2500), 1, - sym__brace_start, - STATE(1464), 1, - aux_sym__literal_repeat1, - ACTIONS(2456), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2491), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(598), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2451), 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(2454), 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, - [7397] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(2503), 2, - anon_sym_esac, - anon_sym_SEMI_SEMI, - ACTIONS(2505), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(2243), 23, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_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, - [7464] = 23, - 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(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(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, - 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(2319), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2321), 1, - sym_variable_name, - ACTIONS(2323), 1, - sym_test_operator, - STATE(1820), 1, - aux_sym__literal_repeat1, - STATE(6652), 1, - sym_subscript, - ACTIONS(1696), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2051), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2315), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(603), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1666), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1694), 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, - [7672] = 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), 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, - 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, - [7745] = 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(2512), 1, - sym__special_character, - ACTIONS(2515), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2518), 1, - sym_variable_name, - ACTIONS(2521), 1, - sym_test_operator, - STATE(1820), 1, - aux_sym__literal_repeat1, - STATE(6652), 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(2509), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(603), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1666), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1703), 19, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [7850] = 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(1191), 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(1183), 38, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - 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, - [7923] = 28, - 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(1376), 1, + sym__special_character, + ACTIONS(1378), 1, anon_sym_DQUOTE, - ACTIONS(1557), 1, + ACTIONS(1380), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(1382), 1, aux_sym_number_token2, - ACTIONS(1561), 1, + ACTIONS(1384), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1563), 1, + ACTIONS(1386), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1565), 1, + ACTIONS(1388), 1, anon_sym_BQUOTE, - ACTIONS(1567), 1, + ACTIONS(1390), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1573), 1, + ACTIONS(1394), 1, + sym_test_operator, + ACTIONS(1396), 1, sym__bare_dollar, - ACTIONS(1575), 1, + ACTIONS(1398), 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, + STATE(501), 1, aux_sym_command_repeat2, - STATE(1412), 1, + STATE(914), 1, aux_sym__literal_repeat1, - STATE(1649), 1, + STATE(1103), 1, sym_concatenation, - STATE(1654), 1, + STATE(1104), 1, sym_herestring_redirect, - STATE(4702), 1, + STATE(4539), 1, sym_subshell, + ACTIONS(1364), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, ACTIONS(1366), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1569), 2, + ACTIONS(1392), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2251), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2249), 3, + ACTIONS(1360), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1890), 9, + STATE(788), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -82253,14 +72430,20 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1362), 16, + 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_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -82270,120 +72453,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [8036] = 5, - ACTIONS(71), 1, + [119] = 28, + ACTIONS(3), 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, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(1368), 1, anon_sym_LT_LT_LT, + ACTIONS(1370), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1372), 1, 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, + ACTIONS(1374), 1, anon_sym_DOLLAR, + ACTIONS(1376), 1, sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - [8103] = 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(1378), 1, anon_sym_DQUOTE, - ACTIONS(2039), 1, + ACTIONS(1380), 1, aux_sym_number_token1, - ACTIONS(2041), 1, + ACTIONS(1382), 1, aux_sym_number_token2, - ACTIONS(2043), 1, + ACTIONS(1384), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2045), 1, + ACTIONS(1386), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2047), 1, + ACTIONS(1388), 1, anon_sym_BQUOTE, - ACTIONS(2049), 1, + ACTIONS(1390), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2059), 1, - sym__brace_start, - ACTIONS(2317), 1, - sym__special_character, - ACTIONS(2321), 1, - sym_variable_name, - ACTIONS(2323), 1, + ACTIONS(1394), 1, sym_test_operator, - ACTIONS(2524), 1, - aux_sym__simple_variable_name_token1, - STATE(1820), 1, + ACTIONS(1396), 1, + sym__bare_dollar, + ACTIONS(1398), 1, + sym__brace_start, + STATE(502), 1, + aux_sym_command_repeat2, + STATE(914), 1, aux_sym__literal_repeat1, - STATE(6652), 1, - sym_subscript, - ACTIONS(1585), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2051), 2, + STATE(1103), 1, + sym_concatenation, + STATE(1104), 1, + sym_herestring_redirect, + STATE(4599), 1, + sym_subshell, + ACTIONS(1364), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1392), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2315), 3, + ACTIONS(1402), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1360), 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(788), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -82393,7 +72521,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1583), 19, + ACTIONS(1400), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -82403,7 +72531,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 +72544,65 @@ 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, + [238] = 28, + ACTIONS(3), 1, sym_comment, - ACTIONS(433), 1, - anon_sym_LBRACK, - ACTIONS(435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(445), 1, + ACTIONS(673), 1, + anon_sym_LPAREN, + ACTIONS(1408), 1, + anon_sym_LT_LT_LT, + ACTIONS(1410), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(447), 1, + ACTIONS(1412), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(449), 1, + ACTIONS(1414), 1, anon_sym_DOLLAR, - ACTIONS(451), 1, + ACTIONS(1416), 1, sym__special_character, - ACTIONS(453), 1, + ACTIONS(1418), 1, anon_sym_DQUOTE, - ACTIONS(457), 1, + ACTIONS(1420), 1, aux_sym_number_token1, - ACTIONS(459), 1, + ACTIONS(1422), 1, aux_sym_number_token2, - ACTIONS(461), 1, + ACTIONS(1424), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(463), 1, + ACTIONS(1426), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(465), 1, + ACTIONS(1428), 1, anon_sym_BQUOTE, - ACTIONS(467), 1, + ACTIONS(1430), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(473), 1, - sym_variable_name, - ACTIONS(475), 1, + ACTIONS(1434), 1, sym_test_operator, - ACTIONS(477), 1, + ACTIONS(1436), 1, + sym__bare_dollar, + ACTIONS(1438), 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, + STATE(512), 1, + aux_sym_command_repeat2, + STATE(1107), 1, aux_sym__literal_repeat1, - STATE(1056), 1, + STATE(1292), 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, + STATE(1296), 1, sym_herestring_redirect, - STATE(4789), 2, + STATE(4731), 1, 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, - ACTIONS(3), 1, - sym_comment, - STATE(1803), 1, - aux_sym__literal_repeat1, - STATE(622), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2158), 6, + ACTIONS(1366), 2, sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(1325), 9, + ACTIONS(1406), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1432), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1404), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(864), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -82530,7 +72612,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2156), 36, + ACTIONS(1362), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -82541,6 +72623,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, @@ -82550,162 +72634,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + [356] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(673), 1, + anon_sym_LPAREN, + ACTIONS(1408), 1, anon_sym_LT_LT_LT, + ACTIONS(1410), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1412), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1414), 1, anon_sym_DOLLAR, + ACTIONS(1416), 1, sym__special_character, + ACTIONS(1418), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - 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, - sym_comment, - ACTIONS(135), 1, - sym_variable_name, - 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, + ACTIONS(1420), 1, aux_sym_number_token1, - ACTIONS(322), 1, + ACTIONS(1422), 1, aux_sym_number_token2, - ACTIONS(324), 1, + ACTIONS(1424), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(326), 1, + ACTIONS(1426), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(328), 1, + ACTIONS(1428), 1, anon_sym_BQUOTE, - ACTIONS(330), 1, + ACTIONS(1430), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(340), 1, - sym__brace_start, - ACTIONS(771), 1, - sym__special_character, - ACTIONS(775), 1, + ACTIONS(1434), 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, + ACTIONS(1436), 1, + sym__bare_dollar, + ACTIONS(1438), 1, + sym__brace_start, + STATE(507), 1, + aux_sym_command_repeat2, + STATE(1107), 1, aux_sym__literal_repeat1, - STATE(1350), 1, + STATE(1292), 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, + STATE(1296), 1, sym_herestring_redirect, - STATE(4724), 2, + STATE(4752), 1, 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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2536), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2538), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2540), 1, - anon_sym_DOLLAR, - ACTIONS(2542), 1, - sym__special_character, - ACTIONS(2544), 1, - anon_sym_DQUOTE, - ACTIONS(2546), 1, - aux_sym_number_token1, - ACTIONS(2548), 1, - aux_sym_number_token2, - ACTIONS(2550), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2552), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2554), 1, - anon_sym_BQUOTE, - ACTIONS(2556), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2560), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2562), 1, - sym_test_operator, - ACTIONS(2564), 1, - sym__brace_start, - STATE(1801), 1, - aux_sym__literal_repeat1, - ACTIONS(2283), 2, + ACTIONS(1402), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2558), 2, + ACTIONS(1406), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1432), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(614), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2534), 3, + ACTIONS(1404), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1324), 9, + STATE(864), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -82715,7 +72702,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2281), 21, + ACTIONS(1400), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -82737,82 +72724,62 @@ 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, + [474] = 27, ACTIONS(3), 1, sym_comment, - STATE(1542), 1, - aux_sym__literal_repeat1, - STATE(1709), 1, - sym_concatenation, - ACTIONS(2273), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, + ACTIONS(1448), 1, aux_sym_heredoc_redirect_token1, - STATE(1240), 9, - sym_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), 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, + ACTIONS(1450), 1, anon_sym_LT_LT_LT, + ACTIONS(1453), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1456), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1459), 1, anon_sym_DOLLAR, + ACTIONS(1462), 1, sym__special_character, + ACTIONS(1465), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1468), 1, aux_sym_number_token1, + ACTIONS(1471), 1, aux_sym_number_token2, + ACTIONS(1474), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1477), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1480), 1, anon_sym_BQUOTE, + ACTIONS(1483), 1, 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(1489), 1, sym_file_descriptor, - sym_variable_name, + ACTIONS(1492), 1, sym_test_operator, + ACTIONS(1495), 1, + sym__bare_dollar, + ACTIONS(1498), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - STATE(1266), 9, + STATE(499), 1, + aux_sym_command_repeat2, + STATE(914), 1, + aux_sym__literal_repeat1, + STATE(1103), 1, + sym_concatenation, + STATE(1104), 1, + sym_herestring_redirect, + ACTIONS(1445), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1486), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1440), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(788), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -82822,7 +72789,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2275), 38, + ACTIONS(1443), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -82832,6 +72799,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, @@ -82844,70 +72812,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, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [8768] = 22, + [589] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(2536), 1, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(1505), 1, + anon_sym_LT_LT_LT, + ACTIONS(1507), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2538), 1, + ACTIONS(1509), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2540), 1, + ACTIONS(1511), 1, anon_sym_DOLLAR, - ACTIONS(2542), 1, + ACTIONS(1513), 1, sym__special_character, - ACTIONS(2544), 1, + ACTIONS(1515), 1, anon_sym_DQUOTE, - ACTIONS(2546), 1, + ACTIONS(1517), 1, aux_sym_number_token1, - ACTIONS(2548), 1, + ACTIONS(1519), 1, aux_sym_number_token2, - ACTIONS(2550), 1, + ACTIONS(1521), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2552), 1, + ACTIONS(1523), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2554), 1, + ACTIONS(1525), 1, anon_sym_BQUOTE, - ACTIONS(2556), 1, + ACTIONS(1527), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2562), 1, + ACTIONS(1531), 1, sym_test_operator, - ACTIONS(2564), 1, + ACTIONS(1533), 1, + sym__bare_dollar, + ACTIONS(1535), 1, sym__brace_start, - ACTIONS(2566), 1, - aux_sym__simple_variable_name_token1, - STATE(1801), 1, + STATE(522), 1, + aux_sym_command_repeat2, + STATE(1333), 1, aux_sym__literal_repeat1, - ACTIONS(2327), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2558), 2, + STATE(1530), 1, + sym_concatenation, + STATE(1557), 1, + sym_herestring_redirect, + STATE(4627), 1, + sym_subshell, + ACTIONS(1503), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1529), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(636), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2534), 3, + ACTIONS(1366), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1501), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1324), 9, + STATE(910), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -82917,7 +72881,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2325), 21, + ACTIONS(1362), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -82928,8 +72892,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -82939,21 +72901,61 @@ 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, + [706] = 26, ACTIONS(3), 1, sym_comment, - STATE(1814), 1, + ACTIONS(1368), 1, + anon_sym_LT_LT_LT, + ACTIONS(1370), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1372), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1374), 1, + anon_sym_DOLLAR, + ACTIONS(1376), 1, + sym__special_character, + ACTIONS(1378), 1, + anon_sym_DQUOTE, + ACTIONS(1380), 1, + aux_sym_number_token1, + ACTIONS(1382), 1, + aux_sym_number_token2, + ACTIONS(1384), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1386), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1388), 1, + anon_sym_BQUOTE, + ACTIONS(1390), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1394), 1, + sym_test_operator, + ACTIONS(1396), 1, + sym__bare_dollar, + ACTIONS(1398), 1, + sym__brace_start, + STATE(499), 1, + aux_sym_command_repeat2, + STATE(914), 1, aux_sym__literal_repeat1, - STATE(616), 2, + STATE(1103), 1, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2162), 5, + STATE(1104), 1, + sym_herestring_redirect, + ACTIONS(1364), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1392), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1539), 2, sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, aux_sym_heredoc_redirect_token1, - STATE(1355), 9, + ACTIONS(1360), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(788), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -82963,7 +72965,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2160), 37, + ACTIONS(1537), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -82973,8 +72975,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, @@ -82984,69 +72988,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, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [8936] = 21, + [819] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2571), 1, + ACTIONS(1368), 1, + anon_sym_LT_LT_LT, + ACTIONS(1370), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2574), 1, + ACTIONS(1372), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2577), 1, + ACTIONS(1374), 1, anon_sym_DOLLAR, - ACTIONS(2580), 1, + ACTIONS(1376), 1, sym__special_character, - ACTIONS(2583), 1, + ACTIONS(1378), 1, anon_sym_DQUOTE, - ACTIONS(2586), 1, + ACTIONS(1380), 1, aux_sym_number_token1, - ACTIONS(2589), 1, + ACTIONS(1382), 1, aux_sym_number_token2, - ACTIONS(2592), 1, + ACTIONS(1384), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2595), 1, + ACTIONS(1386), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2598), 1, + ACTIONS(1388), 1, anon_sym_BQUOTE, - ACTIONS(2601), 1, + ACTIONS(1390), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2607), 1, + ACTIONS(1394), 1, sym_test_operator, - ACTIONS(2610), 1, + ACTIONS(1396), 1, + sym__bare_dollar, + ACTIONS(1398), 1, sym__brace_start, - STATE(1814), 1, + STATE(499), 1, + aux_sym_command_repeat2, + STATE(914), 1, aux_sym__literal_repeat1, - ACTIONS(2604), 2, + STATE(1103), 1, + sym_concatenation, + STATE(1104), 1, + sym_herestring_redirect, + ACTIONS(1364), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1392), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(616), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2169), 3, + ACTIONS(1543), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(2568), 3, + ACTIONS(1360), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1355), 9, + STATE(788), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -83056,7 +73052,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2167), 21, + ACTIONS(1541), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -83066,8 +73062,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, @@ -83077,52 +73075,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [9034] = 21, + [932] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(2615), 1, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_LT_LT_LT, + ACTIONS(1551), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2617), 1, + ACTIONS(1553), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2619), 1, + ACTIONS(1555), 1, anon_sym_DOLLAR, - ACTIONS(2621), 1, + ACTIONS(1557), 1, sym__special_character, - ACTIONS(2623), 1, + ACTIONS(1559), 1, anon_sym_DQUOTE, - ACTIONS(2625), 1, + ACTIONS(1561), 1, aux_sym_number_token1, - ACTIONS(2627), 1, + ACTIONS(1563), 1, aux_sym_number_token2, - ACTIONS(2629), 1, + ACTIONS(1565), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2631), 1, + ACTIONS(1567), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2633), 1, + ACTIONS(1569), 1, anon_sym_BQUOTE, - ACTIONS(2635), 1, + ACTIONS(1571), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2639), 1, + ACTIONS(1575), 1, sym_test_operator, - ACTIONS(2641), 1, + ACTIONS(1577), 1, + sym__bare_dollar, + ACTIONS(1579), 1, sym__brace_start, - STATE(1903), 1, + STATE(525), 1, + aux_sym_command_repeat2, + STATE(1320), 1, aux_sym__literal_repeat1, - ACTIONS(2158), 2, + STATE(1424), 1, + sym_concatenation, + STATE(1425), 1, + sym_herestring_redirect, + STATE(4647), 1, + sym_subshell, + ACTIONS(1402), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2637), 2, + ACTIONS(1547), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1573), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(621), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2613), 3, + ACTIONS(1545), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1348), 9, + STATE(949), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -83132,7 +73143,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2156), 22, + ACTIONS(1400), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -83142,9 +73153,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, @@ -83154,164 +73164,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, - [9132] = 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(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, - 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, - [9260] = 29, - ACTIONS(71), 1, + [1049] = 28, + ACTIONS(3), 1, sym_comment, - ACTIONS(2645), 1, - sym_word, - ACTIONS(2649), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(2651), 1, + ACTIONS(1505), 1, anon_sym_LT_LT_LT, - ACTIONS(2653), 1, + ACTIONS(1507), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2655), 1, + ACTIONS(1509), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2657), 1, + ACTIONS(1511), 1, anon_sym_DOLLAR, - ACTIONS(2659), 1, + ACTIONS(1513), 1, sym__special_character, - ACTIONS(2661), 1, + ACTIONS(1515), 1, anon_sym_DQUOTE, - ACTIONS(2665), 1, + ACTIONS(1517), 1, aux_sym_number_token1, - ACTIONS(2667), 1, + ACTIONS(1519), 1, aux_sym_number_token2, - ACTIONS(2669), 1, + ACTIONS(1521), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2671), 1, + ACTIONS(1523), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2673), 1, + ACTIONS(1525), 1, anon_sym_BQUOTE, - ACTIONS(2675), 1, + ACTIONS(1527), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2679), 1, + ACTIONS(1531), 1, sym_test_operator, - ACTIONS(2681), 1, + ACTIONS(1533), 1, sym__bare_dollar, - ACTIONS(2683), 1, + ACTIONS(1535), 1, sym__brace_start, - STATE(702), 1, + STATE(521), 1, aux_sym_command_repeat2, - STATE(2399), 1, + STATE(1333), 1, aux_sym__literal_repeat1, - STATE(2449), 1, + STATE(1530), 1, sym_concatenation, - STATE(2488), 1, + STATE(1557), 1, sym_herestring_redirect, - STATE(5570), 1, + STATE(4647), 1, sym_subshell, - ACTIONS(2647), 2, + ACTIONS(1503), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(2663), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(2677), 2, + ACTIONS(1529), 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, + ACTIONS(1402), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1501), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(910), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -83321,62 +73233,85 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1366), 10, - sym_file_descriptor, + ACTIONS(1400), 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, - [9374] = 21, + [1166] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(2615), 1, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_LT_LT_LT, + ACTIONS(1551), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2617), 1, + ACTIONS(1553), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2619), 1, + ACTIONS(1555), 1, anon_sym_DOLLAR, - ACTIONS(2621), 1, + ACTIONS(1557), 1, sym__special_character, - ACTIONS(2623), 1, + ACTIONS(1559), 1, anon_sym_DQUOTE, - ACTIONS(2625), 1, + ACTIONS(1561), 1, aux_sym_number_token1, - ACTIONS(2627), 1, + ACTIONS(1563), 1, aux_sym_number_token2, - ACTIONS(2629), 1, + ACTIONS(1565), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2631), 1, + ACTIONS(1567), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2633), 1, + ACTIONS(1569), 1, anon_sym_BQUOTE, - ACTIONS(2635), 1, + ACTIONS(1571), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2639), 1, + ACTIONS(1575), 1, sym_test_operator, - ACTIONS(2641), 1, + ACTIONS(1577), 1, + sym__bare_dollar, + ACTIONS(1579), 1, sym__brace_start, - STATE(1903), 1, + STATE(520), 1, + aux_sym_command_repeat2, + STATE(1320), 1, aux_sym__literal_repeat1, - ACTIONS(2162), 2, + STATE(1424), 1, + sym_concatenation, + STATE(1425), 1, + sym_herestring_redirect, + STATE(4627), 1, + sym_subshell, + ACTIONS(1366), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2637), 2, + ACTIONS(1547), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1573), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(621), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2613), 3, + ACTIONS(1545), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1348), 9, + STATE(949), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -83386,7 +73321,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2160), 22, + ACTIONS(1362), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -83396,9 +73331,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, @@ -83408,52 +73342,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, - [9472] = 21, + [1283] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(2688), 1, + ACTIONS(1587), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2691), 1, + ACTIONS(1589), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2694), 1, + ACTIONS(1591), 1, anon_sym_DOLLAR, - ACTIONS(2697), 1, + ACTIONS(1593), 1, sym__special_character, - ACTIONS(2700), 1, + ACTIONS(1595), 1, anon_sym_DQUOTE, - ACTIONS(2703), 1, + ACTIONS(1597), 1, aux_sym_number_token1, - ACTIONS(2706), 1, + ACTIONS(1599), 1, aux_sym_number_token2, - ACTIONS(2709), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2712), 1, + ACTIONS(1603), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2715), 1, + ACTIONS(1605), 1, anon_sym_BQUOTE, - ACTIONS(2718), 1, + ACTIONS(1607), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2724), 1, + ACTIONS(1611), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(1613), 1, + sym_variable_name, + ACTIONS(1615), 1, sym_test_operator, - ACTIONS(2727), 1, + ACTIONS(1617), 1, sym__brace_start, - STATE(1903), 1, + STATE(1310), 1, aux_sym__literal_repeat1, - ACTIONS(2169), 2, + STATE(6374), 1, + sym_subscript, + ACTIONS(1585), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2721), 2, + ACTIONS(1609), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(621), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2685), 3, + ACTIONS(1581), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1348), 9, + STATE(516), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(915), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -83463,7 +73403,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2167), 22, + ACTIONS(1583), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -83473,6 +73413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -83485,54 +73426,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, - [9570] = 21, + [1391] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2733), 1, + ACTIONS(1408), 1, + anon_sym_LT_LT_LT, + ACTIONS(1410), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2736), 1, + ACTIONS(1412), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2739), 1, + ACTIONS(1414), 1, anon_sym_DOLLAR, - ACTIONS(2742), 1, + ACTIONS(1416), 1, sym__special_character, - ACTIONS(2745), 1, + ACTIONS(1418), 1, anon_sym_DQUOTE, - ACTIONS(2748), 1, + ACTIONS(1420), 1, aux_sym_number_token1, - ACTIONS(2751), 1, + ACTIONS(1422), 1, aux_sym_number_token2, - ACTIONS(2754), 1, + ACTIONS(1424), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2757), 1, + ACTIONS(1426), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2760), 1, + ACTIONS(1428), 1, anon_sym_BQUOTE, - ACTIONS(2763), 1, + ACTIONS(1430), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2769), 1, + ACTIONS(1434), 1, sym_test_operator, - ACTIONS(2772), 1, + ACTIONS(1436), 1, + sym__bare_dollar, + ACTIONS(1438), 1, sym__brace_start, - STATE(1803), 1, + STATE(509), 1, + aux_sym_command_repeat2, + STATE(1107), 1, aux_sym__literal_repeat1, - ACTIONS(2766), 2, + STATE(1292), 1, + sym_concatenation, + STATE(1296), 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, - STATE(622), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2730), 3, + ACTIONS(1543), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1404), 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, + STATE(864), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -83542,7 +73490,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2167), 20, + ACTIONS(1541), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -83553,6 +73501,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, @@ -83562,152 +73512,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, - [9668] = 6, + [1503] = 24, ACTIONS(3), 1, sym_comment, - STATE(1814), 1, - aux_sym__literal_repeat1, - STATE(616), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2158), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - STATE(1355), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2156), 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, - [9736] = 36, - ACTIONS(71), 1, - sym_comment, - ACTIONS(689), 1, - anon_sym_LBRACK, - ACTIONS(691), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(701), 1, + ACTIONS(1587), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(703), 1, + ACTIONS(1589), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(705), 1, + ACTIONS(1591), 1, anon_sym_DOLLAR, - ACTIONS(707), 1, + ACTIONS(1593), 1, sym__special_character, - ACTIONS(709), 1, + ACTIONS(1595), 1, anon_sym_DQUOTE, - ACTIONS(713), 1, + ACTIONS(1597), 1, aux_sym_number_token1, - ACTIONS(715), 1, + ACTIONS(1599), 1, aux_sym_number_token2, - ACTIONS(717), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(719), 1, + ACTIONS(1603), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(721), 1, + ACTIONS(1605), 1, anon_sym_BQUOTE, - ACTIONS(723), 1, + ACTIONS(1607), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(729), 1, + ACTIONS(1613), 1, sym_variable_name, - ACTIONS(731), 1, + ACTIONS(1615), 1, sym_test_operator, - ACTIONS(733), 1, + ACTIONS(1617), 1, sym__brace_start, - ACTIONS(1352), 1, - anon_sym_LT_LT_LT, - ACTIONS(1354), 1, - sym_file_descriptor, - ACTIONS(2775), 1, - sym_word, - ACTIONS(2777), 1, - anon_sym_LPAREN, - STATE(526), 1, - sym_command_name, - STATE(949), 1, - aux_sym_command_repeat1, - STATE(1089), 1, + ACTIONS(1623), 1, + aux_sym__simple_variable_name_token1, + STATE(1310), 1, aux_sym__literal_repeat1, - STATE(1220), 1, - sym_concatenation, - STATE(1813), 1, - sym_variable_assignment, - STATE(4953), 1, - sym_command, - STATE(6673), 1, + STATE(6374), 1, sym_subscript, - ACTIONS(711), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(725), 2, + ACTIONS(1609), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1350), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3491), 2, - sym_file_redirect, - sym_herestring_redirect, - STATE(4993), 2, - sym_subshell, - sym_test_command, - ACTIONS(1346), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(1344), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(865), 9, + ACTIONS(1621), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1581), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(506), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(915), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -83717,32 +73573,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [9864] = 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(1191), 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(1183), 38, + ACTIONS(1619), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -83765,105 +73596,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + [1611] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1448), 1, aux_sym_heredoc_redirect_token1, + ACTIONS(1631), 1, anon_sym_LT_LT_LT, + ACTIONS(1634), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1637), 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, - [9936] = 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, + ACTIONS(1640), 1, anon_sym_DOLLAR, - ACTIONS(51), 1, + ACTIONS(1643), 1, sym__special_character, - ACTIONS(53), 1, + ACTIONS(1646), 1, anon_sym_DQUOTE, - ACTIONS(57), 1, + ACTIONS(1649), 1, aux_sym_number_token1, - ACTIONS(59), 1, + ACTIONS(1652), 1, aux_sym_number_token2, - ACTIONS(61), 1, + ACTIONS(1655), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(63), 1, + ACTIONS(1658), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(65), 1, + ACTIONS(1661), 1, anon_sym_BQUOTE, - ACTIONS(67), 1, + ACTIONS(1664), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(71), 1, - sym_comment, - ACTIONS(75), 1, - sym_variable_name, - ACTIONS(77), 1, + ACTIONS(1670), 1, + sym_file_descriptor, + ACTIONS(1673), 1, sym_test_operator, - ACTIONS(79), 1, + ACTIONS(1676), 1, + sym__bare_dollar, + ACTIONS(1679), 1, sym__brace_start, - ACTIONS(1352), 1, - anon_sym_LT_LT_LT, - ACTIONS(1354), 1, - sym_file_descriptor, - ACTIONS(2532), 1, - anon_sym_LPAREN, - ACTIONS(2787), 1, - sym_word, - STATE(528), 1, - sym_command_name, - STATE(937), 1, - aux_sym_command_repeat1, - STATE(1181), 1, + STATE(509), 1, + aux_sym_command_repeat2, + STATE(1107), 1, aux_sym__literal_repeat1, - STATE(1431), 1, + STATE(1292), 1, sym_concatenation, - STATE(2121), 1, - sym_variable_assignment, - STATE(4726), 1, - sym_command, - STATE(6655), 1, - sym_subscript, - ACTIONS(55), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(69), 2, + STATE(1296), 1, + sym_herestring_redirect, + ACTIONS(1628), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1667), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1350), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3491), 2, - sym_file_redirect, - sym_herestring_redirect, - STATE(4724), 2, - sym_subshell, - sym_test_command, - ACTIONS(1346), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(1344), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(944), 9, + ACTIONS(1625), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(864), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -83873,32 +73661,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [10064] = 8, - 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, - sym_file_descriptor, - 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, + ACTIONS(1443), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -83908,7 +73671,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,39 +73683,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [10136] = 8, + [1725] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2341), 1, + ACTIONS(1684), 1, anon_sym_DQUOTE, - ACTIONS(2793), 1, + ACTIONS(1688), 1, sym_variable_name, - STATE(1340), 1, + STATE(795), 1, sym_string, - ACTIONS(2791), 2, + ACTIONS(1686), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 3, + ACTIONS(1191), 4, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(2789), 8, + ACTIONS(1682), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -83962,21 +73709,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1183), 38, + 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, @@ -84001,22 +73751,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [10208] = 6, + [1801] = 27, ACTIONS(3), 1, sym_comment, - STATE(1803), 1, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(1551), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1553), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1555), 1, + anon_sym_DOLLAR, + ACTIONS(1559), 1, + anon_sym_DQUOTE, + ACTIONS(1561), 1, + aux_sym_number_token1, + ACTIONS(1563), 1, + aux_sym_number_token2, + ACTIONS(1565), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1567), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1571), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1577), 1, + sym__bare_dollar, + ACTIONS(1579), 1, + sym__brace_start, + ACTIONS(1694), 1, + anon_sym_LT_LT_LT, + ACTIONS(1696), 1, + sym__special_character, + ACTIONS(1698), 1, + sym_test_operator, + STATE(549), 1, + aux_sym_command_repeat2, + STATE(1320), 1, aux_sym__literal_repeat1, - STATE(622), 2, + STATE(1424), 1, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2162), 6, + STATE(1425), 1, + sym_herestring_redirect, + STATE(4627), 1, + sym_subshell, + ACTIONS(1366), 2, sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(1325), 9, + ACTIONS(1573), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1692), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1690), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1182), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -84026,7 +73817,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2160), 36, + ACTIONS(1362), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -84046,63 +73837,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [1915] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1408), 1, anon_sym_LT_LT_LT, + ACTIONS(1410), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1412), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1414), 1, anon_sym_DOLLAR, + ACTIONS(1416), 1, sym__special_character, + ACTIONS(1418), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1420), 1, aux_sym_number_token1, + ACTIONS(1422), 1, aux_sym_number_token2, + ACTIONS(1424), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1426), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1428), 1, anon_sym_BQUOTE, + ACTIONS(1430), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1434), 1, + sym_test_operator, + ACTIONS(1436), 1, + sym__bare_dollar, + ACTIONS(1438), 1, + sym__brace_start, + STATE(509), 1, + aux_sym_command_repeat2, + STATE(1107), 1, + aux_sym__literal_repeat1, + STATE(1292), 1, + sym_concatenation, + STATE(1296), 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(1539), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1404), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [10276] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1555), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - sym_variable_name, - STATE(1273), 1, + STATE(864), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(2267), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 4, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - ACTIONS(2265), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 37, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1537), 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_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -84111,132 +73924,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [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, - aux_sym_number_token1, - ACTIONS(322), 1, - aux_sym_number_token2, - ACTIONS(324), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(326), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(328), 1, - anon_sym_BQUOTE, - ACTIONS(330), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(336), 1, - sym_variable_name, - ACTIONS(338), 1, - sym_test_operator, - ACTIONS(340), 1, - sym__brace_start, - ACTIONS(1352), 1, - anon_sym_LT_LT_LT, - ACTIONS(1354), 1, - sym_file_descriptor, - ACTIONS(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, - aux_sym__literal_repeat1, - STATE(1350), 1, - sym_concatenation, - STATE(2030), 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, - 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, - [10476] = 8, + [2027] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 1, + ACTIONS(1684), 1, anon_sym_DQUOTE, - ACTIONS(2269), 1, + ACTIONS(1688), 1, sym_variable_name, - STATE(1273), 1, + STATE(795), 1, sym_string, - ACTIONS(2267), 2, + ACTIONS(1686), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 4, + ACTIONS(1197), 4, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(2265), 8, + ACTIONS(1682), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -84245,7 +73950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1183), 37, + ACTIONS(1195), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -84256,7 +73961,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, @@ -84283,51 +73992,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [10548] = 21, + [2103] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(2797), 1, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(1551), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2799), 1, + ACTIONS(1553), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2801), 1, + ACTIONS(1555), 1, anon_sym_DOLLAR, - ACTIONS(2803), 1, - sym__special_character, - ACTIONS(2805), 1, + ACTIONS(1559), 1, anon_sym_DQUOTE, - ACTIONS(2807), 1, + ACTIONS(1561), 1, aux_sym_number_token1, - ACTIONS(2809), 1, + ACTIONS(1563), 1, aux_sym_number_token2, - ACTIONS(2811), 1, + ACTIONS(1565), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2813), 1, + ACTIONS(1567), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2815), 1, + ACTIONS(1569), 1, anon_sym_BQUOTE, - ACTIONS(2817), 1, + ACTIONS(1571), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2821), 1, - sym_test_operator, - ACTIONS(2823), 1, + ACTIONS(1577), 1, + sym__bare_dollar, + ACTIONS(1579), 1, sym__brace_start, - STATE(1722), 1, + ACTIONS(1694), 1, + anon_sym_LT_LT_LT, + ACTIONS(1696), 1, + sym__special_character, + ACTIONS(1698), 1, + sym_test_operator, + STATE(548), 1, + aux_sym_command_repeat2, + STATE(1320), 1, aux_sym__literal_repeat1, - ACTIONS(2158), 2, + STATE(1424), 1, + sym_concatenation, + STATE(1425), 1, + sym_herestring_redirect, + STATE(4647), 1, + sym_subshell, + ACTIONS(1402), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2819), 2, + ACTIONS(1573), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(638), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2795), 3, + ACTIONS(1692), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1690), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1292), 9, + STATE(1182), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -84337,7 +74060,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2156), 22, + ACTIONS(1400), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -84347,10 +74070,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, @@ -84360,143 +74080,63 @@ 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, + [2219] = 27, + ACTIONS(3), 1, sym_comment, - ACTIONS(167), 1, - anon_sym_LBRACK, - ACTIONS(171), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(215), 1, - sym_variable_name, - ACTIONS(1039), 1, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(1551), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1041), 1, + ACTIONS(1553), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1043), 1, + ACTIONS(1555), 1, anon_sym_DOLLAR, - ACTIONS(1045), 1, - sym__special_character, - ACTIONS(1047), 1, + ACTIONS(1559), 1, anon_sym_DQUOTE, - ACTIONS(1051), 1, + ACTIONS(1561), 1, aux_sym_number_token1, - ACTIONS(1053), 1, + ACTIONS(1563), 1, aux_sym_number_token2, - ACTIONS(1055), 1, + ACTIONS(1565), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1057), 1, + ACTIONS(1567), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1059), 1, - anon_sym_BQUOTE, - ACTIONS(1061), 1, + ACTIONS(1571), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1067), 1, - sym_test_operator, - ACTIONS(1069), 1, + ACTIONS(1577), 1, + sym__bare_dollar, + ACTIONS(1579), 1, sym__brace_start, - ACTIONS(1352), 1, + ACTIONS(1694), 1, anon_sym_LT_LT_LT, - ACTIONS(1354), 1, - sym_file_descriptor, - ACTIONS(2649), 1, - anon_sym_LPAREN, - ACTIONS(2825), 1, - sym_word, - STATE(639), 1, - sym_command_name, - STATE(880), 1, - aux_sym_command_repeat1, - STATE(2307), 1, + ACTIONS(1696), 1, + sym__special_character, + ACTIONS(1698), 1, + sym_test_operator, + STATE(536), 1, + aux_sym_command_repeat2, + STATE(1320), 1, aux_sym__literal_repeat1, - STATE(2412), 1, + STATE(1424), 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, + STATE(1425), 1, sym_herestring_redirect, - STATE(5584), 2, + STATE(4647), 1, 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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2797), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2799), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2801), 1, - anon_sym_DOLLAR, - ACTIONS(2803), 1, - sym__special_character, - ACTIONS(2805), 1, - anon_sym_DQUOTE, - ACTIONS(2807), 1, - aux_sym_number_token1, - ACTIONS(2809), 1, - aux_sym_number_token2, - ACTIONS(2811), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2813), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2815), 1, - anon_sym_BQUOTE, - ACTIONS(2817), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2821), 1, - sym_test_operator, - ACTIONS(2823), 1, - sym__brace_start, - STATE(1722), 1, - aux_sym__literal_repeat1, - ACTIONS(2162), 2, + ACTIONS(1402), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2819), 2, + ACTIONS(1573), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(638), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2795), 3, + ACTIONS(1692), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1690), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1292), 9, + STATE(1182), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -84506,7 +74146,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2160), 22, + ACTIONS(1400), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -84516,10 +74156,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, @@ -84529,53 +74166,59 @@ 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_BQUOTE, + [2333] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(2830), 1, + ACTIONS(1707), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2833), 1, + ACTIONS(1710), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2836), 1, + ACTIONS(1713), 1, anon_sym_DOLLAR, - ACTIONS(2839), 1, + ACTIONS(1716), 1, sym__special_character, - ACTIONS(2842), 1, + ACTIONS(1719), 1, anon_sym_DQUOTE, - ACTIONS(2845), 1, + ACTIONS(1722), 1, aux_sym_number_token1, - ACTIONS(2848), 1, + ACTIONS(1725), 1, aux_sym_number_token2, - ACTIONS(2851), 1, + ACTIONS(1728), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2854), 1, + ACTIONS(1731), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2857), 1, + ACTIONS(1734), 1, anon_sym_BQUOTE, - ACTIONS(2860), 1, + ACTIONS(1737), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2866), 1, + ACTIONS(1743), 1, aux_sym__simple_variable_name_token1, - ACTIONS(2869), 1, + ACTIONS(1746), 1, + sym_variable_name, + ACTIONS(1749), 1, sym_test_operator, - ACTIONS(2872), 1, + ACTIONS(1752), 1, sym__brace_start, - STATE(1801), 1, + STATE(1310), 1, aux_sym__literal_repeat1, - ACTIONS(2456), 2, + STATE(6374), 1, + sym_subscript, + ACTIONS(1705), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2863), 2, + ACTIONS(1740), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(636), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2827), 3, + ACTIONS(1700), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1324), 9, + STATE(516), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(915), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -84585,7 +74228,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2454), 21, + ACTIONS(1703), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -84595,6 +74238,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, @@ -84607,143 +74251,65 @@ 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, + [2441] = 28, + ACTIONS(3), 1, sym_comment, - ACTIONS(308), 1, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(1551), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(310), 1, + ACTIONS(1553), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(312), 1, + ACTIONS(1555), 1, anon_sym_DOLLAR, - ACTIONS(316), 1, + ACTIONS(1559), 1, anon_sym_DQUOTE, - ACTIONS(320), 1, + ACTIONS(1561), 1, aux_sym_number_token1, - ACTIONS(322), 1, + ACTIONS(1563), 1, aux_sym_number_token2, - ACTIONS(324), 1, + ACTIONS(1565), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(326), 1, + ACTIONS(1567), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(328), 1, + ACTIONS(1569), 1, anon_sym_BQUOTE, - ACTIONS(330), 1, + ACTIONS(1571), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(340), 1, + ACTIONS(1577), 1, + sym__bare_dollar, + ACTIONS(1579), 1, sym__brace_start, - ACTIONS(1015), 1, + ACTIONS(1694), 1, + anon_sym_LT_LT_LT, + ACTIONS(1696), 1, sym__special_character, - ACTIONS(1021), 1, - sym_variable_name, - ACTIONS(1023), 1, + ACTIONS(1698), 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, + STATE(546), 1, + aux_sym_command_repeat2, + STATE(1320), 1, aux_sym__literal_repeat1, - STATE(1350), 1, + STATE(1424), 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, + STATE(1425), 1, sym_herestring_redirect, - STATE(4724), 2, + STATE(4627), 1, 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, - 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, - aux_sym__literal_repeat1, - ACTIONS(2169), 2, + ACTIONS(1366), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2913), 2, + ACTIONS(1573), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(638), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2877), 3, + ACTIONS(1692), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1690), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1292), 9, + STATE(1182), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -84753,7 +74319,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2167), 22, + ACTIONS(1362), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -84763,10 +74329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -84776,71 +74339,58 @@ 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, - ACTIONS(71), 1, + [2557] = 24, + ACTIONS(3), 1, sym_comment, - ACTIONS(2645), 1, - sym_word, - ACTIONS(2649), 1, - anon_sym_LPAREN, - ACTIONS(2651), 1, - anon_sym_LT_LT_LT, - ACTIONS(2653), 1, + ACTIONS(1757), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2655), 1, + ACTIONS(1759), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2657), 1, + ACTIONS(1761), 1, anon_sym_DOLLAR, - ACTIONS(2659), 1, + ACTIONS(1763), 1, sym__special_character, - ACTIONS(2661), 1, + ACTIONS(1765), 1, anon_sym_DQUOTE, - ACTIONS(2665), 1, + ACTIONS(1767), 1, aux_sym_number_token1, - ACTIONS(2667), 1, + ACTIONS(1769), 1, aux_sym_number_token2, - ACTIONS(2669), 1, + ACTIONS(1771), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2671), 1, + ACTIONS(1773), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2673), 1, + ACTIONS(1775), 1, anon_sym_BQUOTE, - ACTIONS(2675), 1, + ACTIONS(1777), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2679), 1, + ACTIONS(1781), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(1783), 1, + sym_variable_name, + ACTIONS(1785), 1, sym_test_operator, - ACTIONS(2681), 1, - sym__bare_dollar, - ACTIONS(2683), 1, + ACTIONS(1787), 1, sym__brace_start, - STATE(695), 1, - aux_sym_command_repeat2, - STATE(2399), 1, + STATE(1394), 1, aux_sym__literal_repeat1, - STATE(2449), 1, - sym_concatenation, - STATE(2488), 1, - sym_herestring_redirect, - STATE(5593), 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, + STATE(6326), 1, + sym_subscript, + ACTIONS(1585), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1779), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1400), 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, + ACTIONS(1755), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(523), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1099), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -84850,61 +74400,80 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1402), 10, - sym_file_descriptor, + ACTIONS(1583), 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, - [11312] = 21, + [2664] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(2924), 1, + ACTIONS(1757), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2926), 1, + ACTIONS(1759), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2928), 1, + ACTIONS(1761), 1, anon_sym_DOLLAR, - ACTIONS(2930), 1, + ACTIONS(1763), 1, sym__special_character, - ACTIONS(2932), 1, + ACTIONS(1765), 1, anon_sym_DQUOTE, - ACTIONS(2934), 1, + ACTIONS(1767), 1, aux_sym_number_token1, - ACTIONS(2936), 1, + ACTIONS(1769), 1, aux_sym_number_token2, - ACTIONS(2938), 1, + ACTIONS(1771), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2940), 1, + ACTIONS(1773), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2942), 1, + ACTIONS(1775), 1, anon_sym_BQUOTE, - ACTIONS(2944), 1, + ACTIONS(1777), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2948), 1, + ACTIONS(1783), 1, + sym_variable_name, + ACTIONS(1785), 1, sym_test_operator, - ACTIONS(2950), 1, + ACTIONS(1787), 1, sym__brace_start, - STATE(4245), 1, + ACTIONS(1789), 1, + aux_sym__simple_variable_name_token1, + STATE(1394), 1, aux_sym__literal_repeat1, - STATE(4580), 1, - sym_concatenation, - ACTIONS(2273), 2, + STATE(6326), 1, + sym_subscript, + ACTIONS(1621), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2946), 2, + ACTIONS(1779), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2922), 3, + ACTIONS(1755), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4133), 9, + STATE(518), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1099), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -84914,7 +74483,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2271), 23, + ACTIONS(1619), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -84924,7 +74493,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -84937,51 +74505,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, - [11410] = 21, + [2771] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2924), 1, + ACTIONS(1549), 1, + anon_sym_LT_LT_LT, + ACTIONS(1551), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2926), 1, + ACTIONS(1553), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2928), 1, + ACTIONS(1555), 1, anon_sym_DOLLAR, - ACTIONS(2930), 1, + ACTIONS(1557), 1, sym__special_character, - ACTIONS(2932), 1, + ACTIONS(1559), 1, anon_sym_DQUOTE, - ACTIONS(2934), 1, + ACTIONS(1561), 1, aux_sym_number_token1, - ACTIONS(2936), 1, + ACTIONS(1563), 1, aux_sym_number_token2, - ACTIONS(2938), 1, + ACTIONS(1565), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2940), 1, + ACTIONS(1567), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2942), 1, + ACTIONS(1569), 1, anon_sym_BQUOTE, - ACTIONS(2944), 1, + ACTIONS(1571), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2950), 1, - sym__brace_start, - ACTIONS(2954), 1, + ACTIONS(1575), 1, sym_test_operator, - STATE(4198), 1, + ACTIONS(1577), 1, + sym__bare_dollar, + ACTIONS(1579), 1, + sym__brace_start, + STATE(524), 1, + aux_sym_command_repeat2, + STATE(1320), 1, aux_sym__literal_repeat1, - STATE(4643), 1, + STATE(1424), 1, sym_concatenation, - ACTIONS(2277), 2, + STATE(1425), 1, + sym_herestring_redirect, + ACTIONS(1539), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2946), 2, + ACTIONS(1547), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1573), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2952), 3, + ACTIONS(1545), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4165), 9, + STATE(949), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -84991,7 +74569,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2275), 23, + ACTIONS(1537), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -85001,10 +74579,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, @@ -85014,126 +74590,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [11508] = 8, + [2882] = 26, 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, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, + ACTIONS(1505), 1, anon_sym_LT_LT_LT, + ACTIONS(1507), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1509), 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, - [11580] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1547), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1549), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1551), 1, + ACTIONS(1511), 1, anon_sym_DOLLAR, - ACTIONS(1555), 1, + ACTIONS(1513), 1, + sym__special_character, + ACTIONS(1515), 1, anon_sym_DQUOTE, - ACTIONS(1557), 1, + ACTIONS(1517), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(1519), 1, aux_sym_number_token2, - ACTIONS(1561), 1, + ACTIONS(1521), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1563), 1, + ACTIONS(1523), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1565), 1, + ACTIONS(1525), 1, anon_sym_BQUOTE, - ACTIONS(1567), 1, + ACTIONS(1527), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1573), 1, + ACTIONS(1531), 1, + sym_test_operator, + ACTIONS(1533), 1, sym__bare_dollar, - ACTIONS(1575), 1, + ACTIONS(1535), 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, + STATE(530), 1, aux_sym_command_repeat2, - STATE(1412), 1, + STATE(1333), 1, aux_sym__literal_repeat1, - STATE(1649), 1, + STATE(1530), 1, sym_concatenation, - STATE(1654), 1, + STATE(1557), 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(2251), 2, + ACTIONS(1503), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(2249), 3, + ACTIONS(1529), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1501), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1890), 9, + ACTIONS(1543), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + STATE(910), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -85143,14 +74655,17 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1577), 16, + ACTIONS(1541), 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, @@ -85160,53 +74675,62 @@ 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, + [2993] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2959), 1, + ACTIONS(1505), 1, + anon_sym_LT_LT_LT, + ACTIONS(1507), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2962), 1, + ACTIONS(1509), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2965), 1, + ACTIONS(1511), 1, anon_sym_DOLLAR, - ACTIONS(2968), 1, + ACTIONS(1513), 1, sym__special_character, - ACTIONS(2971), 1, + ACTIONS(1515), 1, anon_sym_DQUOTE, - ACTIONS(2974), 1, + ACTIONS(1517), 1, aux_sym_number_token1, - ACTIONS(2977), 1, + ACTIONS(1519), 1, aux_sym_number_token2, - ACTIONS(2980), 1, + ACTIONS(1521), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2983), 1, + ACTIONS(1523), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2986), 1, + ACTIONS(1525), 1, anon_sym_BQUOTE, - ACTIONS(2989), 1, + ACTIONS(1527), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2995), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2998), 1, + ACTIONS(1531), 1, sym_test_operator, - ACTIONS(3001), 1, + ACTIONS(1533), 1, + sym__bare_dollar, + ACTIONS(1535), 1, sym__brace_start, - STATE(2045), 1, + STATE(530), 1, + aux_sym_command_repeat2, + STATE(1333), 1, aux_sym__literal_repeat1, - ACTIONS(2456), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2992), 2, + STATE(1530), 1, + sym_concatenation, + STATE(1557), 1, + sym_herestring_redirect, + ACTIONS(1503), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1529), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(644), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2956), 3, + ACTIONS(1501), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1615), 9, + ACTIONS(1539), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + STATE(910), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -85216,7 +74740,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2454), 20, + ACTIONS(1537), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -85226,7 +74750,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, @@ -85237,51 +74760,58 @@ 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, + [3104] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3006), 1, + ACTIONS(1794), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3008), 1, + ACTIONS(1797), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3010), 1, + ACTIONS(1800), 1, anon_sym_DOLLAR, - ACTIONS(3012), 1, + ACTIONS(1803), 1, sym__special_character, - ACTIONS(3014), 1, + ACTIONS(1806), 1, anon_sym_DQUOTE, - ACTIONS(3016), 1, + ACTIONS(1809), 1, aux_sym_number_token1, - ACTIONS(3018), 1, + ACTIONS(1812), 1, aux_sym_number_token2, - ACTIONS(3020), 1, + ACTIONS(1815), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3022), 1, + ACTIONS(1818), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3024), 1, + ACTIONS(1821), 1, anon_sym_BQUOTE, - ACTIONS(3026), 1, + ACTIONS(1824), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3030), 1, + ACTIONS(1830), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(1833), 1, + sym_variable_name, + ACTIONS(1836), 1, sym_test_operator, - ACTIONS(3032), 1, + ACTIONS(1839), 1, sym__brace_start, - STATE(2112), 1, + STATE(1394), 1, aux_sym__literal_repeat1, - ACTIONS(2158), 2, + STATE(6326), 1, + sym_subscript, + ACTIONS(1705), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3028), 2, + ACTIONS(1827), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(647), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3004), 3, + ACTIONS(1791), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1653), 9, + STATE(523), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1099), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -85291,7 +74821,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2156), 21, + ACTIONS(1703), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -85301,8 +74831,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, @@ -85312,52 +74843,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [11883] = 21, + [3211] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3006), 1, + ACTIONS(1448), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1848), 1, + anon_sym_LT_LT_LT, + ACTIONS(1851), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3008), 1, + ACTIONS(1854), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3010), 1, + ACTIONS(1857), 1, anon_sym_DOLLAR, - ACTIONS(3012), 1, + ACTIONS(1860), 1, sym__special_character, - ACTIONS(3014), 1, + ACTIONS(1863), 1, anon_sym_DQUOTE, - ACTIONS(3016), 1, + ACTIONS(1866), 1, aux_sym_number_token1, - ACTIONS(3018), 1, + ACTIONS(1869), 1, aux_sym_number_token2, - ACTIONS(3020), 1, + ACTIONS(1872), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3022), 1, + ACTIONS(1875), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3024), 1, + ACTIONS(1878), 1, anon_sym_BQUOTE, - ACTIONS(3026), 1, + ACTIONS(1881), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3030), 1, + ACTIONS(1887), 1, + sym_file_descriptor, + ACTIONS(1890), 1, sym_test_operator, - ACTIONS(3032), 1, + ACTIONS(1893), 1, + sym__bare_dollar, + ACTIONS(1896), 1, sym__brace_start, - STATE(2112), 1, + STATE(524), 1, + aux_sym_command_repeat2, + STATE(1320), 1, aux_sym__literal_repeat1, - ACTIONS(2162), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3028), 2, + STATE(1424), 1, + sym_concatenation, + STATE(1425), 1, + sym_herestring_redirect, + ACTIONS(1845), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1884), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(647), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3004), 3, + ACTIONS(1842), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1653), 9, + STATE(949), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -85367,7 +74908,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2160), 21, + ACTIONS(1443), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -85388,52 +74929,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, - [11980] = 21, + [3324] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3037), 1, + ACTIONS(1549), 1, + anon_sym_LT_LT_LT, + ACTIONS(1551), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3040), 1, + ACTIONS(1553), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3043), 1, + ACTIONS(1555), 1, anon_sym_DOLLAR, - ACTIONS(3046), 1, + ACTIONS(1557), 1, sym__special_character, - ACTIONS(3049), 1, + ACTIONS(1559), 1, anon_sym_DQUOTE, - ACTIONS(3052), 1, + ACTIONS(1561), 1, aux_sym_number_token1, - ACTIONS(3055), 1, + ACTIONS(1563), 1, aux_sym_number_token2, - ACTIONS(3058), 1, + ACTIONS(1565), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3061), 1, + ACTIONS(1567), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3064), 1, + ACTIONS(1569), 1, anon_sym_BQUOTE, - ACTIONS(3067), 1, + ACTIONS(1571), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3073), 1, + ACTIONS(1575), 1, sym_test_operator, - ACTIONS(3076), 1, + ACTIONS(1577), 1, + sym__bare_dollar, + ACTIONS(1579), 1, sym__brace_start, - STATE(2112), 1, + STATE(524), 1, + aux_sym_command_repeat2, + STATE(1320), 1, aux_sym__literal_repeat1, - ACTIONS(2169), 2, + STATE(1424), 1, + sym_concatenation, + STATE(1425), 1, + sym_herestring_redirect, + ACTIONS(1543), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3070), 2, + ACTIONS(1547), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1573), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(647), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3034), 3, + ACTIONS(1545), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1653), 9, + STATE(949), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -85443,7 +74993,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2167), 21, + ACTIONS(1541), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -85464,76 +75014,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, - [12077] = 22, + [3435] = 8, 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, - 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, + ACTIONS(1378), 1, + anon_sym_DQUOTE, + ACTIONS(1903), 1, + sym_variable_name, + STATE(813), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2281), 20, + ACTIONS(1901), 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(1899), 8, + 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_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, @@ -85542,42 +75065,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [12176] = 6, + 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, + [3510] = 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(1907), 1, + anon_sym_DQUOTE, + ACTIONS(1911), 1, sym_variable_name, + STATE(822), 1, + sym_string, + ACTIONS(1909), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1197), 4, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - STATE(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(1905), 8, + 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_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, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -85586,12 +75132,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 +75148,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [12243] = 8, + [3585] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2623), 1, + ACTIONS(1907), 1, anon_sym_DQUOTE, - ACTIONS(3115), 1, + ACTIONS(1911), 1, sym_variable_name, - STATE(1528), 1, + STATE(822), 1, sym_string, - ACTIONS(3113), 2, + ACTIONS(1909), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 3, + ACTIONS(1191), 4, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(3111), 8, + ACTIONS(1905), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -85628,20 +75174,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1183), 37, + ACTIONS(1183), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -85666,42 +75215,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [12314] = 6, + [3660] = 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(1378), 1, + anon_sym_DQUOTE, + ACTIONS(1903), 1, sym_variable_name, + STATE(813), 1, + sym_string, + ACTIONS(1901), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1191), 4, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - 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(1899), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_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, @@ -85710,12 +75266,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 +75282,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [12381] = 21, + [3735] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3119), 1, + ACTIONS(1919), 1, + anon_sym_LT_LT_LT, + ACTIONS(1922), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3121), 1, + ACTIONS(1925), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3123), 1, + ACTIONS(1928), 1, anon_sym_DOLLAR, - ACTIONS(3125), 1, + ACTIONS(1931), 1, sym__special_character, - ACTIONS(3127), 1, + ACTIONS(1934), 1, anon_sym_DQUOTE, - ACTIONS(3129), 1, + ACTIONS(1937), 1, aux_sym_number_token1, - ACTIONS(3131), 1, + ACTIONS(1940), 1, aux_sym_number_token2, - ACTIONS(3133), 1, + ACTIONS(1943), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3135), 1, + ACTIONS(1946), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3137), 1, + ACTIONS(1949), 1, anon_sym_BQUOTE, - ACTIONS(3139), 1, + ACTIONS(1952), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3143), 1, + ACTIONS(1958), 1, + sym_file_descriptor, + ACTIONS(1961), 1, sym_test_operator, - ACTIONS(3145), 1, + ACTIONS(1964), 1, + sym__bare_dollar, + ACTIONS(1967), 1, sym__brace_start, - STATE(4405), 1, + STATE(530), 1, + aux_sym_command_repeat2, + STATE(1333), 1, aux_sym__literal_repeat1, - STATE(4910), 1, + STATE(1530), 1, sym_concatenation, - ACTIONS(2273), 2, - sym_file_descriptor, + STATE(1557), 1, + sym_herestring_redirect, + ACTIONS(1448), 2, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3141), 2, + ACTIONS(1916), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1955), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3117), 3, + ACTIONS(1913), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4268), 9, + STATE(910), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -85780,7 +75348,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2271), 22, + ACTIONS(1443), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -85790,10 +75358,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, @@ -85803,50 +75368,58 @@ 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, + [3848] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3119), 1, + ACTIONS(1973), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3121), 1, + ACTIONS(1976), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3123), 1, + ACTIONS(1979), 1, anon_sym_DOLLAR, - ACTIONS(3125), 1, + ACTIONS(1982), 1, sym__special_character, - ACTIONS(3127), 1, + ACTIONS(1985), 1, anon_sym_DQUOTE, - ACTIONS(3129), 1, + ACTIONS(1988), 1, aux_sym_number_token1, - ACTIONS(3131), 1, + ACTIONS(1991), 1, aux_sym_number_token2, - ACTIONS(3133), 1, + ACTIONS(1994), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3135), 1, + ACTIONS(1997), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3137), 1, + ACTIONS(2000), 1, anon_sym_BQUOTE, - ACTIONS(3139), 1, + ACTIONS(2003), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3145), 1, - sym__brace_start, - ACTIONS(3149), 1, + ACTIONS(2009), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(2012), 1, + sym_variable_name, + ACTIONS(2015), 1, sym_test_operator, - STATE(4419), 1, + ACTIONS(2018), 1, + sym__brace_start, + STATE(1567), 1, aux_sym__literal_repeat1, - STATE(4696), 1, - sym_concatenation, - ACTIONS(2277), 2, + STATE(6340), 1, + sym_subscript, + ACTIONS(1705), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3141), 2, + ACTIONS(2006), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3147), 3, + ACTIONS(1970), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4168), 9, + STATE(531), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1272), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -85856,7 +75429,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2275), 22, + ACTIONS(1703), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -85866,10 +75439,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, @@ -85879,42 +75450,48 @@ 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, + [3954] = 8, ACTIONS(3), 1, sym_comment, - STATE(1787), 1, - aux_sym__literal_repeat1, - STATE(1973), 1, - sym_concatenation, - ACTIONS(2273), 6, - sym_file_descriptor, + ACTIONS(1418), 1, + anon_sym_DQUOTE, + ACTIONS(2025), 1, sym_variable_name, + STATE(1004), 1, + sym_string, + ACTIONS(2023), 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, - 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, + ACTIONS(2021), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -85923,12 +75500,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, @@ -85940,42 +75516,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [12642] = 6, + [4028] = 8, ACTIONS(3), 1, sym_comment, - STATE(1809), 1, - aux_sym__literal_repeat1, - STATE(2020), 1, - sym_concatenation, - ACTIONS(2277), 6, - sym_file_descriptor, + ACTIONS(2029), 1, + anon_sym_DQUOTE, + ACTIONS(2033), 1, sym_variable_name, + STATE(993), 1, + sym_string, + ACTIONS(2031), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1191), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, - 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, + ACTIONS(2027), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -85984,12 +75566,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, @@ -86001,54 +75582,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [12709] = 22, + [4102] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2045), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(2047), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2049), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2051), 1, + anon_sym_DOLLAR, + ACTIONS(2053), 1, + sym__special_character, + ACTIONS(2055), 1, + anon_sym_DQUOTE, + ACTIONS(2057), 1, + aux_sym_number_token1, + ACTIONS(2059), 1, + aux_sym_number_token2, + ACTIONS(2061), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2063), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2065), 1, + anon_sym_BQUOTE, + ACTIONS(2067), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2071), 1, + sym_file_descriptor, + ACTIONS(2073), 1, + sym_test_operator, + ACTIONS(2075), 1, + sym__brace_start, + STATE(544), 1, + aux_sym_redirected_statement_repeat1, + STATE(1592), 1, + aux_sym__literal_repeat1, + STATE(1811), 1, + sym_concatenation, + ACTIONS(2041), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(2043), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(2069), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1810), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(2035), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(2039), 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(1319), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2037), 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, + [4214] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3154), 1, + ACTIONS(2079), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3157), 1, + ACTIONS(2081), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3160), 1, + ACTIONS(2083), 1, anon_sym_DOLLAR, - ACTIONS(3163), 1, + ACTIONS(2085), 1, sym__special_character, - ACTIONS(3166), 1, + ACTIONS(2087), 1, anon_sym_DQUOTE, - ACTIONS(3169), 1, + ACTIONS(2089), 1, aux_sym_number_token1, - ACTIONS(3172), 1, + ACTIONS(2091), 1, aux_sym_number_token2, - ACTIONS(3175), 1, + ACTIONS(2093), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3178), 1, + ACTIONS(2095), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3181), 1, + ACTIONS(2097), 1, anon_sym_BQUOTE, - ACTIONS(3184), 1, + ACTIONS(2099), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3190), 1, + ACTIONS(2103), 1, aux_sym__simple_variable_name_token1, - ACTIONS(3193), 1, + ACTIONS(2105), 1, + sym_variable_name, + ACTIONS(2107), 1, sym_test_operator, - ACTIONS(3196), 1, + ACTIONS(2109), 1, sym__brace_start, - STATE(1968), 1, + STATE(1576), 1, aux_sym__literal_repeat1, - ACTIONS(3187), 2, + STATE(6358), 1, + sym_subscript, + ACTIONS(2101), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(656), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2456), 3, + ACTIONS(1621), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3151), 3, + ACTIONS(2077), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1598), 9, + STATE(543), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1257), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -86058,7 +75729,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2454), 19, + ACTIONS(1619), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -86078,53 +75749,59 @@ 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, + [4320] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3081), 1, + ACTIONS(1551), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3083), 1, + ACTIONS(1553), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3085), 1, + ACTIONS(1555), 1, anon_sym_DOLLAR, - ACTIONS(3087), 1, - sym__special_character, - ACTIONS(3089), 1, + ACTIONS(1559), 1, anon_sym_DQUOTE, - ACTIONS(3091), 1, + ACTIONS(1561), 1, aux_sym_number_token1, - ACTIONS(3093), 1, + ACTIONS(1563), 1, aux_sym_number_token2, - ACTIONS(3095), 1, + ACTIONS(1565), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3097), 1, + ACTIONS(1567), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3099), 1, - anon_sym_BQUOTE, - ACTIONS(3101), 1, + ACTIONS(1571), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3107), 1, - sym_test_operator, - ACTIONS(3109), 1, + ACTIONS(1577), 1, + sym__bare_dollar, + ACTIONS(1579), 1, sym__brace_start, - ACTIONS(3199), 1, - aux_sym__simple_variable_name_token1, - STATE(2045), 1, + ACTIONS(1694), 1, + anon_sym_LT_LT_LT, + ACTIONS(1696), 1, + sym__special_character, + ACTIONS(1698), 1, + sym_test_operator, + STATE(547), 1, + aux_sym_command_repeat2, + STATE(1320), 1, aux_sym__literal_repeat1, - ACTIONS(2327), 2, + STATE(1424), 1, + sym_concatenation, + STATE(1425), 1, + sym_herestring_redirect, + ACTIONS(1543), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3103), 2, + ACTIONS(1573), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(644), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(3079), 3, + ACTIONS(1692), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1690), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1615), 9, + STATE(1182), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -86134,7 +75811,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2325), 20, + ACTIONS(1541), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -86144,7 +75821,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, @@ -86155,23 +75831,26 @@ 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, + anon_sym_BQUOTE, + [4428] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2623), 1, + ACTIONS(2029), 1, anon_sym_DQUOTE, - ACTIONS(3115), 1, + ACTIONS(2033), 1, sym_variable_name, - STATE(1528), 1, + STATE(993), 1, sym_string, - ACTIONS(3113), 2, + ACTIONS(2031), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, + ACTIONS(1197), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(3111), 8, + ts_builtin_sym_end, + ACTIONS(2027), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -86180,20 +75859,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1195), 37, + ACTIONS(1195), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -86218,52 +75898,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [12978] = 21, + [4502] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3203), 1, + ACTIONS(2114), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3205), 1, + ACTIONS(2117), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3207), 1, + ACTIONS(2120), 1, anon_sym_DOLLAR, - ACTIONS(3209), 1, + ACTIONS(2123), 1, sym__special_character, - ACTIONS(3211), 1, + ACTIONS(2126), 1, anon_sym_DQUOTE, - ACTIONS(3213), 1, + ACTIONS(2129), 1, aux_sym_number_token1, - ACTIONS(3215), 1, + ACTIONS(2132), 1, aux_sym_number_token2, - ACTIONS(3217), 1, + ACTIONS(2135), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3219), 1, + ACTIONS(2138), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3221), 1, + ACTIONS(2141), 1, anon_sym_BQUOTE, - ACTIONS(3223), 1, + ACTIONS(2144), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3227), 1, + ACTIONS(2150), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(2153), 1, + sym_variable_name, + ACTIONS(2156), 1, sym_test_operator, - ACTIONS(3229), 1, + ACTIONS(2159), 1, sym__brace_start, - STATE(2027), 1, + STATE(1576), 1, aux_sym__literal_repeat1, - ACTIONS(3225), 2, + STATE(6358), 1, + sym_subscript, + ACTIONS(2147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(666), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2162), 3, + ACTIONS(1705), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3201), 3, + ACTIONS(2111), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1611), 9, + STATE(538), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1257), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -86273,7 +75960,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2160), 20, + ACTIONS(1703), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -86293,52 +75980,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + [4608] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(803), 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, - [13075] = 21, + 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(474), 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, + [4672] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, + ACTIONS(2164), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3235), 1, + ACTIONS(2166), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3237), 1, + ACTIONS(2168), 1, anon_sym_DOLLAR, - ACTIONS(3239), 1, + ACTIONS(2170), 1, sym__special_character, - ACTIONS(3241), 1, + ACTIONS(2172), 1, anon_sym_DQUOTE, - ACTIONS(3243), 1, + ACTIONS(2174), 1, aux_sym_number_token1, - ACTIONS(3245), 1, + ACTIONS(2176), 1, aux_sym_number_token2, - ACTIONS(3247), 1, + ACTIONS(2178), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3249), 1, + ACTIONS(2180), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3251), 1, + ACTIONS(2182), 1, anon_sym_BQUOTE, - ACTIONS(3253), 1, + ACTIONS(2184), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3257), 1, + ACTIONS(2188), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(2190), 1, + sym_variable_name, + ACTIONS(2192), 1, sym_test_operator, - ACTIONS(3259), 1, + ACTIONS(2194), 1, sym__brace_start, - STATE(2110), 1, + STATE(1567), 1, aux_sym__literal_repeat1, - ACTIONS(2158), 2, + STATE(6340), 1, + sym_subscript, + ACTIONS(1621), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3255), 2, + ACTIONS(2186), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(662), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3231), 3, + ACTIONS(2162), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1524), 9, + STATE(545), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1272), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -86348,7 +76102,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2156), 21, + ACTIONS(1619), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -86358,9 +76112,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, @@ -86370,74 +76123,48 @@ 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, + [4778] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, - 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, + ACTIONS(2198), 1, anon_sym_DQUOTE, - ACTIONS(3243), 1, - 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, + ACTIONS(2202), 1, + sym_variable_name, + STATE(1014), 1, + sym_string, + ACTIONS(2200), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1197), 4, + sym_file_descriptor, sym_test_operator, - ACTIONS(3259), 1, + sym__bare_dollar, sym__brace_start, - STATE(2110), 1, - aux_sym__literal_repeat1, - ACTIONS(2162), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3255), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(662), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3231), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1524), 9, - sym_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(2196), 8, + 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), 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, @@ -86446,74 +76173,64 @@ 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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3264), 1, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3267), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3270), 1, - anon_sym_DOLLAR, - ACTIONS(3273), 1, sym__special_character, - ACTIONS(3276), 1, - anon_sym_DQUOTE, - ACTIONS(3279), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(3282), 1, aux_sym_number_token2, - ACTIONS(3285), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3288), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3291), 1, anon_sym_BQUOTE, - ACTIONS(3294), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3300), 1, - sym_test_operator, - ACTIONS(3303), 1, - sym__brace_start, - STATE(2110), 1, - aux_sym__literal_repeat1, - ACTIONS(2169), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3297), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(662), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3261), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(1524), 9, - sym_arithmetic_expansion, - sym_brace_expression, + [4852] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2198), 1, + anon_sym_DQUOTE, + ACTIONS(2202), 1, + sym_variable_name, + STATE(1014), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2167), 21, + ACTIONS(2200), 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(2196), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_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, @@ -86522,54 +76239,75 @@ 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, + 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, + [4926] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3308), 1, + ACTIONS(2079), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3310), 1, + ACTIONS(2081), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3312), 1, + ACTIONS(2083), 1, anon_sym_DOLLAR, - ACTIONS(3314), 1, + ACTIONS(2085), 1, sym__special_character, - ACTIONS(3316), 1, + ACTIONS(2087), 1, anon_sym_DQUOTE, - ACTIONS(3318), 1, + ACTIONS(2089), 1, aux_sym_number_token1, - ACTIONS(3320), 1, + ACTIONS(2091), 1, aux_sym_number_token2, - ACTIONS(3322), 1, + ACTIONS(2093), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3324), 1, + ACTIONS(2095), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3326), 1, + ACTIONS(2097), 1, anon_sym_BQUOTE, - ACTIONS(3328), 1, + ACTIONS(2099), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3332), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(3334), 1, + ACTIONS(2105), 1, + sym_variable_name, + ACTIONS(2107), 1, sym_test_operator, - ACTIONS(3336), 1, + ACTIONS(2109), 1, sym__brace_start, - STATE(1968), 1, + ACTIONS(2204), 1, + aux_sym__simple_variable_name_token1, + STATE(1576), 1, aux_sym__literal_repeat1, - ACTIONS(3330), 2, + STATE(6358), 1, + sym_subscript, + ACTIONS(2101), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(681), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2283), 3, + ACTIONS(1585), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3306), 3, + ACTIONS(2077), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1598), 9, + STATE(538), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1257), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -86579,7 +76317,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2281), 19, + ACTIONS(1583), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -86599,50 +76337,71 @@ 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, + [5032] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3340), 1, + ACTIONS(2047), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3342), 1, + ACTIONS(2049), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3344), 1, + ACTIONS(2051), 1, anon_sym_DOLLAR, - ACTIONS(3346), 1, + ACTIONS(2053), 1, sym__special_character, - ACTIONS(3348), 1, + ACTIONS(2055), 1, anon_sym_DQUOTE, - ACTIONS(3350), 1, + ACTIONS(2057), 1, aux_sym_number_token1, - ACTIONS(3352), 1, + ACTIONS(2059), 1, aux_sym_number_token2, - ACTIONS(3354), 1, + ACTIONS(2061), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3356), 1, + ACTIONS(2063), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3358), 1, + ACTIONS(2065), 1, anon_sym_BQUOTE, - ACTIONS(3360), 1, + ACTIONS(2067), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3364), 1, + ACTIONS(2071), 1, + sym_file_descriptor, + ACTIONS(2073), 1, sym_test_operator, - ACTIONS(3366), 1, + ACTIONS(2075), 1, sym__brace_start, - STATE(4400), 1, + ACTIONS(2208), 1, + aux_sym_heredoc_redirect_token1, + STATE(550), 1, + aux_sym_redirected_statement_repeat1, + STATE(1592), 1, aux_sym__literal_repeat1, - STATE(4835), 1, + STATE(1811), 1, sym_concatenation, - ACTIONS(2273), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3362), 2, + ACTIONS(2041), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(2043), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(2069), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3338), 3, + STATE(1810), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(2035), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4234), 9, + ACTIONS(2039), 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(1319), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -86652,73 +76411,69 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2271), 22, + ACTIONS(2206), 10, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [13562] = 21, + [5144] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3340), 1, + ACTIONS(2164), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3342), 1, + ACTIONS(2166), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3344), 1, + ACTIONS(2168), 1, anon_sym_DOLLAR, - ACTIONS(3346), 1, + ACTIONS(2170), 1, sym__special_character, - ACTIONS(3348), 1, + ACTIONS(2172), 1, anon_sym_DQUOTE, - ACTIONS(3350), 1, + ACTIONS(2174), 1, aux_sym_number_token1, - ACTIONS(3352), 1, + ACTIONS(2176), 1, aux_sym_number_token2, - ACTIONS(3354), 1, + ACTIONS(2178), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3356), 1, + ACTIONS(2180), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3358), 1, + ACTIONS(2182), 1, anon_sym_BQUOTE, - ACTIONS(3360), 1, + ACTIONS(2184), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3366), 1, - sym__brace_start, - ACTIONS(3370), 1, + ACTIONS(2190), 1, + sym_variable_name, + ACTIONS(2192), 1, sym_test_operator, - STATE(4336), 1, + ACTIONS(2194), 1, + sym__brace_start, + ACTIONS(2210), 1, + aux_sym__simple_variable_name_token1, + STATE(1567), 1, aux_sym__literal_repeat1, - STATE(4886), 1, - sym_concatenation, - ACTIONS(2277), 2, + STATE(6340), 1, + sym_subscript, + ACTIONS(1585), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3362), 2, + ACTIONS(2186), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3368), 3, + ACTIONS(2162), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4254), 9, + STATE(531), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1272), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -86728,7 +76483,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2275), 22, + ACTIONS(1583), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -86738,9 +76493,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, @@ -86750,53 +76504,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, - [13659] = 21, + [5250] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3375), 1, + ACTIONS(1551), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3378), 1, + ACTIONS(1553), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3381), 1, + ACTIONS(1555), 1, anon_sym_DOLLAR, - ACTIONS(3384), 1, - sym__special_character, - ACTIONS(3387), 1, + ACTIONS(1559), 1, anon_sym_DQUOTE, - ACTIONS(3390), 1, + ACTIONS(1561), 1, aux_sym_number_token1, - ACTIONS(3393), 1, + ACTIONS(1563), 1, aux_sym_number_token2, - ACTIONS(3396), 1, + ACTIONS(1565), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3399), 1, + ACTIONS(1567), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3402), 1, + ACTIONS(1569), 1, anon_sym_BQUOTE, - ACTIONS(3405), 1, + ACTIONS(1571), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3411), 1, - sym_test_operator, - ACTIONS(3414), 1, + ACTIONS(1577), 1, + sym__bare_dollar, + ACTIONS(1579), 1, sym__brace_start, - STATE(2027), 1, + ACTIONS(1694), 1, + anon_sym_LT_LT_LT, + ACTIONS(1696), 1, + sym__special_character, + ACTIONS(1698), 1, + sym_test_operator, + STATE(547), 1, + aux_sym_command_repeat2, + STATE(1320), 1, aux_sym__literal_repeat1, - ACTIONS(3408), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(666), 2, + STATE(1424), 1, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2169), 3, + STATE(1425), 1, + sym_herestring_redirect, + ACTIONS(1539), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3372), 3, + ACTIONS(1573), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1692), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1690), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1611), 9, + STATE(1182), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -86806,7 +76568,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2167), 20, + ACTIONS(1537), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -86826,96 +76588,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, - [13756] = 8, + [5360] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1595), 1, - anon_sym_DQUOTE, - ACTIONS(3421), 1, - sym_variable_name, - STATE(1202), 1, - sym_string, - ACTIONS(3419), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(3417), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 37, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_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(1448), 1, aux_sym_heredoc_redirect_token1, + ACTIONS(1851), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1854), 1, anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1857), 1, + anon_sym_DOLLAR, + ACTIONS(1863), 1, + anon_sym_DQUOTE, + ACTIONS(1866), 1, aux_sym_number_token1, + ACTIONS(1869), 1, aux_sym_number_token2, + ACTIONS(1872), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1875), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1878), 1, anon_sym_BQUOTE, + ACTIONS(1881), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1893), 1, + sym__bare_dollar, + ACTIONS(1896), 1, + sym__brace_start, + ACTIONS(2218), 1, + anon_sym_LT_LT_LT, + ACTIONS(2221), 1, + sym__special_character, + ACTIONS(2224), 1, + sym_file_descriptor, + ACTIONS(2227), 1, + sym_test_operator, + STATE(547), 1, + aux_sym_command_repeat2, + STATE(1320), 1, + aux_sym__literal_repeat1, + STATE(1424), 1, + sym_concatenation, + STATE(1425), 1, + sym_herestring_redirect, + ACTIONS(1884), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(2215), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2212), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [13827] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1595), 1, - anon_sym_DQUOTE, - ACTIONS(3421), 1, - sym_variable_name, - STATE(1202), 1, + STATE(1182), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(3419), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(3417), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 37, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1443), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -86925,10 +76663,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, @@ -86938,47 +76673,71 @@ 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, + [5472] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1551), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1553), 1, anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1555), 1, + anon_sym_DOLLAR, + ACTIONS(1559), 1, + anon_sym_DQUOTE, + ACTIONS(1561), 1, aux_sym_number_token1, + ACTIONS(1563), 1, aux_sym_number_token2, + ACTIONS(1565), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1567), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1569), 1, anon_sym_BQUOTE, + ACTIONS(1571), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1577), 1, + sym__bare_dollar, + ACTIONS(1579), 1, + sym__brace_start, + ACTIONS(1694), 1, + anon_sym_LT_LT_LT, + ACTIONS(1696), 1, + sym__special_character, + ACTIONS(1698), 1, + sym_test_operator, + STATE(547), 1, + aux_sym_command_repeat2, + STATE(1320), 1, + aux_sym__literal_repeat1, + STATE(1424), 1, + sym_concatenation, + STATE(1425), 1, + sym_herestring_redirect, + ACTIONS(1543), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1573), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(1692), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1690), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [13898] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2293), 1, - anon_sym_DQUOTE, - ACTIONS(3427), 1, - sym_variable_name, - STATE(1404), 1, + STATE(1182), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(3425), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(3423), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 37, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1541), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -86988,10 +76747,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, @@ -87001,47 +76757,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, + [5582] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1551), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1553), 1, anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1555), 1, + anon_sym_DOLLAR, + ACTIONS(1559), 1, + anon_sym_DQUOTE, + ACTIONS(1561), 1, aux_sym_number_token1, + ACTIONS(1563), 1, aux_sym_number_token2, + ACTIONS(1565), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1567), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1571), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1577), 1, + sym__bare_dollar, + ACTIONS(1579), 1, + sym__brace_start, + ACTIONS(1694), 1, + anon_sym_LT_LT_LT, + ACTIONS(1696), 1, + sym__special_character, + ACTIONS(1698), 1, + sym_test_operator, + STATE(547), 1, + aux_sym_command_repeat2, + STATE(1320), 1, + aux_sym__literal_repeat1, + STATE(1424), 1, + sym_concatenation, + STATE(1425), 1, + sym_herestring_redirect, + ACTIONS(1539), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1573), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(1692), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1690), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [13969] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2293), 1, - anon_sym_DQUOTE, - ACTIONS(3427), 1, - sym_variable_name, - STATE(1404), 1, - sym_string, - ACTIONS(3425), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(3423), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 37, + STATE(1182), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1537), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -87051,10 +76829,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, @@ -87064,38 +76839,110 @@ static 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, + [5690] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2244), 1, aux_sym_heredoc_redirect_token1, + ACTIONS(2246), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2249), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(2252), 1, + anon_sym_DOLLAR, + ACTIONS(2255), 1, sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(2258), 1, + anon_sym_DQUOTE, + ACTIONS(2261), 1, aux_sym_number_token1, + ACTIONS(2264), 1, aux_sym_number_token2, + ACTIONS(2267), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(2270), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(2273), 1, anon_sym_BQUOTE, + ACTIONS(2276), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(2282), 1, + sym_file_descriptor, + ACTIONS(2285), 1, + sym_test_operator, + ACTIONS(2288), 1, + sym__brace_start, + STATE(550), 1, + aux_sym_redirected_statement_repeat1, + STATE(1592), 1, + aux_sym__literal_repeat1, + STATE(1811), 1, + sym_concatenation, + ACTIONS(2238), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(2241), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(2279), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(1810), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(2230), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [14040] = 8, + ACTIONS(2235), 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(1319), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2233), 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, + [5802] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2805), 1, + ACTIONS(1418), 1, anon_sym_DQUOTE, - ACTIONS(3433), 1, + ACTIONS(2025), 1, sym_variable_name, - STATE(1473), 1, + STATE(1004), 1, sym_string, - ACTIONS(3431), 2, + ACTIONS(2023), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, + ACTIONS(1197), 4, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(3429), 8, + ACTIONS(2021), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -87104,21 +76951,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1195), 37, + ACTIONS(1195), 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, @@ -87128,6 +76976,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, @@ -87142,23 +76991,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [14111] = 8, + [5876] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2805), 1, + ACTIONS(1559), 1, anon_sym_DQUOTE, - ACTIONS(3433), 1, + ACTIONS(2295), 1, sym_variable_name, - STATE(1473), 1, + STATE(1157), 1, sym_string, - ACTIONS(3431), 2, + ACTIONS(2293), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 3, + ACTIONS(1191), 4, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(3429), 8, + ACTIONS(2291), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -87167,21 +77017,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1183), 37, + ACTIONS(1183), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_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, @@ -87191,6 +77041,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, @@ -87205,52 +77056,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [14182] = 21, - ACTIONS(3), 1, + [5949] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(3203), 1, + ACTIONS(2301), 2, + anon_sym_esac, + anon_sym_SEMI_SEMI, + ACTIONS(2303), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(2299), 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(3205), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3207), 1, - anon_sym_DOLLAR, - ACTIONS(3209), 1, - sym__special_character, - ACTIONS(3211), 1, anon_sym_DQUOTE, - ACTIONS(3213), 1, - aux_sym_number_token1, - ACTIONS(3215), 1, - aux_sym_number_token2, - ACTIONS(3217), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(3219), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3221), 1, anon_sym_BQUOTE, - ACTIONS(3223), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3227), 1, - sym_test_operator, - ACTIONS(3229), 1, - sym__brace_start, - STATE(2027), 1, - aux_sym__literal_repeat1, - ACTIONS(3225), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(666), 2, + ACTIONS(2297), 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, + [6016] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(1295), 1, + aux_sym__literal_repeat1, + STATE(1467), 1, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2158), 3, + ACTIONS(2307), 5, sym_file_descriptor, - ts_builtin_sym_end, + sym_variable_name, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3201), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1611), 9, + STATE(1007), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -87260,7 +77141,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2156), 20, + ACTIONS(2305), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -87270,7 +77151,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, @@ -87281,32 +77165,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [14279] = 8, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [6085] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3437), 1, - anon_sym_DQUOTE, - ACTIONS(3441), 1, - sym_variable_name, - STATE(1296), 1, - sym_string, - ACTIONS(3439), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, + STATE(1300), 1, + aux_sym__literal_repeat1, + STATE(1480), 1, + sym_concatenation, + ACTIONS(2311), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(3435), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 37, + aux_sym_heredoc_redirect_token1, + STATE(1011), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2309), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -87316,6 +77214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -87328,11 +77227,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, @@ -87344,23 +77244,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [14350] = 8, + [6154] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3437), 1, + ACTIONS(1515), 1, anon_sym_DQUOTE, - ACTIONS(3441), 1, + ACTIONS(2317), 1, sym_variable_name, - STATE(1296), 1, + STATE(1127), 1, sym_string, - ACTIONS(3439), 2, + ACTIONS(2315), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 3, + ACTIONS(1197), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(3435), 8, + ts_builtin_sym_end, + ACTIONS(2313), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -87369,20 +77271,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1183), 37, + 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_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -87407,103 +77309,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [14421] = 6, - ACTIONS(3), 1, + [6227] = 5, + ACTIONS(71), 1, sym_comment, - STATE(1814), 1, - aux_sym__literal_repeat1, - STATE(678), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2158), 5, + ACTIONS(2321), 1, + anon_sym_SEMI_SEMI, + ACTIONS(2319), 3, + anon_sym_RPAREN, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(2299), 23, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - STATE(1663), 9, - sym_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), 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_LPAREN_LPAREN, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(2297), 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, - [14488] = 6, + [6294] = 8, ACTIONS(3), 1, sym_comment, - STATE(1814), 1, - aux_sym__literal_repeat1, - STATE(678), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2162), 5, - sym_file_descriptor, + ACTIONS(1515), 1, + anon_sym_DQUOTE, + ACTIONS(2317), 1, sym_variable_name, + STATE(1127), 1, + sym_string, + ACTIONS(2315), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1191), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - STATE(1663), 9, - sym_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), 36, + ts_builtin_sym_end, + ACTIONS(2313), 8, + 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, @@ -87512,12 +77420,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -87529,52 +77436,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [14555] = 21, + [6367] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2571), 1, + ACTIONS(2330), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2574), 1, + ACTIONS(2333), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2577), 1, + ACTIONS(2336), 1, anon_sym_DOLLAR, - ACTIONS(2583), 1, + ACTIONS(2339), 1, + sym__special_character, + ACTIONS(2342), 1, anon_sym_DQUOTE, - ACTIONS(2586), 1, + ACTIONS(2345), 1, aux_sym_number_token1, - ACTIONS(2589), 1, + ACTIONS(2348), 1, aux_sym_number_token2, - ACTIONS(2592), 1, + ACTIONS(2351), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2595), 1, + ACTIONS(2354), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2598), 1, + ACTIONS(2357), 1, anon_sym_BQUOTE, - ACTIONS(2601), 1, + ACTIONS(2360), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2610), 1, - sym__brace_start, - ACTIONS(3446), 1, - sym__special_character, - ACTIONS(3449), 1, + ACTIONS(2366), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(2369), 1, sym_test_operator, - STATE(1814), 1, + ACTIONS(2372), 1, + sym__brace_start, + STATE(1553), 1, aux_sym__literal_repeat1, - ACTIONS(2604), 2, + ACTIONS(2328), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2363), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(678), 2, + STATE(559), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2169), 3, - sym_file_descriptor, - sym_variable_name, - aux_sym_heredoc_redirect_token1, - ACTIONS(3443), 3, + aux_sym_unset_command_repeat1, + ACTIONS(2323), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1663), 9, + STATE(1180), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -87584,7 +77492,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2167), 20, + ACTIONS(2326), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -87594,7 +77502,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, @@ -87604,62 +77515,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, - [14652] = 26, + [6468] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1547), 1, + ACTIONS(2164), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1549), 1, + ACTIONS(2166), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1551), 1, + ACTIONS(2168), 1, anon_sym_DOLLAR, - ACTIONS(1555), 1, + ACTIONS(2172), 1, anon_sym_DQUOTE, - ACTIONS(1557), 1, + ACTIONS(2174), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(2176), 1, aux_sym_number_token2, - ACTIONS(1561), 1, + ACTIONS(2178), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1563), 1, + ACTIONS(2180), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1565), 1, - anon_sym_BQUOTE, - ACTIONS(1567), 1, + ACTIONS(2184), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1573), 1, - sym__bare_dollar, - ACTIONS(1575), 1, + ACTIONS(2194), 1, sym__brace_start, - ACTIONS(2253), 1, - anon_sym_LT_LT_LT, - ACTIONS(2255), 1, + ACTIONS(2377), 1, sym__special_character, - ACTIONS(2257), 1, + ACTIONS(2379), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(2381), 1, + sym_variable_name, + ACTIONS(2383), 1, sym_test_operator, - STATE(680), 1, - aux_sym_command_repeat2, - STATE(1412), 1, + STATE(1567), 1, aux_sym__literal_repeat1, - STATE(1649), 1, - sym_concatenation, - STATE(1654), 1, - sym_herestring_redirect, - ACTIONS(1442), 2, + STATE(6323), 1, + sym_subscript, + ACTIONS(1621), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1569), 2, + ACTIONS(2186), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2251), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2249), 3, + ACTIONS(2375), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1890), 9, + STATE(565), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1513), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -87669,14 +77574,17 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1440), 16, + ACTIONS(1619), 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, @@ -87686,80 +77594,48 @@ 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_BQUOTE, + [6571] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1488), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1920), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1923), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1926), 1, - anon_sym_DOLLAR, - ACTIONS(1932), 1, + ACTIONS(2198), 1, anon_sym_DQUOTE, - ACTIONS(1935), 1, - aux_sym_number_token1, - ACTIONS(1938), 1, - aux_sym_number_token2, - ACTIONS(1941), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1944), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1947), 1, - anon_sym_BQUOTE, - ACTIONS(1950), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1962), 1, - sym__bare_dollar, - ACTIONS(1965), 1, - sym__brace_start, - ACTIONS(3458), 1, - anon_sym_LT_LT_LT, - ACTIONS(3461), 1, - sym__special_character, - ACTIONS(3464), 1, + ACTIONS(2202), 1, + sym_variable_name, + STATE(1014), 1, + sym_string, + ACTIONS(2200), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1191), 4, sym_file_descriptor, - ACTIONS(3467), 1, sym_test_operator, - STATE(680), 1, - aux_sym_command_repeat2, - STATE(1412), 1, - aux_sym__literal_repeat1, - STATE(1649), 1, - sym_concatenation, - STATE(1654), 1, - sym_herestring_redirect, - ACTIONS(1953), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3455), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(3452), 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(1483), 16, + sym__bare_dollar, + sym__brace_start, + ACTIONS(2196), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 38, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -87768,54 +77644,97 @@ 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, + 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, + [6644] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3308), 1, + ACTIONS(2045), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(2393), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3310), 1, + ACTIONS(2395), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3312), 1, + ACTIONS(2397), 1, anon_sym_DOLLAR, - ACTIONS(3314), 1, + ACTIONS(2399), 1, sym__special_character, - ACTIONS(3316), 1, + ACTIONS(2401), 1, anon_sym_DQUOTE, - ACTIONS(3318), 1, + ACTIONS(2403), 1, aux_sym_number_token1, - ACTIONS(3320), 1, + ACTIONS(2405), 1, aux_sym_number_token2, - ACTIONS(3322), 1, + ACTIONS(2407), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3324), 1, + ACTIONS(2409), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3326), 1, + ACTIONS(2411), 1, anon_sym_BQUOTE, - ACTIONS(3328), 1, + ACTIONS(2413), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3334), 1, + ACTIONS(2417), 1, + sym_file_descriptor, + ACTIONS(2419), 1, sym_test_operator, - ACTIONS(3336), 1, + ACTIONS(2421), 1, sym__brace_start, - ACTIONS(3470), 1, - aux_sym__simple_variable_name_token1, - STATE(1968), 1, + STATE(574), 1, + aux_sym_redirected_statement_repeat1, + STATE(1849), 1, aux_sym__literal_repeat1, - ACTIONS(3330), 2, + STATE(2079), 1, + sym_concatenation, + ACTIONS(2389), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(2391), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(2415), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(656), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2327), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(3306), 3, + STATE(2078), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(2385), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1598), 9, + ACTIONS(2387), 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(2037), 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, + STATE(1537), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -87825,127 +77744,53 @@ static const uint16_t ts_small_parse_table[] = { 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, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_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, - [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_DQUOTE, - sym_raw_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), 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, + [6755] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3474), 1, + ACTIONS(2429), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3476), 1, + ACTIONS(2431), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3478), 1, + ACTIONS(2433), 1, anon_sym_DOLLAR, - ACTIONS(3480), 1, + ACTIONS(2435), 1, sym__special_character, - ACTIONS(3482), 1, + ACTIONS(2437), 1, anon_sym_DQUOTE, - ACTIONS(3484), 1, + ACTIONS(2439), 1, aux_sym_number_token1, - ACTIONS(3486), 1, + ACTIONS(2441), 1, aux_sym_number_token2, - ACTIONS(3488), 1, + ACTIONS(2443), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3490), 1, + ACTIONS(2445), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3492), 1, + ACTIONS(2447), 1, anon_sym_BQUOTE, - ACTIONS(3494), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3498), 1, + ACTIONS(2453), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(2455), 1, sym_test_operator, - ACTIONS(3500), 1, + ACTIONS(2457), 1, sym__brace_start, - STATE(4662), 1, + STATE(1553), 1, aux_sym__literal_repeat1, - STATE(4979), 1, - sym_concatenation, - ACTIONS(2273), 2, + ACTIONS(2427), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3496), 2, + ACTIONS(2451), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3472), 3, + STATE(559), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2423), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4414), 9, + STATE(1180), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -87955,7 +77800,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2271), 21, + ACTIONS(2425), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -87965,6 +77810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -87977,72 +77823,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [15123] = 21, + [6856] = 8, 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, + ACTIONS(2198), 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, + ACTIONS(2202), 1, + sym_variable_name, + STATE(1014), 1, + sym_string, + ACTIONS(2200), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1197), 4, + sym_file_descriptor, sym_test_operator, - ACTIONS(3530), 1, + sym__bare_dollar, sym__brace_start, - STATE(4236), 1, - aux_sym__literal_repeat1, - STATE(4549), 1, - sym_concatenation, - ACTIONS(2273), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3526), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3502), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(4454), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2271), 21, + ACTIONS(2196), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -88051,51 +77872,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, - [15219] = 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, + [6929] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3474), 1, + ACTIONS(2164), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3476), 1, + ACTIONS(2166), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3478), 1, + ACTIONS(2168), 1, anon_sym_DOLLAR, - ACTIONS(3480), 1, - sym__special_character, - ACTIONS(3482), 1, + ACTIONS(2172), 1, anon_sym_DQUOTE, - ACTIONS(3484), 1, + ACTIONS(2174), 1, aux_sym_number_token1, - ACTIONS(3486), 1, + ACTIONS(2176), 1, aux_sym_number_token2, - ACTIONS(3488), 1, + ACTIONS(2178), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3490), 1, + ACTIONS(2180), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3492), 1, - anon_sym_BQUOTE, - ACTIONS(3494), 1, + ACTIONS(2184), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3500), 1, + ACTIONS(2194), 1, sym__brace_start, - ACTIONS(3534), 1, + ACTIONS(2377), 1, + sym__special_character, + ACTIONS(2381), 1, + sym_variable_name, + ACTIONS(2383), 1, sym_test_operator, - STATE(4607), 1, + ACTIONS(2459), 1, + aux_sym__simple_variable_name_token1, + STATE(1567), 1, aux_sym__literal_repeat1, - STATE(5004), 1, - sym_concatenation, - ACTIONS(2277), 2, + STATE(6323), 1, + sym_subscript, + ACTIONS(1585), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3496), 2, + ACTIONS(2186), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3532), 3, + ACTIONS(2375), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4343), 9, + STATE(569), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1513), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -88105,7 +77947,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2275), 21, + ACTIONS(1583), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -88116,8 +77958,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 +77967,59 @@ 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, + anon_sym_BQUOTE, + [7032] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3504), 1, + ACTIONS(2164), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3506), 1, + ACTIONS(2166), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3508), 1, + ACTIONS(2168), 1, anon_sym_DOLLAR, - ACTIONS(3510), 1, - sym__special_character, - ACTIONS(3512), 1, + ACTIONS(2172), 1, anon_sym_DQUOTE, - ACTIONS(3514), 1, + ACTIONS(2174), 1, aux_sym_number_token1, - ACTIONS(3516), 1, + ACTIONS(2176), 1, aux_sym_number_token2, - ACTIONS(3518), 1, + ACTIONS(2178), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3520), 1, + ACTIONS(2180), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3522), 1, + ACTIONS(2182), 1, anon_sym_BQUOTE, - ACTIONS(3524), 1, + ACTIONS(2184), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3530), 1, + ACTIONS(2194), 1, sym__brace_start, - ACTIONS(3538), 1, + ACTIONS(2377), 1, + sym__special_character, + ACTIONS(2381), 1, + sym_variable_name, + ACTIONS(2383), 1, sym_test_operator, - STATE(4265), 1, + ACTIONS(2459), 1, + aux_sym__simple_variable_name_token1, + STATE(1567), 1, aux_sym__literal_repeat1, - STATE(4609), 1, - sym_concatenation, - ACTIONS(2277), 2, + STATE(6323), 1, + sym_subscript, + ACTIONS(1585), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3526), 2, + ACTIONS(2186), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3536), 3, + ACTIONS(2375), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4456), 9, + STATE(569), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1513), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -88180,7 +78029,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2275), 21, + ACTIONS(1583), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -88190,7 +78039,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, @@ -88201,166 +78049,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_LT_LT_LT, - [15411] = 30, - ACTIONS(3), 1, + [7137] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(3550), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(3552), 1, + ACTIONS(2319), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(2321), 2, + anon_sym_esac, + anon_sym_SEMI_SEMI, + ACTIONS(2299), 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(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, + sym_raw_string, + sym_ansi_c_string, 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, + ACTIONS(2297), 28, + anon_sym_for, + anon_sym_select, anon_sym_LT, anon_sym_GT, - anon_sym_GT_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_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, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + [7204] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(3552), 1, - anon_sym_LT_LT_LT, - ACTIONS(3554), 1, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(1551), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3556), 1, + ACTIONS(1553), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3558), 1, + ACTIONS(1555), 1, anon_sym_DOLLAR, - ACTIONS(3560), 1, - sym__special_character, - ACTIONS(3562), 1, + ACTIONS(1559), 1, anon_sym_DQUOTE, - ACTIONS(3564), 1, + ACTIONS(1561), 1, aux_sym_number_token1, - ACTIONS(3566), 1, + ACTIONS(1563), 1, aux_sym_number_token2, - ACTIONS(3568), 1, + ACTIONS(1565), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3570), 1, + ACTIONS(1567), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3572), 1, + ACTIONS(1569), 1, anon_sym_BQUOTE, - ACTIONS(3574), 1, + ACTIONS(1571), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3578), 1, - sym_file_descriptor, - ACTIONS(3580), 1, - sym_test_operator, - ACTIONS(3582), 1, + ACTIONS(1577), 1, + sym__bare_dollar, + ACTIONS(1579), 1, sym__brace_start, - ACTIONS(3584), 1, - aux_sym_heredoc_redirect_token1, - STATE(3541), 1, - aux_sym__heredoc_command, - STATE(5338), 1, + ACTIONS(2465), 1, + anon_sym_LT_LT_LT, + ACTIONS(2467), 1, + sym__special_character, + ACTIONS(2469), 1, + sym_test_operator, + STATE(627), 1, + aux_sym_command_repeat2, + STATE(1320), 1, aux_sym__literal_repeat1, - STATE(5447), 1, + STATE(1424), 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, + STATE(1425), 1, + sym_herestring_redirect, + STATE(4627), 1, + sym_subshell, + ACTIONS(1366), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1573), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3540), 3, + ACTIONS(2463), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2461), 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(1684), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -88370,136 +78179,75 @@ 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(1362), 16, 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_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, - 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, + [7317] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3590), 1, + ACTIONS(1973), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3592), 1, + ACTIONS(1976), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3594), 1, + ACTIONS(1979), 1, anon_sym_DOLLAR, - ACTIONS(3596), 1, - sym__special_character, - ACTIONS(3598), 1, + ACTIONS(1985), 1, anon_sym_DQUOTE, - ACTIONS(3600), 1, + ACTIONS(1988), 1, aux_sym_number_token1, - ACTIONS(3602), 1, + ACTIONS(1991), 1, aux_sym_number_token2, - ACTIONS(3604), 1, + ACTIONS(1994), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3606), 1, + ACTIONS(1997), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3608), 1, + ACTIONS(2000), 1, anon_sym_BQUOTE, - ACTIONS(3610), 1, + ACTIONS(2003), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3614), 1, - sym_test_operator, - ACTIONS(3616), 1, + ACTIONS(2018), 1, sym__brace_start, - STATE(2279), 1, + ACTIONS(2474), 1, + sym__special_character, + ACTIONS(2477), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(2480), 1, + sym_variable_name, + ACTIONS(2483), 1, + sym_test_operator, + STATE(1567), 1, aux_sym__literal_repeat1, - ACTIONS(3612), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(723), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2158), 3, + STATE(6323), 1, + sym_subscript, + ACTIONS(1705), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3588), 3, + ACTIONS(2006), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2471), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1800), 9, + STATE(569), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1513), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -88509,7 +78257,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2156), 19, + ACTIONS(1703), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -88522,89 +78270,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - 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_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - [15911] = 8, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [7422] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3620), 1, + ACTIONS(1559), 1, anon_sym_DQUOTE, - ACTIONS(3624), 1, + ACTIONS(2295), 1, sym_variable_name, - STATE(1625), 1, + STATE(1157), 1, sym_string, - ACTIONS(3622), 2, + ACTIONS(2293), 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, - ts_builtin_sym_end, - ACTIONS(3618), 8, + ACTIONS(2291), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -88613,18 +78303,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1195), 35, + ACTIONS(1195), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_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, @@ -88649,134 +78342,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [15981] = 8, - ACTIONS(3), 1, + [7495] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(3620), 1, - anon_sym_DQUOTE, - ACTIONS(3624), 1, - sym_variable_name, - STATE(1625), 1, - sym_string, - ACTIONS(3622), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 4, + ACTIONS(2301), 1, + anon_sym_SEMI_SEMI, + ACTIONS(2303), 3, + anon_sym_RPAREN, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(2299), 23, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3618), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 35, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_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(2297), 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, - [16051] = 30, + [7562] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3552), 1, - anon_sym_LT_LT_LT, - ACTIONS(3554), 1, + ACTIONS(2244), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(2498), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3556), 1, + ACTIONS(2501), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3558), 1, + ACTIONS(2504), 1, anon_sym_DOLLAR, - ACTIONS(3560), 1, + ACTIONS(2507), 1, sym__special_character, - ACTIONS(3562), 1, + ACTIONS(2510), 1, anon_sym_DQUOTE, - ACTIONS(3564), 1, + ACTIONS(2513), 1, aux_sym_number_token1, - ACTIONS(3566), 1, + ACTIONS(2516), 1, aux_sym_number_token2, - ACTIONS(3568), 1, + ACTIONS(2519), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3570), 1, + ACTIONS(2522), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3572), 1, + ACTIONS(2525), 1, anon_sym_BQUOTE, - ACTIONS(3574), 1, + ACTIONS(2528), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3578), 1, + ACTIONS(2534), 1, sym_file_descriptor, - ACTIONS(3580), 1, + ACTIONS(2537), 1, sym_test_operator, - ACTIONS(3582), 1, + ACTIONS(2540), 1, sym__brace_start, - ACTIONS(3626), 1, - aux_sym_heredoc_redirect_token1, - STATE(3551), 1, - aux_sym__heredoc_command, - STATE(5338), 1, + STATE(572), 1, + aux_sym_redirected_statement_repeat1, + STATE(1849), 1, aux_sym__literal_repeat1, - STATE(5447), 1, + STATE(2079), 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, + ACTIONS(2492), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(2495), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(3576), 2, + ACTIONS(2531), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3540), 3, + STATE(2078), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(2486), 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, + ACTIONS(2489), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -88785,7 +78468,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - STATE(5043), 9, + ACTIONS(2233), 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, + STATE(1537), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -88795,67 +78488,65 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [16165] = 27, - ACTIONS(71), 1, + [7673] = 28, + ACTIONS(3), 1, sym_comment, - ACTIONS(2645), 1, - sym_word, - ACTIONS(2651), 1, - anon_sym_LT_LT_LT, - ACTIONS(2653), 1, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(1551), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2655), 1, + ACTIONS(1553), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2657), 1, + ACTIONS(1555), 1, anon_sym_DOLLAR, - ACTIONS(2659), 1, - sym__special_character, - ACTIONS(2661), 1, + ACTIONS(1559), 1, anon_sym_DQUOTE, - ACTIONS(2665), 1, + ACTIONS(1561), 1, aux_sym_number_token1, - ACTIONS(2667), 1, + ACTIONS(1563), 1, aux_sym_number_token2, - ACTIONS(2669), 1, + ACTIONS(1565), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2671), 1, + ACTIONS(1567), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2673), 1, + ACTIONS(1569), 1, anon_sym_BQUOTE, - ACTIONS(2675), 1, + ACTIONS(1571), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2679), 1, - sym_test_operator, - ACTIONS(2681), 1, + ACTIONS(1577), 1, sym__bare_dollar, - ACTIONS(2683), 1, + ACTIONS(1579), 1, sym__brace_start, - STATE(699), 1, + ACTIONS(2465), 1, + anon_sym_LT_LT_LT, + ACTIONS(2467), 1, + sym__special_character, + ACTIONS(2469), 1, + sym_test_operator, + STATE(630), 1, aux_sym_command_repeat2, - STATE(2399), 1, + STATE(1320), 1, aux_sym__literal_repeat1, - STATE(2449), 1, + STATE(1424), 1, sym_concatenation, - STATE(2488), 1, + STATE(1425), 1, sym_herestring_redirect, - ACTIONS(2647), 2, + STATE(4647), 1, + sym_subshell, + ACTIONS(1402), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1573), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2463), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(2663), 2, + ACTIONS(2461), 3, sym_raw_string, sym_ansi_c_string, - ACTIONS(2677), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1440), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(2177), 9, + sym_word, + STATE(1684), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -88865,83 +78556,79 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1442), 10, - sym_file_descriptor, + ACTIONS(1400), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [16273] = 30, + [7786] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3552), 1, - anon_sym_LT_LT_LT, - ACTIONS(3554), 1, + ACTIONS(2208), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(2393), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3556), 1, + ACTIONS(2395), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3558), 1, + ACTIONS(2397), 1, anon_sym_DOLLAR, - ACTIONS(3560), 1, + ACTIONS(2399), 1, sym__special_character, - ACTIONS(3562), 1, + ACTIONS(2401), 1, anon_sym_DQUOTE, - ACTIONS(3564), 1, + ACTIONS(2403), 1, aux_sym_number_token1, - ACTIONS(3566), 1, + ACTIONS(2405), 1, aux_sym_number_token2, - ACTIONS(3568), 1, + ACTIONS(2407), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3570), 1, + ACTIONS(2409), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3572), 1, + ACTIONS(2411), 1, anon_sym_BQUOTE, - ACTIONS(3574), 1, + ACTIONS(2413), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3578), 1, + ACTIONS(2417), 1, sym_file_descriptor, - ACTIONS(3580), 1, + ACTIONS(2419), 1, sym_test_operator, - ACTIONS(3582), 1, + ACTIONS(2421), 1, sym__brace_start, - ACTIONS(3628), 1, - aux_sym_heredoc_redirect_token1, - STATE(3526), 1, - aux_sym__heredoc_command, - STATE(5338), 1, + STATE(572), 1, + aux_sym_redirected_statement_repeat1, + STATE(1849), 1, aux_sym__literal_repeat1, - STATE(5447), 1, + STATE(2079), 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, + ACTIONS(2389), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(2391), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(3576), 2, + ACTIONS(2415), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3540), 3, + STATE(2078), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(2385), 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, + ACTIONS(2387), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -88950,91 +78637,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - STATE(5043), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [16387] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3552), 1, - anon_sym_LT_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(2206), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3544), 2, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - ACTIONS(3548), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(3576), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3540), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(5421), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(3546), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(5043), 9, + STATE(1537), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -89044,51 +78657,53 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [16501] = 21, + [7897] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3634), 1, + ACTIONS(2429), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3636), 1, + ACTIONS(2431), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3638), 1, + ACTIONS(2433), 1, anon_sym_DOLLAR, - ACTIONS(3640), 1, + ACTIONS(2435), 1, sym__special_character, - ACTIONS(3642), 1, + ACTIONS(2437), 1, anon_sym_DQUOTE, - ACTIONS(3644), 1, + ACTIONS(2439), 1, aux_sym_number_token1, - ACTIONS(3646), 1, + ACTIONS(2441), 1, aux_sym_number_token2, - ACTIONS(3648), 1, + ACTIONS(2443), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3650), 1, + ACTIONS(2445), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3652), 1, + ACTIONS(2447), 1, anon_sym_BQUOTE, - ACTIONS(3654), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3658), 1, + ACTIONS(2455), 1, sym_test_operator, - ACTIONS(3660), 1, + ACTIONS(2457), 1, sym__brace_start, - STATE(2253), 1, + ACTIONS(2547), 1, + aux_sym__simple_variable_name_token1, + STATE(1553), 1, aux_sym__literal_repeat1, - ACTIONS(2158), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3656), 2, + ACTIONS(2451), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(707), 2, + ACTIONS(2545), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(563), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3632), 3, + aux_sym_unset_command_repeat1, + ACTIONS(2423), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1851), 9, + STATE(1180), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -89098,7 +78713,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2156), 20, + ACTIONS(2543), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -89108,8 +78723,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, @@ -89119,79 +78736,58 @@ 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, + [7998] = 24, + ACTIONS(3), 1, sym_comment, - ACTIONS(3662), 1, - sym_word, - ACTIONS(3668), 1, - anon_sym_LT_LT_LT, - ACTIONS(3671), 1, + ACTIONS(2164), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3674), 1, + ACTIONS(2166), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3677), 1, + ACTIONS(2168), 1, anon_sym_DOLLAR, - ACTIONS(3680), 1, - sym__special_character, - ACTIONS(3683), 1, + ACTIONS(2172), 1, anon_sym_DQUOTE, - ACTIONS(3689), 1, + ACTIONS(2174), 1, aux_sym_number_token1, - ACTIONS(3692), 1, + ACTIONS(2176), 1, aux_sym_number_token2, - ACTIONS(3695), 1, + ACTIONS(2178), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3698), 1, + ACTIONS(2180), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3701), 1, + ACTIONS(2182), 1, anon_sym_BQUOTE, - ACTIONS(3704), 1, + ACTIONS(2184), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3710), 1, - sym_file_descriptor, - ACTIONS(3713), 1, - sym_test_operator, - ACTIONS(3716), 1, - sym__bare_dollar, - ACTIONS(3719), 1, + ACTIONS(2194), 1, sym__brace_start, - STATE(699), 1, - aux_sym_command_repeat2, - STATE(2399), 1, + ACTIONS(2377), 1, + sym__special_character, + ACTIONS(2381), 1, + sym_variable_name, + ACTIONS(2383), 1, + sym_test_operator, + ACTIONS(2549), 1, + aux_sym__simple_variable_name_token1, + STATE(1567), 1, aux_sym__literal_repeat1, - STATE(2449), 1, - sym_concatenation, - STATE(2488), 1, - sym_herestring_redirect, - ACTIONS(3665), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(3686), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3707), 2, + STATE(6323), 1, + sym_subscript, + ACTIONS(1621), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2186), 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, + ACTIONS(2375), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(566), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1513), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -89201,44 +78797,18 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [16707] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2217), 1, - anon_sym_DQUOTE, - ACTIONS(2221), 1, - sym_variable_name, - STATE(983), 1, - sym_string, - ACTIONS(2219), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 4, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - ACTIONS(2215), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 35, + ACTIONS(1619), 19, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -89247,40 +78817,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_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, + [8103] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2217), 1, + ACTIONS(2553), 1, anon_sym_DQUOTE, - ACTIONS(2221), 1, + ACTIONS(2557), 1, sym_variable_name, - STATE(983), 1, + STATE(1066), 1, sym_string, - ACTIONS(2219), 2, + ACTIONS(2555), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 4, + ACTIONS(1197), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ACTIONS(2215), 8, + ACTIONS(2551), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -89289,18 +78842,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1183), 35, + ACTIONS(1195), 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_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, @@ -89325,67 +78881,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [16847] = 27, + [8175] = 36, ACTIONS(71), 1, sym_comment, - ACTIONS(2645), 1, - sym_word, - ACTIONS(2651), 1, - anon_sym_LT_LT_LT, - ACTIONS(2653), 1, + 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(2655), 1, + ACTIONS(1041), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2657), 1, + ACTIONS(1043), 1, anon_sym_DOLLAR, - ACTIONS(2659), 1, + ACTIONS(1045), 1, sym__special_character, - ACTIONS(2661), 1, + ACTIONS(1047), 1, anon_sym_DQUOTE, - ACTIONS(2665), 1, + ACTIONS(1051), 1, aux_sym_number_token1, - ACTIONS(2667), 1, + ACTIONS(1053), 1, aux_sym_number_token2, - ACTIONS(2669), 1, + ACTIONS(1055), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2671), 1, + ACTIONS(1057), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2673), 1, + ACTIONS(1059), 1, anon_sym_BQUOTE, - ACTIONS(2675), 1, + ACTIONS(1061), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2679), 1, + ACTIONS(1067), 1, sym_test_operator, - ACTIONS(2681), 1, - sym__bare_dollar, - ACTIONS(2683), 1, + ACTIONS(1069), 1, sym__brace_start, - STATE(699), 1, - aux_sym_command_repeat2, - STATE(2399), 1, + ACTIONS(1352), 1, + anon_sym_LT_LT_LT, + ACTIONS(1354), 1, + sym_file_descriptor, + ACTIONS(2559), 1, + sym_word, + ACTIONS(2561), 1, + anon_sym_LPAREN, + STATE(585), 1, + sym_command_name, + STATE(878), 1, + aux_sym_command_repeat1, + STATE(2076), 1, aux_sym__literal_repeat1, - STATE(2449), 1, + STATE(2250), 1, sym_concatenation, - STATE(2488), 1, - sym_herestring_redirect, - ACTIONS(2647), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2663), 2, + STATE(2853), 1, + sym_variable_assignment, + STATE(5290), 1, + sym_command, + STATE(6353), 1, + sym_subscript, + ACTIONS(1049), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(2677), 2, + ACTIONS(1063), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1577), 7, - anon_sym_PIPE, + ACTIONS(1350), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3382), 2, + sym_file_redirect, + sym_herestring_redirect, + STATE(5289), 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_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(2177), 9, + STATE(1561), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -89395,62 +78973,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1579), 10, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [16955] = 21, + [8303] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3504), 1, + ACTIONS(2565), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3506), 1, + ACTIONS(2567), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3508), 1, + ACTIONS(2569), 1, anon_sym_DOLLAR, - ACTIONS(3512), 1, + ACTIONS(2571), 1, + sym__special_character, + ACTIONS(2573), 1, anon_sym_DQUOTE, - ACTIONS(3514), 1, + ACTIONS(2575), 1, aux_sym_number_token1, - ACTIONS(3516), 1, + ACTIONS(2577), 1, aux_sym_number_token2, - ACTIONS(3518), 1, + ACTIONS(2579), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3520), 1, + ACTIONS(2581), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3522), 1, + ACTIONS(2583), 1, anon_sym_BQUOTE, - ACTIONS(3524), 1, + ACTIONS(2585), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3530), 1, - sym__brace_start, - ACTIONS(3724), 1, - sym__special_character, - ACTIONS(3726), 1, + ACTIONS(2589), 1, sym_test_operator, - STATE(4236), 1, + ACTIONS(2591), 1, + sym__brace_start, + STATE(4048), 1, aux_sym__literal_repeat1, - STATE(4549), 1, + STATE(4344), 1, sym_concatenation, - ACTIONS(3526), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2273), 3, + ACTIONS(2307), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3722), 3, + ACTIONS(2587), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2563), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4441), 9, + STATE(3974), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -89460,7 +79026,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2271), 20, + ACTIONS(2305), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -89470,7 +79036,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, @@ -89481,81 +79050,89 @@ 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, - ACTIONS(3), 1, + [8401] = 36, + ACTIONS(71), 1, sym_comment, - ACTIONS(3552), 1, - anon_sym_LT_LT_LT, - ACTIONS(3554), 1, + ACTIONS(689), 1, + anon_sym_LBRACK, + ACTIONS(691), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(701), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3556), 1, + ACTIONS(703), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3558), 1, + ACTIONS(705), 1, anon_sym_DOLLAR, - ACTIONS(3560), 1, + ACTIONS(707), 1, sym__special_character, - ACTIONS(3562), 1, + ACTIONS(709), 1, anon_sym_DQUOTE, - ACTIONS(3564), 1, + ACTIONS(713), 1, aux_sym_number_token1, - ACTIONS(3566), 1, + ACTIONS(715), 1, aux_sym_number_token2, - ACTIONS(3568), 1, + ACTIONS(717), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3570), 1, + ACTIONS(719), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3572), 1, + ACTIONS(721), 1, anon_sym_BQUOTE, - ACTIONS(3574), 1, + ACTIONS(723), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3578), 1, - sym_file_descriptor, - ACTIONS(3580), 1, + ACTIONS(729), 1, + sym_variable_name, + ACTIONS(731), 1, sym_test_operator, - ACTIONS(3582), 1, + ACTIONS(733), 1, sym__brace_start, - ACTIONS(3728), 1, - aux_sym_heredoc_redirect_token1, - STATE(3518), 1, - aux_sym__heredoc_command, - STATE(5338), 1, + ACTIONS(1352), 1, + anon_sym_LT_LT_LT, + ACTIONS(1354), 1, + sym_file_descriptor, + ACTIONS(2593), 1, + sym_word, + ACTIONS(2595), 1, + anon_sym_LPAREN, + STATE(497), 1, + sym_command_name, + STATE(861), 1, + aux_sym_command_repeat1, + STATE(940), 1, aux_sym__literal_repeat1, - STATE(5447), 1, + STATE(1094), 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, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3540), 3, + STATE(1674), 1, + sym_variable_assignment, + STATE(4743), 1, + sym_command, + STATE(6317), 1, + sym_subscript, + ACTIONS(711), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(5426), 3, + 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(3382), 2, sym_file_redirect, sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(3546), 8, + STATE(4742), 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_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(779), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -89565,51 +79142,53 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [17165] = 21, + [8529] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3081), 1, + ACTIONS(2599), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3083), 1, + ACTIONS(2601), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3085), 1, + ACTIONS(2603), 1, anon_sym_DOLLAR, - ACTIONS(3089), 1, + ACTIONS(2605), 1, + sym__special_character, + ACTIONS(2607), 1, anon_sym_DQUOTE, - ACTIONS(3091), 1, + ACTIONS(2609), 1, aux_sym_number_token1, - ACTIONS(3093), 1, + ACTIONS(2611), 1, aux_sym_number_token2, - ACTIONS(3095), 1, + ACTIONS(2613), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3097), 1, + ACTIONS(2615), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3101), 1, + ACTIONS(2617), 1, + anon_sym_BQUOTE, + ACTIONS(2619), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3109), 1, - sym__brace_start, - ACTIONS(3732), 1, - sym__special_character, - ACTIONS(3734), 1, + ACTIONS(2623), 1, aux_sym__simple_variable_name_token1, - ACTIONS(3736), 1, + ACTIONS(2625), 1, sym_test_operator, - STATE(2045), 1, + ACTIONS(2627), 1, + sym__brace_start, + STATE(1606), 1, aux_sym__literal_repeat1, - ACTIONS(2327), 2, + ACTIONS(2427), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3103), 2, + ACTIONS(2621), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(725), 2, + STATE(598), 2, sym_concatenation, aux_sym_unset_command_repeat1, - ACTIONS(3730), 3, + ACTIONS(2597), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1876), 9, + STATE(1206), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -89619,7 +79198,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2325), 20, + ACTIONS(2425), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -89630,6 +79209,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, @@ -89639,136 +79220,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, - [17261] = 30, + [8629] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3552), 1, - anon_sym_LT_LT_LT, - ACTIONS(3554), 1, + ACTIONS(2565), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3556), 1, + ACTIONS(2567), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3558), 1, + ACTIONS(2569), 1, anon_sym_DOLLAR, - ACTIONS(3560), 1, + ACTIONS(2571), 1, sym__special_character, - ACTIONS(3562), 1, + ACTIONS(2573), 1, anon_sym_DQUOTE, - ACTIONS(3564), 1, + ACTIONS(2575), 1, aux_sym_number_token1, - ACTIONS(3566), 1, + ACTIONS(2577), 1, aux_sym_number_token2, - ACTIONS(3568), 1, + ACTIONS(2579), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3570), 1, + ACTIONS(2581), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3572), 1, + ACTIONS(2583), 1, anon_sym_BQUOTE, - ACTIONS(3574), 1, + ACTIONS(2585), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3578), 1, - sym_file_descriptor, - ACTIONS(3580), 1, - sym_test_operator, - ACTIONS(3582), 1, + ACTIONS(2591), 1, sym__brace_start, - ACTIONS(3738), 1, - aux_sym_heredoc_redirect_token1, - STATE(3535), 1, - aux_sym__heredoc_command, - STATE(5338), 1, - aux_sym__literal_repeat1, - STATE(5447), 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, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3540), 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, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [17375] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3743), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3746), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3749), 1, - anon_sym_DOLLAR, - ACTIONS(3752), 1, - sym__special_character, - ACTIONS(3755), 1, - anon_sym_DQUOTE, - ACTIONS(3758), 1, - 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(3779), 1, + ACTIONS(2631), 1, sym_test_operator, - ACTIONS(3782), 1, - sym__brace_start, - STATE(2253), 1, + STATE(4067), 1, aux_sym__literal_repeat1, - ACTIONS(2169), 2, + STATE(4421), 1, + sym_concatenation, + ACTIONS(2311), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3776), 2, + ACTIONS(2587), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(707), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3740), 3, + ACTIONS(2629), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1851), 9, + STATE(3976), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -89778,7 +79273,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2167), 20, + ACTIONS(2309), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -89788,8 +79283,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, @@ -89799,72 +79296,72 @@ 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, + anon_sym_LT_LT_LT, + [8727] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3552), 1, - anon_sym_LT_LT_LT, - ACTIONS(3554), 1, + ACTIONS(2641), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3556), 1, + ACTIONS(2643), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3558), 1, + ACTIONS(2645), 1, anon_sym_DOLLAR, - ACTIONS(3560), 1, + ACTIONS(2647), 1, sym__special_character, - ACTIONS(3562), 1, + ACTIONS(2649), 1, anon_sym_DQUOTE, - ACTIONS(3564), 1, + ACTIONS(2651), 1, aux_sym_number_token1, - ACTIONS(3566), 1, + ACTIONS(2653), 1, aux_sym_number_token2, - ACTIONS(3568), 1, + ACTIONS(2655), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3570), 1, + ACTIONS(2657), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3572), 1, + ACTIONS(2659), 1, anon_sym_BQUOTE, - ACTIONS(3574), 1, + ACTIONS(2661), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3578), 1, + ACTIONS(2665), 1, sym_file_descriptor, - ACTIONS(3580), 1, + ACTIONS(2667), 1, sym_test_operator, - ACTIONS(3582), 1, + ACTIONS(2669), 1, sym__brace_start, - ACTIONS(3785), 1, - aux_sym_heredoc_redirect_token1, - STATE(3536), 1, - aux_sym__heredoc_command, - STATE(5338), 1, + STATE(594), 1, + aux_sym_redirected_statement_repeat1, + STATE(2142), 1, aux_sym__literal_repeat1, - STATE(5447), 1, + STATE(2288), 1, sym_concatenation, - STATE(6952), 1, - sym__heredoc_pipeline, - STATE(6953), 1, - sym__heredoc_expression, - ACTIONS(3542), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(3544), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3548), 2, + ACTIONS(2208), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(2637), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(2639), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(3576), 2, + ACTIONS(2663), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3540), 3, + STATE(2286), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(2633), 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, + ACTIONS(2206), 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(2635), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -89873,61 +79370,7 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(4476), 9, + STATE(1569), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -89937,102 +79380,89 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2275), 20, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [17681] = 30, - ACTIONS(3), 1, + [8837] = 36, + ACTIONS(33), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(71), 1, sym_comment, - ACTIONS(3552), 1, - anon_sym_LT_LT_LT, - ACTIONS(3554), 1, + ACTIONS(308), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3556), 1, + ACTIONS(310), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3558), 1, + ACTIONS(312), 1, anon_sym_DOLLAR, - ACTIONS(3560), 1, + ACTIONS(314), 1, sym__special_character, - ACTIONS(3562), 1, + ACTIONS(316), 1, anon_sym_DQUOTE, - ACTIONS(3564), 1, + ACTIONS(320), 1, aux_sym_number_token1, - ACTIONS(3566), 1, + ACTIONS(322), 1, aux_sym_number_token2, - ACTIONS(3568), 1, + ACTIONS(324), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3570), 1, + ACTIONS(326), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3572), 1, + ACTIONS(328), 1, anon_sym_BQUOTE, - ACTIONS(3574), 1, + ACTIONS(330), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3578), 1, - sym_file_descriptor, - ACTIONS(3580), 1, + ACTIONS(336), 1, + sym_variable_name, + ACTIONS(338), 1, sym_test_operator, - ACTIONS(3582), 1, + ACTIONS(340), 1, sym__brace_start, - ACTIONS(3791), 1, - aux_sym_heredoc_redirect_token1, - STATE(3528), 1, - aux_sym__heredoc_command, - STATE(5338), 1, + ACTIONS(1352), 1, + anon_sym_LT_LT_LT, + ACTIONS(1354), 1, + sym_file_descriptor, + ACTIONS(2671), 1, + sym_word, + ACTIONS(2673), 1, + anon_sym_LPAREN, + STATE(517), 1, + sym_command_name, + STATE(884), 1, + aux_sym_command_repeat1, + STATE(1086), 1, aux_sym__literal_repeat1, - STATE(5447), 1, + STATE(1282), 1, sym_concatenation, - STATE(7248), 1, - sym__heredoc_pipeline, - STATE(7253), 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, + STATE(1768), 1, + sym_variable_assignment, + STATE(4694), 1, + sym_command, + STATE(6316), 1, + sym_subscript, + ACTIONS(318), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(5445), 3, + 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(3382), 2, sym_file_redirect, sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(3546), 8, + STATE(4691), 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_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(1023), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -90042,124 +79472,71 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [17795] = 21, - ACTIONS(3), 1, + [8965] = 29, + ACTIONS(71), 1, sym_comment, - ACTIONS(3634), 1, + ACTIONS(2561), 1, + anon_sym_LPAREN, + ACTIONS(2675), 1, + sym_word, + ACTIONS(2679), 1, + anon_sym_LT_LT_LT, + ACTIONS(2681), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3636), 1, + ACTIONS(2683), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3638), 1, + ACTIONS(2685), 1, anon_sym_DOLLAR, - ACTIONS(3640), 1, + ACTIONS(2687), 1, sym__special_character, - ACTIONS(3642), 1, + ACTIONS(2689), 1, anon_sym_DQUOTE, - ACTIONS(3644), 1, + ACTIONS(2693), 1, aux_sym_number_token1, - ACTIONS(3646), 1, + ACTIONS(2695), 1, aux_sym_number_token2, - ACTIONS(3648), 1, + ACTIONS(2697), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3650), 1, + ACTIONS(2699), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3652), 1, + ACTIONS(2701), 1, anon_sym_BQUOTE, - ACTIONS(3654), 1, + ACTIONS(2703), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3658), 1, + ACTIONS(2707), 1, sym_test_operator, - ACTIONS(3660), 1, + ACTIONS(2709), 1, + sym__bare_dollar, + ACTIONS(2711), 1, sym__brace_start, - STATE(2253), 1, + STATE(647), 1, + aux_sym_command_repeat2, + STATE(2218), 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, + STATE(2397), 1, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3632), 3, + STATE(2400), 1, + sym_herestring_redirect, + STATE(5286), 1, + sym_subshell, + ACTIONS(2677), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2691), 2, 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, + ACTIONS(2705), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1362), 7, 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, - 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(2158), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3028), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(724), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3793), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1761), 9, + anon_sym_GT_AMP, + STATE(1979), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -90169,136 +79546,183 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2156), 21, - anon_sym_SEMI, + ACTIONS(1366), 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, - [17985] = 8, + [9079] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3241), 1, + ACTIONS(2641), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2643), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2645), 1, + anon_sym_DOLLAR, + ACTIONS(2647), 1, + sym__special_character, + ACTIONS(2649), 1, anon_sym_DQUOTE, - ACTIONS(3803), 1, - sym_variable_name, - STATE(1839), 1, - sym_string, - ACTIONS(3801), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 3, + ACTIONS(2651), 1, + aux_sym_number_token1, + ACTIONS(2653), 1, + aux_sym_number_token2, + ACTIONS(2655), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2657), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2659), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2665), 1, sym_file_descriptor, + ACTIONS(2667), 1, sym_test_operator, + ACTIONS(2669), 1, sym__brace_start, - ACTIONS(3799), 8, - 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, + STATE(583), 1, + aux_sym_redirected_statement_repeat1, + STATE(2142), 1, + aux_sym__literal_repeat1, + STATE(2288), 1, + sym_concatenation, + ACTIONS(2045), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(2637), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(2639), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(2663), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2286), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(2633), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(2037), 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(2635), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_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, - [18055] = 21, - ACTIONS(3), 1, + STATE(1569), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [9189] = 36, + ACTIONS(71), 1, sym_comment, - ACTIONS(3590), 1, + ACTIONS(390), 1, + anon_sym_LBRACK, + ACTIONS(392), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(402), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3592), 1, + ACTIONS(404), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3594), 1, + ACTIONS(406), 1, anon_sym_DOLLAR, - ACTIONS(3596), 1, + ACTIONS(408), 1, sym__special_character, - ACTIONS(3598), 1, + ACTIONS(410), 1, anon_sym_DQUOTE, - ACTIONS(3600), 1, + ACTIONS(414), 1, aux_sym_number_token1, - ACTIONS(3602), 1, + ACTIONS(416), 1, aux_sym_number_token2, - ACTIONS(3604), 1, + ACTIONS(418), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3606), 1, + ACTIONS(420), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3608), 1, + ACTIONS(422), 1, anon_sym_BQUOTE, - ACTIONS(3610), 1, + ACTIONS(424), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3614), 1, + ACTIONS(430), 1, + sym_variable_name, + ACTIONS(432), 1, sym_test_operator, - ACTIONS(3616), 1, + ACTIONS(434), 1, sym__brace_start, - STATE(2279), 1, + ACTIONS(1352), 1, + anon_sym_LT_LT_LT, + ACTIONS(1354), 1, + sym_file_descriptor, + ACTIONS(2713), 1, + sym_word, + ACTIONS(2715), 1, + anon_sym_LPAREN, + STATE(495), 1, + sym_command_name, + STATE(805), 1, + aux_sym_command_repeat1, + STATE(806), 1, aux_sym__literal_repeat1, - ACTIONS(3612), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(723), 2, + STATE(906), 1, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2162), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(3588), 3, + STATE(1379), 1, + sym_variable_assignment, + STATE(4705), 1, + sym_command, + STATE(6366), 1, + sym_subscript, + ACTIONS(412), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(1800), 9, + ACTIONS(426), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1350), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3382), 2, + sym_file_redirect, + sym_herestring_redirect, + STATE(4704), 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(726), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -90308,43 +79732,24 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2160), 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, - [18151] = 8, + [9317] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1887), 1, + ACTIONS(1559), 1, anon_sym_DQUOTE, - ACTIONS(3809), 1, + ACTIONS(2295), 1, sym_variable_name, - STATE(1336), 1, + STATE(1157), 1, sym_string, - ACTIONS(3807), 2, + ACTIONS(2293), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, + ACTIONS(1197), 4, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(3805), 8, + ACTIONS(2291), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -90353,20 +79758,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1195), 36, + 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_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -90376,6 +79781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -90390,51 +79796,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [18221] = 21, - ACTIONS(3), 1, + [9389] = 36, + ACTIONS(33), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(71), 1, sym_comment, - ACTIONS(3081), 1, + ACTIONS(135), 1, + sym_variable_name, + ACTIONS(308), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3083), 1, + ACTIONS(310), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3085), 1, + ACTIONS(312), 1, anon_sym_DOLLAR, - ACTIONS(3089), 1, + ACTIONS(316), 1, anon_sym_DQUOTE, - ACTIONS(3091), 1, + ACTIONS(320), 1, aux_sym_number_token1, - ACTIONS(3093), 1, + ACTIONS(322), 1, aux_sym_number_token2, - ACTIONS(3095), 1, + ACTIONS(324), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3097), 1, + ACTIONS(326), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3101), 1, + ACTIONS(328), 1, + anon_sym_BQUOTE, + ACTIONS(330), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3109), 1, + ACTIONS(340), 1, sym__brace_start, - ACTIONS(3732), 1, + ACTIONS(773), 1, sym__special_character, - ACTIONS(3736), 1, + ACTIONS(777), 1, sym_test_operator, - ACTIONS(3811), 1, - aux_sym__simple_variable_name_token1, - STATE(2045), 1, - aux_sym__literal_repeat1, - ACTIONS(2283), 2, + ACTIONS(1352), 1, + anon_sym_LT_LT_LT, + ACTIONS(1354), 1, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3103), 2, + ACTIONS(2673), 1, + anon_sym_LPAREN, + ACTIONS(2717), 1, + sym_word, + STATE(505), 1, + sym_command_name, + STATE(851), 1, + aux_sym_command_repeat1, + STATE(1086), 1, + aux_sym__literal_repeat1, + STATE(1282), 1, + sym_concatenation, + STATE(1768), 1, + sym_variable_assignment, + STATE(4694), 1, + sym_command, + STATE(6372), 1, + sym_subscript, + ACTIONS(332), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(705), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(3730), 3, + ACTIONS(775), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(1876), 9, + ACTIONS(1350), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3382), 2, + sym_file_redirect, + sym_herestring_redirect, + STATE(4691), 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(827), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -90444,7 +79888,30 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2281), 20, + [9517] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(1546), 1, + aux_sym__literal_repeat1, + STATE(1687), 1, + sym_concatenation, + ACTIONS(2307), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + STATE(1198), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2305), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -90455,6 +79922,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, @@ -90464,24 +79933,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [18317] = 8, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [9585] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1887), 1, + ACTIONS(1559), 1, anon_sym_DQUOTE, - ACTIONS(3809), 1, + ACTIONS(2295), 1, sym_variable_name, - STATE(1336), 1, + STATE(1157), 1, sym_string, - ACTIONS(3807), 2, + ACTIONS(2293), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 3, + ACTIONS(1191), 4, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(3805), 8, + ACTIONS(2291), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -90490,20 +79976,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1183), 36, + ACTIONS(1183), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_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, @@ -90513,6 +79999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -90527,51 +80014,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [18387] = 21, + [9657] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3006), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3008), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3010), 1, - anon_sym_DOLLAR, - ACTIONS(3014), 1, - anon_sym_DQUOTE, - ACTIONS(3016), 1, - aux_sym_number_token1, - ACTIONS(3018), 1, - aux_sym_number_token2, - ACTIONS(3020), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3022), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3024), 1, - anon_sym_BQUOTE, - ACTIONS(3026), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3032), 1, - sym__brace_start, - ACTIONS(3795), 1, - sym__special_character, - ACTIONS(3797), 1, - sym_test_operator, - STATE(2112), 1, + STATE(1556), 1, aux_sym__literal_repeat1, - ACTIONS(2158), 2, + STATE(1708), 1, + sym_concatenation, + ACTIONS(2311), 5, sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, 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(1204), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -90581,53 +80037,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2156), 20, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [18483] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3014), 1, - anon_sym_DQUOTE, - ACTIONS(3817), 1, - sym_variable_name, - STATE(1777), 1, - sym_string, - ACTIONS(3815), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 3, - 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), 36, + ACTIONS(2309), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -90637,8 +80047,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, @@ -90648,11 +80059,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, @@ -90664,51 +80076,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [18553] = 21, - ACTIONS(3), 1, + [9725] = 36, + ACTIONS(33), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(71), 1, sym_comment, - ACTIONS(3006), 1, + ACTIONS(308), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3008), 1, + ACTIONS(310), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3010), 1, + ACTIONS(312), 1, anon_sym_DOLLAR, - ACTIONS(3014), 1, + ACTIONS(314), 1, + sym__special_character, + ACTIONS(316), 1, anon_sym_DQUOTE, - ACTIONS(3016), 1, + ACTIONS(320), 1, aux_sym_number_token1, - ACTIONS(3018), 1, + ACTIONS(322), 1, aux_sym_number_token2, - ACTIONS(3020), 1, + ACTIONS(324), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3022), 1, + ACTIONS(326), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3024), 1, + ACTIONS(328), 1, anon_sym_BQUOTE, - ACTIONS(3026), 1, + ACTIONS(330), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3032), 1, - sym__brace_start, - ACTIONS(3795), 1, - sym__special_character, - ACTIONS(3797), 1, + ACTIONS(336), 1, + sym_variable_name, + ACTIONS(338), 1, sym_test_operator, - STATE(2112), 1, - aux_sym__literal_repeat1, - ACTIONS(2162), 2, + ACTIONS(340), 1, + sym__brace_start, + ACTIONS(1352), 1, + anon_sym_LT_LT_LT, + ACTIONS(1354), 1, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3028), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(724), 2, + ACTIONS(2671), 1, + sym_word, + ACTIONS(2673), 1, + anon_sym_LPAREN, + STATE(511), 1, + sym_command_name, + STATE(862), 1, + aux_sym_command_repeat1, + STATE(1086), 1, + aux_sym__literal_repeat1, + STATE(1282), 1, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3793), 3, + STATE(2138), 1, + sym_variable_assignment, + STATE(4694), 1, + sym_command, + STATE(6316), 1, + sym_subscript, + ACTIONS(318), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(1761), 9, + 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(3382), 2, + sym_file_redirect, + sym_herestring_redirect, + STATE(4691), 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(1023), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -90718,146 +80168,172 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2160), 20, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [18649] = 22, + [9853] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3081), 1, + ACTIONS(2731), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3083), 1, + ACTIONS(2734), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3085), 1, + ACTIONS(2737), 1, anon_sym_DOLLAR, - ACTIONS(3089), 1, + ACTIONS(2740), 1, + sym__special_character, + ACTIONS(2743), 1, anon_sym_DQUOTE, - ACTIONS(3091), 1, + ACTIONS(2746), 1, aux_sym_number_token1, - ACTIONS(3093), 1, + ACTIONS(2749), 1, aux_sym_number_token2, - ACTIONS(3095), 1, + ACTIONS(2752), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3097), 1, + ACTIONS(2755), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3099), 1, + ACTIONS(2758), 1, anon_sym_BQUOTE, - ACTIONS(3101), 1, + ACTIONS(2761), 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(2767), 1, + sym_file_descriptor, + ACTIONS(2770), 1, sym_test_operator, - STATE(2045), 1, + ACTIONS(2773), 1, + sym__brace_start, + STATE(594), 1, + aux_sym_redirected_statement_repeat1, + STATE(2142), 1, aux_sym__literal_repeat1, - ACTIONS(2327), 2, - sym_file_descriptor, + STATE(2288), 1, + sym_concatenation, + ACTIONS(2244), 2, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3103), 2, + ACTIONS(2725), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(2728), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(2764), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(725), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(3730), 3, + STATE(2286), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(2719), 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, + ACTIONS(2233), 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(2722), 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, + STATE(1569), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [9963] = 36, + ACTIONS(33), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(71), 1, sym_comment, - ACTIONS(3006), 1, + ACTIONS(308), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3008), 1, + ACTIONS(310), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3010), 1, + ACTIONS(312), 1, anon_sym_DOLLAR, - ACTIONS(3014), 1, + ACTIONS(316), 1, anon_sym_DQUOTE, - ACTIONS(3016), 1, + ACTIONS(320), 1, aux_sym_number_token1, - ACTIONS(3018), 1, + ACTIONS(322), 1, aux_sym_number_token2, - ACTIONS(3020), 1, + ACTIONS(324), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3022), 1, + ACTIONS(326), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3026), 1, + ACTIONS(328), 1, + anon_sym_BQUOTE, + ACTIONS(330), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3032), 1, + ACTIONS(340), 1, sym__brace_start, - ACTIONS(3795), 1, + ACTIONS(1015), 1, sym__special_character, - ACTIONS(3797), 1, + ACTIONS(1021), 1, + sym_variable_name, + ACTIONS(1023), 1, sym_test_operator, - STATE(2112), 1, - aux_sym__literal_repeat1, - ACTIONS(2162), 2, + ACTIONS(1352), 1, + anon_sym_LT_LT_LT, + ACTIONS(1354), 1, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3028), 2, + ACTIONS(2673), 1, + anon_sym_LPAREN, + ACTIONS(2776), 1, + sym_word, + STATE(568), 1, + sym_command_name, + STATE(886), 1, + aux_sym_command_repeat1, + STATE(1086), 1, + aux_sym__literal_repeat1, + STATE(1282), 1, + sym_concatenation, + STATE(1768), 1, + sym_variable_assignment, + STATE(4694), 1, + sym_command, + STATE(6362), 1, + sym_subscript, + ACTIONS(332), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(724), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3793), 3, + ACTIONS(1017), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(1761), 9, + ACTIONS(1350), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3382), 2, + sym_file_redirect, + sym_herestring_redirect, + STATE(4691), 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(1543), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -90867,74 +80343,71 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2160), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [18841] = 21, - ACTIONS(3), 1, + [10091] = 29, + ACTIONS(71), 1, sym_comment, - ACTIONS(3822), 1, + ACTIONS(2561), 1, + anon_sym_LPAREN, + ACTIONS(2675), 1, + sym_word, + ACTIONS(2679), 1, + anon_sym_LT_LT_LT, + ACTIONS(2681), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3825), 1, + ACTIONS(2683), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3828), 1, + ACTIONS(2685), 1, anon_sym_DOLLAR, - ACTIONS(3831), 1, + ACTIONS(2687), 1, sym__special_character, - ACTIONS(3834), 1, + ACTIONS(2689), 1, anon_sym_DQUOTE, - ACTIONS(3837), 1, + ACTIONS(2693), 1, aux_sym_number_token1, - ACTIONS(3840), 1, + ACTIONS(2695), 1, aux_sym_number_token2, - ACTIONS(3843), 1, + ACTIONS(2697), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3846), 1, + ACTIONS(2699), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3849), 1, + ACTIONS(2701), 1, anon_sym_BQUOTE, - ACTIONS(3852), 1, + ACTIONS(2703), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3858), 1, + ACTIONS(2707), 1, sym_test_operator, - ACTIONS(3861), 1, + ACTIONS(2709), 1, + sym__bare_dollar, + ACTIONS(2711), 1, sym__brace_start, - STATE(2279), 1, + STATE(660), 1, + aux_sym_command_repeat2, + STATE(2218), 1, aux_sym__literal_repeat1, - ACTIONS(3855), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(723), 2, + STATE(2397), 1, 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, + STATE(2400), 1, + sym_herestring_redirect, + STATE(5272), 1, + sym_subshell, + ACTIONS(2677), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2691), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(1800), 9, + ACTIONS(2705), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1400), 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(1979), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -90944,148 +80417,147 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2167), 19, - anon_sym_SEMI, + ACTIONS(1402), 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, - [18937] = 21, + [10205] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3037), 1, + ACTIONS(2208), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(2786), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3040), 1, + ACTIONS(2788), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3043), 1, + ACTIONS(2790), 1, anon_sym_DOLLAR, - ACTIONS(3049), 1, + ACTIONS(2792), 1, + sym__special_character, + ACTIONS(2794), 1, anon_sym_DQUOTE, - ACTIONS(3052), 1, + ACTIONS(2796), 1, aux_sym_number_token1, - ACTIONS(3055), 1, + ACTIONS(2798), 1, aux_sym_number_token2, - ACTIONS(3058), 1, + ACTIONS(2800), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3061), 1, + ACTIONS(2802), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3064), 1, + ACTIONS(2804), 1, anon_sym_BQUOTE, - ACTIONS(3067), 1, + ACTIONS(2806), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3076), 1, - sym__brace_start, - ACTIONS(3867), 1, - sym__special_character, - ACTIONS(3870), 1, + ACTIONS(2810), 1, + sym_file_descriptor, + ACTIONS(2812), 1, sym_test_operator, - STATE(2112), 1, + ACTIONS(2814), 1, + sym__brace_start, + STATE(600), 1, + aux_sym_redirected_statement_repeat1, + STATE(2070), 1, aux_sym__literal_repeat1, - ACTIONS(2169), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3070), 2, + STATE(2172), 1, + sym_concatenation, + ACTIONS(2782), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(2784), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(2808), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(724), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3864), 3, + STATE(2171), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(2778), 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, + ACTIONS(2206), 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(2780), 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, - [19033] = 22, + STATE(1656), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [10315] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2959), 1, + ACTIONS(2819), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2962), 1, + ACTIONS(2822), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2965), 1, + ACTIONS(2825), 1, anon_sym_DOLLAR, - ACTIONS(2971), 1, + ACTIONS(2828), 1, + sym__special_character, + ACTIONS(2831), 1, anon_sym_DQUOTE, - ACTIONS(2974), 1, + ACTIONS(2834), 1, aux_sym_number_token1, - ACTIONS(2977), 1, + ACTIONS(2837), 1, aux_sym_number_token2, - ACTIONS(2980), 1, + ACTIONS(2840), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2983), 1, + ACTIONS(2843), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2986), 1, + ACTIONS(2846), 1, anon_sym_BQUOTE, - ACTIONS(2989), 1, + ACTIONS(2849), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3001), 1, - sym__brace_start, - ACTIONS(3876), 1, - sym__special_character, - ACTIONS(3879), 1, + ACTIONS(2855), 1, aux_sym__simple_variable_name_token1, - ACTIONS(3882), 1, + ACTIONS(2858), 1, sym_test_operator, - STATE(2045), 1, + ACTIONS(2861), 1, + sym__brace_start, + STATE(1606), 1, aux_sym__literal_repeat1, - ACTIONS(2456), 2, + ACTIONS(2328), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2992), 2, + ACTIONS(2852), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(725), 2, + STATE(598), 2, sym_concatenation, aux_sym_unset_command_repeat1, - ACTIONS(3873), 3, + ACTIONS(2816), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1876), 9, + STATE(1206), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -91095,7 +80567,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2454), 19, + ACTIONS(2326), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -91106,6 +80578,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, @@ -91115,178 +80589,80 @@ 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, + [10415] = 27, + ACTIONS(3), 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, + ACTIONS(2045), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(2786), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2788), 1, 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, + ACTIONS(2790), 1, anon_sym_DOLLAR, + ACTIONS(2792), 1, sym__special_character, + ACTIONS(2794), 1, + anon_sym_DQUOTE, + ACTIONS(2796), 1, aux_sym_number_token1, + ACTIONS(2798), 1, aux_sym_number_token2, + ACTIONS(2800), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2802), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - [19193] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2544), 1, - anon_sym_DQUOTE, - ACTIONS(3889), 1, - sym_variable_name, - STATE(1503), 1, - sym_string, - ACTIONS(3887), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, + ACTIONS(2804), 1, + anon_sym_BQUOTE, + ACTIONS(2806), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2810), 1, sym_file_descriptor, + ACTIONS(2812), 1, sym_test_operator, + ACTIONS(2814), 1, sym__brace_start, - ACTIONS(3885), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 36, + STATE(597), 1, + aux_sym_redirected_statement_repeat1, + STATE(2070), 1, + aux_sym__literal_repeat1, + STATE(2172), 1, + sym_concatenation, + ACTIONS(2782), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(2784), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(2808), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2171), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(2778), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(2037), 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(2780), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_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, - 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(3893), 1, - sym__special_character, - ACTIONS(3895), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(3897), 1, - sym_variable_name, - ACTIONS(3899), 1, - sym_test_operator, - STATE(1820), 1, - aux_sym__literal_repeat1, - STATE(6681), 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(3891), 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(1656), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -91296,199 +80672,172 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1694), 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, - [19365] = 8, + [10525] = 27, 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(1197), 4, - sym_file_descriptor, - sym_test_operator, - 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(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, + ACTIONS(2244), 1, aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, + ACTIONS(2876), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2879), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(2882), 1, + anon_sym_DOLLAR, + ACTIONS(2885), 1, sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(2888), 1, + anon_sym_DQUOTE, + ACTIONS(2891), 1, aux_sym_number_token1, + ACTIONS(2894), 1, aux_sym_number_token2, + ACTIONS(2897), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(2900), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(2903), 1, anon_sym_BQUOTE, + ACTIONS(2906), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [19435] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3909), 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, + ACTIONS(2912), 1, sym_file_descriptor, + ACTIONS(2915), 1, sym_test_operator, + ACTIONS(2918), 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), 36, + STATE(600), 1, + aux_sym_redirected_statement_repeat1, + STATE(2070), 1, + aux_sym__literal_repeat1, + STATE(2172), 1, + sym_concatenation, + ACTIONS(2870), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(2873), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(2909), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2171), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(2864), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(2233), 8, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + ACTIONS(2867), 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_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, - [19505] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2108), 1, + STATE(1656), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [10635] = 36, + ACTIONS(33), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(45), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2111), 1, + ACTIONS(47), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2114), 1, + ACTIONS(49), 1, anon_sym_DOLLAR, - ACTIONS(2120), 1, + ACTIONS(51), 1, + sym__special_character, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(2123), 1, + ACTIONS(57), 1, aux_sym_number_token1, - ACTIONS(2126), 1, + ACTIONS(59), 1, aux_sym_number_token2, - ACTIONS(2129), 1, + ACTIONS(61), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2132), 1, + ACTIONS(63), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2135), 1, + ACTIONS(65), 1, anon_sym_BQUOTE, - ACTIONS(2138), 1, + ACTIONS(67), 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, + ACTIONS(71), 1, + sym_comment, + ACTIONS(75), 1, sym_variable_name, - ACTIONS(3927), 1, + ACTIONS(77), 1, sym_test_operator, - STATE(1820), 1, + ACTIONS(79), 1, + sym__brace_start, + ACTIONS(1352), 1, + anon_sym_LT_LT_LT, + ACTIONS(1354), 1, + sym_file_descriptor, + ACTIONS(2673), 1, + anon_sym_LPAREN, + ACTIONS(2921), 1, + sym_word, + STATE(500), 1, + sym_command_name, + STATE(807), 1, + aux_sym_command_repeat1, + STATE(1089), 1, aux_sym__literal_repeat1, - STATE(6681), 1, + STATE(1232), 1, + sym_concatenation, + STATE(2047), 1, + sym_variable_assignment, + STATE(4694), 1, + sym_command, + STATE(6338), 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, + ACTIONS(55), 2, 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, + 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(3382), 2, + sym_file_redirect, + sym_herestring_redirect, + STATE(4691), 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(816), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -91498,111 +80847,63 @@ static const uint16_t ts_small_parse_table[] = { 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, + [10763] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3909), 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(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), 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, + ACTIONS(2599), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2601), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(2603), 1, + anon_sym_DOLLAR, + ACTIONS(2605), 1, sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(2607), 1, + anon_sym_DQUOTE, + ACTIONS(2609), 1, aux_sym_number_token1, + ACTIONS(2611), 1, aux_sym_number_token2, + ACTIONS(2613), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(2615), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(2617), 1, anon_sym_BQUOTE, + ACTIONS(2619), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(2625), 1, + sym_test_operator, + ACTIONS(2627), 1, + sym__brace_start, + ACTIONS(2923), 1, + aux_sym__simple_variable_name_token1, + STATE(1606), 1, + aux_sym__literal_repeat1, + ACTIONS(2545), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2621), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(581), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2597), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [19677] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3241), 1, - anon_sym_DQUOTE, - ACTIONS(3803), 1, - sym_variable_name, - STATE(1839), 1, + STATE(1206), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(3801), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(3799), 8, - 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, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2543), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -91624,38 +80925,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, - [19747] = 8, + [10863] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2544), 1, + ACTIONS(2553), 1, anon_sym_DQUOTE, - ACTIONS(3889), 1, + ACTIONS(2557), 1, sym_variable_name, - STATE(1503), 1, + STATE(1066), 1, sym_string, - ACTIONS(3887), 2, + ACTIONS(2555), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, ACTIONS(1191), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3885), 8, + ACTIONS(2551), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -91664,7 +80950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1183), 36, + ACTIONS(1183), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -91674,6 +80960,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, @@ -91687,6 +80974,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 +80989,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [19817] = 8, + [10935] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3014), 1, + ACTIONS(2055), 1, anon_sym_DQUOTE, - ACTIONS(3817), 1, + ACTIONS(2929), 1, sym_variable_name, - STATE(1777), 1, + STATE(1415), 1, sym_string, - ACTIONS(3815), 2, + ACTIONS(2927), 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(3813), 8, + ACTIONS(2925), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -91726,7 +81014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1195), 36, + ACTIONS(1195), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -91736,8 +81024,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, @@ -91748,7 +81038,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, @@ -91763,53 +81052,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [19887] = 22, + [11006] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3081), 1, + ACTIONS(2934), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3083), 1, + ACTIONS(2937), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3085), 1, + ACTIONS(2940), 1, anon_sym_DOLLAR, - ACTIONS(3089), 1, + ACTIONS(2943), 1, + sym__special_character, + ACTIONS(2946), 1, anon_sym_DQUOTE, - ACTIONS(3091), 1, + ACTIONS(2949), 1, aux_sym_number_token1, - ACTIONS(3093), 1, + ACTIONS(2952), 1, aux_sym_number_token2, - ACTIONS(3095), 1, + ACTIONS(2955), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3097), 1, + ACTIONS(2958), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3099), 1, + ACTIONS(2961), 1, anon_sym_BQUOTE, - ACTIONS(3101), 1, + ACTIONS(2964), 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, + ACTIONS(2970), 1, aux_sym__simple_variable_name_token1, - STATE(2045), 1, + ACTIONS(2973), 1, + sym_test_operator, + ACTIONS(2976), 1, + sym__brace_start, + STATE(1802), 1, aux_sym__literal_repeat1, - ACTIONS(2283), 2, + ACTIONS(2328), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3103), 2, + ACTIONS(2967), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(721), 2, + STATE(605), 2, sym_concatenation, aux_sym_unset_command_repeat1, - ACTIONS(3730), 3, + ACTIONS(2931), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1876), 9, + STATE(1400), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -91819,7 +81108,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2281), 19, + ACTIONS(2326), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -91829,6 +81118,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, @@ -91839,20 +81129,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [19985] = 6, + [11105] = 6, ACTIONS(3), 1, sym_comment, - STATE(1825), 1, + STATE(1590), 1, aux_sym__literal_repeat1, - STATE(2047), 1, + STATE(2000), 1, sym_concatenation, - ACTIONS(2273), 5, + ACTIONS(2307), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - STATE(1667), 9, + STATE(1307), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -91862,7 +81151,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2271), 36, + ACTIONS(2305), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -91872,7 +81161,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, @@ -91882,7 +81174,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, @@ -91899,82 +81190,19 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym_file_descriptor, - sym_test_operator, - 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, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_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, - [20121] = 6, + [11172] = 6, ACTIONS(3), 1, sym_comment, - STATE(1885), 1, + STATE(1600), 1, aux_sym__literal_repeat1, - STATE(2158), 1, + STATE(2001), 1, sym_concatenation, - ACTIONS(2277), 5, + ACTIONS(2311), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - STATE(1674), 9, + STATE(1309), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -91984,7 +81212,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2275), 36, + ACTIONS(2309), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -91994,7 +81222,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, @@ -92004,7 +81235,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, @@ -92021,58 +81251,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [20187] = 24, + [11239] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2029), 1, + ACTIONS(2981), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2031), 1, + ACTIONS(2983), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2033), 1, + ACTIONS(2985), 1, anon_sym_DOLLAR, - ACTIONS(2037), 1, + ACTIONS(2987), 1, + sym__special_character, + ACTIONS(2989), 1, anon_sym_DQUOTE, - ACTIONS(2039), 1, + ACTIONS(2991), 1, aux_sym_number_token1, - ACTIONS(2041), 1, + ACTIONS(2993), 1, aux_sym_number_token2, - ACTIONS(2043), 1, + ACTIONS(2995), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2045), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2047), 1, + ACTIONS(2999), 1, anon_sym_BQUOTE, - ACTIONS(2049), 1, + ACTIONS(3001), 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, + ACTIONS(3005), 1, aux_sym__simple_variable_name_token1, - STATE(1820), 1, + ACTIONS(3007), 1, + sym_test_operator, + ACTIONS(3009), 1, + sym__brace_start, + STATE(1802), 1, aux_sym__literal_repeat1, - STATE(6681), 1, - sym_subscript, - ACTIONS(1585), 2, + ACTIONS(2427), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2051), 2, + ACTIONS(3003), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3891), 3, + STATE(605), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2979), 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(1400), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -92082,14 +81307,18 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1583), 16, + ACTIONS(2425), 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, @@ -92099,90 +81328,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [20289] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(801), 24, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - 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), 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, - [20349] = 8, + [11338] = 6, 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(1197), 4, + STATE(1713), 1, + aux_sym__literal_repeat1, + STATE(1780), 1, + sym_concatenation, + ACTIONS(2311), 6, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, - ACTIONS(3934), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 34, + aux_sym_heredoc_redirect_token1, + 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, + ACTIONS(2309), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -92202,10 +81372,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, @@ -92217,51 +81389,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [20418] = 21, + [11405] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3942), 1, + ACTIONS(3013), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3944), 1, + ACTIONS(3015), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3946), 1, + ACTIONS(3017), 1, anon_sym_DOLLAR, - ACTIONS(3948), 1, + ACTIONS(3019), 1, sym__special_character, - ACTIONS(3950), 1, + ACTIONS(3021), 1, anon_sym_DQUOTE, - ACTIONS(3952), 1, + ACTIONS(3023), 1, aux_sym_number_token1, - ACTIONS(3954), 1, + ACTIONS(3025), 1, aux_sym_number_token2, - ACTIONS(3956), 1, + ACTIONS(3027), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3958), 1, + ACTIONS(3029), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3960), 1, + ACTIONS(3031), 1, anon_sym_BQUOTE, - ACTIONS(3962), 1, + ACTIONS(3033), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3966), 1, + ACTIONS(3037), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(3039), 1, sym_test_operator, - ACTIONS(3968), 1, + ACTIONS(3041), 1, sym__brace_start, - STATE(4368), 1, + STATE(1721), 1, aux_sym__literal_repeat1, - STATE(4735), 1, - sym_concatenation, - ACTIONS(3964), 2, + ACTIONS(3035), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2277), 3, + STATE(616), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2545), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3940), 3, + ACTIONS(3011), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4635), 9, + STATE(1532), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -92271,7 +81446,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2275), 19, + ACTIONS(2543), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -92291,33 +81466,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, + [11504] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2071), 1, + ACTIONS(3045), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3047), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3049), 1, + anon_sym_DOLLAR, + ACTIONS(3051), 1, + sym__special_character, + ACTIONS(3053), 1, anon_sym_DQUOTE, - ACTIONS(3974), 1, - sym_variable_name, - STATE(1616), 1, - sym_string, - ACTIONS(3972), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 4, - sym_file_descriptor, + ACTIONS(3055), 1, + aux_sym_number_token1, + ACTIONS(3057), 1, + aux_sym_number_token2, + ACTIONS(3059), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3061), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3063), 1, + anon_sym_BQUOTE, + ACTIONS(3065), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3069), 1, sym_test_operator, + ACTIONS(3071), 1, 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, + STATE(4160), 1, + aux_sym__literal_repeat1, + STATE(4632), 1, + sym_concatenation, + ACTIONS(2307), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3067), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3043), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(4141), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2305), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -92327,7 +81529,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, @@ -92337,47 +81542,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, + [11601] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3045), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3047), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3049), 1, + anon_sym_DOLLAR, + ACTIONS(3051), 1, sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3053), 1, + anon_sym_DQUOTE, + ACTIONS(3055), 1, aux_sym_number_token1, + ACTIONS(3057), 1, aux_sym_number_token2, + ACTIONS(3059), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3061), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3063), 1, anon_sym_BQUOTE, + ACTIONS(3065), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3071), 1, + sym__brace_start, + ACTIONS(3075), 1, + sym_test_operator, + STATE(4204), 1, + aux_sym__literal_repeat1, + STATE(4652), 1, + sym_concatenation, + ACTIONS(2311), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3067), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(3073), 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(4012), 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(2309), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -92387,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, @@ -92398,47 +81618,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_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, - [20651] = 8, + [11698] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3089), 1, - anon_sym_DQUOTE, - ACTIONS(3986), 1, - sym_variable_name, - STATE(1710), 1, - sym_string, - ACTIONS(3984), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 3, + STATE(1643), 1, + aux_sym__literal_repeat1, + STATE(1807), 1, + sym_concatenation, + ACTIONS(2311), 5, sym_file_descriptor, + sym_variable_name, 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, + aux_sym_heredoc_redirect_token1, + STATE(1328), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2309), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -92459,10 +81662,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, @@ -92474,64 +81679,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [20720] = 25, - ACTIONS(71), 1, + [11765] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(3988), 1, - sym_word, - ACTIONS(3991), 1, + ACTIONS(3079), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3994), 1, + ACTIONS(3081), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3997), 1, + ACTIONS(3083), 1, anon_sym_DOLLAR, - ACTIONS(4000), 1, + ACTIONS(3085), 1, sym__special_character, - ACTIONS(4003), 1, + ACTIONS(3087), 1, anon_sym_DQUOTE, - ACTIONS(4009), 1, + ACTIONS(3089), 1, aux_sym_number_token1, - ACTIONS(4012), 1, + ACTIONS(3091), 1, aux_sym_number_token2, - ACTIONS(4015), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4018), 1, + ACTIONS(3095), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4021), 1, + ACTIONS(3097), 1, anon_sym_BQUOTE, - ACTIONS(4024), 1, + ACTIONS(3099), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4030), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(4033), 1, - sym_variable_name, - ACTIONS(4036), 1, + ACTIONS(3103), 1, sym_test_operator, - ACTIONS(4039), 1, + ACTIONS(3105), 1, sym__brace_start, - STATE(2610), 1, + STATE(4334), 1, aux_sym__literal_repeat1, - STATE(6637), 1, - sym_subscript, - ACTIONS(4006), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4027), 2, + STATE(4713), 1, + sym_concatenation, + ACTIONS(2307), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3101), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(747), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - ACTIONS(1703), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(2321), 9, + ACTIONS(3077), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(4037), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -92541,44 +81732,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(2305), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -92589,6 +81743,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, @@ -92598,59 +81754,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + [11862] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3079), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3081), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3083), 1, + anon_sym_DOLLAR, + ACTIONS(3085), 1, sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3087), 1, + anon_sym_DQUOTE, + ACTIONS(3089), 1, aux_sym_number_token1, + ACTIONS(3091), 1, aux_sym_number_token2, + ACTIONS(3093), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3095), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3097), 1, anon_sym_BQUOTE, + ACTIONS(3099), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3105), 1, + sym__brace_start, + ACTIONS(3109), 1, + sym_test_operator, + STATE(4153), 1, + aux_sym__literal_repeat1, + STATE(4495), 1, + sym_concatenation, + ACTIONS(2311), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3101), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(3107), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [20892] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4044), 1, - anon_sym_DQUOTE, - ACTIONS(4048), 1, - sym_variable_name, - STATE(2111), 1, + STATE(4042), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(4046), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 4, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - ACTIONS(4042), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 34, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2309), 22, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -92660,108 +81831,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + [11959] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3013), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3015), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3017), 1, + anon_sym_DOLLAR, + ACTIONS(3019), 1, sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3021), 1, + anon_sym_DQUOTE, + ACTIONS(3023), 1, aux_sym_number_token1, + ACTIONS(3025), 1, aux_sym_number_token2, + ACTIONS(3027), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3029), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3031), 1, anon_sym_BQUOTE, + ACTIONS(3033), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3039), 1, + sym_test_operator, + ACTIONS(3041), 1, + sym__brace_start, + ACTIONS(3111), 1, + aux_sym__simple_variable_name_token1, + STATE(1721), 1, + aux_sym__literal_repeat1, + ACTIONS(3035), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [20961] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4044), 1, - anon_sym_DQUOTE, - ACTIONS(4048), 1, - sym_variable_name, - STATE(2111), 1, - sym_string, - ACTIONS(4046), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 4, + STATE(632), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2427), 3, 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, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(3011), 3, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - [21030] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3598), 1, - anon_sym_DQUOTE, - ACTIONS(4054), 1, - sym_variable_name, - STATE(1986), 1, + STATE(1532), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(4052), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(4050), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 34, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2425), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -92781,48 +81908,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, + [12058] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2981), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2983), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(2985), 1, + anon_sym_DOLLAR, + ACTIONS(2987), 1, sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(2989), 1, + anon_sym_DQUOTE, + ACTIONS(2991), 1, aux_sym_number_token1, + ACTIONS(2993), 1, aux_sym_number_token2, + ACTIONS(2995), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(2997), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(2999), 1, anon_sym_BQUOTE, + ACTIONS(3001), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3007), 1, + sym_test_operator, + ACTIONS(3009), 1, + sym__brace_start, + ACTIONS(3113), 1, + aux_sym__simple_variable_name_token1, + STATE(1802), 1, + aux_sym__literal_repeat1, + ACTIONS(2545), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3003), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(608), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2979), 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, + STATE(1400), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(4052), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(4050), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 34, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2543), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -92832,6 +81974,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, @@ -92842,96 +81985,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, - [21168] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(2247), 1, - anon_sym_BQUOTE, - ACTIONS(2243), 22, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(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, - [21229] = 8, + [12157] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 1, + ACTIONS(1595), 1, anon_sym_DQUOTE, - ACTIONS(2269), 1, + ACTIONS(3119), 1, sym_variable_name, - STATE(1273), 1, + STATE(1079), 1, sym_string, - ACTIONS(2267), 2, + ACTIONS(3117), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 4, + ACTIONS(1197), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ACTIONS(2265), 8, + ACTIONS(3115), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -92940,17 +82010,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1195), 34, + ACTIONS(1195), 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_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, @@ -92960,7 +82034,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, @@ -92975,24 +82048,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [21298] = 8, + [12228] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 1, + ACTIONS(1595), 1, anon_sym_DQUOTE, - ACTIONS(2269), 1, + ACTIONS(3119), 1, sym_variable_name, - STATE(1273), 1, + STATE(1079), 1, sym_string, - ACTIONS(2267), 2, + ACTIONS(3117), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 4, + ACTIONS(1191), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ACTIONS(2265), 8, + ACTIONS(3115), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -93001,17 +82073,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1183), 34, + ACTIONS(1183), 37, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_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, @@ -93021,7 +82097,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, @@ -93031,66 +82106,37 @@ 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, - [21367] = 21, - 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(4058), 1, - sym__special_character, - ACTIONS(4060), 1, - sym_test_operator, - STATE(2253), 1, - aux_sym__literal_repeat1, - ACTIONS(2158), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3656), 2, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(765), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(4056), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(1931), 9, - sym_arithmetic_expansion, - sym_brace_expression, + [12299] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2437), 1, + anon_sym_DQUOTE, + ACTIONS(3125), 1, + sym_variable_name, + STATE(1335), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2156), 19, + ACTIONS(3123), 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(3121), 8, + 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, @@ -93100,7 +82146,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, @@ -93110,59 +82159,47 @@ 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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3634), 1, + aux_sym_heredoc_redirect_token1, 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, + sym__special_character, + 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(3654), 1, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3660), 1, - sym__brace_start, - ACTIONS(4058), 1, - sym__special_character, - ACTIONS(4060), 1, - sym_test_operator, - STATE(2253), 1, - aux_sym__literal_repeat1, - ACTIONS(2158), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3656), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(765), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(4056), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(1931), 9, - sym_arithmetic_expansion, - sym_brace_expression, + [12370] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2437), 1, + anon_sym_DQUOTE, + ACTIONS(3125), 1, + sym_variable_name, + STATE(1335), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2156), 20, + ACTIONS(3123), 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(3121), 8, + 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, @@ -93172,7 +82209,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, @@ -93182,60 +82222,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_BQUOTE, - [21555] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3634), 1, + aux_sym_heredoc_redirect_token1, 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, + sym__special_character, + 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(3654), 1, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3660), 1, - sym__brace_start, - ACTIONS(4058), 1, - sym__special_character, - ACTIONS(4060), 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(765), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(4056), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(1931), 9, - sym_arithmetic_expansion, - sym_brace_expression, + [12441] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2055), 1, + anon_sym_DQUOTE, + ACTIONS(2929), 1, + sym_variable_name, + STATE(1415), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2160), 20, + ACTIONS(2927), 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(2925), 8, + 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, @@ -93245,7 +82272,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, @@ -93255,62 +82285,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_BQUOTE, - [21648] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3634), 1, + aux_sym_heredoc_redirect_token1, 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, + sym__special_character, + 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(4058), 1, - sym__special_character, - ACTIONS(4060), 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(765), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(4056), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(1931), 9, - sym_arithmetic_expansion, - sym_brace_expression, + [12512] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3129), 1, + anon_sym_DQUOTE, + ACTIONS(3133), 1, + sym_variable_name, + STATE(1259), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2160), 19, + ACTIONS(3131), 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(3127), 8, + 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, @@ -93321,6 +82336,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, @@ -93330,23 +82347,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [21743] = 8, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [12583] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3089), 1, + ACTIONS(3129), 1, anon_sym_DQUOTE, - ACTIONS(3986), 1, + ACTIONS(3133), 1, sym_variable_name, - STATE(1710), 1, + STATE(1259), 1, sym_string, - ACTIONS(3984), 2, + ACTIONS(3131), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, + ACTIONS(1191), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3982), 8, + ACTIONS(3127), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -93355,7 +82388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1195), 35, + ACTIONS(1183), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -93365,8 +82398,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, @@ -93377,6 +82411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -93391,64 +82426,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [21812] = 25, - ACTIONS(71), 1, + [12654] = 27, + ACTIONS(3), 1, sym_comment, - ACTIONS(4062), 1, - sym_word, - ACTIONS(4064), 1, + ACTIONS(2045), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(2786), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4066), 1, + ACTIONS(2788), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4068), 1, + ACTIONS(2790), 1, anon_sym_DOLLAR, - ACTIONS(4070), 1, - sym__special_character, - ACTIONS(4072), 1, + ACTIONS(2794), 1, anon_sym_DQUOTE, - ACTIONS(4076), 1, + ACTIONS(2796), 1, aux_sym_number_token1, - ACTIONS(4078), 1, + ACTIONS(2798), 1, aux_sym_number_token2, - ACTIONS(4080), 1, + ACTIONS(2800), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4082), 1, + ACTIONS(2802), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4084), 1, + ACTIONS(2804), 1, anon_sym_BQUOTE, - ACTIONS(4086), 1, + ACTIONS(2806), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4090), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(4092), 1, - sym_variable_name, - ACTIONS(4094), 1, - sym_test_operator, - ACTIONS(4096), 1, + ACTIONS(2814), 1, sym__brace_start, - STATE(2610), 1, + ACTIONS(3141), 1, + sym__special_character, + ACTIONS(3143), 1, + sym_file_descriptor, + ACTIONS(3145), 1, + sym_test_operator, + STATE(626), 1, + aux_sym_redirected_statement_repeat1, + STATE(2070), 1, aux_sym__literal_repeat1, - STATE(6637), 1, - sym_subscript, - ACTIONS(4074), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4088), 2, + STATE(2172), 1, + sym_concatenation, + ACTIONS(2782), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(2808), 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(3139), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(2171), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(3135), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(2037), 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(3137), 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, - STATE(2321), 9, + anon_sym_GT_PIPE, + STATE(1965), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -93458,59 +82508,143 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1585), 10, + [12763] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2208), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(2786), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2788), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2790), 1, + anon_sym_DOLLAR, + ACTIONS(2794), 1, + anon_sym_DQUOTE, + ACTIONS(2796), 1, + aux_sym_number_token1, + ACTIONS(2798), 1, + aux_sym_number_token2, + ACTIONS(2800), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2802), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2804), 1, + anon_sym_BQUOTE, + ACTIONS(2806), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2814), 1, + sym__brace_start, + ACTIONS(3141), 1, + sym__special_character, + ACTIONS(3143), 1, sym_file_descriptor, + ACTIONS(3145), 1, + sym_test_operator, + STATE(628), 1, + aux_sym_redirected_statement_repeat1, + STATE(2070), 1, + aux_sym__literal_repeat1, + STATE(2172), 1, + sym_concatenation, + ACTIONS(2782), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(2808), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3139), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(2171), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(3135), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(2206), 7, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + ACTIONS(3137), 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, - [21915] = 20, + STATE(1965), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [12872] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3504), 1, + ACTIONS(1551), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3506), 1, + ACTIONS(1553), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3508), 1, + ACTIONS(1555), 1, anon_sym_DOLLAR, - ACTIONS(3512), 1, + ACTIONS(1559), 1, anon_sym_DQUOTE, - ACTIONS(3514), 1, + ACTIONS(1561), 1, aux_sym_number_token1, - ACTIONS(3516), 1, + ACTIONS(1563), 1, aux_sym_number_token2, - ACTIONS(3518), 1, + ACTIONS(1565), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3520), 1, + ACTIONS(1567), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3524), 1, + ACTIONS(1569), 1, + anon_sym_BQUOTE, + ACTIONS(1571), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3530), 1, + ACTIONS(1577), 1, + sym__bare_dollar, + ACTIONS(1579), 1, sym__brace_start, - ACTIONS(4100), 1, + ACTIONS(2465), 1, + anon_sym_LT_LT_LT, + ACTIONS(2467), 1, sym__special_character, - ACTIONS(4102), 1, + ACTIONS(2469), 1, sym_test_operator, - STATE(4236), 1, + STATE(629), 1, + aux_sym_command_repeat2, + STATE(1320), 1, aux_sym__literal_repeat1, - STATE(4549), 1, + STATE(1424), 1, sym_concatenation, - ACTIONS(2273), 2, + STATE(1425), 1, + sym_herestring_redirect, + ACTIONS(1539), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3526), 2, + ACTIONS(1573), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4098), 3, + ACTIONS(2463), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2461), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4495), 9, + STATE(1684), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -93520,17 +82654,14 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2271), 21, - anon_sym_SEMI, + ACTIONS(1537), 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, @@ -93540,183 +82671,144 @@ static const uint16_t ts_small_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, - [22008] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(2505), 1, - anon_sym_BQUOTE, - ACTIONS(2243), 22, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(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, - [22069] = 20, + [12979] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3504), 1, + ACTIONS(2244), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(2876), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3506), 1, + ACTIONS(2879), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3508), 1, + ACTIONS(2882), 1, anon_sym_DOLLAR, - ACTIONS(3512), 1, + ACTIONS(2888), 1, anon_sym_DQUOTE, - ACTIONS(3514), 1, + ACTIONS(2891), 1, aux_sym_number_token1, - ACTIONS(3516), 1, + ACTIONS(2894), 1, aux_sym_number_token2, - ACTIONS(3518), 1, + ACTIONS(2897), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3520), 1, + ACTIONS(2900), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3524), 1, + ACTIONS(2903), 1, + anon_sym_BQUOTE, + ACTIONS(2906), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3530), 1, + ACTIONS(2918), 1, sym__brace_start, - ACTIONS(4100), 1, + ACTIONS(3156), 1, sym__special_character, - ACTIONS(4106), 1, + ACTIONS(3159), 1, + sym_file_descriptor, + ACTIONS(3162), 1, sym_test_operator, - STATE(4265), 1, + STATE(628), 1, + aux_sym_redirected_statement_repeat1, + STATE(2070), 1, aux_sym__literal_repeat1, - STATE(4609), 1, + STATE(2172), 1, sym_concatenation, - ACTIONS(2277), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3526), 2, + ACTIONS(2870), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(2909), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4104), 3, + ACTIONS(3153), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(2171), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(3147), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4497), 9, - sym_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), 21, + ACTIONS(2233), 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(3150), 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, - [22162] = 21, + STATE(1965), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [13088] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3743), 1, + ACTIONS(1448), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1851), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3746), 1, + ACTIONS(1854), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3749), 1, + ACTIONS(1857), 1, anon_sym_DOLLAR, - ACTIONS(3755), 1, + ACTIONS(1863), 1, anon_sym_DQUOTE, - ACTIONS(3758), 1, + ACTIONS(1866), 1, aux_sym_number_token1, - ACTIONS(3761), 1, + ACTIONS(1869), 1, aux_sym_number_token2, - ACTIONS(3764), 1, + ACTIONS(1872), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3767), 1, + ACTIONS(1875), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3770), 1, + ACTIONS(1878), 1, anon_sym_BQUOTE, - ACTIONS(3773), 1, + ACTIONS(1881), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3782), 1, + ACTIONS(1893), 1, + sym__bare_dollar, + ACTIONS(1896), 1, sym__brace_start, - ACTIONS(4111), 1, + ACTIONS(3171), 1, + anon_sym_LT_LT_LT, + ACTIONS(3174), 1, sym__special_character, - ACTIONS(4114), 1, + ACTIONS(3177), 1, + sym_file_descriptor, + ACTIONS(3180), 1, sym_test_operator, - STATE(2253), 1, + STATE(629), 1, + aux_sym_command_repeat2, + STATE(1320), 1, aux_sym__literal_repeat1, - ACTIONS(2169), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3776), 2, + STATE(1424), 1, + sym_concatenation, + STATE(1425), 1, + sym_herestring_redirect, + ACTIONS(1884), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(765), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(4108), 3, + ACTIONS(3168), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(3165), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1931), 9, + STATE(1684), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -93726,17 +82818,14 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2167), 19, - anon_sym_SEMI, + ACTIONS(1443), 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, @@ -93746,50 +82835,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [22257] = 21, + [13197] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3942), 1, + ACTIONS(1551), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3944), 1, + ACTIONS(1553), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3946), 1, + ACTIONS(1555), 1, anon_sym_DOLLAR, - ACTIONS(3950), 1, + ACTIONS(1559), 1, anon_sym_DQUOTE, - ACTIONS(3952), 1, + ACTIONS(1561), 1, aux_sym_number_token1, - ACTIONS(3954), 1, + ACTIONS(1563), 1, aux_sym_number_token2, - ACTIONS(3956), 1, + ACTIONS(1565), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3958), 1, + ACTIONS(1567), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3960), 1, + ACTIONS(1569), 1, anon_sym_BQUOTE, - ACTIONS(3962), 1, + ACTIONS(1571), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3968), 1, + ACTIONS(1577), 1, + sym__bare_dollar, + ACTIONS(1579), 1, sym__brace_start, - ACTIONS(4119), 1, + ACTIONS(2465), 1, + anon_sym_LT_LT_LT, + ACTIONS(2467), 1, sym__special_character, - ACTIONS(4121), 1, + ACTIONS(2469), 1, sym_test_operator, - STATE(4348), 1, + STATE(629), 1, + aux_sym_command_repeat2, + STATE(1320), 1, aux_sym__literal_repeat1, - STATE(4860), 1, + STATE(1424), 1, sym_concatenation, - ACTIONS(2273), 2, + STATE(1425), 1, + sym_herestring_redirect, + ACTIONS(1543), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3964), 2, + ACTIONS(1573), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4117), 3, + ACTIONS(2463), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2461), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4568), 9, + STATE(1684), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -93799,18 +82899,14 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2271), 20, - anon_sym_SEMI, + ACTIONS(1541), 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, @@ -93820,32 +82916,30 @@ 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, + [13304] = 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(1663), 1, + aux_sym__literal_repeat1, + STATE(1760), 1, + sym_concatenation, + ACTIONS(2307), 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), 35, + aux_sym_heredoc_redirect_token1, + STATE(1255), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2305), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -93866,10 +82960,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, @@ -93881,50 +82977,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [22421] = 21, + [13371] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3942), 1, + ACTIONS(3186), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3944), 1, + ACTIONS(3189), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3946), 1, + ACTIONS(3192), 1, anon_sym_DOLLAR, - ACTIONS(3950), 1, + ACTIONS(3195), 1, + sym__special_character, + ACTIONS(3198), 1, anon_sym_DQUOTE, - ACTIONS(3952), 1, + ACTIONS(3201), 1, aux_sym_number_token1, - ACTIONS(3954), 1, + ACTIONS(3204), 1, aux_sym_number_token2, - ACTIONS(3956), 1, + ACTIONS(3207), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3958), 1, + ACTIONS(3210), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3960), 1, + ACTIONS(3213), 1, anon_sym_BQUOTE, - ACTIONS(3962), 1, + ACTIONS(3216), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3968), 1, - sym__brace_start, - ACTIONS(4119), 1, - sym__special_character, - ACTIONS(4125), 1, + ACTIONS(3222), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(3225), 1, sym_test_operator, - STATE(4368), 1, + ACTIONS(3228), 1, + sym__brace_start, + STATE(1721), 1, aux_sym__literal_repeat1, - STATE(4735), 1, + ACTIONS(3219), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(632), 2, sym_concatenation, - ACTIONS(2277), 2, + aux_sym_unset_command_repeat1, + ACTIONS(2328), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3964), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4123), 3, + ACTIONS(3183), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4572), 9, + STATE(1532), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -93934,7 +83034,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2275), 20, + ACTIONS(2326), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -93944,7 +83044,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -93955,50 +83054,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [22516] = 21, + [13470] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3504), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3506), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3508), 1, - anon_sym_DOLLAR, - ACTIONS(3512), 1, - anon_sym_DQUOTE, - ACTIONS(3514), 1, - aux_sym_number_token1, - ACTIONS(3516), 1, - aux_sym_number_token2, - ACTIONS(3518), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3520), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3522), 1, - anon_sym_BQUOTE, - ACTIONS(3524), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3530), 1, - sym__brace_start, - ACTIONS(4129), 1, - sym__special_character, - ACTIONS(4131), 1, - sym_test_operator, - STATE(4236), 1, + STATE(1603), 1, aux_sym__literal_repeat1, - STATE(4549), 1, + STATE(1720), 1, sym_concatenation, - ACTIONS(2273), 2, + ACTIONS(2307), 6, sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3526), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4127), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(4625), 9, + STATE(1316), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -94008,7 +83078,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2271), 20, + ACTIONS(2305), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -94029,50 +83099,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [22611] = 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, + 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(4129), 1, - sym__special_character, - ACTIONS(4135), 1, - sym_test_operator, - STATE(4265), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [13537] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(2036), 1, aux_sym__literal_repeat1, - STATE(4609), 1, + STATE(2144), 1, sym_concatenation, - ACTIONS(2277), 2, + ACTIONS(2307), 4, sym_file_descriptor, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3526), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4133), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(4627), 9, + STATE(1364), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -94082,7 +83137,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2275), 20, + ACTIONS(2305), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -94093,6 +83148,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, @@ -94102,52 +83159,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, - [22706] = 21, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [13603] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3942), 1, + ACTIONS(3241), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(3243), 1, + anon_sym_LT_LT_LT, + ACTIONS(3245), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3944), 1, + ACTIONS(3247), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3946), 1, + ACTIONS(3249), 1, anon_sym_DOLLAR, - ACTIONS(3948), 1, + ACTIONS(3251), 1, sym__special_character, - ACTIONS(3950), 1, + ACTIONS(3253), 1, anon_sym_DQUOTE, - ACTIONS(3952), 1, + ACTIONS(3255), 1, aux_sym_number_token1, - ACTIONS(3954), 1, + ACTIONS(3257), 1, aux_sym_number_token2, - ACTIONS(3956), 1, + ACTIONS(3259), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3958), 1, + ACTIONS(3261), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3960), 1, + ACTIONS(3263), 1, anon_sym_BQUOTE, - ACTIONS(3962), 1, + ACTIONS(3265), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3968), 1, - sym__brace_start, - ACTIONS(4139), 1, + ACTIONS(3269), 1, + sym_file_descriptor, + ACTIONS(3271), 1, sym_test_operator, - STATE(4348), 1, + ACTIONS(3273), 1, + sym__brace_start, + STATE(3362), 1, + aux_sym__heredoc_command, + STATE(5021), 1, aux_sym__literal_repeat1, - STATE(4860), 1, + STATE(5201), 1, sym_concatenation, - ACTIONS(3964), 2, + STATE(6667), 1, + sym__heredoc_pipeline, + STATE(6702), 1, + sym__heredoc_expression, + ACTIONS(3233), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3235), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3239), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3267), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2273), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(4137), 3, + ACTIONS(3231), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4637), 9, + STATE(5152), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3237), 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(4829), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -94157,43 +83259,24 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2271), 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, - [22801] = 8, + [13717] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2037), 1, + ACTIONS(3277), 1, anon_sym_DQUOTE, - ACTIONS(4145), 1, + ACTIONS(3281), 1, sym_variable_name, - STATE(1694), 1, + STATE(1412), 1, sym_string, - ACTIONS(4143), 2, + ACTIONS(3279), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, + ACTIONS(1197), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(4141), 8, + ts_builtin_sym_end, + ACTIONS(3275), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -94212,7 +83295,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, @@ -94224,6 +83306,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, @@ -94238,23 +83321,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [22870] = 8, + [13787] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2037), 1, + ACTIONS(3277), 1, anon_sym_DQUOTE, - ACTIONS(4145), 1, + ACTIONS(3281), 1, sym_variable_name, - STATE(1694), 1, + STATE(1412), 1, sym_string, - ACTIONS(4143), 2, + ACTIONS(3279), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 3, + ACTIONS(1191), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(4141), 8, + ts_builtin_sym_end, + ACTIONS(3275), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -94273,7 +83357,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, @@ -94285,6 +83368,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, @@ -94299,254 +83383,490 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [22939] = 8, - ACTIONS(3), 1, + [13857] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(3014), 1, - anon_sym_DQUOTE, - ACTIONS(3817), 1, - sym_variable_name, - STATE(1777), 1, - sym_string, - ACTIONS(3815), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 3, + ACTIONS(2319), 1, + ts_builtin_sym_end, + ACTIONS(2299), 23, sym_file_descriptor, + sym_variable_name, 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, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_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(2297), 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, - [23008] = 8, + [13919] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2071), 1, + ACTIONS(3243), 1, + anon_sym_LT_LT_LT, + ACTIONS(3245), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3247), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3249), 1, + anon_sym_DOLLAR, + ACTIONS(3251), 1, + sym__special_character, + ACTIONS(3253), 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(1197), 4, + ACTIONS(3255), 1, + aux_sym_number_token1, + ACTIONS(3257), 1, + aux_sym_number_token2, + ACTIONS(3259), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3261), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3263), 1, + anon_sym_BQUOTE, + ACTIONS(3265), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3269), 1, sym_file_descriptor, + ACTIONS(3271), 1, sym_test_operator, + ACTIONS(3273), 1, 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, - anon_sym_SEMI, + ACTIONS(3283), 1, + aux_sym_heredoc_redirect_token1, + STATE(3443), 1, + aux_sym__heredoc_command, + STATE(5021), 1, + aux_sym__literal_repeat1, + STATE(5201), 1, + sym_concatenation, + STATE(6401), 1, + sym__heredoc_pipeline, + STATE(6402), 1, + sym__heredoc_expression, + ACTIONS(3233), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(3235), 2, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_PIPE_AMP, + ACTIONS(3239), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3267), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3231), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(5167), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3237), 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, + STATE(4829), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [14033] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3243), 1, + anon_sym_LT_LT_LT, + ACTIONS(3245), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3247), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3249), 1, + anon_sym_DOLLAR, + ACTIONS(3251), 1, sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3253), 1, + anon_sym_DQUOTE, + ACTIONS(3255), 1, aux_sym_number_token1, + ACTIONS(3257), 1, aux_sym_number_token2, + ACTIONS(3259), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3261), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3263), 1, anon_sym_BQUOTE, + ACTIONS(3265), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3269), 1, + sym_file_descriptor, + ACTIONS(3271), 1, + sym_test_operator, + ACTIONS(3273), 1, + sym__brace_start, + ACTIONS(3285), 1, + aux_sym_heredoc_redirect_token1, + STATE(3444), 1, + aux_sym__heredoc_command, + STATE(5021), 1, + aux_sym__literal_repeat1, + STATE(5201), 1, + sym_concatenation, + STATE(6412), 1, + sym__heredoc_pipeline, + STATE(6414), 1, + sym__heredoc_expression, + ACTIONS(3233), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3235), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3239), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3267), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(3231), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [23077] = 8, + STATE(5168), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3237), 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(4829), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [14147] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3909), 1, + ACTIONS(3243), 1, + anon_sym_LT_LT_LT, + ACTIONS(3245), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3247), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3249), 1, + anon_sym_DOLLAR, + ACTIONS(3251), 1, + sym__special_character, + ACTIONS(3253), 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, + ACTIONS(3255), 1, + aux_sym_number_token1, + ACTIONS(3257), 1, + aux_sym_number_token2, + ACTIONS(3259), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3261), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3263), 1, + anon_sym_BQUOTE, + ACTIONS(3265), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3269), 1, sym_file_descriptor, + ACTIONS(3271), 1, sym_test_operator, + ACTIONS(3273), 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), 35, - anon_sym_SEMI, + ACTIONS(3287), 1, + aux_sym_heredoc_redirect_token1, + STATE(3439), 1, + aux_sym__heredoc_command, + STATE(5021), 1, + aux_sym__literal_repeat1, + STATE(5201), 1, + sym_concatenation, + STATE(7054), 1, + sym__heredoc_pipeline, + STATE(7055), 1, + sym__heredoc_expression, + ACTIONS(3233), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(3235), 2, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_PIPE_AMP, + ACTIONS(3239), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3267), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3231), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(5161), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3237), 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, + STATE(4829), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [14261] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3243), 1, anon_sym_LT_LT_LT, + ACTIONS(3245), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3247), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3249), 1, + anon_sym_DOLLAR, + ACTIONS(3251), 1, sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3253), 1, + anon_sym_DQUOTE, + ACTIONS(3255), 1, aux_sym_number_token1, + ACTIONS(3257), 1, aux_sym_number_token2, + ACTIONS(3259), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3261), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3263), 1, anon_sym_BQUOTE, + ACTIONS(3265), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [23146] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3909), 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(1191), 3, + ACTIONS(3269), 1, sym_file_descriptor, + ACTIONS(3271), 1, sym_test_operator, + ACTIONS(3273), 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(1183), 35, - anon_sym_SEMI, + ACTIONS(3289), 1, + aux_sym_heredoc_redirect_token1, + STATE(3447), 1, + aux_sym__heredoc_command, + STATE(5021), 1, + aux_sym__literal_repeat1, + STATE(5201), 1, + sym_concatenation, + STATE(6576), 1, + sym__heredoc_pipeline, + STATE(6584), 1, + sym__heredoc_expression, + ACTIONS(3233), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(3235), 2, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_PIPE_AMP, + ACTIONS(3239), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3267), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3231), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(5171), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3237), 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, + STATE(4829), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [14375] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3243), 1, anon_sym_LT_LT_LT, + ACTIONS(3245), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3247), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3249), 1, + anon_sym_DOLLAR, + ACTIONS(3251), 1, sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3253), 1, + anon_sym_DQUOTE, + ACTIONS(3255), 1, aux_sym_number_token1, + ACTIONS(3257), 1, aux_sym_number_token2, + ACTIONS(3259), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3261), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3263), 1, anon_sym_BQUOTE, + ACTIONS(3265), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3269), 1, + sym_file_descriptor, + ACTIONS(3271), 1, + sym_test_operator, + ACTIONS(3273), 1, + sym__brace_start, + ACTIONS(3291), 1, + aux_sym_heredoc_redirect_token1, + STATE(3448), 1, + aux_sym__heredoc_command, + STATE(5021), 1, + aux_sym__literal_repeat1, + STATE(5201), 1, + sym_concatenation, + STATE(6598), 1, + sym__heredoc_pipeline, + STATE(6611), 1, + sym__heredoc_expression, + ACTIONS(3233), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3235), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3239), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3267), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(3231), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [23215] = 3, + STATE(5172), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3237), 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(4829), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [14489] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(2243), 23, + ACTIONS(2303), 1, + ts_builtin_sym_end, + ACTIONS(2299), 23, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -94570,7 +83890,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(2297), 28, anon_sym_for, anon_sym_select, anon_sym_LT, @@ -94599,64 +83919,81 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - [23274] = 25, - ACTIONS(71), 1, + [14551] = 30, + ACTIONS(3), 1, sym_comment, - ACTIONS(4062), 1, - sym_word, - ACTIONS(4064), 1, + ACTIONS(3243), 1, + anon_sym_LT_LT_LT, + ACTIONS(3245), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4066), 1, + ACTIONS(3247), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4068), 1, + ACTIONS(3249), 1, anon_sym_DOLLAR, - ACTIONS(4070), 1, + ACTIONS(3251), 1, sym__special_character, - ACTIONS(4072), 1, + ACTIONS(3253), 1, anon_sym_DQUOTE, - ACTIONS(4076), 1, + ACTIONS(3255), 1, aux_sym_number_token1, - ACTIONS(4078), 1, + ACTIONS(3257), 1, aux_sym_number_token2, - ACTIONS(4080), 1, + ACTIONS(3259), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4082), 1, + ACTIONS(3261), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4084), 1, + ACTIONS(3263), 1, anon_sym_BQUOTE, - ACTIONS(4086), 1, + ACTIONS(3265), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4092), 1, - sym_variable_name, - ACTIONS(4094), 1, + ACTIONS(3269), 1, + sym_file_descriptor, + ACTIONS(3271), 1, sym_test_operator, - ACTIONS(4096), 1, + ACTIONS(3273), 1, sym__brace_start, - ACTIONS(4147), 1, - aux_sym__simple_variable_name_token1, - STATE(2610), 1, + ACTIONS(3293), 1, + aux_sym_heredoc_redirect_token1, + STATE(3451), 1, + aux_sym__heredoc_command, + STATE(5021), 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(747), 3, - sym_variable_assignment, + STATE(5201), 1, sym_concatenation, - aux_sym_declaration_command_repeat1, - ACTIONS(1694), 7, + STATE(6807), 1, + sym__heredoc_pipeline, + STATE(6808), 1, + sym__heredoc_expression, + ACTIONS(3233), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3235), 2, anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3239), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3267), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3231), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(5176), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3237), 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, - STATE(2321), 9, + anon_sym_GT_PIPE, + STATE(4829), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -94666,232 +84003,237 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1696), 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, - [23377] = 8, + [14665] = 30, 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, - 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(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, + ACTIONS(3243), 1, anon_sym_LT_LT_LT, + ACTIONS(3245), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3247), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3249), 1, + anon_sym_DOLLAR, + ACTIONS(3251), 1, sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3253), 1, + anon_sym_DQUOTE, + ACTIONS(3255), 1, aux_sym_number_token1, + ACTIONS(3257), 1, aux_sym_number_token2, + ACTIONS(3259), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3261), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3263), 1, anon_sym_BQUOTE, + ACTIONS(3265), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - 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, + ACTIONS(3269), 1, sym_file_descriptor, + ACTIONS(3271), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(3273), 1, sym__brace_start, + ACTIONS(3295), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1233), 42, - anon_sym_SEMI, + STATE(3452), 1, + aux_sym__heredoc_command, + STATE(5021), 1, + aux_sym__literal_repeat1, + STATE(5201), 1, + sym_concatenation, + STATE(6834), 1, + sym__heredoc_pipeline, + STATE(6839), 1, + sym__heredoc_expression, + ACTIONS(3233), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(3235), 2, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, + anon_sym_PIPE_AMP, + ACTIONS(3239), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3267), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3231), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(5178), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3237), 8, 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, + STATE(4829), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [14779] = 27, + ACTIONS(71), 1, + sym_comment, + ACTIONS(2675), 1, + sym_word, + ACTIONS(2679), 1, anon_sym_LT_LT_LT, + ACTIONS(2681), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2683), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(2685), 1, anon_sym_DOLLAR, + ACTIONS(2687), 1, sym__special_character, + ACTIONS(2689), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(2693), 1, aux_sym_number_token1, + ACTIONS(2695), 1, aux_sym_number_token2, + ACTIONS(2697), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(2699), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(2701), 1, anon_sym_BQUOTE, + ACTIONS(2703), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(2707), 1, + sym_test_operator, + ACTIONS(2709), 1, + sym__bare_dollar, + ACTIONS(2711), 1, + sym__brace_start, + STATE(657), 1, + aux_sym_command_repeat2, + STATE(2218), 1, + aux_sym__literal_repeat1, + STATE(2397), 1, + sym_concatenation, + STATE(2400), 1, + sym_herestring_redirect, + ACTIONS(2677), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2691), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(2705), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - 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, + ACTIONS(1537), 7, 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, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - 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_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + STATE(1979), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1539), 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, + anon_sym_LT_LT_DASH, + [14887] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3299), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3301), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3303), 1, anon_sym_DOLLAR, + ACTIONS(3305), 1, sym__special_character, + ACTIONS(3307), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3309), 1, aux_sym_number_token1, + ACTIONS(3311), 1, aux_sym_number_token2, + ACTIONS(3313), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3315), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3317), 1, anon_sym_BQUOTE, + ACTIONS(3319), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [23582] = 7, - 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, - sym_file_descriptor, + ACTIONS(3323), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(3325), 1, sym__brace_start, + STATE(4064), 1, + aux_sym__literal_repeat1, + STATE(4433), 1, + sym_concatenation, + ACTIONS(2307), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1233), 41, + ACTIONS(3321), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3297), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(4295), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2305), 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_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, @@ -94901,48 +84243,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + [14983] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3299), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3301), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3303), 1, anon_sym_DOLLAR, + ACTIONS(3305), 1, sym__special_character, + ACTIONS(3307), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3309), 1, aux_sym_number_token1, + ACTIONS(3311), 1, aux_sym_number_token2, + ACTIONS(3313), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3315), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3317), 1, anon_sym_BQUOTE, + ACTIONS(3319), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3325), 1, + sym__brace_start, + ACTIONS(3329), 1, + sym_test_operator, + STATE(4121), 1, + aux_sym__literal_repeat1, + STATE(4375), 1, + sym_concatenation, + ACTIONS(2311), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3321), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(3327), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [23648] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3642), 1, - anon_sym_DQUOTE, - ACTIONS(3980), 1, - sym_variable_name, - STATE(1912), 1, + STATE(4297), 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(1191), 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), 34, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2309), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -94952,6 +84306,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, @@ -94962,62 +84317,43 @@ 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, - [23716] = 13, + anon_sym_LT_LT_LT, + [15079] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4163), 1, - sym_variable_name, - ACTIONS(4175), 1, + STATE(2041), 1, + aux_sym__literal_repeat1, + STATE(2160), 1, + sym_concatenation, + ACTIONS(2311), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - STATE(6669), 1, - sym_subscript, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4169), 2, + STATE(1438), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2309), 37, anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(4171), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(4173), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - 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_GT_GT, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - ACTIONS(4153), 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, @@ -95025,7 +84361,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, @@ -95042,57 +84378,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [23794] = 22, - ACTIONS(71), 1, + [15145] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(4177), 1, - sym_word, - ACTIONS(4180), 1, + ACTIONS(3333), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4183), 1, + ACTIONS(3335), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4186), 1, + ACTIONS(3337), 1, anon_sym_DOLLAR, - ACTIONS(4189), 1, + ACTIONS(3339), 1, sym__special_character, - ACTIONS(4192), 1, + ACTIONS(3341), 1, anon_sym_DQUOTE, - ACTIONS(4198), 1, + ACTIONS(3343), 1, aux_sym_number_token1, - ACTIONS(4201), 1, + ACTIONS(3345), 1, aux_sym_number_token2, - ACTIONS(4204), 1, + ACTIONS(3347), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4207), 1, + ACTIONS(3349), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4210), 1, + ACTIONS(3351), 1, anon_sym_BQUOTE, - ACTIONS(4213), 1, + ACTIONS(3353), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4219), 1, + ACTIONS(3357), 1, sym_test_operator, - ACTIONS(4222), 1, + ACTIONS(3359), 1, sym__brace_start, - STATE(2496), 1, + STATE(4382), 1, aux_sym__literal_repeat1, - ACTIONS(4195), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4216), 2, + STATE(4762), 1, + sym_concatenation, + ACTIONS(2307), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3355), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(786), 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, + ACTIONS(3331), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(4164), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -95102,46 +84431,7 @@ 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, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - 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, - 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(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), 34, + ACTIONS(2305), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -95152,6 +84442,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, @@ -95161,63 +84453,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_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, - [23958] = 20, + [15241] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3942), 1, + ACTIONS(3333), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3944), 1, + ACTIONS(3335), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3946), 1, + ACTIONS(3337), 1, anon_sym_DOLLAR, - ACTIONS(3950), 1, + ACTIONS(3339), 1, + sym__special_character, + ACTIONS(3341), 1, anon_sym_DQUOTE, - ACTIONS(3952), 1, + ACTIONS(3343), 1, aux_sym_number_token1, - ACTIONS(3954), 1, + ACTIONS(3345), 1, aux_sym_number_token2, - ACTIONS(3956), 1, + ACTIONS(3347), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3958), 1, + ACTIONS(3349), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3962), 1, + ACTIONS(3351), 1, + anon_sym_BQUOTE, + ACTIONS(3353), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3968), 1, + ACTIONS(3359), 1, sym__brace_start, - ACTIONS(4227), 1, - sym__special_character, - ACTIONS(4229), 1, + ACTIONS(3363), 1, sym_test_operator, - STATE(4348), 1, + STATE(4345), 1, aux_sym__literal_repeat1, - STATE(4860), 1, + STATE(4732), 1, sym_concatenation, - ACTIONS(2273), 2, + ACTIONS(2311), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3964), 2, + ACTIONS(3355), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4225), 3, + ACTIONS(3361), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4650), 9, + STATE(4174), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -95227,7 +84506,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2271), 20, + ACTIONS(2309), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -95238,6 +84517,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, @@ -95247,72 +84528,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [24050] = 21, + [15337] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3942), 1, + ACTIONS(2198), 1, + anon_sym_DQUOTE, + ACTIONS(2202), 1, + sym_variable_name, + STATE(1014), 1, + sym_string, + ACTIONS(2200), 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(2196), 8, + 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_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(3944), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3946), 1, - anon_sym_DOLLAR, - ACTIONS(3950), 1, - anon_sym_DQUOTE, - ACTIONS(3952), 1, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(3954), 1, aux_sym_number_token2, - ACTIONS(3956), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3958), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3960), 1, anon_sym_BQUOTE, - ACTIONS(3962), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3968), 1, - sym__brace_start, - ACTIONS(4233), 1, - sym__special_character, - ACTIONS(4235), 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(4231), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(4876), 9, - sym_arithmetic_expansion, - sym_brace_expression, + [15407] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2198), 1, + anon_sym_DQUOTE, + ACTIONS(2202), 1, + sym_variable_name, + STATE(1014), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2271), 19, - anon_sym_SEMI, + ACTIONS(2200), 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(2196), 8, + 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_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_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, @@ -95321,50 +84636,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [24144] = 21, + 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, + [15477] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3942), 1, + ACTIONS(3243), 1, + anon_sym_LT_LT_LT, + ACTIONS(3245), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3944), 1, + ACTIONS(3247), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3946), 1, + ACTIONS(3249), 1, anon_sym_DOLLAR, - ACTIONS(3950), 1, + ACTIONS(3251), 1, + sym__special_character, + ACTIONS(3253), 1, anon_sym_DQUOTE, - ACTIONS(3952), 1, + ACTIONS(3255), 1, aux_sym_number_token1, - ACTIONS(3954), 1, + ACTIONS(3257), 1, aux_sym_number_token2, - ACTIONS(3956), 1, + ACTIONS(3259), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3958), 1, + ACTIONS(3261), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3960), 1, + ACTIONS(3263), 1, anon_sym_BQUOTE, - ACTIONS(3962), 1, + ACTIONS(3265), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3968), 1, - sym__brace_start, - ACTIONS(4233), 1, - sym__special_character, - ACTIONS(4239), 1, + ACTIONS(3269), 1, + sym_file_descriptor, + ACTIONS(3271), 1, sym_test_operator, - STATE(4368), 1, + ACTIONS(3273), 1, + sym__brace_start, + ACTIONS(3365), 1, + aux_sym_heredoc_redirect_token1, + STATE(3440), 1, + aux_sym__heredoc_command, + STATE(5021), 1, aux_sym__literal_repeat1, - STATE(4735), 1, + STATE(5201), 1, sym_concatenation, - ACTIONS(2277), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3964), 2, + STATE(7120), 1, + sym__heredoc_pipeline, + STATE(7121), 1, + sym__heredoc_expression, + ACTIONS(3233), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3235), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3239), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3267), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4237), 3, + ACTIONS(3231), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4880), 9, + STATE(5162), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3237), 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(4829), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -95374,68 +84736,136 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2275), 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, + [15591] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(803), 23, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [24238] = 20, - ACTIONS(3), 1, + 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(474), 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, + [15651] = 28, + ACTIONS(71), 1, sym_comment, - ACTIONS(3942), 1, + ACTIONS(3367), 1, + sym_word, + ACTIONS(3373), 1, + anon_sym_LT_LT_LT, + ACTIONS(3376), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3944), 1, + ACTIONS(3379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3946), 1, + ACTIONS(3382), 1, anon_sym_DOLLAR, - ACTIONS(3950), 1, + ACTIONS(3385), 1, + sym__special_character, + ACTIONS(3388), 1, anon_sym_DQUOTE, - ACTIONS(3952), 1, + ACTIONS(3394), 1, aux_sym_number_token1, - ACTIONS(3954), 1, + ACTIONS(3397), 1, aux_sym_number_token2, - ACTIONS(3956), 1, + ACTIONS(3400), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3958), 1, + ACTIONS(3403), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3962), 1, + ACTIONS(3406), 1, + anon_sym_BQUOTE, + ACTIONS(3409), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3968), 1, - sym__brace_start, - ACTIONS(4227), 1, - sym__special_character, - ACTIONS(4243), 1, + ACTIONS(3415), 1, + sym_file_descriptor, + ACTIONS(3418), 1, sym_test_operator, - STATE(4368), 1, + ACTIONS(3421), 1, + sym__bare_dollar, + ACTIONS(3424), 1, + sym__brace_start, + STATE(657), 1, + aux_sym_command_repeat2, + STATE(2218), 1, aux_sym__literal_repeat1, - STATE(4735), 1, + STATE(2397), 1, sym_concatenation, - ACTIONS(2277), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3964), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4241), 3, + STATE(2400), 1, + sym_herestring_redirect, + ACTIONS(3370), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(3391), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(4654), 9, + ACTIONS(3412), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1443), 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(1448), 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(1979), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -95445,45 +84875,80 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2275), 20, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, + [15761] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(803), 24, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - [24330] = 8, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(474), 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, + [15821] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4247), 1, + ACTIONS(3429), 1, anon_sym_DQUOTE, - ACTIONS(4251), 1, + ACTIONS(3433), 1, sym_variable_name, - STATE(2251), 1, + STATE(1410), 1, sym_string, - ACTIONS(4249), 2, + ACTIONS(3431), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 4, + ACTIONS(1197), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ACTIONS(4245), 8, + ACTIONS(3427), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -95492,17 +84957,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1195), 33, + ACTIONS(1195), 36, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -95511,6 +84978,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, @@ -95526,80 +84994,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [24398] = 13, - ACTIONS(3), 1, + [15891] = 27, + ACTIONS(71), 1, sym_comment, - ACTIONS(4163), 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, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - STATE(4182), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4255), 4, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(4153), 27, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, + ACTIONS(2675), 1, + sym_word, + ACTIONS(2679), 1, anon_sym_LT_LT_LT, + ACTIONS(2681), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2683), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(2685), 1, anon_sym_DOLLAR, + ACTIONS(2687), 1, sym__special_character, + ACTIONS(2689), 1, anon_sym_DQUOTE, + ACTIONS(2693), 1, + aux_sym_number_token1, + ACTIONS(2695), 1, + aux_sym_number_token2, + ACTIONS(2697), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2699), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2701), 1, + anon_sym_BQUOTE, + ACTIONS(2703), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2707), 1, + sym_test_operator, + ACTIONS(2709), 1, + sym__bare_dollar, + ACTIONS(2711), 1, + sym__brace_start, + STATE(657), 1, + aux_sym_command_repeat2, + STATE(2218), 1, + aux_sym__literal_repeat1, + STATE(2397), 1, + sym_concatenation, + STATE(2400), 1, + sym_herestring_redirect, + ACTIONS(2677), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2691), 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(2705), 2, 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, + ACTIONS(1541), 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(1979), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -95609,78 +85064,54 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(1543), 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, - [24540] = 6, + [15999] = 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(3429), 1, + anon_sym_DQUOTE, + ACTIONS(3433), 1, sym_variable_name, + STATE(1410), 1, + sym_string, + ACTIONS(3431), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1191), 3, + sym_file_descriptor, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - STATE(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, + ACTIONS(3427), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 36, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, 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, @@ -95690,12 +85121,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, @@ -95707,39 +85137,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [24604] = 6, + [16069] = 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(1765), 1, + anon_sym_DQUOTE, + ACTIONS(3439), 1, + sym_variable_name, + STATE(1297), 1, + sym_string, + ACTIONS(3437), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1197), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(237), 42, + ACTIONS(3435), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 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_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 +85184,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 +85199,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [24668] = 6, + [16139] = 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(1765), 1, + anon_sym_DQUOTE, + ACTIONS(3439), 1, sym_variable_name, + STATE(1297), 1, + sym_string, + ACTIONS(3437), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1191), 3, + sym_file_descriptor, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - STATE(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(3435), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 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, @@ -95806,12 +85246,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,97 +85261,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [24732] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2571), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2574), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2577), 1, - anon_sym_DOLLAR, - ACTIONS(2583), 1, - anon_sym_DQUOTE, - ACTIONS(2586), 1, - aux_sym_number_token1, - ACTIONS(2589), 1, - aux_sym_number_token2, - ACTIONS(2592), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2595), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2598), 1, - anon_sym_BQUOTE, - ACTIONS(2601), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2610), 1, - sym__brace_start, - ACTIONS(4262), 1, - sym__special_character, - ACTIONS(4265), 1, - sym_test_operator, - STATE(1814), 1, - aux_sym__literal_repeat1, - ACTIONS(2604), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(798), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2169), 3, - sym_file_descriptor, - sym_variable_name, - aux_sym_heredoc_redirect_token1, - ACTIONS(4259), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - 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(2167), 17, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [24826] = 8, + [16209] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4247), 1, + ACTIONS(2607), 1, anon_sym_DQUOTE, - ACTIONS(4251), 1, + ACTIONS(3445), 1, sym_variable_name, - STATE(2251), 1, + STATE(1514), 1, sym_string, - ACTIONS(4249), 2, + ACTIONS(3443), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 4, + ACTIONS(1197), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ACTIONS(4245), 8, + ACTIONS(3441), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -95922,17 +85286,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1183), 33, + ACTIONS(1195), 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_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -95941,7 +85308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -95956,76 +85323,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [24894] = 9, + [16279] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(4163), 1, - sym_variable_name, - STATE(6669), 1, - sym_subscript, - ACTIONS(4161), 2, - sym_test_operator, - sym__brace_start, - ACTIONS(4268), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(4159), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(4182), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4153), 17, + ACTIONS(3243), 1, anon_sym_LT_LT_LT, + ACTIONS(3245), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3247), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3249), 1, anon_sym_DOLLAR, + ACTIONS(3251), 1, sym__special_character, + ACTIONS(3253), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3255), 1, aux_sym_number_token1, + ACTIONS(3257), 1, aux_sym_number_token2, + ACTIONS(3259), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3261), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3263), 1, anon_sym_BQUOTE, + ACTIONS(3265), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - ACTIONS(4157), 22, - anon_sym_SEMI, + ACTIONS(3269), 1, + sym_file_descriptor, + ACTIONS(3271), 1, + sym_test_operator, + ACTIONS(3273), 1, + sym__brace_start, + ACTIONS(3447), 1, + aux_sym_heredoc_redirect_token1, + STATE(3377), 1, + aux_sym__heredoc_command, + STATE(5021), 1, + aux_sym__literal_repeat1, + STATE(5201), 1, + sym_concatenation, + STATE(6502), 1, + sym__heredoc_pipeline, + STATE(6521), 1, + sym__heredoc_expression, + ACTIONS(3233), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(3235), 2, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_PIPE_AMP, + ACTIONS(3239), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3267), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3231), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(5183), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3237), 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, - [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(4829), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -96035,137 +85407,158 @@ 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, + [16393] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3243), 1, + anon_sym_LT_LT_LT, + ACTIONS(3245), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3247), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3249), 1, anon_sym_DOLLAR, + ACTIONS(3251), 1, sym__special_character, + ACTIONS(3253), 1, + anon_sym_DQUOTE, + ACTIONS(3255), 1, aux_sym_number_token1, + ACTIONS(3257), 1, aux_sym_number_token2, + ACTIONS(3259), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3261), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(2158), 25, + ACTIONS(3263), 1, + anon_sym_BQUOTE, + ACTIONS(3265), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3269), 1, sym_file_descriptor, - sym_variable_name, + ACTIONS(3271), 1, sym_test_operator, + ACTIONS(3273), 1, sym__brace_start, + ACTIONS(3449), 1, + aux_sym_heredoc_redirect_token1, + STATE(3432), 1, + aux_sym__heredoc_command, + STATE(5021), 1, + aux_sym__literal_repeat1, + STATE(5201), 1, + sym_concatenation, + STATE(6844), 1, + sym__heredoc_pipeline, + STATE(6846), 1, + sym__heredoc_expression, + ACTIONS(3233), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + ACTIONS(3235), 2, + anon_sym_PIPE, anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, + ACTIONS(3239), 2, anon_sym_LT_AMP_DASH, anon_sym_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, + ACTIONS(3267), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [25028] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4149), 1, - aux_sym_concatenation_token1, - ACTIONS(4270), 1, - sym__concat, - STATE(804), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 5, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 42, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, + ACTIONS(3231), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(5155), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3237), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + STATE(4829), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [16507] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2981), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2983), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(2985), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(2989), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(2991), 1, aux_sym_number_token1, + ACTIONS(2993), 1, aux_sym_number_token2, + ACTIONS(2995), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(2997), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(2999), 1, anon_sym_BQUOTE, + ACTIONS(3001), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3009), 1, + sym__brace_start, + ACTIONS(3453), 1, + sym__special_character, + ACTIONS(3455), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(3457), 1, + sym_test_operator, + STATE(1802), 1, + aux_sym__literal_repeat1, + ACTIONS(2427), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3003), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(671), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(3451), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [25092] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4149), 1, - aux_sym_concatenation_token1, - ACTIONS(4272), 1, - sym__concat, - STATE(804), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 5, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 42, + STATE(1629), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2425), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -96174,56 +85567,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, + [16605] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3299), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3301), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3303), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(3307), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3309), 1, aux_sym_number_token1, + ACTIONS(3311), 1, aux_sym_number_token2, + ACTIONS(3313), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3315), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3317), 1, anon_sym_BQUOTE, + ACTIONS(3319), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3325), 1, + sym__brace_start, + ACTIONS(3461), 1, + sym__special_character, + ACTIONS(3463), 1, + sym_test_operator, + STATE(4064), 1, + aux_sym__literal_repeat1, + STATE(4433), 1, + sym_concatenation, + ACTIONS(3321), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [25156] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4274), 1, - aux_sym_concatenation_token1, - ACTIONS(4277), 1, - sym__concat, - STATE(804), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 5, + ACTIONS(2307), 3, sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 42, + ACTIONS(3459), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(4319), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2305), 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, @@ -96233,106 +85642,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + [16701] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3243), 1, + anon_sym_LT_LT_LT, + ACTIONS(3245), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3247), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3249), 1, anon_sym_DOLLAR, + ACTIONS(3251), 1, sym__special_character, + ACTIONS(3253), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3255), 1, aux_sym_number_token1, + ACTIONS(3257), 1, aux_sym_number_token2, + ACTIONS(3259), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3261), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3263), 1, anon_sym_BQUOTE, + ACTIONS(3265), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [25220] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4149), 1, - aux_sym_concatenation_token1, - ACTIONS(4151), 1, - sym__concat, - STATE(802), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1225), 5, + ACTIONS(3269), 1, sym_file_descriptor, + ACTIONS(3271), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(3273), 1, sym__brace_start, + ACTIONS(3465), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 42, - anon_sym_SEMI, + STATE(3433), 1, + aux_sym__heredoc_command, + STATE(5021), 1, + aux_sym__literal_repeat1, + STATE(5201), 1, + sym_concatenation, + STATE(6860), 1, + sym__heredoc_pipeline, + STATE(6863), 1, + sym__heredoc_expression, + ACTIONS(3233), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(3235), 2, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, + anon_sym_PIPE_AMP, + ACTIONS(3239), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3267), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3231), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(5156), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3237), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + STATE(4829), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [16815] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3299), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3301), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3303), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(3307), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3309), 1, aux_sym_number_token1, + ACTIONS(3311), 1, aux_sym_number_token2, + ACTIONS(3313), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3315), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3317), 1, anon_sym_BQUOTE, + ACTIONS(3319), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3325), 1, + sym__brace_start, + ACTIONS(3461), 1, + sym__special_character, + ACTIONS(3469), 1, + sym_test_operator, + STATE(4121), 1, + aux_sym__literal_repeat1, + STATE(4375), 1, + sym_concatenation, + ACTIONS(3321), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(2311), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(3467), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [25284] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2037), 1, - anon_sym_DQUOTE, - ACTIONS(4145), 1, - sym_variable_name, - STATE(1694), 1, + STATE(4246), 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(1197), 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), 34, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2309), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -96352,47 +85800,64 @@ 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, + [16911] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2934), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2937), 1, anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(2940), 1, + anon_sym_DOLLAR, + ACTIONS(2946), 1, + anon_sym_DQUOTE, + ACTIONS(2949), 1, aux_sym_number_token1, + ACTIONS(2952), 1, aux_sym_number_token2, + ACTIONS(2955), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(2958), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(2961), 1, anon_sym_BQUOTE, + ACTIONS(2964), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(2976), 1, + sym__brace_start, + ACTIONS(3474), 1, + sym__special_character, + ACTIONS(3477), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(3480), 1, + sym_test_operator, + STATE(1802), 1, + aux_sym__literal_repeat1, + ACTIONS(2328), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2967), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(671), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(3471), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [25352] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3089), 1, - anon_sym_DQUOTE, - ACTIONS(3986), 1, - sym_variable_name, - STATE(1710), 1, + STATE(1629), 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(1197), 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(1195), 34, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2326), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -96412,47 +85877,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, + [17009] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2981), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2983), 1, anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(2985), 1, + anon_sym_DOLLAR, + ACTIONS(2989), 1, + anon_sym_DQUOTE, + ACTIONS(2991), 1, aux_sym_number_token1, + ACTIONS(2993), 1, aux_sym_number_token2, + ACTIONS(2995), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(2997), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(3001), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3009), 1, + sym__brace_start, + ACTIONS(3453), 1, + sym__special_character, + ACTIONS(3457), 1, + sym_test_operator, + ACTIONS(3483), 1, + aux_sym__simple_variable_name_token1, + STATE(1802), 1, + aux_sym__literal_repeat1, + ACTIONS(2545), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3003), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(676), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(3451), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [25420] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3089), 1, - anon_sym_DQUOTE, - ACTIONS(3986), 1, - sym_variable_name, - STATE(1710), 1, + STATE(1629), 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), 34, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2543), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -96472,38 +85951,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [25488] = 8, + [17105] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2037), 1, + ACTIONS(2607), 1, anon_sym_DQUOTE, - ACTIONS(4145), 1, + ACTIONS(3445), 1, sym_variable_name, - STATE(1694), 1, + STATE(1514), 1, sym_string, - ACTIONS(4143), 2, + ACTIONS(3443), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, ACTIONS(1191), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(4141), 8, + ACTIONS(3441), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -96512,7 +85977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1183), 34, + ACTIONS(1183), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -96523,6 +85988,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, @@ -96547,91 +86014,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [25556] = 6, + [17175] = 24, 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, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(2164), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2166), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(2168), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(2172), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(2174), 1, aux_sym_number_token1, + ACTIONS(2176), 1, aux_sym_number_token2, + ACTIONS(2178), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(2180), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(2182), 1, anon_sym_BQUOTE, + ACTIONS(2184), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(2194), 1, + sym__brace_start, + ACTIONS(3487), 1, + sym__special_character, + ACTIONS(3489), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(3491), 1, + sym_variable_name, + ACTIONS(3493), 1, + sym_test_operator, + STATE(1567), 1, + aux_sym__literal_repeat1, + STATE(6364), 1, + sym_subscript, + ACTIONS(1585), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2186), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(3485), 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, - anon_sym_SEMI, + STATE(675), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(2148), 9, + sym_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), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_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 +86092,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + [17277] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1973), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1976), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(1979), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1985), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1988), 1, aux_sym_number_token1, + ACTIONS(1991), 1, aux_sym_number_token2, + ACTIONS(1994), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1997), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(2000), 1, anon_sym_BQUOTE, + ACTIONS(2003), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(2018), 1, + sym__brace_start, + ACTIONS(3498), 1, + sym__special_character, + ACTIONS(3501), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(3504), 1, + sym_variable_name, + ACTIONS(3507), 1, + sym_test_operator, + STATE(1567), 1, + aux_sym__literal_repeat1, + STATE(6364), 1, + sym_subscript, + ACTIONS(1705), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2006), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(3495), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [25676] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1282), 6, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 43, - anon_sym_SEMI, + STATE(675), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(2148), 9, + sym_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_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -96694,56 +86170,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, + [17379] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2981), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2983), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(2985), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(2989), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(2991), 1, aux_sym_number_token1, + ACTIONS(2993), 1, aux_sym_number_token2, + ACTIONS(2995), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(2997), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(3001), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3009), 1, + sym__brace_start, + ACTIONS(3453), 1, + sym__special_character, + ACTIONS(3455), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(3457), 1, + sym_test_operator, + STATE(1802), 1, + aux_sym__literal_repeat1, + ACTIONS(2427), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3003), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(671), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(3451), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [25733] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4284), 1, - aux_sym_concatenation_token1, - ACTIONS(4288), 1, - sym__concat, - STATE(819), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 5, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 41, + STATE(1629), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2425), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -96752,63 +86244,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [17475] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2981), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2983), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(2985), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(2989), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(2991), 1, aux_sym_number_token1, + ACTIONS(2993), 1, aux_sym_number_token2, + ACTIONS(2995), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(2997), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(2999), 1, anon_sym_BQUOTE, + ACTIONS(3001), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3009), 1, + sym__brace_start, + ACTIONS(3453), 1, + sym__special_character, + ACTIONS(3457), 1, + sym_test_operator, + ACTIONS(3510), 1, + aux_sym__simple_variable_name_token1, + STATE(1802), 1, + aux_sym__literal_repeat1, + ACTIONS(2545), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3003), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(667), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(3451), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [25796] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4296), 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, - ACTIONS(4290), 2, + STATE(1629), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2543), 19, 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_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, @@ -96816,55 +86320,42 @@ 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, - [25873] = 6, + anon_sym_LT_LT_DASH, + [17573] = 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, + STATE(1663), 1, + aux_sym__literal_repeat1, + STATE(1760), 1, + sym_concatenation, + ACTIONS(2307), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 41, + STATE(1511), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2305), 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, @@ -96890,38 +86381,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [25936] = 6, + [17639] = 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, + STATE(1643), 1, + aux_sym__literal_repeat1, + STATE(1807), 1, + sym_concatenation, + ACTIONS(2311), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4303), 41, + STATE(1520), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2309), 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, @@ -96947,38 +86441,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [25999] = 6, + [17705] = 24, 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, + ACTIONS(2164), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2166), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2168), 1, + anon_sym_DOLLAR, + ACTIONS(2172), 1, + anon_sym_DQUOTE, + ACTIONS(2174), 1, + aux_sym_number_token1, + ACTIONS(2176), 1, + aux_sym_number_token2, + ACTIONS(2178), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2180), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2182), 1, + anon_sym_BQUOTE, + ACTIONS(2184), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2194), 1, sym__brace_start, + ACTIONS(3487), 1, + sym__special_character, + ACTIONS(3491), 1, + sym_variable_name, + ACTIONS(3493), 1, + sym_test_operator, + ACTIONS(3512), 1, + aux_sym__simple_variable_name_token1, + STATE(1567), 1, + aux_sym__literal_repeat1, + STATE(6364), 1, + sym_subscript, + ACTIONS(1621), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 41, - anon_sym_SEMI, + ACTIONS(2186), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3485), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(674), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(2148), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1619), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -96987,55 +86519,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [26062] = 6, + [17807] = 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(2401), 1, + anon_sym_DQUOTE, + ACTIONS(3518), 1, + sym_variable_name, + STATE(1623), 1, + sym_string, + ACTIONS(3516), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1191), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 41, + ACTIONS(3514), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_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 +86566,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, @@ -97061,38 +86581,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [26125] = 6, + [17877] = 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(2401), 1, + anon_sym_DQUOTE, + ACTIONS(3518), 1, + sym_variable_name, + STATE(1623), 1, + sym_string, + ACTIONS(3516), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1197), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 41, + ACTIONS(3514), 8, + 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_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -97101,12 +86628,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 +86643,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [26188] = 22, - ACTIONS(71), 1, + [17947] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(4321), 1, - sym_word, - ACTIONS(4323), 1, + ACTIONS(3299), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4325), 1, + ACTIONS(3301), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4327), 1, + ACTIONS(3303), 1, anon_sym_DOLLAR, - ACTIONS(4329), 1, - sym__special_character, - ACTIONS(4331), 1, + ACTIONS(3307), 1, anon_sym_DQUOTE, - ACTIONS(4335), 1, + ACTIONS(3309), 1, aux_sym_number_token1, - ACTIONS(4337), 1, + ACTIONS(3311), 1, aux_sym_number_token2, - ACTIONS(4339), 1, + ACTIONS(3313), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4341), 1, + ACTIONS(3315), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4343), 1, - anon_sym_BQUOTE, - ACTIONS(4345), 1, + ACTIONS(3319), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4349), 1, - sym_test_operator, - ACTIONS(4351), 1, + ACTIONS(3325), 1, sym__brace_start, - STATE(2630), 1, + ACTIONS(3522), 1, + sym__special_character, + ACTIONS(3524), 1, + sym_test_operator, + STATE(4121), 1, aux_sym__literal_repeat1, - ACTIONS(4333), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4347), 2, + STATE(4375), 1, + sym_concatenation, + ACTIONS(2311), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3321), 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(3520), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(4327), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -97178,62 +86694,78 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2158), 12, - sym_file_descriptor, + ACTIONS(2309), 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, - [26283] = 22, + anon_sym_BQUOTE, + [18040] = 25, ACTIONS(71), 1, sym_comment, - ACTIONS(4321), 1, + ACTIONS(3526), 1, sym_word, - ACTIONS(4323), 1, + ACTIONS(3528), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4325), 1, + ACTIONS(3530), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4327), 1, + ACTIONS(3532), 1, anon_sym_DOLLAR, - ACTIONS(4329), 1, + ACTIONS(3534), 1, sym__special_character, - ACTIONS(4331), 1, + ACTIONS(3536), 1, anon_sym_DQUOTE, - ACTIONS(4335), 1, + ACTIONS(3540), 1, aux_sym_number_token1, - ACTIONS(4337), 1, + ACTIONS(3542), 1, aux_sym_number_token2, - ACTIONS(4339), 1, + ACTIONS(3544), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4341), 1, + ACTIONS(3546), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4343), 1, + ACTIONS(3548), 1, anon_sym_BQUOTE, - ACTIONS(4345), 1, + ACTIONS(3550), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4349), 1, + ACTIONS(3554), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(3556), 1, + sym_variable_name, + ACTIONS(3558), 1, sym_test_operator, - ACTIONS(4351), 1, + ACTIONS(3560), 1, sym__brace_start, - STATE(2630), 1, + STATE(2657), 1, aux_sym__literal_repeat1, - ACTIONS(4333), 2, + STATE(6332), 1, + sym_subscript, + ACTIONS(3538), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4347), 2, + ACTIONS(3552), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(829), 2, + STATE(694), 3, + sym_variable_assignment, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2160), 7, + aux_sym_declaration_command_repeat1, + ACTIONS(1619), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -97241,7 +86773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(2382), 9, + STATE(2199), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -97251,64 +86783,30 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2162), 12, + ACTIONS(1621), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [26378] = 21, + [18143] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3037), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3040), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3043), 1, - anon_sym_DOLLAR, - ACTIONS(3049), 1, - anon_sym_DQUOTE, - ACTIONS(3052), 1, - aux_sym_number_token1, - ACTIONS(3055), 1, - aux_sym_number_token2, - ACTIONS(3058), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3061), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3064), 1, - anon_sym_BQUOTE, - ACTIONS(3067), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3076), 1, - sym__brace_start, - ACTIONS(4356), 1, - sym__special_character, - ACTIONS(4359), 1, - sym_test_operator, - STATE(2112), 1, + STATE(2109), 1, aux_sym__literal_repeat1, - ACTIONS(2169), 2, + STATE(2232), 1, + sym_concatenation, + ACTIONS(2307), 4, sym_file_descriptor, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3070), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(822), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(4353), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2413), 9, + STATE(1562), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -97318,14 +86816,18 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2167), 17, + ACTIONS(2305), 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, @@ -97335,90 +86837,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, - [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_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(2273), 25, - sym_file_descriptor, + [18208] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3021), 1, + anon_sym_DQUOTE, + ACTIONS(3566), 1, sym_variable_name, + STATE(1695), 1, + sym_string, + ACTIONS(3564), 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(3562), 8, + 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_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, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, + sym__special_character, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [26534] = 3, + sym_word, + [18277] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, + ACTIONS(1559), 1, + anon_sym_DQUOTE, + ACTIONS(2295), 1, + sym_variable_name, + STATE(1157), 1, + sym_string, + ACTIONS(2293), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1197), 4, sym_file_descriptor, - sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 43, - anon_sym_SEMI, + ACTIONS(2291), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 34, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_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, @@ -97429,13 +86959,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, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -97447,32 +86975,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [26591] = 3, + [18346] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 6, + ACTIONS(1559), 1, + anon_sym_DQUOTE, + ACTIONS(2295), 1, + sym_variable_name, + STATE(1157), 1, + sym_string, + ACTIONS(2293), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1191), 4, sym_file_descriptor, - sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 43, - anon_sym_SEMI, + ACTIONS(2291), 8, + 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_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, @@ -97483,13 +87020,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, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -97501,38 +87036,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [26648] = 6, + [18415] = 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(2794), 1, + anon_sym_DQUOTE, + ACTIONS(3572), 1, + sym_variable_name, + STATE(1763), 1, + sym_string, + ACTIONS(3570), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1197), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 41, + ACTIONS(3568), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_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, @@ -97541,12 +87082,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 +87097,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [26711] = 21, - ACTIONS(3), 1, + [18484] = 25, + ACTIONS(71), 1, sym_comment, - ACTIONS(3006), 1, + ACTIONS(3574), 1, + sym_word, + ACTIONS(3577), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3008), 1, + ACTIONS(3580), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3010), 1, + ACTIONS(3583), 1, anon_sym_DOLLAR, - ACTIONS(3014), 1, + ACTIONS(3586), 1, + sym__special_character, + ACTIONS(3589), 1, anon_sym_DQUOTE, - ACTIONS(3016), 1, + ACTIONS(3595), 1, aux_sym_number_token1, - ACTIONS(3018), 1, + ACTIONS(3598), 1, aux_sym_number_token2, - ACTIONS(3020), 1, + ACTIONS(3601), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3022), 1, + ACTIONS(3604), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3024), 1, + ACTIONS(3607), 1, anon_sym_BQUOTE, - ACTIONS(3026), 1, + ACTIONS(3610), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3616), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(3619), 1, + sym_variable_name, + ACTIONS(3622), 1, + sym_test_operator, + ACTIONS(3625), 1, + sym__brace_start, + STATE(2657), 1, + aux_sym__literal_repeat1, + STATE(6332), 1, + sym_subscript, + ACTIONS(3592), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(3613), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(690), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + ACTIONS(1703), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(2199), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1705), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [18587] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3299), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3301), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3303), 1, + anon_sym_DOLLAR, + ACTIONS(3307), 1, + anon_sym_DQUOTE, + ACTIONS(3309), 1, + aux_sym_number_token1, + ACTIONS(3311), 1, + aux_sym_number_token2, + ACTIONS(3313), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3315), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3319), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3032), 1, + ACTIONS(3325), 1, sym__brace_start, - ACTIONS(4364), 1, + ACTIONS(3522), 1, sym__special_character, - ACTIONS(4366), 1, + ACTIONS(3630), 1, sym_test_operator, - STATE(2112), 1, + STATE(4064), 1, aux_sym__literal_repeat1, - ACTIONS(2162), 2, + STATE(4433), 1, + sym_concatenation, + ACTIONS(2307), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3028), 2, + ACTIONS(3321), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(822), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(4362), 3, + ACTIONS(3628), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(2413), 9, + STATE(4325), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -97612,14 +87226,17 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2160), 17, + ACTIONS(2305), 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, @@ -97630,38 +87247,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [26804] = 6, + anon_sym_BQUOTE, + [18680] = 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, + ACTIONS(3634), 1, + 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, + 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, - sym__bare_dollar, + ACTIONS(3660), 1, sym__brace_start, + STATE(4227), 1, + aux_sym__literal_repeat1, + STATE(4639), 1, + sym_concatenation, + ACTIONS(3656), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2307), 3, + sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4368), 41, + ACTIONS(3632), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(4356), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2305), 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, @@ -97670,66 +87322,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + [18775] = 21, + 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(3640), 1, sym__special_character, + ACTIONS(3642), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + 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(3664), 1, + sym_test_operator, + STATE(4237), 1, + aux_sym__literal_repeat1, + STATE(4677), 1, + sym_concatenation, + ACTIONS(3656), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(2311), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(3662), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [26867] = 22, + STATE(4397), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2309), 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, + [18870] = 25, ACTIONS(71), 1, sym_comment, - ACTIONS(4372), 1, + ACTIONS(3526), 1, sym_word, - ACTIONS(4375), 1, + ACTIONS(3528), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4378), 1, + ACTIONS(3530), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4381), 1, + ACTIONS(3532), 1, anon_sym_DOLLAR, - ACTIONS(4384), 1, + ACTIONS(3534), 1, sym__special_character, - ACTIONS(4387), 1, + ACTIONS(3536), 1, anon_sym_DQUOTE, - ACTIONS(4393), 1, + ACTIONS(3540), 1, aux_sym_number_token1, - ACTIONS(4396), 1, + ACTIONS(3542), 1, aux_sym_number_token2, - ACTIONS(4399), 1, + ACTIONS(3544), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4402), 1, + ACTIONS(3546), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4405), 1, + ACTIONS(3548), 1, anon_sym_BQUOTE, - ACTIONS(4408), 1, + ACTIONS(3550), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4414), 1, + ACTIONS(3556), 1, + sym_variable_name, + ACTIONS(3558), 1, sym_test_operator, - ACTIONS(4417), 1, + ACTIONS(3560), 1, sym__brace_start, - STATE(2630), 1, + ACTIONS(3666), 1, + aux_sym__simple_variable_name_token1, + STATE(2657), 1, aux_sym__literal_repeat1, - ACTIONS(4390), 2, + STATE(6332), 1, + sym_subscript, + ACTIONS(3538), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4411), 2, + ACTIONS(3552), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(829), 2, + STATE(690), 3, + sym_variable_assignment, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2167), 7, + aux_sym_declaration_command_repeat1, + ACTIONS(1583), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -97737,7 +87453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(2382), 9, + STATE(2199), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -97747,52 +87463,52 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2169), 12, + ACTIONS(1585), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [26962] = 7, + [18973] = 6, 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, + STATE(2121), 1, + aux_sym__literal_repeat1, + STATE(2242), 1, + sym_concatenation, + ACTIONS(2311), 4, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1233), 40, + STATE(1676), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2309), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -97801,7 +87517,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, @@ -97818,38 +87533,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [27027] = 6, + [19038] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(2319), 1, + anon_sym_BQUOTE, + ACTIONS(2299), 22, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2297), 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, + [19099] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(2303), 1, + anon_sym_BQUOTE, + ACTIONS(2299), 22, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2297), 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, + [19160] = 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(2794), 1, + anon_sym_DQUOTE, + ACTIONS(3572), 1, + sym_variable_name, + STATE(1763), 1, + sym_string, + ACTIONS(3570), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1191), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 41, + ACTIONS(3568), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_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, @@ -97858,12 +87693,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 +87708,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [27090] = 3, + [19229] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 6, + ACTIONS(2172), 1, + anon_sym_DQUOTE, + ACTIONS(3672), 1, + sym_variable_name, + STATE(1426), 1, + sym_string, + ACTIONS(3670), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1197), 3, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 43, + ACTIONS(3668), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_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, @@ -97911,13 +87754,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 +87769,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [27147] = 6, + [19298] = 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(2989), 1, + anon_sym_DQUOTE, + ACTIONS(3678), 1, + sym_variable_name, + STATE(1607), 1, + sym_string, + ACTIONS(3676), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1197), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 41, + ACTIONS(3674), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_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, @@ -97969,12 +87815,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 +87830,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [27210] = 3, + [19367] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, + STATE(2060), 1, + aux_sym__literal_repeat1, + STATE(2266), 1, + sym_concatenation, + ACTIONS(2311), 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(1292), 43, + STATE(1564), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2309), 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_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -98022,13 +87873,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [19432] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(2299), 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, - 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, + ACTIONS(2297), 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, + [19491] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2989), 1, anon_sym_DQUOTE, + ACTIONS(3678), 1, + sym_variable_name, + STATE(1607), 1, + sym_string, + ACTIONS(3676), 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(3674), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 35, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -98040,36 +88006,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [27267] = 6, + [19560] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4431), 1, - aux_sym_concatenation_token1, - ACTIONS(4434), 1, - sym__concat, - STATE(835), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 5, + ACTIONS(3682), 1, + anon_sym_DQUOTE, + ACTIONS(3686), 1, + sym_variable_name, + STATE(2037), 1, + sym_string, + ACTIONS(3684), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1197), 4, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 41, - anon_sym_SEMI, + ACTIONS(3680), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 34, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_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, @@ -98083,9 +88055,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, @@ -98097,32 +88067,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [27330] = 3, + [19629] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 6, + ACTIONS(3682), 1, + anon_sym_DQUOTE, + ACTIONS(3686), 1, + sym_variable_name, + STATE(2037), 1, + sym_string, + ACTIONS(3684), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1191), 4, sym_file_descriptor, - sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 43, - anon_sym_SEMI, + ACTIONS(3680), 8, + 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_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, @@ -98136,10 +88116,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, @@ -98151,34 +88128,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [27387] = 3, + [19698] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, + ACTIONS(2087), 1, + anon_sym_DQUOTE, + ACTIONS(3692), 1, + sym_variable_name, + STATE(1355), 1, + sym_string, + ACTIONS(3690), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1197), 4, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 43, + ts_builtin_sym_end, + ACTIONS(3688), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 34, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -98187,13 +88174,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, @@ -98205,38 +88189,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [27444] = 6, + [19767] = 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(4439), 5, + ACTIONS(2172), 1, + anon_sym_DQUOTE, + ACTIONS(3672), 1, + sym_variable_name, + STATE(1426), 1, + sym_string, + ACTIONS(3670), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1191), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 41, + ACTIONS(3668), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_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, @@ -98245,12 +88235,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, @@ -98262,38 +88250,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [27507] = 6, + [19836] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4284), 1, - aux_sym_concatenation_token1, - ACTIONS(4286), 1, - sym__concat, - STATE(815), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4443), 5, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, + ACTIONS(3299), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3301), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3303), 1, + anon_sym_DOLLAR, + ACTIONS(3307), 1, + anon_sym_DQUOTE, + ACTIONS(3309), 1, + aux_sym_number_token1, + ACTIONS(3311), 1, + aux_sym_number_token2, + ACTIONS(3313), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3315), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3317), 1, + anon_sym_BQUOTE, + ACTIONS(3319), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3325), 1, sym__brace_start, + ACTIONS(3696), 1, + sym__special_character, + ACTIONS(3698), 1, + sym_test_operator, + STATE(4064), 1, + aux_sym__literal_repeat1, + STATE(4433), 1, + sym_concatenation, + ACTIONS(2307), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4441), 41, + ACTIONS(3321), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3694), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(4447), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2305), 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, @@ -98303,54 +88324,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + [19931] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3299), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3301), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3303), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(3307), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3309), 1, aux_sym_number_token1, + ACTIONS(3311), 1, aux_sym_number_token2, + ACTIONS(3313), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3315), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3317), 1, anon_sym_BQUOTE, + ACTIONS(3319), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3325), 1, + sym__brace_start, + ACTIONS(3696), 1, + sym__special_character, + ACTIONS(3702), 1, + sym_test_operator, + STATE(4121), 1, + aux_sym__literal_repeat1, + STATE(4375), 1, + sym_concatenation, + ACTIONS(2311), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3321), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(3700), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [27570] = 6, + STATE(4449), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2309), 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, + [20026] = 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(2087), 1, + anon_sym_DQUOTE, + ACTIONS(3692), 1, + sym_variable_name, + STATE(1355), 1, + sym_string, + ACTIONS(3690), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1191), 4, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 41, + ts_builtin_sym_end, + ACTIONS(3688), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 34, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_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 +88444,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 +88459,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [27633] = 3, + [20095] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(3021), 1, + anon_sym_DQUOTE, + ACTIONS(3566), 1, + sym_variable_name, + STATE(1695), 1, + sym_string, + ACTIONS(3564), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1197), 4, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 43, + ts_builtin_sym_end, + ACTIONS(3562), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 34, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -98412,13 +88505,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, @@ -98430,15 +88520,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [27690] = 6, - ACTIONS(71), 1, + [20164] = 21, + ACTIONS(3), 1, sym_comment, - STATE(2634), 1, + 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(3706), 1, + sym__special_character, + ACTIONS(3708), 1, + sym_test_operator, + STATE(4227), 1, aux_sym__literal_repeat1, - STATE(850), 2, + STATE(4639), 1, sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2335), 9, + ACTIONS(2307), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3656), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3704), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(4407), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -98448,92 +88573,71 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2156), 12, + ACTIONS(2305), 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_AMP_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_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [27753] = 22, + [20259] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3081), 1, + ACTIONS(3634), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3083), 1, + ACTIONS(3636), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3085), 1, + ACTIONS(3638), 1, anon_sym_DOLLAR, - ACTIONS(3089), 1, + ACTIONS(3642), 1, anon_sym_DQUOTE, - ACTIONS(3091), 1, + ACTIONS(3644), 1, aux_sym_number_token1, - ACTIONS(3093), 1, + ACTIONS(3646), 1, aux_sym_number_token2, - ACTIONS(3095), 1, + ACTIONS(3648), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3097), 1, + ACTIONS(3650), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3099), 1, + ACTIONS(3652), 1, anon_sym_BQUOTE, - ACTIONS(3101), 1, + ACTIONS(3654), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3109), 1, + ACTIONS(3660), 1, sym__brace_start, - ACTIONS(4447), 1, + ACTIONS(3706), 1, sym__special_character, - ACTIONS(4449), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(4451), 1, + ACTIONS(3712), 1, sym_test_operator, - STATE(2045), 1, + STATE(4237), 1, aux_sym__literal_repeat1, - ACTIONS(2327), 2, + STATE(4677), 1, + sym_concatenation, + ACTIONS(2311), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3103), 2, + ACTIONS(3656), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(851), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(4445), 3, + ACTIONS(3710), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(2393), 9, + STATE(4409), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -98543,14 +88647,18 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2325), 16, + ACTIONS(2309), 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, @@ -98560,157 +88668,285 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [27848] = 6, - ACTIONS(71), 1, + [20354] = 8, + ACTIONS(3), 1, sym_comment, - STATE(2634), 1, - aux_sym__literal_repeat1, - STATE(850), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2335), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(3429), 1, + anon_sym_DQUOTE, + ACTIONS(3433), 1, + sym_variable_name, + STATE(1410), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2160), 12, + ACTIONS(3431), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1197), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(3427), 8, + 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_DOLLAR, + 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, - ACTIONS(2162), 25, - sym_file_descriptor, + [20423] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_DQUOTE, + ACTIONS(3718), 1, sym_variable_name, + STATE(1911), 1, + sym_string, + ACTIONS(3716), 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(3714), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 34, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + aux_sym_heredoc_redirect_token1, 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, - [27911] = 6, - ACTIONS(71), 1, + sym_word, + [20492] = 8, + ACTIONS(3), 1, sym_comment, - STATE(2544), 1, - aux_sym__literal_repeat1, - STATE(2677), 1, - sym_concatenation, - STATE(2250), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(3429), 1, + anon_sym_DQUOTE, + ACTIONS(3433), 1, + sym_variable_name, + STATE(1410), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2275), 13, + ACTIONS(3431), 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(3427), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 35, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_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, + 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, - ACTIONS(2277), 25, - sym_file_descriptor, + [20561] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + anon_sym_DQUOTE, + ACTIONS(3718), 1, sym_variable_name, + STATE(1911), 1, + sym_string, + ACTIONS(3716), 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(3714), 8, + 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_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, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, + sym__special_character, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [27974] = 10, + sym_word, + [20630] = 6, 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, + STATE(2053), 1, + aux_sym__literal_repeat1, + STATE(2303), 1, + sym_concatenation, + ACTIONS(2307), 5, 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, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + STATE(1622), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2305), 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_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,7 +88954,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, @@ -98735,34 +88971,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [28045] = 3, + [20695] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, + ACTIONS(2794), 1, + anon_sym_DQUOTE, + ACTIONS(3572), 1, + sym_variable_name, + STATE(1763), 1, + sym_string, + ACTIONS(3570), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1191), 3, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 43, + ACTIONS(3568), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 34, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -98771,13 +89016,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, @@ -98789,34 +89031,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [28102] = 3, + [20763] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + STATE(2109), 1, + aux_sym__literal_repeat1, + STATE(2232), 1, + sym_concatenation, + ACTIONS(2307), 4, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 43, + STATE(1967), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2305), 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_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -98825,10 +89073,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, @@ -98843,38 +89089,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [28159] = 6, + [20827] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4423), 1, - aux_sym_concatenation_token1, - ACTIONS(4425), 1, - sym__concat, - STATE(831), 1, - aux_sym_concatenation_repeat1, - ACTIONS(276), 5, + STATE(2121), 1, + aux_sym__literal_repeat1, + STATE(2242), 1, + sym_concatenation, + ACTIONS(2311), 4, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(237), 41, + STATE(1969), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2309), 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_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -98883,7 +89131,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, @@ -98900,57 +89147,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [28222] = 22, + [20891] = 30, ACTIONS(71), 1, sym_comment, - ACTIONS(4453), 1, + ACTIONS(2037), 1, + anon_sym_PIPE, + ACTIONS(3720), 1, sym_word, - ACTIONS(4456), 1, + ACTIONS(3724), 1, + anon_sym_LT_LT, + ACTIONS(3730), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3732), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4459), 1, + ACTIONS(3734), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4462), 1, + ACTIONS(3736), 1, anon_sym_DOLLAR, - ACTIONS(4465), 1, + ACTIONS(3738), 1, sym__special_character, - ACTIONS(4468), 1, + ACTIONS(3740), 1, anon_sym_DQUOTE, - ACTIONS(4474), 1, + ACTIONS(3744), 1, aux_sym_number_token1, - ACTIONS(4477), 1, + ACTIONS(3746), 1, aux_sym_number_token2, - ACTIONS(4480), 1, + ACTIONS(3748), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4483), 1, + ACTIONS(3750), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4486), 1, + ACTIONS(3752), 1, anon_sym_BQUOTE, - ACTIONS(4489), 1, + ACTIONS(3754), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4495), 1, + ACTIONS(3758), 1, + sym_file_descriptor, + ACTIONS(3760), 1, sym_test_operator, - ACTIONS(4498), 1, + ACTIONS(3762), 1, sym__brace_start, - STATE(2634), 1, + STATE(729), 1, + aux_sym_redirected_statement_repeat1, + STATE(2733), 1, aux_sym__literal_repeat1, - ACTIONS(4471), 2, + STATE(2959), 1, + sym_concatenation, + ACTIONS(3728), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3742), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4492), 2, + ACTIONS(3756), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(850), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2167), 7, - anon_sym_PIPE, + STATE(2958), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(3726), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(2045), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + ACTIONS(3722), 5, 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, + STATE(2380), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -98960,66 +89229,110 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2169), 12, - sym_file_descriptor, + [21003] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3766), 1, + anon_sym_DQUOTE, + ACTIONS(3770), 1, sym_variable_name, + STATE(2132), 1, + sym_string, + ACTIONS(3768), 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(3764), 8, + 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, - [28317] = 22, + 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, + [21071] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2959), 1, + ACTIONS(3634), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2962), 1, + ACTIONS(3636), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2965), 1, + ACTIONS(3638), 1, anon_sym_DOLLAR, - ACTIONS(2971), 1, + ACTIONS(3642), 1, anon_sym_DQUOTE, - ACTIONS(2974), 1, + ACTIONS(3644), 1, aux_sym_number_token1, - ACTIONS(2977), 1, + ACTIONS(3646), 1, aux_sym_number_token2, - ACTIONS(2980), 1, + ACTIONS(3648), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2983), 1, + ACTIONS(3650), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2986), 1, + ACTIONS(3652), 1, anon_sym_BQUOTE, - ACTIONS(2989), 1, + ACTIONS(3654), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3001), 1, + ACTIONS(3660), 1, sym__brace_start, - ACTIONS(4504), 1, + ACTIONS(3774), 1, sym__special_character, - ACTIONS(4507), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(4510), 1, + ACTIONS(3776), 1, sym_test_operator, - STATE(2045), 1, + STATE(4227), 1, aux_sym__literal_repeat1, - ACTIONS(2456), 2, + STATE(4639), 1, + sym_concatenation, + ACTIONS(2307), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2992), 2, + ACTIONS(3656), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(851), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(4501), 3, + ACTIONS(3772), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(2393), 9, + STATE(4698), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -99029,14 +89342,17 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2454), 16, + ACTIONS(2305), 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, @@ -99046,34 +89362,71 @@ 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, + [21165] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 6, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, + 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(3774), 1, + sym__special_character, + ACTIONS(3780), 1, + sym_test_operator, + STATE(4237), 1, + aux_sym__literal_repeat1, + STATE(4677), 1, + sym_concatenation, + ACTIONS(2311), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 43, + ACTIONS(3656), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3778), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(4700), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2309), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -99082,35 +89435,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [28469] = 3, + [21259] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 6, - sym_file_descriptor, + ACTIONS(3782), 1, + aux_sym_concatenation_token1, + ACTIONS(3784), 1, sym__concat, + STATE(743), 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(1213), 43, + ACTIONS(1233), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -99139,7 +89479,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, @@ -99154,51 +89493,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [28526] = 21, - ACTIONS(3), 1, + [21323] = 30, + ACTIONS(71), 1, sym_comment, - ACTIONS(3006), 1, + ACTIONS(2233), 1, + anon_sym_PIPE, + ACTIONS(3786), 1, + sym_word, + ACTIONS(3792), 1, + anon_sym_LT_LT, + ACTIONS(3801), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3804), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3008), 1, + ACTIONS(3807), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3010), 1, + ACTIONS(3810), 1, anon_sym_DOLLAR, - ACTIONS(3014), 1, + ACTIONS(3813), 1, + sym__special_character, + ACTIONS(3816), 1, anon_sym_DQUOTE, - ACTIONS(3016), 1, + ACTIONS(3822), 1, aux_sym_number_token1, - ACTIONS(3018), 1, + ACTIONS(3825), 1, aux_sym_number_token2, - ACTIONS(3020), 1, + ACTIONS(3828), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3022), 1, + ACTIONS(3831), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3024), 1, + ACTIONS(3834), 1, anon_sym_BQUOTE, - ACTIONS(3026), 1, + ACTIONS(3837), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3032), 1, - sym__brace_start, - ACTIONS(4364), 1, - sym__special_character, - ACTIONS(4366), 1, + ACTIONS(3843), 1, + sym_file_descriptor, + ACTIONS(3846), 1, sym_test_operator, - STATE(2112), 1, + ACTIONS(3849), 1, + sym__brace_start, + STATE(727), 1, + aux_sym_redirected_statement_repeat1, + STATE(2733), 1, aux_sym__literal_repeat1, - ACTIONS(2158), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3028), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(822), 2, + STATE(2959), 1, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(4362), 3, + ACTIONS(3798), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3819), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(2413), 9, + ACTIONS(3840), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2958), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(3795), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(2244), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + ACTIONS(3789), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(2380), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -99208,64 +89575,40 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2156), 17, + [21435] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3782), 1, + aux_sym_concatenation_token1, + ACTIONS(3784), 1, + sym__concat, + ACTIONS(3852), 1, + anon_sym_LPAREN, + STATE(743), 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), 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_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [28619] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4298), 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, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(4255), 3, + 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(4153), 27, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -99273,6 +89616,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, @@ -99290,38 +89634,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [28696] = 6, + [21501] = 30, + ACTIONS(71), 1, + sym_comment, + ACTIONS(2206), 1, + anon_sym_PIPE, + ACTIONS(3720), 1, + sym_word, + ACTIONS(3724), 1, + anon_sym_LT_LT, + ACTIONS(3730), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3732), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3734), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3736), 1, + anon_sym_DOLLAR, + ACTIONS(3738), 1, + sym__special_character, + ACTIONS(3740), 1, + anon_sym_DQUOTE, + ACTIONS(3744), 1, + aux_sym_number_token1, + ACTIONS(3746), 1, + aux_sym_number_token2, + ACTIONS(3748), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3750), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3752), 1, + anon_sym_BQUOTE, + ACTIONS(3754), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3758), 1, + sym_file_descriptor, + ACTIONS(3760), 1, + sym_test_operator, + ACTIONS(3762), 1, + sym__brace_start, + STATE(727), 1, + aux_sym_redirected_statement_repeat1, + STATE(2733), 1, + aux_sym__literal_repeat1, + STATE(2959), 1, + sym_concatenation, + ACTIONS(3728), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3742), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(3756), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2958), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(3726), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(2208), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + ACTIONS(3722), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(2380), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [21613] = 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(4519), 5, + ACTIONS(2989), 1, + anon_sym_DQUOTE, + ACTIONS(3678), 1, + sym_variable_name, + STATE(1607), 1, + sym_string, + ACTIONS(3676), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1191), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4517), 41, + ACTIONS(3674), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 34, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -99330,12 +89761,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, @@ -99347,17 +89776,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [28759] = 3, + [21681] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 6, - sym_file_descriptor, + ACTIONS(3782), 1, + aux_sym_concatenation_token1, + ACTIONS(3784), 1, sym__concat, + STATE(742), 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(1252), 43, + ACTIONS(237), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -99386,7 +89820,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, @@ -99401,34 +89834,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [28816] = 3, + [21745] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, + 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(3654), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3660), 1, sym__brace_start, + ACTIONS(3857), 1, + sym__special_character, + ACTIONS(3859), 1, + sym_test_operator, + STATE(4237), 1, + aux_sym__literal_repeat1, + STATE(4677), 1, + sym_concatenation, + ACTIONS(2311), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 43, + ACTIONS(3656), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3855), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(4486), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2309), 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, @@ -99437,52 +89905,123 @@ static const uint16_t ts_small_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, + [21837] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2244), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(2876), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2879), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(2882), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(2888), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(2891), 1, aux_sym_number_token1, + ACTIONS(2894), 1, aux_sym_number_token2, + ACTIONS(2897), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(2900), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(2903), 1, anon_sym_BQUOTE, + ACTIONS(2906), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(2918), 1, + sym__brace_start, + ACTIONS(3870), 1, + sym__special_character, + ACTIONS(3873), 1, + sym_file_descriptor, + ACTIONS(3876), 1, + sym_test_operator, + STATE(733), 1, + aux_sym_redirected_statement_repeat1, + STATE(2070), 1, + aux_sym__literal_repeat1, + STATE(2172), 1, + sym_concatenation, + ACTIONS(2870), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(2909), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(3867), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(2171), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(3861), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [28873] = 3, + ACTIONS(2233), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3864), 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(2396), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [21943] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, + ACTIONS(2989), 1, + anon_sym_DQUOTE, + ACTIONS(3678), 1, + sym_variable_name, + STATE(1607), 1, + sym_string, + ACTIONS(3676), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1197), 3, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 43, + ACTIONS(3674), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 34, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -99491,13 +90030,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, @@ -99509,45 +90045,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [28930] = 9, + [22011] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4298), 1, + ACTIONS(2172), 1, + anon_sym_DQUOTE, + ACTIONS(3672), 1, sym_variable_name, - STATE(6702), 1, - sym_subscript, - ACTIONS(4161), 2, + STATE(1426), 1, + sym_string, + ACTIONS(3670), 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(4268), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(4174), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(4358), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4153), 17, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + ACTIONS(3668), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - ACTIONS(4157), 21, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 34, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -99558,8 +90081,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, @@ -99569,34 +90090,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [28999] = 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, + [22079] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 6, + ACTIONS(2172), 1, + anon_sym_DQUOTE, + ACTIONS(3672), 1, + sym_variable_name, + STATE(1426), 1, + sym_string, + ACTIONS(3670), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1191), 3, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 43, + ACTIONS(3668), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 34, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -99605,13 +90150,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, @@ -99623,32 +90165,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [29056] = 3, + [22147] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 6, + ACTIONS(2045), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(2786), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2788), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2790), 1, + anon_sym_DOLLAR, + ACTIONS(2794), 1, + anon_sym_DQUOTE, + ACTIONS(2796), 1, + aux_sym_number_token1, + ACTIONS(2798), 1, + aux_sym_number_token2, + ACTIONS(2800), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2802), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2804), 1, + anon_sym_BQUOTE, + ACTIONS(2806), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2814), 1, + sym__brace_start, + ACTIONS(3885), 1, + sym__special_character, + ACTIONS(3887), 1, + sym_file_descriptor, + ACTIONS(3889), 1, + sym_test_operator, + STATE(741), 1, + aux_sym_redirected_statement_repeat1, + STATE(2070), 1, + aux_sym__literal_repeat1, + STATE(2172), 1, + sym_concatenation, + ACTIONS(2782), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(2808), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3883), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(2171), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(3879), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(2037), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3881), 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(2396), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [22253] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3766), 1, + anon_sym_DQUOTE, + ACTIONS(3770), 1, + sym_variable_name, + STATE(2132), 1, + sym_string, + ACTIONS(3768), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1197), 4, sym_file_descriptor, - sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 43, - anon_sym_SEMI, + ACTIONS(3764), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 33, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -99662,10 +90292,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, @@ -99677,53 +90304,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [29113] = 22, + [22321] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3081), 1, + ACTIONS(3634), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3083), 1, + ACTIONS(3636), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3085), 1, + ACTIONS(3638), 1, anon_sym_DOLLAR, - ACTIONS(3089), 1, + ACTIONS(3642), 1, anon_sym_DQUOTE, - ACTIONS(3091), 1, + ACTIONS(3644), 1, aux_sym_number_token1, - ACTIONS(3093), 1, + ACTIONS(3646), 1, aux_sym_number_token2, - ACTIONS(3095), 1, + ACTIONS(3648), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3097), 1, + ACTIONS(3650), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3099), 1, - anon_sym_BQUOTE, - ACTIONS(3101), 1, + ACTIONS(3654), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3109), 1, + ACTIONS(3660), 1, sym__brace_start, - ACTIONS(4447), 1, + ACTIONS(3857), 1, sym__special_character, - ACTIONS(4451), 1, + ACTIONS(3893), 1, sym_test_operator, - ACTIONS(4521), 1, - aux_sym__simple_variable_name_token1, - STATE(2045), 1, + STATE(4227), 1, aux_sym__literal_repeat1, - ACTIONS(2283), 2, + STATE(4639), 1, + sym_concatenation, + ACTIONS(2307), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3103), 2, + ACTIONS(3656), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(843), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(4445), 3, + ACTIONS(3891), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(2393), 9, + STATE(4484), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -99733,14 +90355,17 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2281), 16, + ACTIONS(2305), 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,37 +90375,43 @@ 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, + [22413] = 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(2794), 1, + anon_sym_DQUOTE, + ACTIONS(3572), 1, sym_variable_name, + STATE(1763), 1, + sym_string, + ACTIONS(3570), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1197), 3, + sym_file_descriptor, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - STATE(2290), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2271), 33, + ACTIONS(3568), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 34, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -99790,12 +90421,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, @@ -99807,22 +90436,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [29271] = 6, + [22481] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2208), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(2786), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2788), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2790), 1, + anon_sym_DOLLAR, + ACTIONS(2794), 1, + anon_sym_DQUOTE, + ACTIONS(2796), 1, + aux_sym_number_token1, + ACTIONS(2798), 1, + aux_sym_number_token2, + ACTIONS(2800), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2802), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2804), 1, + anon_sym_BQUOTE, + ACTIONS(2806), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2814), 1, + sym__brace_start, + ACTIONS(3885), 1, + sym__special_character, + ACTIONS(3887), 1, + sym_file_descriptor, + ACTIONS(3889), 1, + sym_test_operator, + STATE(733), 1, + aux_sym_redirected_statement_repeat1, + STATE(2070), 1, + aux_sym__literal_repeat1, + STATE(2172), 1, + sym_concatenation, + ACTIONS(2782), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(2808), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3883), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(2171), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(3879), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(2206), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3881), 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(2396), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [22587] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4423), 1, + ACTIONS(3782), 1, aux_sym_concatenation_token1, - ACTIONS(4425), 1, + ACTIONS(3895), 1, sym__concat, - STATE(833), 1, + STATE(744), 1, aux_sym_concatenation_repeat1, - ACTIONS(1240), 5, + ACTIONS(1209), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1233), 41, + ACTIONS(1207), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -99834,6 +90542,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 +90573,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [29334] = 6, + [22651] = 6, ACTIONS(3), 1, sym_comment, - STATE(1885), 1, - aux_sym__literal_repeat1, - STATE(2158), 1, - sym_concatenation, - ACTIONS(2277), 5, + ACTIONS(3782), 1, + aux_sym_concatenation_token1, + ACTIONS(3897), 1, + sym__concat, + STATE(744), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - 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(1213), 42, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -99921,17 +90631,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [29397] = 3, + [22715] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 6, - sym_file_descriptor, + ACTIONS(3899), 1, + aux_sym_concatenation_token1, + ACTIONS(3902), 1, sym__concat, + STATE(744), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1221), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 43, + ACTIONS(1219), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -99960,7 +90675,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, @@ -99975,45 +90689,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [29454] = 13, + [22779] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4523), 1, - ts_builtin_sym_end, - ACTIONS(4531), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4533), 1, - sym_variable_name, - STATE(6675), 1, - sym_subscript, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4527), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(4529), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(4341), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4161), 3, + ACTIONS(3782), 1, + aux_sym_concatenation_token1, + ACTIONS(3784), 1, + sym__concat, + STATE(742), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1231), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(4525), 3, + aux_sym_heredoc_redirect_token1, + ACTIONS(1229), 42, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4645), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4153), 27, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_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, @@ -100021,6 +90729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -100038,113 +90747,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [29530] = 6, - ACTIONS(71), 1, - sym_comment, - STATE(2611), 1, - aux_sym__literal_repeat1, - STATE(2833), 1, - sym_concatenation, - STATE(2419), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2275), 12, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(2277), 25, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [29592] = 22, - ACTIONS(71), 1, + [22843] = 22, + ACTIONS(3), 1, sym_comment, - ACTIONS(4536), 1, - sym_word, - ACTIONS(4538), 1, + ACTIONS(2981), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4540), 1, + ACTIONS(2983), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4542), 1, + ACTIONS(2985), 1, anon_sym_DOLLAR, - ACTIONS(4544), 1, - sym__special_character, - ACTIONS(4546), 1, + ACTIONS(2989), 1, anon_sym_DQUOTE, - ACTIONS(4550), 1, + ACTIONS(2991), 1, aux_sym_number_token1, - ACTIONS(4552), 1, + ACTIONS(2993), 1, aux_sym_number_token2, - ACTIONS(4554), 1, + ACTIONS(2995), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4556), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4558), 1, + ACTIONS(2999), 1, anon_sym_BQUOTE, - ACTIONS(4560), 1, + ACTIONS(3001), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4564), 1, - sym_test_operator, - ACTIONS(4566), 1, + ACTIONS(3009), 1, sym__brace_start, - STATE(2975), 1, + ACTIONS(3907), 1, + sym__special_character, + ACTIONS(3909), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(3911), 1, + sym_test_operator, + STATE(1802), 1, aux_sym__literal_repeat1, - ACTIONS(4548), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4562), 2, + ACTIONS(2545), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3003), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(872), 2, + STATE(775), 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, + aux_sym_unset_command_repeat1, + ACTIONS(3905), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(2306), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -100154,198 +90803,109 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2158), 11, - sym_file_descriptor, + ACTIONS(2543), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [29686] = 22, - ACTIONS(71), 1, + [22938] = 3, + 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, + ACTIONS(1254), 6, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(4566), 1, + sym__bare_dollar, 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, + aux_sym_heredoc_redirect_token1, + ACTIONS(1252), 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_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, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [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, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(4580), 1, sym__special_character, - ACTIONS(4583), 1, anon_sym_DQUOTE, - ACTIONS(4589), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(4592), 1, aux_sym_number_token2, - ACTIONS(4595), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4598), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4601), 1, anon_sym_BQUOTE, - ACTIONS(4604), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4610), 1, - sym_test_operator, - ACTIONS(4613), 1, - sym__brace_start, - STATE(2975), 1, - aux_sym__literal_repeat1, - ACTIONS(4586), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4607), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(872), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2167), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(2540), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2169), 11, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [29874] = 10, + sym_word, + [22995] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4159), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4616), 1, - sym_variable_name, - STATE(6703), 1, - sym_subscript, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(4436), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4161), 3, + ACTIONS(3917), 1, + aux_sym_concatenation_token1, + ACTIONS(3919), 1, + sym__concat, + STATE(753), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3915), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - STATE(4669), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4155), 8, + aux_sym_heredoc_redirect_token1, + ACTIONS(3913), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_LT_LT_DASH, - ACTIONS(4153), 27, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -100353,6 +90913,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 +90931,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [29944] = 8, + [23058] = 3, 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(1270), 6, sym_file_descriptor, + sym__concat, 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(1268), 43, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -100416,7 +90970,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -100428,41 +90985,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [30010] = 8, + [23115] = 3, 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(1274), 6, sym_file_descriptor, + sym__concat, 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(1272), 43, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -100474,7 +91024,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -100486,95 +91039,17 @@ 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, + [23172] = 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(1225), 5, + ACTIONS(1278), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 40, + ACTIONS(1276), 43, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -100586,8 +91061,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, @@ -100601,6 +91078,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, @@ -100615,22 +91093,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [30234] = 6, + [23229] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4665), 1, + ACTIONS(3917), 1, aux_sym_concatenation_token1, - ACTIONS(4667), 1, + ACTIONS(3921), 1, sym__concat, - STATE(907), 1, + STATE(755), 1, aux_sym_concatenation_repeat1, - ACTIONS(4282), 5, + ACTIONS(1209), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 40, + ACTIONS(1207), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -100641,6 +91119,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,22 +91150,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [30296] = 6, + [23292] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4665), 1, + ACTIONS(3917), 1, aux_sym_concatenation_token1, - ACTIONS(4667), 1, + ACTIONS(3923), 1, sym__concat, - STATE(910), 1, + STATE(755), 1, aux_sym_concatenation_repeat1, - ACTIONS(4439), 5, + ACTIONS(1215), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 40, + ACTIONS(1213), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -100697,6 +91176,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, @@ -100727,102 +91207,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [30358] = 30, - ACTIONS(71), 1, + [23355] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1039), 1, + ACTIONS(1250), 6, + sym_file_descriptor, + sym__concat, + 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_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1041), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1043), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(1047), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1051), 1, + sym_raw_string, + sym_ansi_c_string, 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(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, - aux_sym__literal_repeat1, - STATE(2412), 1, - sym_concatenation, - STATE(6656), 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(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(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, - [30468] = 6, + sym_word, + [23412] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4665), 1, + ACTIONS(3925), 1, aux_sym_concatenation_token1, - ACTIONS(4667), 1, + ACTIONS(3928), 1, sym__concat, - STATE(907), 1, + STATE(755), 1, aux_sym_concatenation_repeat1, - ACTIONS(4309), 5, + ACTIONS(1221), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 40, + ACTIONS(1219), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -100833,6 +91287,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, @@ -100863,22 +91318,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [30530] = 6, + [23475] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4665), 1, + ACTIONS(3917), 1, aux_sym_concatenation_token1, - ACTIONS(4667), 1, + ACTIONS(3919), 1, sym__concat, - STATE(910), 1, + STATE(752), 1, aux_sym_concatenation_repeat1, - ACTIONS(4313), 5, + ACTIONS(1231), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 40, + ACTIONS(1229), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -100889,6 +91344,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, @@ -100919,22 +91375,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [30592] = 6, + [23538] = 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(1286), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 40, + ACTIONS(1284), 43, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -100946,8 +91397,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 +91414,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,57 +91429,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [30654] = 9, + [23595] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4616), 1, - sym_variable_name, - STATE(6703), 1, - sym_subscript, - ACTIONS(4161), 2, + ACTIONS(1290), 6, + sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, 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, + ACTIONS(1288), 43, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + 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, @@ -101034,87 +91465,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [30722] = 23, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4627), 1, - sym_word, - ACTIONS(4629), 1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4631), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4633), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(4635), 1, sym__special_character, - ACTIONS(4637), 1, anon_sym_DQUOTE, - ACTIONS(4641), 1, + sym_raw_string, + sym_ansi_c_string, 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(4657), 1, - sym_test_operator, - ACTIONS(4659), 1, - sym__brace_start, - ACTIONS(4675), 1, - aux_sym__simple_variable_name_token1, - 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(933), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2325), 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(2327), 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, - [30818] = 6, + sym_word, + [23652] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4661), 1, + ACTIONS(3931), 1, aux_sym_concatenation_token1, - ACTIONS(4677), 1, + ACTIONS(3933), 1, sym__concat, - STATE(895), 1, + STATE(762), 1, aux_sym_concatenation_repeat1, ACTIONS(1209), 5, sym_file_descriptor, @@ -101122,7 +91498,7 @@ static const uint16_t ts_small_parse_table[] = { sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 40, + ACTIONS(1207), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -101134,8 +91510,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, @@ -101163,37 +91540,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [30880] = 5, + [23715] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, - sym__special_character, - STATE(887), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 5, + ACTIONS(3941), 1, + sym_variable_name, + STATE(6311), 1, + sym_subscript, + ACTIONS(3939), 2, sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3944), 2, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 41, + STATE(534), 2, + sym_file_redirect, + sym_heredoc_redirect, + STATE(3999), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3935), 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(3937), 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, @@ -101202,33 +91600,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, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [30940] = 3, + [23784] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 6, - sym_file_descriptor, + ACTIONS(3931), 1, + aux_sym_concatenation_token1, + ACTIONS(3946), 1, sym__concat, + STATE(762), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 42, + ACTIONS(1213), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -101239,7 +91626,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, @@ -101256,7 +91643,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, @@ -101271,17 +91657,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [30996] = 3, + [23847] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 6, - sym_file_descriptor, + ACTIONS(3948), 1, + aux_sym_concatenation_token1, + ACTIONS(3951), 1, sym__concat, + STATE(762), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1221), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 42, + ACTIONS(1219), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -101292,7 +91683,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, @@ -101309,7 +91700,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, @@ -101324,17 +91714,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [31052] = 3, + [23910] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 6, - sym_file_descriptor, + ACTIONS(3917), 1, + aux_sym_concatenation_token1, + ACTIONS(3919), 1, sym__concat, + STATE(752), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3956), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 42, + ACTIONS(3954), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -101362,7 +91757,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -101377,37 +91771,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [31108] = 3, - ACTIONS(3), 1, + [23973] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(1314), 6, + STATE(2382), 1, + aux_sym__literal_repeat1, + STATE(2619), 1, + sym_concatenation, + STATE(2135), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2305), 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(2307), 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), 42, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -101415,32 +91820,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, 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, + [24036] = 30, + ACTIONS(71), 1, + sym_comment, + ACTIONS(2037), 1, + anon_sym_PIPE, + ACTIONS(3958), 1, + sym_word, + ACTIONS(3962), 1, + anon_sym_LT_LT, + ACTIONS(3968), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3970), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3972), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3974), 1, + anon_sym_DOLLAR, + ACTIONS(3976), 1, + sym__special_character, + ACTIONS(3978), 1, + anon_sym_DQUOTE, + ACTIONS(3982), 1, aux_sym_number_token1, + ACTIONS(3984), 1, aux_sym_number_token2, + ACTIONS(3986), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3988), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3990), 1, anon_sym_BQUOTE, + ACTIONS(3992), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3996), 1, + sym_file_descriptor, + ACTIONS(3998), 1, + sym_test_operator, + ACTIONS(4000), 1, + sym__brace_start, + STATE(789), 1, + aux_sym_redirected_statement_repeat1, + STATE(2988), 1, + aux_sym__literal_repeat1, + STATE(3184), 1, + sym_concatenation, + ACTIONS(3966), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3980), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(3994), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [31164] = 3, + STATE(3182), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(2045), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + ACTIONS(3964), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(3960), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(2535), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [24147] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, - sym_file_descriptor, + ACTIONS(3931), 1, + aux_sym_concatenation_token1, + ACTIONS(4002), 1, sym__concat, + STATE(759), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1231), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 42, + ACTIONS(1229), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -101451,7 +91935,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, @@ -101468,7 +91952,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,17 +91966,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [31220] = 3, + [24210] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 6, + ACTIONS(1266), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 42, + ACTIONS(1264), 43, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -101504,6 +91987,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, @@ -101536,17 +92020,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [31276] = 3, + [24267] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 6, + ACTIONS(1294), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 42, + ACTIONS(1292), 43, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -101557,6 +92041,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 +92074,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [31332] = 6, + [24324] = 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(1262), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 40, + ACTIONS(1260), 43, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -101616,8 +92096,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 +92113,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 +92128,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [31394] = 3, + [24381] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 6, + ACTIONS(1310), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 42, + ACTIONS(1308), 43, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -101667,6 +92150,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, @@ -101698,17 +92182,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [31450] = 3, + [24438] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 6, + ACTIONS(1282), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 42, + ACTIONS(1280), 43, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -101720,6 +92204,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, @@ -101751,17 +92236,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [31506] = 3, + [24495] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 6, - sym_file_descriptor, + ACTIONS(3917), 1, + aux_sym_concatenation_token1, + ACTIONS(3919), 1, sym__concat, + STATE(752), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4006), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 42, + ACTIONS(4004), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -101772,7 +92262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -101789,7 +92279,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 +92293,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [31562] = 3, + [24558] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, - sym_file_descriptor, + ACTIONS(3917), 1, + aux_sym_concatenation_token1, + ACTIONS(3919), 1, sym__concat, + STATE(753), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4010), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 42, + ACTIONS(4008), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -101825,7 +92319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -101842,7 +92336,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,40 +92350,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [31618] = 8, + [24621] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3909), 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, + ACTIONS(1302), 6, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, 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, + aux_sym_heredoc_redirect_token1, + ACTIONS(1300), 43, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -101899,11 +92386,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -101915,32 +92404,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [31684] = 8, + [24678] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3909), 1, + ACTIONS(2981), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2983), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2985), 1, + anon_sym_DOLLAR, + ACTIONS(2989), 1, anon_sym_DQUOTE, - ACTIONS(3913), 1, - sym_variable_name, - STATE(1657), 1, - sym_string, - ACTIONS(3911), 2, + ACTIONS(2991), 1, + aux_sym_number_token1, + ACTIONS(2993), 1, + aux_sym_number_token2, + ACTIONS(2995), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2997), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2999), 1, + anon_sym_BQUOTE, + ACTIONS(3001), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3009), 1, + sym__brace_start, + ACTIONS(3907), 1, + sym__special_character, + ACTIONS(3911), 1, + sym_test_operator, + ACTIONS(4012), 1, aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 3, + STATE(1802), 1, + aux_sym__literal_repeat1, + ACTIONS(2427), 2, sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(3907), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 32, + aux_sym_heredoc_redirect_token1, + ACTIONS(3003), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(781), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(3905), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(2306), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2425), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -101957,33 +92477,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_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, - [31750] = 3, + [24773] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, + ACTIONS(1306), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 42, + ACTIONS(1304), 43, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -101995,6 +92499,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,33 +92531,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [31806] = 3, + [24830] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 6, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, + ACTIONS(3941), 1, + sym_variable_name, + ACTIONS(4020), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 42, + STATE(6311), 1, + sym_subscript, + ACTIONS(2041), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3937), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4014), 2, anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(4016), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, + STATE(534), 2, + sym_file_redirect, + sym_heredoc_redirect, + STATE(3999), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3944), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(4018), 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(3935), 27, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -102060,11 +92578,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, @@ -102079,17 +92595,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [31862] = 3, + [24907] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 6, + ACTIONS(1302), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 42, + ACTIONS(1300), 43, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -102100,6 +92616,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, @@ -102132,17 +92649,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [31918] = 3, + [24964] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 6, - sym_file_descriptor, + ACTIONS(3931), 1, + aux_sym_concatenation_token1, + ACTIONS(4002), 1, sym__concat, + STATE(761), 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(1260), 42, + ACTIONS(1233), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -102170,7 +92692,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 +92706,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [31974] = 3, + [25027] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 6, - sym_file_descriptor, + ACTIONS(3931), 1, + aux_sym_concatenation_token1, + ACTIONS(4002), 1, sym__concat, + ACTIONS(4022), 1, + anon_sym_LPAREN, + STATE(761), 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(1268), 42, + ACTIONS(1233), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -102206,7 +92734,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, @@ -102223,7 +92750,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, @@ -102238,37 +92764,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [32030] = 6, + [25092] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(4665), 1, - aux_sym_concatenation_token1, - ACTIONS(4688), 1, - sym__concat, - STATE(911), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 5, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, + ACTIONS(2934), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2937), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2940), 1, + anon_sym_DOLLAR, + ACTIONS(2946), 1, + anon_sym_DQUOTE, + ACTIONS(2949), 1, + aux_sym_number_token1, + ACTIONS(2952), 1, + aux_sym_number_token2, + ACTIONS(2955), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2958), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2961), 1, + anon_sym_BQUOTE, + ACTIONS(2964), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2976), 1, sym__brace_start, + ACTIONS(4028), 1, + sym__special_character, + ACTIONS(4031), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(4034), 1, + sym_test_operator, + STATE(1802), 1, + aux_sym__literal_repeat1, + ACTIONS(2328), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 40, - anon_sym_SEMI, + ACTIONS(2967), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(781), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(4025), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(2306), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2326), 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, @@ -102277,50 +92837,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, - [32092] = 3, + [25187] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, + ACTIONS(3941), 1, + sym_variable_name, + ACTIONS(4039), 1, + aux_sym_heredoc_redirect_token1, + STATE(6311), 1, + sym_subscript, + ACTIONS(3937), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(534), 2, + sym_file_redirect, + sym_heredoc_redirect, + STATE(3999), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3944), 3, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 42, + ACTIONS(4037), 10, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_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_LT_LT_DASH, + ACTIONS(3935), 27, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -102328,11 +92881,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, @@ -102347,33 +92898,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [32148] = 3, + [25258] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 6, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, + ACTIONS(3941), 1, + sym_variable_name, + ACTIONS(4043), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 42, - anon_sym_SEMI, + STATE(6311), 1, + sym_subscript, + ACTIONS(2041), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3937), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4016), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(4041), 2, + anon_sym_SEMI, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, + STATE(534), 2, + sym_file_redirect, + sym_heredoc_redirect, + STATE(3999), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3944), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(2321), 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(3935), 27, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -102381,11 +92945,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, @@ -102400,41 +92962,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [32204] = 6, - ACTIONS(3), 1, + [25335] = 6, + ACTIONS(71), 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, + STATE(2450), 1, + aux_sym__literal_repeat1, + STATE(2545), 1, + sym_concatenation, + STATE(2056), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2309), 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(2311), 25, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 40, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, + anon_sym_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, @@ -102442,36 +93011,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, - sym_word, - [32266] = 6, + [25398] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4692), 1, + ACTIONS(3917), 1, aux_sym_concatenation_token1, - ACTIONS(4695), 1, + ACTIONS(3919), 1, sym__concat, - STATE(911), 1, + STATE(752), 1, aux_sym_concatenation_repeat1, - ACTIONS(1215), 5, + ACTIONS(4047), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 40, + ACTIONS(4045), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -102482,6 +93045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -102512,73 +93076,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [32328] = 6, - ACTIONS(3), 1, + [25461] = 30, + ACTIONS(71), 1, sym_comment, - ACTIONS(4665), 1, - aux_sym_concatenation_token1, - ACTIONS(4667), 1, - sym__concat, - STATE(907), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1225), 5, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 40, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2233), 1, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4049), 1, + sym_word, + ACTIONS(4055), 1, anon_sym_LT_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, + ACTIONS(4064), 1, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(4067), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4070), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(4073), 1, anon_sym_DOLLAR, + ACTIONS(4076), 1, sym__special_character, + ACTIONS(4079), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4085), 1, aux_sym_number_token1, + ACTIONS(4088), 1, aux_sym_number_token2, + ACTIONS(4091), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4094), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4097), 1, anon_sym_BQUOTE, + ACTIONS(4100), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4106), 1, + sym_file_descriptor, + ACTIONS(4109), 1, + sym_test_operator, + ACTIONS(4112), 1, + sym__brace_start, + STATE(786), 1, + aux_sym_redirected_statement_repeat1, + STATE(2988), 1, + aux_sym__literal_repeat1, + STATE(3184), 1, + sym_concatenation, + ACTIONS(4061), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4082), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4103), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [32390] = 3, + STATE(3182), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(2244), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + ACTIONS(4058), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(4052), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(2535), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [25572] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 6, - sym_file_descriptor, + ACTIONS(3931), 1, + aux_sym_concatenation_token1, + ACTIONS(4002), 1, sym__concat, + STATE(759), 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(1272), 42, + ACTIONS(237), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -102606,7 +93200,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 +93214,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [32446] = 3, + [25635] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 6, - sym_file_descriptor, + ACTIONS(3917), 1, + aux_sym_concatenation_token1, + ACTIONS(3919), 1, sym__concat, + STATE(753), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4117), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 42, + ACTIONS(4115), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -102642,7 +93240,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, @@ -102659,7 +93257,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, @@ -102674,70 +93271,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [32502] = 3, - ACTIONS(3), 1, + [25698] = 30, + ACTIONS(71), 1, sym_comment, - ACTIONS(1266), 6, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 42, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2206), 1, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3958), 1, + sym_word, + ACTIONS(3962), 1, anon_sym_LT_LT, - anon_sym_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, + ACTIONS(3968), 1, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(3970), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3972), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(3974), 1, anon_sym_DOLLAR, + ACTIONS(3976), 1, sym__special_character, + ACTIONS(3978), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3982), 1, aux_sym_number_token1, + ACTIONS(3984), 1, aux_sym_number_token2, + ACTIONS(3986), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3988), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3990), 1, anon_sym_BQUOTE, + ACTIONS(3992), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3996), 1, + sym_file_descriptor, + ACTIONS(3998), 1, + sym_test_operator, + ACTIONS(4000), 1, + sym__brace_start, + STATE(786), 1, + aux_sym_redirected_statement_repeat1, + STATE(2988), 1, + aux_sym__literal_repeat1, + STATE(3184), 1, + sym_concatenation, + ACTIONS(3966), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3980), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(3994), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [32558] = 3, + STATE(3182), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(2208), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + ACTIONS(3964), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(3960), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(2535), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [25809] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, - sym_file_descriptor, + ACTIONS(3917), 1, + aux_sym_concatenation_token1, + ACTIONS(3919), 1, sym__concat, + STATE(753), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4121), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 42, + ACTIONS(4119), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -102765,7 +93395,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, @@ -102780,17 +93409,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [32614] = 3, + [25872] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 6, + ACTIONS(1258), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 42, + ACTIONS(1256), 43, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -102801,6 +93430,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 +93463,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [32670] = 3, + [25929] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, + ACTIONS(1221), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 42, + ACTIONS(1219), 43, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -102854,6 +93484,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,17 +93517,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [32726] = 3, + [25986] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 6, - sym_file_descriptor, + ACTIONS(3917), 1, + aux_sym_concatenation_token1, + ACTIONS(3919), 1, sym__concat, + STATE(752), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4125), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 42, + ACTIONS(4123), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -102924,7 +93560,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, @@ -102939,33 +93574,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [32782] = 3, + [26049] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, + STATE(1663), 1, + aux_sym__literal_repeat1, + STATE(1760), 1, + sym_concatenation, + ACTIONS(2307), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 42, - anon_sym_SEMI, + STATE(2146), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2305), 33, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -102977,7 +93617,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -102992,17 +93631,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [32838] = 3, + [26112] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 6, + ACTIONS(1314), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 42, + ACTIONS(1312), 43, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -103014,6 +93653,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, @@ -103045,33 +93685,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [32894] = 3, + [26169] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + STATE(1643), 1, + aux_sym__literal_repeat1, + STATE(1807), 1, + sym_concatenation, + ACTIONS(2311), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 42, - anon_sym_SEMI, + STATE(2154), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2309), 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, @@ -103083,7 +93728,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,17 +93742,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [32950] = 3, + [26232] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, + ACTIONS(1298), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 42, + ACTIONS(1296), 43, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -103119,6 +93763,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, @@ -103151,96 +93796,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33006] = 6, - ACTIONS(71), 1, - sym_comment, - STATE(2609), 1, - aux_sym__literal_repeat1, - STATE(3008), 1, - sym_concatenation, - STATE(2408), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2271), 12, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - 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_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [33068] = 8, + [26289] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3014), 1, - anon_sym_DQUOTE, - ACTIONS(3817), 1, - sym_variable_name, - STATE(1777), 1, - sym_string, - ACTIONS(3815), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, + ACTIONS(1290), 6, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(3813), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 32, + aux_sym_heredoc_redirect_token1, + ACTIONS(1288), 42, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_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 +93831,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -103265,23 +93849,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33134] = 8, + [26345] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3014), 1, + ACTIONS(4129), 1, anon_sym_DQUOTE, - ACTIONS(3817), 1, + ACTIONS(4133), 1, sym_variable_name, - STATE(1777), 1, + STATE(2249), 1, sym_string, - ACTIONS(3815), 2, + ACTIONS(4131), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, ACTIONS(1191), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3813), 8, + ACTIONS(4127), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -103299,6 +93883,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, @@ -103307,7 +93892,6 @@ 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, @@ -103323,17 +93907,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33200] = 3, + [26411] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 6, - sym_file_descriptor, + ACTIONS(4135), 1, + aux_sym_concatenation_token1, + ACTIONS(4137), 1, sym__concat, + STATE(830), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4125), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 42, + ACTIONS(4123), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -103344,7 +93933,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, @@ -103361,7 +93949,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,17 +93963,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33256] = 3, + [26473] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, - sym_file_descriptor, + ACTIONS(4135), 1, + aux_sym_concatenation_token1, + ACTIONS(4137), 1, sym__concat, + STATE(831), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3915), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 42, + ACTIONS(3913), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -103397,7 +93989,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, @@ -103414,7 +94005,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, @@ -103429,17 +94019,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33312] = 3, + [26535] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 6, - sym_file_descriptor, + ACTIONS(4135), 1, + aux_sym_concatenation_token1, + ACTIONS(4137), 1, sym__concat, + STATE(830), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4006), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 42, + ACTIONS(4004), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -103450,7 +94045,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, @@ -103467,7 +94061,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,17 +94075,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33368] = 3, + [26597] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, - sym_file_descriptor, + ACTIONS(4135), 1, + aux_sym_concatenation_token1, + ACTIONS(4137), 1, sym__concat, + STATE(831), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4010), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 42, + ACTIONS(4008), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -103503,7 +94101,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, @@ -103520,7 +94117,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, @@ -103535,23 +94131,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33424] = 6, + [26659] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4698), 1, + ACTIONS(4139), 1, aux_sym_concatenation_token1, - ACTIONS(4700), 1, + ACTIONS(4141), 1, sym__concat, - STATE(945), 1, + STATE(821), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 6, + ACTIONS(1231), 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(1229), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -103591,17 +94187,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33486] = 3, + [26721] = 30, + ACTIONS(71), 1, + sym_comment, + ACTIONS(402), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(404), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(406), 1, + anon_sym_DOLLAR, + ACTIONS(410), 1, + anon_sym_DQUOTE, + ACTIONS(414), 1, + aux_sym_number_token1, + ACTIONS(416), 1, + aux_sym_number_token2, + ACTIONS(418), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(420), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(422), 1, + anon_sym_BQUOTE, + ACTIONS(424), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(432), 1, + sym_test_operator, + ACTIONS(434), 1, + sym__brace_start, + ACTIONS(1352), 1, + anon_sym_LT_LT_LT, + ACTIONS(1354), 1, + sym_file_descriptor, + ACTIONS(2713), 1, + sym_word, + ACTIONS(4143), 1, + sym__special_character, + ACTIONS(4145), 1, + sym_variable_name, + STATE(496), 1, + sym_command_name, + STATE(806), 1, + aux_sym__literal_repeat1, + STATE(906), 1, + sym_concatenation, + STATE(6343), 1, + sym_subscript, + ACTIONS(412), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(426), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1350), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3140), 2, + sym_variable_assignment, + aux_sym_command_repeat1, + STATE(3382), 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(726), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [26831] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 6, + ACTIONS(4147), 1, + sym__special_character, + STATE(808), 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(1256), 42, + ACTIONS(237), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -103613,6 +94292,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, @@ -103629,9 +94309,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, @@ -103644,59 +94322,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33542] = 23, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4702), 1, - sym_word, - ACTIONS(4705), 1, + [26891] = 30, + ACTIONS(45), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4708), 1, + ACTIONS(47), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4711), 1, + ACTIONS(49), 1, anon_sym_DOLLAR, - ACTIONS(4714), 1, - sym__special_character, - ACTIONS(4717), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(4723), 1, + ACTIONS(57), 1, aux_sym_number_token1, - ACTIONS(4726), 1, + ACTIONS(59), 1, aux_sym_number_token2, - ACTIONS(4729), 1, + ACTIONS(61), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4732), 1, + ACTIONS(63), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4735), 1, + ACTIONS(65), 1, anon_sym_BQUOTE, - ACTIONS(4738), 1, + ACTIONS(67), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4744), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(4747), 1, + ACTIONS(71), 1, + sym_comment, + ACTIONS(77), 1, sym_test_operator, - ACTIONS(4750), 1, + ACTIONS(79), 1, sym__brace_start, - STATE(2831), 1, + ACTIONS(1352), 1, + anon_sym_LT_LT_LT, + ACTIONS(1354), 1, + sym_file_descriptor, + ACTIONS(2921), 1, + sym_word, + ACTIONS(4145), 1, + sym_variable_name, + ACTIONS(4149), 1, + sym__special_character, + STATE(504), 1, + sym_command_name, + STATE(1089), 1, aux_sym__literal_repeat1, - ACTIONS(4720), 2, + STATE(1232), 1, + sym_concatenation, + STATE(6343), 1, + sym_subscript, + ACTIONS(55), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4741), 2, + ACTIONS(69), 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(1350), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3140), 2, + sym_variable_assignment, + aux_sym_command_repeat1, + STATE(3382), 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_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(2513), 9, + STATE(816), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -103706,28 +94402,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, + [27001] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(4151), 1, + sym__special_character, + STATE(808), 1, + aux_sym__literal_repeat1, + ACTIONS(1318), 5, sym_file_descriptor, - sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 42, + ACTIONS(1316), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -103739,6 +94427,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 +94444,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 +94457,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33694] = 3, + [27061] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, - sym_file_descriptor, + ACTIONS(4154), 1, + aux_sym_concatenation_token1, + ACTIONS(4157), 1, sym__concat, + STATE(809), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1221), 6, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 42, + ACTIONS(1219), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -103793,8 +94486,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, @@ -103808,7 +94499,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 +94513,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33750] = 3, + [27123] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(1258), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 42, + ACTIONS(1256), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -103844,7 +94534,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, @@ -103876,202 +94566,90 @@ 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, + [27179] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(77), 1, + ACTIONS(1221), 6, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(79), 1, + sym__bare_dollar, sym__brace_start, - ACTIONS(1352), 1, - anon_sym_LT_LT_LT, - ACTIONS(1354), 1, - sym_file_descriptor, - ACTIONS(2787), 1, - sym_word, - ACTIONS(4671), 1, - sym_variable_name, - ACTIONS(4753), 1, - sym__special_character, - STATE(533), 1, - sym_command_name, - STATE(1181), 1, - aux_sym__literal_repeat1, - STATE(1431), 1, - sym_concatenation, - STATE(6656), 1, - sym_subscript, - ACTIONS(55), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(69), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1350), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3116), 2, - sym_variable_assignment, - aux_sym_command_repeat1, - STATE(3491), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(1346), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(1344), 5, + aux_sym_heredoc_redirect_token1, + ACTIONS(1219), 42, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(944), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [33916] = 30, - ACTIONS(71), 1, - sym_comment, - ACTIONS(308), 1, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(310), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(312), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(316), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(320), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(322), 1, aux_sym_number_token2, - ACTIONS(324), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(326), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(328), 1, anon_sym_BQUOTE, - ACTIONS(330), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(338), 1, - sym_test_operator, - ACTIONS(340), 1, - sym__brace_start, - ACTIONS(1352), 1, - anon_sym_LT_LT_LT, - ACTIONS(1354), 1, - sym_file_descriptor, - ACTIONS(2643), 1, - sym_word, - ACTIONS(4671), 1, - sym_variable_name, - ACTIONS(4755), 1, - sym__special_character, - STATE(540), 1, - sym_command_name, - STATE(1237), 1, - aux_sym__literal_repeat1, - STATE(1350), 1, - sym_concatenation, - STATE(6656), 1, - sym_subscript, - ACTIONS(318), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(332), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1350), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3116), 2, - sym_variable_assignment, - aux_sym_command_repeat1, - STATE(3491), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(1346), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(1344), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(1126), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [34026] = 10, + sym_word, + [27235] = 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(4160), 1, + aux_sym_concatenation_token1, + ACTIONS(4162), 1, + sym__concat, + STATE(879), 1, + aux_sym_concatenation_repeat1, + ACTIONS(276), 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(237), 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_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, @@ -104079,6 +94657,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 +94675,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [34096] = 8, + [27297] = 3, 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(1314), 6, sym_file_descriptor, + sym__concat, 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, + aux_sym_heredoc_redirect_token1, + ACTIONS(1312), 42, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_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, @@ -104142,7 +94713,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -104154,41 +94728,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [34162] = 8, + [27353] = 3, 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(1310), 6, sym_file_descriptor, + sym__concat, 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(1308), 42, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -104200,7 +94766,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -104212,100 +94781,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, + [27409] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4767), 1, - sym__special_character, - STATE(887), 1, - aux_sym__literal_repeat1, - ACTIONS(276), 5, + ACTIONS(1254), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(237), 41, + ACTIONS(1252), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -104316,7 +94802,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 +94819,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,14 +94834,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [34398] = 6, + [27465] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4698), 1, + ACTIONS(4139), 1, aux_sym_concatenation_token1, - ACTIONS(4700), 1, + ACTIONS(4141), 1, sym__concat, - STATE(950), 1, + STATE(880), 1, aux_sym_concatenation_repeat1, ACTIONS(1240), 6, sym_file_descriptor, @@ -104403,23 +94890,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [34460] = 6, + [27527] = 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(1270), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 39, + ACTIONS(1268), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -104430,8 +94911,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 +94928,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 +94943,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [34522] = 21, + [27583] = 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(1274), 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(1272), 42, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -104530,69 +94978,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, + [27639] = 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), 42, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -104601,69 +95031,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, + [27695] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1221), 6, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1219), 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, @@ -104672,94 +95084,32 @@ 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, + [27751] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4698), 1, + ACTIONS(4139), 1, aux_sym_concatenation_token1, - ACTIONS(4788), 1, + ACTIONS(4164), 1, sym__concat, - STATE(968), 1, + STATE(809), 1, aux_sym_concatenation_repeat1, ACTIONS(1209), 6, sym_file_descriptor, @@ -104808,22 +95158,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [34970] = 6, + [27813] = 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(1314), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4368), 40, + ACTIONS(1312), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -104834,6 +95179,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, @@ -104850,6 +95196,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,22 +95211,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [35032] = 6, + [27869] = 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(4443), 5, + ACTIONS(1310), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4441), 40, + ACTIONS(1308), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -104890,6 +95232,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, @@ -104906,6 +95249,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, @@ -104920,45 +95264,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [35094] = 13, + [27925] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2505), 1, - ts_builtin_sym_end, - ACTIONS(4533), 1, - sym_variable_name, - ACTIONS(4792), 1, - aux_sym_heredoc_redirect_token1, - STATE(6675), 1, - sym_subscript, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4527), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(4529), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(4341), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4161), 3, + ACTIONS(1254), 6, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(4790), 3, + aux_sym_heredoc_redirect_token1, + ACTIONS(1252), 42, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4645), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4153), 27, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -104966,9 +95298,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -104983,25 +95317,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [35170] = 7, + [27981] = 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(1270), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1233), 38, + ACTIONS(1268), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -105012,7 +95338,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 +95355,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 +95370,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [35234] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4661), 1, - aux_sym_concatenation_token1, - ACTIONS(4663), 1, - sym__concat, - STATE(883), 1, - aux_sym_concatenation_repeat1, - ACTIONS(276), 5, + [28037] = 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(237), 40, + ACTIONS(1272), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -105067,8 +95392,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 +95408,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,14 +95423,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [35296] = 6, + [28093] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4661), 1, + ACTIONS(4160), 1, aux_sym_concatenation_token1, - ACTIONS(4663), 1, + ACTIONS(4162), 1, sym__concat, - STATE(886), 1, + STATE(882), 1, aux_sym_concatenation_repeat1, ACTIONS(1240), 5, sym_file_descriptor, @@ -105152,24 +95479,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [35358] = 7, + [28155] = 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(1278), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1233), 39, + ACTIONS(1276), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -105180,8 +95500,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -105195,6 +95517,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 +95532,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [35422] = 13, + [28211] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4255), 1, - anon_sym_RPAREN, - ACTIONS(4515), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4616), 1, - sym_variable_name, - STATE(6703), 1, - sym_subscript, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4529), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4797), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - STATE(4436), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4161), 3, + ACTIONS(1250), 6, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(4513), 3, + aux_sym_heredoc_redirect_token1, + ACTIONS(1248), 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 +95566,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 +95585,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [35498] = 6, + [28267] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4665), 1, + ACTIONS(4135), 1, aux_sym_concatenation_token1, - ACTIONS(4667), 1, + ACTIONS(4166), 1, sym__concat, - STATE(907), 1, + STATE(832), 1, aux_sym_concatenation_repeat1, - ACTIONS(4519), 5, + ACTIONS(1209), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4517), 40, + ACTIONS(1207), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -105328,22 +95641,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [35560] = 6, + [28329] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4665), 1, + ACTIONS(4135), 1, aux_sym_concatenation_token1, - ACTIONS(4667), 1, + ACTIONS(4168), 1, sym__concat, - STATE(910), 1, + STATE(832), 1, aux_sym_concatenation_repeat1, - ACTIONS(4305), 5, + ACTIONS(1215), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4303), 40, + ACTIONS(1213), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -105384,162 +95697,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [35622] = 30, - ACTIONS(71), 1, - sym_comment, - ACTIONS(308), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(310), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(312), 1, - anon_sym_DOLLAR, - ACTIONS(316), 1, - anon_sym_DQUOTE, - ACTIONS(320), 1, - aux_sym_number_token1, - ACTIONS(322), 1, - aux_sym_number_token2, - ACTIONS(324), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(326), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(328), 1, - anon_sym_BQUOTE, - ACTIONS(330), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(340), 1, - sym__brace_start, - ACTIONS(775), 1, - sym_test_operator, - ACTIONS(1352), 1, - anon_sym_LT_LT_LT, - ACTIONS(1354), 1, - sym_file_descriptor, - ACTIONS(2530), 1, - sym_word, - ACTIONS(4671), 1, - sym_variable_name, - ACTIONS(4799), 1, - sym__special_character, - STATE(530), 1, - sym_command_name, - STATE(1237), 1, - aux_sym__literal_repeat1, - STATE(1350), 1, - sym_concatenation, - STATE(6656), 1, - sym_subscript, - ACTIONS(332), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(773), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1350), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3116), 2, - sym_variable_assignment, - aux_sym_command_repeat1, - STATE(3491), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(1346), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(1344), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(956), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [35732] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4533), 1, - sym_variable_name, - STATE(6675), 1, - sym_subscript, - ACTIONS(4161), 2, - sym_test_operator, - sym__brace_start, - STATE(4341), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4268), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - STATE(4645), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4153), 17, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - ACTIONS(4157), 19, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [35800] = 6, + [28391] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4698), 1, + ACTIONS(4170), 1, aux_sym_concatenation_token1, - ACTIONS(4700), 1, + ACTIONS(4173), 1, sym__concat, - STATE(945), 1, + STATE(832), 1, aux_sym_concatenation_repeat1, - ACTIONS(276), 6, + ACTIONS(1221), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(237), 39, + ACTIONS(1219), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -105550,8 +95723,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, @@ -105579,311 +95753,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [35862] = 22, - ACTIONS(71), 1, + [28453] = 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(1286), 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, - anon_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(2158), 11, - sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1284), 42, + 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, - [35956] = 22, - ACTIONS(71), 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, - 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_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(2162), 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_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, - sym_test_operator, - ACTIONS(4863), 1, - 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, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - 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_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [36144] = 22, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4835), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4837), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4839), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(4841), 1, sym__special_character, - ACTIONS(4843), 1, anon_sym_DQUOTE, - ACTIONS(4847), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(4849), 1, aux_sym_number_token2, - ACTIONS(4851), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4853), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4855), 1, anon_sym_BQUOTE, - ACTIONS(4857), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4863), 1, - sym__brace_start, - ACTIONS(4865), 1, - sym_word, - ACTIONS(4869), 1, - sym_test_operator, - STATE(5187), 1, - aux_sym__literal_repeat1, - STATE(5408), 1, - sym_concatenation, - ACTIONS(4859), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4867), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(2275), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(5037), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2277), 12, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [36238] = 6, + sym_word, + [28509] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4871), 1, + ACTIONS(4139), 1, aux_sym_concatenation_token1, - ACTIONS(4874), 1, + ACTIONS(4141), 1, sym__concat, - STATE(968), 1, + STATE(821), 1, aux_sym_concatenation_repeat1, - ACTIONS(1215), 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(1213), 39, + ACTIONS(237), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -105923,45 +95862,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [36300] = 13, + [28571] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2503), 1, - anon_sym_RPAREN, - ACTIONS(4296), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4616), 1, + ACTIONS(3429), 1, + anon_sym_DQUOTE, + ACTIONS(3433), 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, + STATE(1410), 1, + sym_string, + ACTIONS(3431), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1197), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(4290), 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(4153), 27, + ACTIONS(3427), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 32, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -105969,12 +95903,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, @@ -105986,232 +95920,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [36376] = 30, - ACTIONS(71), 1, - sym_comment, - ACTIONS(308), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(310), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(312), 1, - anon_sym_DOLLAR, - ACTIONS(316), 1, - anon_sym_DQUOTE, - ACTIONS(320), 1, - aux_sym_number_token1, - ACTIONS(322), 1, - aux_sym_number_token2, - ACTIONS(324), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(326), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(328), 1, - anon_sym_BQUOTE, - ACTIONS(330), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(338), 1, - sym_test_operator, - ACTIONS(340), 1, - sym__brace_start, - ACTIONS(1352), 1, - anon_sym_LT_LT_LT, - ACTIONS(1354), 1, - sym_file_descriptor, - ACTIONS(2643), 1, - sym_word, - ACTIONS(4671), 1, - sym_variable_name, - ACTIONS(4755), 1, - sym__special_character, - STATE(542), 1, - sym_command_name, - STATE(1237), 1, - aux_sym__literal_repeat1, - STATE(1350), 1, - sym_concatenation, - STATE(6656), 1, - sym_subscript, - ACTIONS(318), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(332), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1350), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3116), 2, - sym_variable_assignment, - aux_sym_command_repeat1, - STATE(3491), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(1346), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(1344), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(1126), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [36486] = 22, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4877), 1, - sym_word, - ACTIONS(4880), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4883), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4886), 1, - anon_sym_DOLLAR, - ACTIONS(4889), 1, - sym__special_character, - ACTIONS(4892), 1, - anon_sym_DQUOTE, - ACTIONS(4898), 1, - aux_sym_number_token1, - ACTIONS(4901), 1, - aux_sym_number_token2, - ACTIONS(4904), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4907), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4910), 1, - anon_sym_BQUOTE, - ACTIONS(4913), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4919), 1, - sym_test_operator, - ACTIONS(4922), 1, - sym__brace_start, - STATE(2859), 1, - aux_sym__literal_repeat1, - ACTIONS(4895), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4916), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(971), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2167), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(2538), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2169), 11, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [36580] = 8, + [28637] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4927), 1, + ACTIONS(3429), 1, anon_sym_DQUOTE, - ACTIONS(4931), 1, + ACTIONS(3433), 1, sym_variable_name, - STATE(2500), 1, + STATE(1410), 1, sym_string, - ACTIONS(1197), 2, - sym__concat, - sym_test_operator, - ACTIONS(4929), 2, + ACTIONS(3431), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4925), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 33, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - [36646] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4927), 1, - anon_sym_DQUOTE, - ACTIONS(4931), 1, - sym_variable_name, - STATE(2500), 1, - sym_string, - ACTIONS(1191), 2, - sym__concat, + ACTIONS(1191), 3, + sym_file_descriptor, sym_test_operator, - ACTIONS(4929), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(4925), 8, + sym__brace_start, + ACTIONS(3427), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -106220,174 +95945,7 @@ 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, - 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_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, - [36822] = 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(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, + ACTIONS(1183), 32, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -106404,89 +95962,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, - [36914] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3504), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3506), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3508), 1, - anon_sym_DOLLAR, - ACTIONS(3512), 1, - anon_sym_DQUOTE, - ACTIONS(3514), 1, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(3516), 1, aux_sym_number_token2, - ACTIONS(3518), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3520), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3522), 1, anon_sym_BQUOTE, - ACTIONS(3524), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3530), 1, - sym__brace_start, - ACTIONS(4937), 1, - sym__special_character, - ACTIONS(4943), 1, - sym_test_operator, - STATE(4265), 1, - aux_sym__literal_repeat1, - STATE(4609), 1, - sym_concatenation, - ACTIONS(2277), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3526), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4941), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(5110), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2275), 17, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [37006] = 3, + [28703] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, - sym_file_descriptor, + ACTIONS(4135), 1, + aux_sym_concatenation_token1, + ACTIONS(4137), 1, sym__concat, + STATE(830), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1231), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 42, + ACTIONS(1229), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -106497,7 +96004,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, @@ -106514,7 +96020,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, @@ -106529,17 +96034,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [37062] = 3, + [28765] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 6, + ACTIONS(1278), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 41, + ACTIONS(1276), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -106551,8 +96056,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -106581,41 +96087,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [37117] = 8, + [28821] = 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(1250), 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(1248), 42, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -106624,150 +96122,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, 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, - [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, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [28877] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4959), 1, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(4160), 1, aux_sym_concatenation_token1, - ACTIONS(4961), 1, + ACTIONS(4162), 1, sym__concat, - STATE(994), 1, + STATE(882), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 5, + ACTIONS(1240), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 39, + ACTIONS(1233), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -106807,17 +96197,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [37373] = 3, + [28941] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 6, + ACTIONS(1286), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 41, + ACTIONS(1284), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -106829,8 +96219,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 +96250,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [37428] = 3, + [28997] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 5, + ACTIONS(1290), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 42, + ACTIONS(1288), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -106880,7 +96272,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 +96288,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 +96303,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [37483] = 6, + [29053] = 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(1266), 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(1264), 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 +96329,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 +96341,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 +96356,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [37544] = 6, + [29109] = 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(1294), 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(1292), 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 +96382,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 +96394,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 +96409,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [37605] = 6, + [29165] = 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(1262), 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(1260), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -107051,6 +96435,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 +96447,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 +96462,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [37666] = 6, + [29221] = 8, 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, - sym_file_descriptor, + ACTIONS(4129), 1, + anon_sym_DQUOTE, + ACTIONS(4133), 1, sym_variable_name, + STATE(2249), 1, + sym_string, + ACTIONS(4131), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1197), 3, + sym_file_descriptor, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 39, - anon_sym_SEMI, + ACTIONS(4127), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 32, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_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, @@ -107114,11 +96505,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -107129,29 +96519,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, - [37727] = 6, + [29287] = 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(1282), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 39, + ACTIONS(1280), 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, @@ -107161,6 +96546,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, @@ -107169,8 +96555,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,29 +96572,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, - [37788] = 6, + [29343] = 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(1302), 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(1300), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -107216,6 +96599,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, @@ -107224,8 +96608,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,29 +96625,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, - [37849] = 6, + [29399] = 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(1306), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 39, + ACTIONS(1304), 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, @@ -107271,6 +96652,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, @@ -107282,6 +96664,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,27 +96679,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [37910] = 6, + [29455] = 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(1302), 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(1300), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -107326,6 +96705,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, @@ -107334,8 +96714,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 +96731,114 @@ static const uint16_t 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, - ACTIONS(3), 1, + [29511] = 30, + ACTIONS(71), 1, sym_comment, - ACTIONS(2503), 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(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(4995), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4997), 1, + ACTIONS(330), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(340), 1, + sym__brace_start, + ACTIONS(777), 1, + sym_test_operator, + ACTIONS(1352), 1, + anon_sym_LT_LT_LT, + ACTIONS(1354), 1, + sym_file_descriptor, + ACTIONS(2717), 1, + sym_word, + ACTIONS(4145), 1, sym_variable_name, - STATE(6672), 1, + ACTIONS(4176), 1, + sym__special_character, + STATE(503), 1, + sym_command_name, + STATE(1086), 1, + aux_sym__literal_repeat1, + STATE(1282), 1, + sym_concatenation, + STATE(6343), 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, + ACTIONS(332), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(775), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1350), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3140), 2, sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4161), 3, + aux_sym_command_repeat1, + STATE(3382), 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(827), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [29621] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1266), 6, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(4991), 3, + aux_sym_heredoc_redirect_token1, + ACTIONS(1264), 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 +96846,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 +96860,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, + [29677] = 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(1294), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 39, + ACTIONS(1292), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -107439,8 +96886,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 +96903,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 +96918,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [38107] = 5, + [29733] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5006), 1, - sym__special_character, - STATE(995), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 5, + ACTIONS(1262), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 40, + ACTIONS(1260), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -107492,7 +96939,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 +96956,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 +96971,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [38166] = 3, + [29789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 6, + ACTIONS(1298), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 41, + ACTIONS(1296), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -107544,8 +96993,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, @@ -107574,17 +97024,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [38221] = 3, + [29845] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 6, + ACTIONS(1282), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 41, + ACTIONS(1280), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -107596,8 +97046,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, @@ -107626,324 +97077,204 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [38276] = 22, - ACTIONS(71), 1, + [29901] = 3, + 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(1302), 6, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(5039), 1, + sym__bare_dollar, 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, + aux_sym_heredoc_redirect_token1, + ACTIONS(1300), 42, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(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_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, - [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, + aux_sym_concatenation_token1, 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, + [29957] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1306), 6, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1304), 42, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_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(2162), 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_SEMI_AMP, + anon_sym_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, - [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, + aux_sym_concatenation_token1, 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, + [30013] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1302), 6, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1300), 42, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_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_SEMI_AMP, + anon_sym_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, - [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, + aux_sym_concatenation_token1, 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, - anon_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(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_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - 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, + sym_word, + [30069] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2037), 1, - anon_sym_DQUOTE, - ACTIONS(4145), 1, + ACTIONS(4182), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(4184), 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(6329), 1, + sym_subscript, + ACTIONS(2389), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3937), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4178), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(4180), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(562), 2, + sym_file_redirect, + sym_heredoc_redirect, + STATE(4013), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3944), 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(4018), 3, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(3935), 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 +97282,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 +97299,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [38713] = 22, + [30145] = 30, ACTIONS(71), 1, sym_comment, - ACTIONS(5091), 1, + ACTIONS(701), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5093), 1, + ACTIONS(703), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5095), 1, + ACTIONS(705), 1, anon_sym_DOLLAR, - ACTIONS(5097), 1, - sym__special_character, - ACTIONS(5099), 1, + ACTIONS(709), 1, anon_sym_DQUOTE, - ACTIONS(5103), 1, + ACTIONS(713), 1, aux_sym_number_token1, - ACTIONS(5105), 1, + ACTIONS(715), 1, aux_sym_number_token2, - ACTIONS(5107), 1, + ACTIONS(717), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5109), 1, + ACTIONS(719), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5111), 1, + ACTIONS(721), 1, anon_sym_BQUOTE, - ACTIONS(5113), 1, + ACTIONS(723), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5119), 1, + ACTIONS(731), 1, + sym_test_operator, + ACTIONS(733), 1, sym__brace_start, - ACTIONS(5121), 1, + ACTIONS(1352), 1, + anon_sym_LT_LT_LT, + ACTIONS(1354), 1, + sym_file_descriptor, + ACTIONS(2593), 1, sym_word, - ACTIONS(5125), 1, - sym_test_operator, - STATE(5279), 1, + ACTIONS(4145), 1, + sym_variable_name, + ACTIONS(4187), 1, + sym__special_character, + STATE(498), 1, + sym_command_name, + STATE(940), 1, aux_sym__literal_repeat1, - STATE(5506), 1, + STATE(1094), 1, sym_concatenation, - ACTIONS(5115), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5123), 2, + STATE(6343), 1, + sym_subscript, + ACTIONS(711), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(2275), 7, - anon_sym_PIPE, + 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(3140), 2, + sym_variable_assignment, + aux_sym_command_repeat1, + STATE(3382), 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_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(5148), 9, + STATE(779), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -108026,52 +97379,117 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2277), 11, + [30255] = 30, + ACTIONS(71), 1, + sym_comment, + ACTIONS(308), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(310), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(312), 1, + anon_sym_DOLLAR, + ACTIONS(316), 1, + anon_sym_DQUOTE, + ACTIONS(320), 1, + aux_sym_number_token1, + ACTIONS(322), 1, + aux_sym_number_token2, + ACTIONS(324), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(326), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(328), 1, + anon_sym_BQUOTE, + ACTIONS(330), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(338), 1, + sym_test_operator, + ACTIONS(340), 1, + sym__brace_start, + ACTIONS(1352), 1, + anon_sym_LT_LT_LT, + ACTIONS(1354), 1, sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2671), 1, + sym_word, + ACTIONS(4145), 1, + sym_variable_name, + ACTIONS(4189), 1, + sym__special_character, + STATE(515), 1, + sym_command_name, + STATE(1086), 1, + aux_sym__literal_repeat1, + STATE(1282), 1, + sym_concatenation, + STATE(6343), 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(3140), 2, + sym_variable_assignment, + aux_sym_command_repeat1, + STATE(3382), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(1346), 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, - [38806] = 8, + ACTIONS(1344), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(1023), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [30365] = 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(4135), 1, + aux_sym_concatenation_token1, + ACTIONS(4137), 1, + sym__concat, + STATE(830), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4047), 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(4045), 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 +97498,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 +97515,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [38871] = 5, + [30427] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5127), 1, - sym__special_character, - STATE(1005), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 5, + ACTIONS(4135), 1, + aux_sym_concatenation_token1, + ACTIONS(4137), 1, + sym__concat, + STATE(831), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4117), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 40, + ACTIONS(4115), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -108119,7 +97541,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, @@ -108137,6 +97558,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,40 +97571,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [38930] = 8, + [30489] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3089), 1, - anon_sym_DQUOTE, - ACTIONS(3986), 1, + ACTIONS(4184), 1, sym_variable_name, - STATE(1710), 1, - sym_string, - ACTIONS(3984), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, + ACTIONS(4193), 1, + aux_sym_heredoc_redirect_token1, + STATE(6329), 1, + sym_subscript, + ACTIONS(2389), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3937), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4180), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(4191), 2, + anon_sym_SEMI, + anon_sym_AMP, + STATE(562), 2, + sym_file_redirect, + sym_heredoc_redirect, + STATE(4013), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(2321), 3, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(3944), 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(1195), 31, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(3935), 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, @@ -108190,11 +97617,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, @@ -108206,40 +97634,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [38995] = 8, + [30565] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3089), 1, - anon_sym_DQUOTE, - ACTIONS(3986), 1, + ACTIONS(4039), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(4184), 1, sym_variable_name, - STATE(1710), 1, - sym_string, - ACTIONS(3984), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 3, + STATE(6329), 1, + sym_subscript, + ACTIONS(3937), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(562), 2, + sym_file_redirect, + sym_heredoc_redirect, + STATE(4013), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3944), 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), 31, + ACTIONS(4037), 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(3935), 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, @@ -108247,11 +97677,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, @@ -108263,36 +97694,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [39060] = 6, + [30635] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4963), 1, + ACTIONS(4135), 1, aux_sym_concatenation_token1, - ACTIONS(4987), 1, + ACTIONS(4137), 1, sym__concat, - STATE(985), 1, + STATE(830), 1, aux_sym_concatenation_repeat1, - ACTIONS(4282), 5, + ACTIONS(3956), 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(3954), 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, @@ -108318,36 +97750,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [39121] = 6, + [30697] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4963), 1, + ACTIONS(4135), 1, aux_sym_concatenation_token1, - ACTIONS(4987), 1, + ACTIONS(4137), 1, sym__concat, - STATE(986), 1, + STATE(831), 1, aux_sym_concatenation_repeat1, - ACTIONS(4439), 5, + ACTIONS(4121), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 39, + ACTIONS(4119), 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, @@ -108373,23 +97806,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [39182] = 3, + [30759] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 6, + ACTIONS(4184), 1, + sym_variable_name, + STATE(6329), 1, + sym_subscript, + ACTIONS(3939), 2, sym_file_descriptor, - sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(3944), 2, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 41, + STATE(562), 2, + sym_file_redirect, + sym_heredoc_redirect, + STATE(4013), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3935), 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(3937), 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, @@ -108398,7 +97857,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, @@ -108407,139 +97865,239 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + [30827] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4195), 1, + sym_word, + ACTIONS(4197), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4199), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(4201), 1, anon_sym_DOLLAR, + ACTIONS(4203), 1, sym__special_character, + ACTIONS(4205), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4209), 1, aux_sym_number_token1, + ACTIONS(4211), 1, aux_sym_number_token2, + ACTIONS(4213), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4215), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4217), 1, anon_sym_BQUOTE, + ACTIONS(4219), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [39237] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1215), 6, - sym_file_descriptor, - sym__concat, + ACTIONS(4223), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(4225), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 41, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + STATE(4985), 1, + aux_sym__literal_repeat1, + STATE(5180), 1, + sym_concatenation, + ACTIONS(4207), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4221), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2305), 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(4866), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2307), 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, + [30921] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4197), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4199), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(4201), 1, anon_sym_DOLLAR, + ACTIONS(4203), 1, sym__special_character, + ACTIONS(4205), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4209), 1, aux_sym_number_token1, + ACTIONS(4211), 1, aux_sym_number_token2, + ACTIONS(4213), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4215), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4217), 1, anon_sym_BQUOTE, + ACTIONS(4219), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + ACTIONS(4225), 1, + sym__brace_start, + ACTIONS(4227), 1, sym_word, - [39292] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1254), 6, - sym_file_descriptor, - sym__concat, + ACTIONS(4231), 1, sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 41, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + STATE(4959), 1, + aux_sym__literal_repeat1, + STATE(5187), 1, + sym_concatenation, + ACTIONS(4221), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4229), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(2309), 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(4772), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2311), 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, + [31015] = 23, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4233), 1, + sym_word, + ACTIONS(4235), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4237), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(4239), 1, anon_sym_DOLLAR, + ACTIONS(4241), 1, sym__special_character, + ACTIONS(4243), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4247), 1, aux_sym_number_token1, + ACTIONS(4249), 1, aux_sym_number_token2, + ACTIONS(4251), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4253), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4255), 1, anon_sym_BQUOTE, + ACTIONS(4257), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4261), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(4263), 1, + sym_test_operator, + ACTIONS(4265), 1, + sym__brace_start, + STATE(2671), 1, + aux_sym__literal_repeat1, + ACTIONS(4245), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4259), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [39347] = 3, + STATE(881), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2543), 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(2408), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2545), 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, + [31111] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, - sym_file_descriptor, + ACTIONS(4160), 1, + aux_sym_concatenation_token1, + ACTIONS(4162), 1, sym__concat, + STATE(879), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1231), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 41, + ACTIONS(1229), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -108550,9 +98108,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, @@ -108566,7 +98124,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, @@ -108581,92 +98138,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [39402] = 3, + [31173] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, - sym_file_descriptor, + ACTIONS(4269), 1, + anon_sym_DQUOTE, + ACTIONS(4273), 1, + sym_variable_name, + STATE(2341), 1, + sym_string, + ACTIONS(1197), 2, sym__concat, sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 41, - anon_sym_SEMI, + ACTIONS(4271), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(4267), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 33, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + [31239] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4269), 1, + anon_sym_DQUOTE, + ACTIONS(4273), 1, + sym_variable_name, + STATE(2341), 1, + sym_string, + ACTIONS(1191), 2, + sym__concat, + sym_test_operator, + ACTIONS(4271), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(4267), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 33, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_EQ_TILDE, + [31305] = 6, + ACTIONS(71), 1, + sym_comment, + STATE(2555), 1, + aux_sym__literal_repeat1, + STATE(2850), 1, + sym_concatenation, + STATE(2190), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2305), 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, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - [39457] = 6, - 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(2158), 5, + ACTIONS(2307), 25, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 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, @@ -108674,54 +98301,55 @@ 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, - [39518] = 6, - ACTIONS(3), 1, + [31367] = 6, + ACTIONS(71), 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, + STATE(2557), 1, + aux_sym__literal_repeat1, + STATE(2863), 1, + sym_concatenation, + STATE(2193), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2309), 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(2311), 25, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 39, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -108729,31 +98357,111 @@ 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, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [31429] = 30, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1039), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1041), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1043), 1, + anon_sym_DOLLAR, + ACTIONS(1047), 1, + anon_sym_DQUOTE, + ACTIONS(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(2559), 1, + sym_word, + ACTIONS(4145), 1, + sym_variable_name, + ACTIONS(4275), 1, + sym__special_character, + STATE(596), 1, + sym_command_name, + STATE(2076), 1, + aux_sym__literal_repeat1, + STATE(2250), 1, + sym_concatenation, + STATE(6343), 1, + sym_subscript, + ACTIONS(1049), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1063), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [39579] = 3, + ACTIONS(1350), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3140), 2, + sym_variable_assignment, + aux_sym_command_repeat1, + STATE(3382), 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(1561), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [31539] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 6, - sym_file_descriptor, + ACTIONS(4160), 1, + aux_sym_concatenation_token1, + ACTIONS(4277), 1, sym__concat, + STATE(885), 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(1260), 41, + ACTIONS(1207), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -108764,9 +98472,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, @@ -108780,7 +98488,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -108795,17 +98502,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [39634] = 3, + [31601] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 6, - sym_file_descriptor, + ACTIONS(4139), 1, + aux_sym_concatenation_token1, + ACTIONS(4279), 1, sym__concat, + STATE(809), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 6, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 41, + ACTIONS(1213), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -108816,9 +98529,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, @@ -108832,7 +98544,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, @@ -108847,91 +98558,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [39689] = 6, - ACTIONS(3), 1, + [31663] = 23, + ACTIONS(71), 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, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 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, + ACTIONS(4233), 1, + sym_word, + ACTIONS(4235), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4237), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(4239), 1, anon_sym_DOLLAR, + ACTIONS(4241), 1, sym__special_character, + ACTIONS(4243), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4247), 1, aux_sym_number_token1, + ACTIONS(4249), 1, aux_sym_number_token2, + ACTIONS(4251), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4253), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4255), 1, anon_sym_BQUOTE, + ACTIONS(4257), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4263), 1, + sym_test_operator, + ACTIONS(4265), 1, + sym__brace_start, + ACTIONS(4281), 1, + aux_sym__simple_variable_name_token1, + STATE(2671), 1, + aux_sym__literal_repeat1, + ACTIONS(4245), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4259), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [39750] = 6, + STATE(887), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2425), 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(2408), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2427), 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, + [31759] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4963), 1, + ACTIONS(4160), 1, aux_sym_concatenation_token1, - ACTIONS(4987), 1, + ACTIONS(4283), 1, sym__concat, - STATE(985), 1, + STATE(885), 1, aux_sym_concatenation_repeat1, - ACTIONS(5132), 5, + ACTIONS(1215), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 39, + ACTIONS(1213), 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, @@ -108957,36 +98687,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [39811] = 6, + [31821] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4963), 1, + ACTIONS(4139), 1, aux_sym_concatenation_token1, - ACTIONS(4987), 1, + ACTIONS(4141), 1, sym__concat, - STATE(986), 1, + ACTIONS(4285), 1, + anon_sym_LPAREN, + STATE(880), 1, aux_sym_concatenation_repeat1, - ACTIONS(5136), 5, + ACTIONS(1240), 6, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5134), 39, + ACTIONS(1233), 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, @@ -109012,97 +98744,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [39872] = 8, - ACTIONS(3), 1, + [31885] = 30, + ACTIONS(71), 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(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), 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, + 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(1352), 1, + anon_sym_LT_LT_LT, + ACTIONS(1354), 1, + sym_file_descriptor, + ACTIONS(2671), 1, + sym_word, + ACTIONS(4145), 1, + sym_variable_name, + ACTIONS(4189), 1, + sym__special_character, + STATE(514), 1, + sym_command_name, + STATE(1086), 1, + aux_sym__literal_repeat1, + STATE(1282), 1, + sym_concatenation, + STATE(6343), 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, - [39937] = 8, + ACTIONS(1350), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3140), 2, + sym_variable_assignment, + aux_sym_command_repeat1, + STATE(3382), 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(1023), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [31995] = 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, + ACTIONS(4288), 1, + aux_sym_concatenation_token1, + ACTIONS(4291), 1, + sym__concat, + STATE(885), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1221), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, 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, + aux_sym_heredoc_redirect_token1, + ACTIONS(1219), 40, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_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, @@ -109111,10 +98863,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, @@ -109126,140 +98880,221 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40002] = 3, - ACTIONS(3), 1, + [32057] = 30, + ACTIONS(71), 1, sym_comment, - ACTIONS(1274), 6, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, + ACTIONS(308), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(310), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(312), 1, + anon_sym_DOLLAR, + ACTIONS(316), 1, + anon_sym_DQUOTE, + ACTIONS(320), 1, + aux_sym_number_token1, + ACTIONS(322), 1, + aux_sym_number_token2, + ACTIONS(324), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(326), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(328), 1, + anon_sym_BQUOTE, + ACTIONS(330), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(340), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 41, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, + ACTIONS(1023), 1, + sym_test_operator, + ACTIONS(1352), 1, + anon_sym_LT_LT_LT, + ACTIONS(1354), 1, + sym_file_descriptor, + ACTIONS(2776), 1, + sym_word, + ACTIONS(4145), 1, + sym_variable_name, + ACTIONS(4294), 1, + sym__special_character, + STATE(573), 1, + sym_command_name, + STATE(1086), 1, + aux_sym__literal_repeat1, + STATE(1282), 1, + sym_concatenation, + STATE(6343), 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(3140), 2, + sym_variable_assignment, + aux_sym_command_repeat1, + STATE(3382), 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_LT_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(1543), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [32167] = 23, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4296), 1, + sym_word, + ACTIONS(4299), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4302), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(4305), 1, anon_sym_DOLLAR, + ACTIONS(4308), 1, sym__special_character, + ACTIONS(4311), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4317), 1, aux_sym_number_token1, + ACTIONS(4320), 1, aux_sym_number_token2, + ACTIONS(4323), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4326), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4329), 1, anon_sym_BQUOTE, + ACTIONS(4332), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [40057] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1282), 6, - sym_file_descriptor, - sym__concat, + ACTIONS(4338), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(4341), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(4344), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 41, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + STATE(2671), 1, + aux_sym__literal_repeat1, + ACTIONS(4314), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4335), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(887), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2326), 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(2408), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2328), 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, + [32263] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3299), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3301), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(3303), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(3307), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3309), 1, aux_sym_number_token1, + ACTIONS(3311), 1, aux_sym_number_token2, + ACTIONS(3313), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3315), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3317), 1, anon_sym_BQUOTE, + ACTIONS(3319), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3325), 1, + sym__brace_start, + ACTIONS(4349), 1, + sym__special_character, + ACTIONS(4351), 1, + sym_test_operator, + STATE(4064), 1, + aux_sym__literal_repeat1, + STATE(4433), 1, + sym_concatenation, + ACTIONS(2307), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3321), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(4347), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [40112] = 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(4519), 5, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4517), 39, - anon_sym_SEMI, + STATE(4859), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2305), 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_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, @@ -109269,52 +99104,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + [32355] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3299), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3301), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3303), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(3307), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3309), 1, aux_sym_number_token1, + ACTIONS(3311), 1, aux_sym_number_token2, + ACTIONS(3313), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3315), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3317), 1, anon_sym_BQUOTE, + ACTIONS(3319), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [40173] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5140), 1, + ACTIONS(3325), 1, + sym__brace_start, + ACTIONS(4349), 1, sym__special_character, - STATE(995), 1, + ACTIONS(4355), 1, + sym_test_operator, + STATE(4121), 1, aux_sym__literal_repeat1, - ACTIONS(4282), 5, + STATE(4375), 1, + sym_concatenation, + ACTIONS(2311), 2, sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 40, - anon_sym_SEMI, + ACTIONS(3321), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4353), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(4861), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2309), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -109324,37 +99175,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_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, - [40232] = 6, + [32447] = 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(4305), 5, + ACTIONS(1298), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4303), 39, + ACTIONS(1296), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -109365,8 +99196,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, @@ -109380,6 +99213,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, @@ -109394,20 +99228,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40293] = 5, + [32503] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5140), 1, - sym__special_character, - STATE(995), 1, - aux_sym__literal_repeat1, - ACTIONS(4309), 5, + ACTIONS(1306), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 40, + ACTIONS(1304), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -109418,7 +99249,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -109435,7 +99265,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -109448,32 +99280,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40352] = 3, + [32558] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, + ACTIONS(2172), 1, + anon_sym_DQUOTE, + ACTIONS(3672), 1, + sym_variable_name, + STATE(1426), 1, + sym_string, + ACTIONS(3670), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1191), 3, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 41, - anon_sym_SEMI, + ACTIONS(3668), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 31, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -109482,13 +99322,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, @@ -109500,32 +99337,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40407] = 3, + [32623] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 6, + ACTIONS(2989), 1, + anon_sym_DQUOTE, + ACTIONS(3678), 1, + sym_variable_name, + STATE(1607), 1, + sym_string, + ACTIONS(3676), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1197), 3, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 41, - anon_sym_SEMI, + ACTIONS(3674), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 31, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_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,13 +99379,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, @@ -109552,37 +99394,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40462] = 7, + [32688] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4661), 1, - aux_sym_concatenation_token1, - ACTIONS(4663), 1, - sym__concat, - ACTIONS(5142), 1, - anon_sym_LPAREN, - STATE(1076), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1240), 5, + ACTIONS(2989), 1, + anon_sym_DQUOTE, + ACTIONS(3678), 1, + sym_variable_name, + STATE(1607), 1, + sym_string, + ACTIONS(3676), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1191), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1233), 38, - anon_sym_SEMI, + ACTIONS(3674), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 31, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -109591,12 +99436,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, @@ -109608,32 +99451,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40525] = 3, + [32753] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 6, - sym_file_descriptor, + ACTIONS(4357), 1, + aux_sym_concatenation_token1, + ACTIONS(4359), 1, sym__concat, + STATE(997), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1231), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 41, + ACTIONS(1229), 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, @@ -109645,7 +99492,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -109660,32 +99506,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40580] = 3, + [32814] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, - sym_file_descriptor, + ACTIONS(4361), 1, + aux_sym_concatenation_token1, + ACTIONS(4363), 1, sym__concat, + STATE(1029), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1231), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 41, + ACTIONS(1229), 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, @@ -109694,10 +99544,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, @@ -109711,18 +99559,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, - [40635] = 3, + [32875] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 6, + ACTIONS(1258), 7, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 41, + ACTIONS(1256), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -109733,9 +99583,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -109764,17 +99613,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40690] = 3, + [32930] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, + ACTIONS(1221), 7, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 41, + ACTIONS(1219), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -109785,9 +99635,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, @@ -109816,32 +99665,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40745] = 3, + [32985] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 6, + ACTIONS(2319), 1, + ts_builtin_sym_end, + ACTIONS(4369), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(4371), 1, + sym_variable_name, + STATE(6303), 1, + sym_subscript, + ACTIONS(2637), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3937), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4367), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(586), 2, + sym_file_redirect, + sym_heredoc_redirect, + STATE(4184), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3944), 3, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 41, + ACTIONS(4365), 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, + ACTIONS(3935), 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, @@ -109849,11 +99710,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, @@ -109868,17 +99727,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40800] = 3, + [33060] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(1254), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 41, + ACTIONS(1252), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -109889,9 +99748,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, @@ -109920,17 +99779,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40855] = 3, + [33115] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, + ACTIONS(1310), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 41, + ACTIONS(1308), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -109941,9 +99800,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, @@ -109972,17 +99831,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40910] = 3, + [33170] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(1278), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 41, + ACTIONS(1276), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -109993,9 +99852,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, @@ -110024,32 +99883,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40965] = 3, + [33225] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, + ACTIONS(4018), 1, + anon_sym_RPAREN, + ACTIONS(4182), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(4376), 1, + sym_variable_name, + STATE(6313), 1, + sym_subscript, + ACTIONS(2782), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3937), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4374), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(599), 2, + sym_file_redirect, + sym_heredoc_redirect, + STATE(4281), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3944), 3, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 41, + ACTIONS(4178), 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, + ACTIONS(3935), 27, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -110057,11 +99928,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, @@ -110076,18 +99945,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41020] = 3, + [33300] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 7, + ACTIONS(1278), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 40, + ACTIONS(1276), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -110098,8 +99966,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, @@ -110128,18 +99997,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41075] = 3, + [33355] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 7, + ACTIONS(1250), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 40, + ACTIONS(1248), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -110150,8 +100018,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, @@ -110180,18 +100049,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41130] = 3, + [33410] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 7, + ACTIONS(1240), 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(1296), 40, + ACTIONS(1233), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -110203,7 +100070,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -110217,7 +100087,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,40 +100101,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41185] = 9, - ACTIONS(71), 1, + [33465] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(5149), 1, + ACTIONS(260), 1, anon_sym_DQUOTE, - ACTIONS(5151), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5153), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5155), 1, - anon_sym_BQUOTE, - ACTIONS(5157), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2337), 3, + ACTIONS(1197), 1, + sym_test_operator, + ACTIONS(4383), 1, + sym_variable_name, + STATE(2069), 1, 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, + ACTIONS(4381), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(4379), 8, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(5147), 25, - sym_test_operator, + 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, @@ -110281,140 +100141,94 @@ static const uint16_t ts_small_parse_table[] = { 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_RBRACK_RBRACK, anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [41252] = 3, + [33530] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 6, - sym_file_descriptor, - sym__concat, + ACTIONS(260), 1, + anon_sym_DQUOTE, + ACTIONS(1191), 1, sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 41, - anon_sym_SEMI, + ACTIONS(4383), 1, + sym_variable_name, + STATE(2069), 1, + sym_string, + ACTIONS(4381), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(4379), 8, + 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_LPAREN, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, 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, - [41307] = 12, + [33595] = 5, 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, - 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_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_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(4385), 1, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [41380] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1302), 7, + STATE(913), 1, + aux_sym__literal_repeat1, + ACTIONS(3956), 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(1300), 40, + ACTIONS(3954), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -110425,8 +100239,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, @@ -110440,9 +100256,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, @@ -110455,17 +100269,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41435] = 3, + [33654] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, - sym_file_descriptor, + ACTIONS(4387), 1, + aux_sym_concatenation_token1, + ACTIONS(4389), 1, sym__concat, + STATE(978), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4117), 6, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 41, + ACTIONS(4115), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -110476,8 +100296,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -110492,7 +100310,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,18 +100324,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41490] = 3, + [33715] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 7, + ACTIONS(1274), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 40, + ACTIONS(1272), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -110530,6 +100346,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, @@ -110559,32 +100376,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41545] = 3, + [33770] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 7, - sym_file_descriptor, + ACTIONS(4361), 1, + aux_sym_concatenation_token1, + ACTIONS(4363), 1, sym__concat, + STATE(1029), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4393), 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(1300), 40, + ACTIONS(4391), 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, @@ -110593,10 +100414,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, @@ -110610,19 +100429,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, - [41600] = 3, + [33831] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 7, + ACTIONS(4395), 1, + sym__special_character, + STATE(913), 1, + aux_sym__literal_repeat1, + ACTIONS(1318), 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(1312), 40, + ACTIONS(1316), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -110633,8 +100455,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, @@ -110648,9 +100472,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, @@ -110663,23 +100485,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41655] = 6, + [33890] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5168), 1, - aux_sym_concatenation_token1, - ACTIONS(5170), 1, - sym__concat, - STATE(1114), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4519), 6, + ACTIONS(4385), 1, + sym__special_character, + STATE(913), 1, + aux_sym__literal_repeat1, + ACTIONS(4047), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4517), 38, + ACTIONS(4045), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -110690,7 +100509,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, @@ -110705,7 +100527,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, @@ -110718,32 +100539,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41716] = 3, + [33949] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 6, - sym_file_descriptor, + ACTIONS(4361), 1, + aux_sym_concatenation_token1, + ACTIONS(4363), 1, sym__concat, + STATE(1033), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4400), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 41, + ACTIONS(4398), 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, @@ -110752,10 +100577,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, @@ -110769,24 +100592,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, - [41771] = 6, + [34010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5168), 1, - aux_sym_concatenation_token1, - ACTIONS(5170), 1, - sym__concat, - STATE(1115), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4305), 6, + ACTIONS(1286), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4303), 38, + ACTIONS(1284), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -110798,6 +100616,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, @@ -110811,6 +100631,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, @@ -110825,16 +100646,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41832] = 3, + [34065] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1240), 5, + ACTIONS(1290), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1233), 42, + ACTIONS(1288), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -110845,8 +100667,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -110863,6 +100683,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, @@ -110877,23 +100698,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41887] = 8, + [34120] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5174), 1, + ACTIONS(2794), 1, anon_sym_DQUOTE, - ACTIONS(5178), 1, + ACTIONS(3572), 1, sym_variable_name, - STATE(2581), 1, + STATE(1763), 1, sym_string, - ACTIONS(5176), 2, + ACTIONS(3570), 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(5172), 8, + ACTIONS(3568), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -110919,7 +100740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -110934,23 +100755,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41952] = 8, + [34185] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5174), 1, + ACTIONS(2794), 1, anon_sym_DQUOTE, - ACTIONS(5178), 1, + ACTIONS(3572), 1, sym_variable_name, - STATE(2581), 1, + STATE(1763), 1, sym_string, - ACTIONS(5176), 2, + ACTIONS(3570), 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(5172), 8, + ACTIONS(3568), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -110976,7 +100797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -110991,97 +100812,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, 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, - 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, - 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, + [34250] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5165), 1, + ACTIONS(4371), 1, sym_variable_name, - ACTIONS(5182), 1, + ACTIONS(4402), 1, + ts_builtin_sym_end, + ACTIONS(4406), 1, aux_sym_heredoc_redirect_token1, - STATE(6701), 1, + STATE(6303), 1, sym_subscript, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4529), 2, + ACTIONS(2637), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(5161), 2, + ACTIONS(3937), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4367), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - STATE(4605), 2, + STATE(586), 2, + sym_file_redirect, + sym_heredoc_redirect, + STATE(4184), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(4161), 3, + ACTIONS(3944), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(5180), 3, + ACTIONS(4404), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - STATE(4731), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4153), 27, + ACTIONS(3935), 27, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -111109,21 +100874,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42155] = 8, + [34325] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1191), 1, - sym_test_operator, - ACTIONS(4927), 1, + ACTIONS(4410), 1, anon_sym_DQUOTE, - ACTIONS(4931), 1, + ACTIONS(4414), 1, sym_variable_name, - STATE(2500), 1, + STATE(2389), 1, sym_string, - ACTIONS(4929), 2, + ACTIONS(4412), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4925), 8, + ACTIONS(1197), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(4408), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -111132,57 +100899,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1183), 33, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + ACTIONS(1195), 31, 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, + 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, + [34390] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4947), 1, + ACTIONS(4410), 1, anon_sym_DQUOTE, - ACTIONS(4951), 1, + ACTIONS(4414), 1, sym_variable_name, - STATE(2777), 1, + STATE(2389), 1, sym_string, - ACTIONS(4949), 2, + ACTIONS(4412), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, + ACTIONS(1191), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(4945), 8, + ACTIONS(4408), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -111191,7 +100956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1195), 31, + ACTIONS(1183), 31, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -111200,7 +100965,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -111209,6 +100973,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, @@ -111223,36 +100988,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42285] = 6, + [34455] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4975), 1, - aux_sym_concatenation_token1, - ACTIONS(4989), 1, + ACTIONS(1282), 6, + sym_file_descriptor, sym__concat, - STATE(988), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5186), 5, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1280), 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, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [34510] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1266), 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), 39, + ACTIONS(1264), 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, @@ -111261,8 +101074,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, @@ -111276,38 +101091,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, - [42346] = 6, + [34565] = 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(5190), 5, + ACTIONS(1294), 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), 39, + ACTIONS(1292), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_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,8 +101126,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, @@ -111331,42 +101143,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, - [42407] = 8, + [34620] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5194), 1, - anon_sym_DQUOTE, - ACTIONS(5198), 1, - sym_variable_name, - STATE(2456), 1, - sym_string, - ACTIONS(5196), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 3, + ACTIONS(1262), 6, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(5192), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, + aux_sym_heredoc_redirect_token1, + ACTIONS(1260), 41, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_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_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 31, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [34675] = 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), 41, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -111378,7 +101233,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -111390,17 +101248,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42472] = 3, + [34730] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, + ACTIONS(1282), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 41, + ACTIONS(1280), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -111411,9 +101269,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, @@ -111442,17 +101300,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42527] = 3, + [34785] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 6, + ACTIONS(1302), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 41, + ACTIONS(1300), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -111463,9 +101321,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, @@ -111494,17 +101352,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42582] = 3, + [34840] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 6, + ACTIONS(1270), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 41, + ACTIONS(1268), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -111546,17 +101404,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42637] = 3, + [34895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 6, + ACTIONS(1302), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 41, + ACTIONS(1300), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -111567,9 +101425,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, @@ -111598,17 +101456,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42692] = 3, + [34950] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, + 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(1292), 41, + ACTIONS(1268), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -111620,7 +101479,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, @@ -111650,20 +101508,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42747] = 5, + [35005] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5140), 1, - sym__special_character, - STATE(995), 1, - aux_sym__literal_repeat1, - ACTIONS(4370), 5, + ACTIONS(1262), 7, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4368), 40, + ACTIONS(1260), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -111674,10 +101530,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_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, @@ -111691,7 +101545,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 +101560,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42806] = 3, + [35060] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 7, + ACTIONS(4371), 1, + sym_variable_name, + STATE(6303), 1, + sym_subscript, + ACTIONS(3944), 2, + sym_test_operator, + sym__brace_start, + STATE(586), 2, + sym_file_redirect, + sym_heredoc_redirect, + STATE(4184), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3939), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(3935), 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(3937), 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, + [35127] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 7, sym_file_descriptor, sym__concat, sym_test_operator, @@ -111715,7 +101629,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(1296), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -111756,10 +101670,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42861] = 3, + [35182] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 7, + ACTIONS(1302), 7, sym_file_descriptor, sym__concat, sym_test_operator, @@ -111767,7 +101681,7 @@ static const uint16_t ts_small_parse_table[] = { sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 40, + ACTIONS(1300), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -111808,41 +101722,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42916] = 10, + [35237] = 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(1286), 6, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - STATE(4612), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4155), 7, + aux_sym_heredoc_redirect_token1, + ACTIONS(1284), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_LT_LT_DASH, - ACTIONS(4153), 27, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_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, @@ -111850,9 +101755,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, @@ -111867,22 +101774,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42985] = 6, + [35292] = 3, 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, + ACTIONS(1306), 7, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 39, + ACTIONS(1304), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -111908,6 +101811,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 +101826,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43046] = 6, + [35347] = 8, 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(4418), 1, + anon_sym_DQUOTE, + ACTIONS(4422), 1, + sym_variable_name, + STATE(2511), 1, + sym_string, + ACTIONS(4420), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1197), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 39, - anon_sym_SEMI, + ACTIONS(4416), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 31, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, + anon_sym_RBRACK, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -111960,12 +101869,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, @@ -111977,17 +101883,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43107] = 3, + [35412] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 6, + ACTIONS(4424), 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(1248), 41, + ACTIONS(237), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -111999,8 +101908,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, @@ -112014,9 +101924,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, @@ -112029,17 +101937,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43162] = 3, + [35471] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, + ACTIONS(1302), 7, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 41, + ACTIONS(1300), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -112051,7 +101960,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -112081,17 +101989,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43217] = 3, + [35526] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(4418), 1, + anon_sym_DQUOTE, + ACTIONS(4422), 1, + sym_variable_name, + STATE(2511), 1, + sym_string, + ACTIONS(4420), 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(4416), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 31, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_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, + [35591] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 7, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 41, + ACTIONS(1308), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -112103,7 +102069,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, @@ -112133,17 +102098,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43272] = 3, + [35646] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, + ACTIONS(1290), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 41, + ACTIONS(1288), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -112185,17 +102150,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43327] = 3, + [35701] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(1266), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 41, + ACTIONS(1264), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -112237,18 +102202,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43382] = 3, + [35756] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 7, + ACTIONS(1250), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 40, + ACTIONS(1248), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -112260,6 +102224,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, @@ -112289,36 +102254,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43437] = 5, + [35811] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5140), 1, - sym__special_character, - STATE(995), 1, - aux_sym__literal_repeat1, - ACTIONS(4519), 5, + ACTIONS(4371), 1, + sym_variable_name, + STATE(6303), 1, + sym_subscript, + ACTIONS(3937), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4039), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + STATE(586), 2, + sym_file_redirect, + sym_heredoc_redirect, + STATE(4184), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3944), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4517), 40, + ACTIONS(4037), 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(3935), 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, @@ -112326,11 +102296,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, @@ -112343,17 +102313,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43496] = 3, + [35880] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 6, - sym_file_descriptor, + ACTIONS(4426), 1, + aux_sym_concatenation_token1, + ACTIONS(4428), 1, sym__concat, + STATE(999), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4047), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 41, + ACTIONS(4045), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -112364,7 +102339,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, @@ -112380,7 +102354,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, @@ -112395,18 +102368,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43551] = 3, + [35941] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 7, - sym_file_descriptor, + ACTIONS(4426), 1, + aux_sym_concatenation_token1, + ACTIONS(4428), 1, sym__concat, + STATE(1000), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4117), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 40, + ACTIONS(4115), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -112417,7 +102394,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, @@ -112432,7 +102409,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, @@ -112447,18 +102423,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43606] = 3, + [36002] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 7, + ACTIONS(1294), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 40, + ACTIONS(1292), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -112470,6 +102445,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, @@ -112499,18 +102475,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43661] = 3, + [36057] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 7, + ACTIONS(4430), 1, + sym__special_character, + STATE(951), 1, + aux_sym__literal_repeat1, + ACTIONS(1318), 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(1252), 40, + ACTIONS(1316), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -112523,6 +102501,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, @@ -112536,9 +102516,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, @@ -112551,18 +102529,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43716] = 3, + [36116] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 7, + ACTIONS(1262), 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(1264), 40, + ACTIONS(1260), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -112574,6 +102551,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, @@ -112603,36 +102581,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43771] = 5, + [36171] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5204), 1, - sym__special_character, - STATE(1005), 1, - aux_sym__literal_repeat1, - ACTIONS(276), 5, + ACTIONS(2321), 1, + anon_sym_RPAREN, + ACTIONS(4193), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(4376), 1, + sym_variable_name, + STATE(6313), 1, + sym_subscript, + ACTIONS(2782), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3937), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4374), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(599), 2, + sym_file_redirect, + sym_heredoc_redirect, + STATE(4281), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3944), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(237), 40, + ACTIONS(4191), 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, + ACTIONS(3935), 27, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -112640,11 +102626,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, @@ -112657,18 +102643,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43830] = 3, + [36246] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 7, - sym_file_descriptor, + ACTIONS(4387), 1, + aux_sym_concatenation_token1, + ACTIONS(4389), 1, sym__concat, + STATE(977), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3956), 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(3954), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -112679,7 +102670,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, @@ -112694,7 +102684,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, @@ -112709,18 +102698,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43885] = 3, + [36307] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 7, - sym_file_descriptor, + ACTIONS(4387), 1, + aux_sym_concatenation_token1, + ACTIONS(4389), 1, sym__concat, + STATE(977), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4125), 6, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 40, + ACTIONS(4123), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -112731,7 +102725,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, @@ -112746,7 +102739,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 +102753,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43940] = 9, + [36368] = 6, 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, - sym__special_character, - anon_sym_DQUOTE, - sym_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, - sym_file_descriptor, + ACTIONS(4387), 1, + aux_sym_concatenation_token1, + ACTIONS(4389), 1, sym__concat, + STATE(978), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3915), 6, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 40, + ACTIONS(3913), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -112841,7 +102780,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, @@ -112856,7 +102794,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, @@ -112871,23 +102808,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [44062] = 6, + [36429] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5168), 1, + ACTIONS(4160), 1, aux_sym_concatenation_token1, - ACTIONS(5170), 1, + ACTIONS(4433), 1, sym__concat, - STATE(1114), 1, + STATE(885), 1, aux_sym_concatenation_repeat1, - ACTIONS(4370), 6, + ACTIONS(1209), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4368), 38, + ACTIONS(1207), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -112898,6 +102834,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, @@ -112926,23 +102863,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [44123] = 6, + [36490] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5168), 1, + ACTIONS(4160), 1, aux_sym_concatenation_token1, - ACTIONS(5170), 1, + ACTIONS(4435), 1, sym__concat, - STATE(1115), 1, + STATE(885), 1, aux_sym_concatenation_repeat1, - ACTIONS(4443), 6, + ACTIONS(1215), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4441), 38, + ACTIONS(1213), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -112953,6 +102889,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, @@ -112981,36 +102918,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [44184] = 6, + [36551] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4963), 1, + ACTIONS(4387), 1, aux_sym_concatenation_token1, - ACTIONS(4987), 1, + ACTIONS(4389), 1, sym__concat, - STATE(986), 1, + STATE(978), 1, aux_sym_concatenation_repeat1, - ACTIONS(2162), 5, + ACTIONS(4121), 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(4119), 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 +102973,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [44245] = 12, + [36612] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5165), 1, - sym_variable_name, - ACTIONS(5208), 1, + ACTIONS(4039), 1, aux_sym_heredoc_redirect_token1, - STATE(6701), 1, + ACTIONS(4376), 1, + sym_variable_name, + STATE(6313), 1, sym_subscript, - ACTIONS(4157), 2, + ACTIONS(3937), 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, + STATE(599), 2, + sym_file_redirect, + sym_heredoc_redirect, + STATE(4281), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(4161), 3, + ACTIONS(3944), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(5206), 3, + ACTIONS(4037), 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, - STATE(4731), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4153), 27, + anon_sym_LT_LT_DASH, + ACTIONS(3935), 27, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -113097,45 +103032,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [44318] = 13, + [36681] = 6, 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(4387), 1, + aux_sym_concatenation_token1, + ACTIONS(4389), 1, + sym__concat, + STATE(977), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4006), 6, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(5210), 3, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(4004), 38, 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_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -113143,6 +103069,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, @@ -113155,27 +103082,28 @@ 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, + [36742] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5168), 1, + ACTIONS(4387), 1, aux_sym_concatenation_token1, - ACTIONS(5170), 1, + ACTIONS(4389), 1, sym__concat, - STATE(1114), 1, + STATE(978), 1, aux_sym_concatenation_repeat1, - ACTIONS(4282), 6, + ACTIONS(4010), 6, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 38, + ACTIONS(4008), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -113214,23 +103142,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [44454] = 6, + [36803] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5168), 1, + ACTIONS(4426), 1, aux_sym_concatenation_token1, - ACTIONS(5170), 1, + ACTIONS(4428), 1, sym__concat, - STATE(1115), 1, + STATE(999), 1, aux_sym_concatenation_repeat1, - ACTIONS(4439), 6, + ACTIONS(3956), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 38, + ACTIONS(3954), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -113241,6 +103168,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, @@ -113269,23 +103197,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [44515] = 6, + [36864] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5168), 1, + ACTIONS(4426), 1, aux_sym_concatenation_token1, - ACTIONS(5170), 1, + ACTIONS(4428), 1, sym__concat, - STATE(1114), 1, + STATE(1000), 1, aux_sym_concatenation_repeat1, - ACTIONS(4309), 6, + ACTIONS(4121), 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(4119), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -113296,6 +103223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -113324,23 +103252,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [44576] = 6, + [36925] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5168), 1, - aux_sym_concatenation_token1, - ACTIONS(5170), 1, - sym__concat, - STATE(1115), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4313), 6, + ACTIONS(1278), 7, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 38, + ACTIONS(1276), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -113351,6 +103274,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, @@ -113365,6 +103289,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, @@ -113379,21 +103304,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [44637] = 8, + [36980] = 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), 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, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [37035] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(260), 1, anon_sym_DQUOTE, ACTIONS(1197), 1, sym_test_operator, - ACTIONS(4957), 1, + ACTIONS(4383), 1, sym_variable_name, - STATE(2219), 1, + STATE(2069), 1, sym_string, - ACTIONS(4955), 2, + ACTIONS(4381), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4953), 8, + ACTIONS(4379), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -113436,21 +103413,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, - [44702] = 8, + [37100] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(260), 1, anon_sym_DQUOTE, ACTIONS(1191), 1, sym_test_operator, - ACTIONS(4957), 1, + ACTIONS(4383), 1, sym_variable_name, - STATE(2219), 1, + STATE(2069), 1, sym_string, - ACTIONS(4955), 2, + ACTIONS(4381), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4953), 8, + ACTIONS(4379), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -113493,22 +103470,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, - [44767] = 6, + [37165] = 3, 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, + ACTIONS(1286), 7, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 39, + ACTIONS(1284), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -113519,7 +103492,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, @@ -113534,6 +103507,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, @@ -113548,22 +103522,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [44828] = 6, + [37220] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4959), 1, + ACTIONS(4426), 1, aux_sym_concatenation_token1, - ACTIONS(5138), 1, + ACTIONS(4428), 1, sym__concat, - STATE(982), 1, + STATE(999), 1, aux_sym_concatenation_repeat1, - ACTIONS(4439), 5, + ACTIONS(4125), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 39, + ACTIONS(4123), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -113603,22 +103577,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [44889] = 6, + [37281] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4959), 1, + ACTIONS(4426), 1, aux_sym_concatenation_token1, - ACTIONS(5138), 1, + ACTIONS(4428), 1, sym__concat, - STATE(1120), 1, + STATE(1000), 1, aux_sym_concatenation_repeat1, - ACTIONS(4309), 5, + ACTIONS(3915), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 39, + ACTIONS(3913), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -113658,22 +103632,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [44950] = 6, + [37342] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4959), 1, + ACTIONS(4426), 1, aux_sym_concatenation_token1, - ACTIONS(5138), 1, + ACTIONS(4428), 1, sym__concat, - STATE(982), 1, + STATE(999), 1, aux_sym_concatenation_repeat1, - ACTIONS(4313), 5, + ACTIONS(4006), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 39, + ACTIONS(4004), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -113713,18 +103687,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45011] = 3, + [37403] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 7, - sym_file_descriptor, + ACTIONS(4426), 1, + aux_sym_concatenation_token1, + ACTIONS(4428), 1, sym__concat, + STATE(1000), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4010), 5, + 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(4008), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -113735,7 +103713,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, @@ -113750,7 +103728,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, @@ -113765,119 +103742,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45066] = 3, - ACTIONS(3), 1, + [37464] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(1215), 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, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + STATE(2777), 1, + aux_sym__literal_repeat1, + STATE(3023), 1, + 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, + ACTIONS(2305), 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_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, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - 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, + ACTIONS(2307), 23, + sym_file_descriptor, 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, @@ -113888,23 +103787,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [45214] = 6, + 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, + [37525] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5168), 1, - aux_sym_concatenation_token1, - ACTIONS(5170), 1, - sym__concat, - STATE(1114), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1225), 6, + ACTIONS(1274), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 38, + ACTIONS(1272), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -113916,6 +103819,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, @@ -113929,6 +103834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -113943,56 +103849,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45275] = 22, + [37580] = 6, 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, + STATE(2792), 1, aux_sym__literal_repeat1, - STATE(5464), 1, + STATE(3071), 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, + STATE(2367), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -114002,8 +103866,24 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2277), 11, + ACTIONS(2309), 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(2311), 23, sym_file_descriptor, + sym_test_operator, + sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -114014,23 +103894,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [45368] = 6, + 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, + [37641] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5168), 1, + ACTIONS(4387), 1, aux_sym_concatenation_token1, - ACTIONS(5252), 1, + ACTIONS(4437), 1, sym__concat, - STATE(1116), 1, + STATE(979), 1, aux_sym_concatenation_repeat1, - ACTIONS(1229), 6, + ACTIONS(1209), 6, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 38, + ACTIONS(1207), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -114069,23 +103959,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45429] = 6, + [37702] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5168), 1, + ACTIONS(4387), 1, aux_sym_concatenation_token1, - ACTIONS(5254), 1, + ACTIONS(4439), 1, sym__concat, - STATE(1116), 1, + STATE(979), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 6, + ACTIONS(1215), 6, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 38, + ACTIONS(1213), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -114124,23 +104014,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45490] = 6, + [37763] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5256), 1, + ACTIONS(4441), 1, aux_sym_concatenation_token1, - ACTIONS(5259), 1, + ACTIONS(4444), 1, sym__concat, - STATE(1116), 1, + STATE(979), 1, aux_sym_concatenation_repeat1, - ACTIONS(1215), 6, + ACTIONS(1221), 6, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 38, + ACTIONS(1219), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -114179,22 +104069,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45551] = 6, + [37824] = 3, 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(1290), 7, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4368), 39, + ACTIONS(1288), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -114205,7 +104091,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, @@ -114220,6 +104106,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, @@ -114234,22 +104121,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45612] = 6, + [37879] = 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(4443), 5, + ACTIONS(1274), 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(4441), 39, + ACTIONS(1272), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -114260,7 +104143,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, @@ -114275,6 +104158,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, @@ -114289,22 +104173,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45673] = 6, + [37934] = 3, 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(1225), 5, + ACTIONS(1302), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 39, + ACTIONS(1300), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -114315,6 +104194,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, @@ -114330,6 +104210,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, @@ -114344,22 +104225,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45734] = 6, + [37989] = 3, 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(1306), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 39, + ACTIONS(1304), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -114370,6 +104246,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, @@ -114385,6 +104262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -114399,22 +104277,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45795] = 6, + [38044] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4963), 1, + ACTIONS(4357), 1, aux_sym_concatenation_token1, - ACTIONS(4987), 1, + ACTIONS(4359), 1, sym__concat, - STATE(985), 1, + STATE(997), 1, aux_sym_concatenation_repeat1, - ACTIONS(5266), 5, + ACTIONS(4449), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 39, + ACTIONS(4447), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -114454,22 +104332,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45856] = 6, + [38105] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4963), 1, + ACTIONS(4357), 1, aux_sym_concatenation_token1, - ACTIONS(4987), 1, + ACTIONS(4359), 1, sym__concat, - STATE(986), 1, + STATE(1015), 1, aux_sym_concatenation_repeat1, - ACTIONS(5270), 5, + ACTIONS(4453), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 39, + ACTIONS(4451), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -114509,36 +104387,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45917] = 6, + [38166] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4975), 1, - aux_sym_concatenation_token1, - ACTIONS(4989), 1, - sym__concat, - STATE(988), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5266), 5, + ACTIONS(1302), 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(1300), 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, @@ -114547,8 +104421,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -114562,38 +104438,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, - [45978] = 6, + [38221] = 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(1231), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 39, + ACTIONS(1229), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -114602,6 +104474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -114617,38 +104490,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [46039] = 6, + [38276] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4661), 1, + ACTIONS(4361), 1, aux_sym_concatenation_token1, - ACTIONS(4663), 1, + ACTIONS(4363), 1, sym__concat, - STATE(1075), 1, + STATE(1029), 1, aux_sym_concatenation_repeat1, - ACTIONS(276), 5, + ACTIONS(4449), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(237), 39, + ACTIONS(4447), 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, @@ -114657,7 +104529,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, @@ -114673,37 +104544,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, - [46100] = 6, + [38337] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4661), 1, + ACTIONS(4361), 1, aux_sym_concatenation_token1, - ACTIONS(4663), 1, + ACTIONS(4363), 1, sym__concat, - STATE(1076), 1, + STATE(1033), 1, aux_sym_concatenation_repeat1, - ACTIONS(1240), 5, + ACTIONS(4453), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1233), 39, + ACTIONS(4451), 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, @@ -114712,7 +104584,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, @@ -114728,25 +104599,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, - [46161] = 7, + [38398] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4459), 1, + anon_sym_DQUOTE, + ACTIONS(4461), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4463), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4465), 1, + anon_sym_BQUOTE, + ACTIONS(4467), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2261), 3, + sym_string, + sym_expansion, + sym_command_substitution, + ACTIONS(4455), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(4457), 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, + [38465] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4661), 1, - aux_sym_concatenation_token1, - ACTIONS(4663), 1, - sym__concat, - ACTIONS(5272), 1, - anon_sym_LPAREN, - STATE(1076), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1240), 5, + ACTIONS(1258), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1233), 38, + ACTIONS(1256), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -114758,6 +104681,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -114771,6 +104696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -114785,41 +104711,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [46224] = 10, + [38520] = 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(1282), 7, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - STATE(4731), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4155), 7, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1280), 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_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -114827,9 +104744,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -114844,22 +104763,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [46293] = 6, + [38575] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4661), 1, - aux_sym_concatenation_token1, - ACTIONS(4663), 1, - sym__concat, - STATE(1075), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1225), 5, + ACTIONS(1314), 7, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 39, + ACTIONS(1312), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -114885,6 +104800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -114899,56 +104815,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [46354] = 9, + [38630] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5165), 1, - sym_variable_name, - STATE(6701), 1, - sym_subscript, - ACTIONS(4161), 2, + ACTIONS(1221), 6, + sym_file_descriptor, + sym__concat, 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, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - ACTIONS(4157), 19, + ACTIONS(1219), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -114957,21 +104849,39 @@ 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, + [38685] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(260), 1, anon_sym_DQUOTE, ACTIONS(1197), 1, sym_test_operator, - ACTIONS(4957), 1, + ACTIONS(4383), 1, sym_variable_name, - STATE(2219), 1, + STATE(2069), 1, sym_string, - ACTIONS(4955), 2, + ACTIONS(4381), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4953), 8, + ACTIONS(4379), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -115012,163 +104922,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_RPAREN, anon_sym_EQ_TILDE, - [46486] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3942), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3944), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3946), 1, - anon_sym_DOLLAR, - ACTIONS(3950), 1, - 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(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, - 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, - [46577] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3942), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3944), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3946), 1, - anon_sym_DOLLAR, - ACTIONS(3950), 1, - 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(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, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [46668] = 8, + anon_sym_COLON, + [38750] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(260), 1, anon_sym_DQUOTE, ACTIONS(1191), 1, sym_test_operator, - ACTIONS(4957), 1, + ACTIONS(4383), 1, sym_variable_name, - STATE(2219), 1, + STATE(2069), 1, sym_string, - ACTIONS(4955), 2, + ACTIONS(4381), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4953), 8, + ACTIONS(4379), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -115209,141 +104979,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_RPAREN, anon_sym_EQ_TILDE, - [46733] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5194), 1, - anon_sym_DQUOTE, - ACTIONS(5198), 1, - sym_variable_name, - STATE(2456), 1, - sym_string, - ACTIONS(5196), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(5192), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 31, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - 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, - 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, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - 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(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, - [46871] = 6, + anon_sym_COLON, + [38815] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5293), 1, + ACTIONS(4357), 1, aux_sym_concatenation_token1, - ACTIONS(5295), 1, + ACTIONS(4469), 1, sym__concat, - STATE(1203), 1, + STATE(1019), 1, aux_sym_concatenation_repeat1, - ACTIONS(5291), 4, + ACTIONS(1209), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5289), 39, + ACTIONS(1207), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -115366,6 +105019,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 +105035,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, + [38876] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 7, - sym_file_descriptor, + ACTIONS(4426), 1, + aux_sym_concatenation_token1, + ACTIONS(4428), 1, sym__concat, + STATE(999), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1231), 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(1229), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -115405,6 +105062,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 +105077,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 +105091,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [46985] = 5, + [38937] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5297), 1, - sym__special_character, - STATE(1139), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 5, + ACTIONS(4426), 1, + aux_sym_concatenation_token1, + ACTIONS(4471), 1, + sym__concat, + STATE(1001), 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(1316), 39, + ACTIONS(1207), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -115458,9 +105117,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 +105133,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 +105146,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47043] = 3, + [38998] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, - sym_file_descriptor, + ACTIONS(4426), 1, + aux_sym_concatenation_token1, + ACTIONS(4473), 1, sym__concat, - sym_variable_name, + STATE(1001), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 40, + ACTIONS(1213), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_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, @@ -115523,7 +105187,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, @@ -115538,31 +105201,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47097] = 3, + [39059] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, - sym_file_descriptor, + ACTIONS(4475), 1, + aux_sym_concatenation_token1, + ACTIONS(4478), 1, sym__concat, - sym_variable_name, + STATE(1001), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1221), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 40, + ACTIONS(1219), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -115574,7 +105242,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,43 +105256,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47151] = 3, + [39120] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, - sym_file_descriptor, - sym__concat, + ACTIONS(4376), 1, sym_variable_name, + STATE(6313), 1, + sym_subscript, + ACTIONS(3939), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3944), 2, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 40, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_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(599), 2, + sym_file_redirect, + sym_heredoc_redirect, + STATE(4281), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3935), 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, @@ -115640,17 +105293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47205] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1254), 6, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 40, + ACTIONS(3937), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -115660,10 +105303,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, @@ -115673,49 +105314,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, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [47259] = 3, + [39187] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(1266), 7, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 40, + ACTIONS(1264), 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, @@ -115724,6 +105348,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, @@ -115740,33 +105365,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, - [47313] = 3, + [39242] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, + ACTIONS(1314), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 40, + 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_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,6 +105400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -115791,33 +105417,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, - [47367] = 3, + [39297] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(1310), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 40, + ACTIONS(1308), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -115826,6 +105452,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, @@ -115842,23 +105469,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, - [47421] = 6, + [39352] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5293), 1, + ACTIONS(4357), 1, aux_sym_concatenation_token1, - ACTIONS(5295), 1, + ACTIONS(4359), 1, sym__concat, - STATE(1201), 1, + STATE(997), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 4, + ACTIONS(4483), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 39, + ACTIONS(4481), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -115881,6 +105508,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,33 +105524,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, - [47481] = 3, + [39413] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 6, - sym_file_descriptor, + ACTIONS(4357), 1, + aux_sym_concatenation_token1, + ACTIONS(4359), 1, sym__concat, + STATE(1015), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4487), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 40, + ACTIONS(4485), 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, @@ -115934,7 +105566,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,31 +105580,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47535] = 3, + [39474] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 6, - sym_file_descriptor, + ACTIONS(4357), 1, + aux_sym_concatenation_token1, + ACTIONS(4359), 1, sym__concat, + STATE(997), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4125), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 40, + ACTIONS(4123), 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, @@ -115985,7 +105621,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,22 +105635,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47589] = 3, + [39535] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4439), 5, + ACTIONS(4357), 1, + aux_sym_concatenation_token1, + ACTIONS(4359), 1, + sym__concat, + STATE(1015), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3915), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 41, + ACTIONS(3913), 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, @@ -116025,7 +105665,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, @@ -116051,31 +105690,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47643] = 3, + [39596] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 6, - sym_file_descriptor, + ACTIONS(4357), 1, + aux_sym_concatenation_token1, + ACTIONS(4359), 1, sym__concat, + STATE(997), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4491), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 40, + ACTIONS(4489), 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, @@ -116087,7 +105731,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,31 +105745,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47697] = 3, + [39657] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 6, - sym_file_descriptor, + ACTIONS(4357), 1, + aux_sym_concatenation_token1, + ACTIONS(4359), 1, sym__concat, + STATE(1015), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4495), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 40, + ACTIONS(4493), 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, @@ -116138,7 +105786,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,22 +105800,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47751] = 3, + [39718] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4313), 5, + ACTIONS(4357), 1, + aux_sym_concatenation_token1, + ACTIONS(4359), 1, + sym__concat, + STATE(997), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4006), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 41, + ACTIONS(4004), 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, @@ -116178,7 +105830,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, @@ -116204,31 +105855,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47805] = 3, + [39779] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 6, - sym_file_descriptor, + ACTIONS(4357), 1, + aux_sym_concatenation_token1, + ACTIONS(4359), 1, sym__concat, + STATE(1015), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4010), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 40, + ACTIONS(4008), 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, @@ -116240,7 +105896,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, @@ -116255,31 +105910,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47859] = 3, + [39840] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 6, + ACTIONS(1314), 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(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_esac, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -116306,31 +105962,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47913] = 3, + [39895] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 6, - sym_file_descriptor, + ACTIONS(4357), 1, + aux_sym_concatenation_token1, + ACTIONS(4497), 1, sym__concat, + STATE(1019), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 40, + ACTIONS(1213), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -116342,7 +106003,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, @@ -116357,17 +106017,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47967] = 3, + [39956] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 6, + ACTIONS(1250), 7, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 40, + ACTIONS(1248), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -116378,7 +106039,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, @@ -116408,35 +106069,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48021] = 6, + [40011] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5300), 1, - aux_sym_concatenation_token1, - ACTIONS(5302), 1, - sym__concat, - STATE(1161), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5132), 4, + ACTIONS(1294), 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(5130), 39, + ACTIONS(1292), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -116448,6 +106106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -116462,20 +106121,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48081] = 5, + [40066] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5304), 1, - sym__special_character, - STATE(1159), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 5, + ACTIONS(1254), 7, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 39, + ACTIONS(1252), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -116487,7 +106144,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, @@ -116502,7 +106158,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -116515,31 +106173,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48139] = 3, + [40121] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, - sym_file_descriptor, + ACTIONS(4499), 1, + aux_sym_concatenation_token1, + ACTIONS(4502), 1, sym__concat, + STATE(1019), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1221), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 40, + ACTIONS(1219), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_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, @@ -116551,7 +106214,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, @@ -116566,89 +106228,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48193] = 6, - ACTIONS(3), 1, + [40182] = 22, + ACTIONS(71), 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, - sym_file_descriptor, + ACTIONS(4505), 1, + sym_word, + ACTIONS(4507), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4509), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4511), 1, + anon_sym_DOLLAR, + ACTIONS(4513), 1, + sym__special_character, + ACTIONS(4515), 1, + anon_sym_DQUOTE, + ACTIONS(4519), 1, + aux_sym_number_token1, + ACTIONS(4521), 1, + aux_sym_number_token2, + ACTIONS(4523), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4525), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4527), 1, + anon_sym_BQUOTE, + ACTIONS(4529), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4533), 1, sym_test_operator, + ACTIONS(4535), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 39, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + STATE(5122), 1, + aux_sym__literal_repeat1, + STATE(5226), 1, + sym_concatenation, + ACTIONS(4517), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4531), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2305), 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(4976), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2307), 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, + [40275] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4507), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4509), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(4511), 1, anon_sym_DOLLAR, + ACTIONS(4513), 1, sym__special_character, + ACTIONS(4515), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4519), 1, aux_sym_number_token1, + ACTIONS(4521), 1, aux_sym_number_token2, + ACTIONS(4523), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4525), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4527), 1, anon_sym_BQUOTE, + ACTIONS(4529), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4535), 1, + sym__brace_start, + ACTIONS(4537), 1, + sym_word, + ACTIONS(4541), 1, + sym_test_operator, + STATE(5132), 1, + aux_sym__literal_repeat1, + STATE(5232), 1, + sym_concatenation, + ACTIONS(4531), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [48253] = 6, + ACTIONS(4539), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(2309), 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(4902), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2311), 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, + [40368] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5300), 1, + ACTIONS(4160), 1, aux_sym_concatenation_token1, - ACTIONS(5309), 1, + ACTIONS(4162), 1, sym__concat, - STATE(1166), 1, + STATE(957), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 4, + ACTIONS(276), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 39, + ACTIONS(237), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -116674,16 +106425,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48313] = 3, + [40429] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 5, + ACTIONS(4160), 1, + aux_sym_concatenation_token1, + ACTIONS(4162), 1, + sym__concat, + STATE(958), 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(1223), 41, + ACTIONS(1233), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -116694,10 +106451,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_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, @@ -116725,31 +106480,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48367] = 3, + [40490] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 6, - sym_file_descriptor, + ACTIONS(4160), 1, + aux_sym_concatenation_token1, + ACTIONS(4162), 1, sym__concat, - sym_variable_name, + ACTIONS(4543), 1, + anon_sym_LPAREN, + STATE(958), 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(1284), 40, + ACTIONS(1233), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -116758,9 +106519,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -116774,37 +106535,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, - [48421] = 6, + [40553] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5300), 1, - aux_sym_concatenation_token1, - ACTIONS(5302), 1, - sym__concat, - STATE(1162), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5136), 4, + ACTIONS(1254), 6, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5134), 39, + ACTIONS(1252), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -116816,6 +106573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -116830,35 +106588,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48481] = 6, + [40608] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5311), 1, - aux_sym_concatenation_token1, - ACTIONS(5314), 1, - sym__concat, - STATE(1166), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 4, + ACTIONS(1258), 6, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 39, + 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_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, @@ -116870,6 +106625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -116884,22 +106640,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48541] = 3, + [40663] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 6, + ACTIONS(4385), 1, + sym__special_character, + STATE(913), 1, + aux_sym__literal_repeat1, + ACTIONS(4125), 5, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 40, + ACTIONS(4123), 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, @@ -116909,6 +106669,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, @@ -116920,9 +106681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -116935,31 +106694,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48595] = 3, + [40722] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 6, + ACTIONS(1221), 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(1219), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_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,21 +106746,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48649] = 6, + [40777] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5300), 1, + ACTIONS(4361), 1, aux_sym_concatenation_token1, - ACTIONS(5302), 1, + ACTIONS(4546), 1, sym__concat, - STATE(1161), 1, + STATE(1034), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 4, + ACTIONS(1209), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 39, + ACTIONS(1207), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -117023,7 +106784,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, @@ -117039,32 +106799,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, - [48709] = 3, + [40838] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 6, - sym_file_descriptor, + ACTIONS(4160), 1, + aux_sym_concatenation_token1, + ACTIONS(4162), 1, sym__concat, - sym_variable_name, + STATE(957), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1231), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 40, + ACTIONS(1229), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -117073,9 +106839,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -117089,33 +106855,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [48763] = 3, + [40899] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 6, - sym_file_descriptor, + ACTIONS(4387), 1, + aux_sym_concatenation_token1, + ACTIONS(4389), 1, sym__concat, - sym_variable_name, + STATE(977), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4047), 6, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 40, + ACTIONS(4045), 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, @@ -117124,9 +106894,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -117140,24 +106910,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, - [48817] = 3, + [40960] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 6, + ACTIONS(4385), 1, + sym__special_character, + STATE(913), 1, + aux_sym__literal_repeat1, + ACTIONS(4006), 5, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 40, + ACTIONS(4004), 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, @@ -117167,6 +106940,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, @@ -117178,9 +106952,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, @@ -117193,17 +106965,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48871] = 3, + [41019] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 6, - sym_file_descriptor, + ACTIONS(4361), 1, + aux_sym_concatenation_token1, + ACTIONS(4548), 1, sym__concat, + STATE(1034), 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(1280), 40, + ACTIONS(1213), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -117228,7 +107005,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, @@ -117244,31 +107020,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [48925] = 3, + [41080] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, - sym_file_descriptor, + ACTIONS(4550), 1, + aux_sym_concatenation_token1, + ACTIONS(4553), 1, sym__concat, + STATE(1034), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1221), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 40, + ACTIONS(1219), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -117277,10 +107058,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -117294,32 +107073,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, - [48979] = 3, + [41141] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, + STATE(2109), 1, + aux_sym__literal_repeat1, + STATE(2232), 1, + sym_concatenation, + ACTIONS(2307), 4, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 40, - anon_sym_SEMI, + STATE(2433), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2305), 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_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, @@ -117328,10 +107114,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, @@ -117346,56 +107130,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [49033] = 22, - ACTIONS(71), 1, + [41202] = 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, - sym_test_operator, - ACTIONS(5347), 1, - sym__brace_start, - STATE(5405), 1, + STATE(2121), 1, aux_sym__literal_repeat1, - STATE(5594), 1, + STATE(2242), 1, sym_concatenation, - ACTIONS(5329), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5343), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2271), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(5350), 9, + ACTIONS(2311), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + STATE(2437), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -117405,42 +107152,15 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2273), 10, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [49125] = 3, - 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), 40, - anon_sym_SEMI, + ACTIONS(2309), 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_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, @@ -117449,10 +107169,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, @@ -117467,17 +107185,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [49179] = 3, + [41263] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, + ACTIONS(1270), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 40, + ACTIONS(1268), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -117488,8 +107206,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, @@ -117518,23 +107237,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [49233] = 8, + [41318] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5351), 1, + ACTIONS(2172), 1, anon_sym_DQUOTE, - ACTIONS(5355), 1, + ACTIONS(3672), 1, sym_variable_name, - STATE(2736), 1, + STATE(1426), 1, sym_string, - ACTIONS(5353), 2, + ACTIONS(3670), 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(5349), 8, + ACTIONS(3668), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -117543,7 +107262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1195), 30, + ACTIONS(1195), 31, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -117560,6 +107279,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, @@ -117574,32 +107294,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [49297] = 8, + [41383] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5351), 1, + 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(5355), 1, - sym_variable_name, - STATE(2736), 1, - sym_string, - ACTIONS(5353), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 3, - sym_file_descriptor, - sym_test_operator, + 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(5349), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 30, + ACTIONS(4558), 1, + sym__special_character, + ACTIONS(4560), 1, + sym_test_operator, + STATE(4227), 1, + aux_sym__literal_repeat1, + STATE(4639), 1, + sym_concatenation, + ACTIONS(2307), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3656), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4556), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(4979), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2305), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -117616,35 +107364,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + [41474] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3634), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3636), 1, anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, + 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(4558), 1, + sym__special_character, + ACTIONS(4564), 1, + sym_test_operator, + STATE(4237), 1, + aux_sym__literal_repeat1, + STATE(4677), 1, + sym_concatenation, + ACTIONS(2311), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3656), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(4562), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [49361] = 5, + STATE(4981), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2309), 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, + [41565] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5357), 1, - sym__special_character, - STATE(1232), 1, - aux_sym__literal_repeat1, - ACTIONS(276), 6, + ACTIONS(4160), 1, + aux_sym_concatenation_token1, + ACTIONS(4162), 1, + sym__concat, + ACTIONS(4566), 1, + anon_sym_LPAREN, + STATE(958), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1240), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(237), 38, + ACTIONS(1233), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -117655,7 +107462,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, @@ -117671,6 +107477,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, @@ -117683,17 +107490,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [49419] = 3, + [41628] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, - sym_file_descriptor, + ACTIONS(1197), 1, + sym_test_operator, + ACTIONS(4269), 1, + anon_sym_DQUOTE, + ACTIONS(4273), 1, + sym_variable_name, + STATE(2341), 1, + sym_string, + ACTIONS(4271), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(4267), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 33, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + [41693] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1191), 1, + sym_test_operator, + ACTIONS(4269), 1, + anon_sym_DQUOTE, + ACTIONS(4273), 1, + sym_variable_name, + STATE(2341), 1, + sym_string, + ACTIONS(4271), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(4267), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 33, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + [41758] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4387), 1, + aux_sym_concatenation_token1, + ACTIONS(4389), 1, sym__concat, + STATE(977), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1231), 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(1229), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -117704,7 +107631,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, @@ -117719,7 +107645,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, @@ -117734,87 +107659,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [49473] = 22, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5319), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5321), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5323), 1, - anon_sym_DOLLAR, - ACTIONS(5325), 1, - sym__special_character, - ACTIONS(5327), 1, - anon_sym_DQUOTE, - ACTIONS(5331), 1, - aux_sym_number_token1, - ACTIONS(5333), 1, - aux_sym_number_token2, - ACTIONS(5335), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5337), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5339), 1, - anon_sym_BQUOTE, - ACTIONS(5341), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5347), 1, - sym__brace_start, - ACTIONS(5359), 1, - sym_word, - ACTIONS(5363), 1, - sym_test_operator, - STATE(5413), 1, - aux_sym__literal_repeat1, - STATE(5589), 1, - sym_concatenation, - ACTIONS(5343), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5361), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(2275), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(5397), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2277), 10, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [49565] = 3, + [41819] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, + ACTIONS(1310), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 40, + ACTIONS(1308), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -117855,31 +107710,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [49619] = 3, + [41873] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, + ACTIONS(1302), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 40, + ACTIONS(1300), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_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, @@ -117906,118 +107761,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [49673] = 30, - ACTIONS(71), 1, - sym_comment, - ACTIONS(367), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, - anon_sym_DOLLAR, - ACTIONS(377), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - aux_sym_number_token1, - ACTIONS(383), 1, - aux_sym_number_token2, - ACTIONS(385), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, - sym__brace_start, - ACTIONS(1075), 1, - anon_sym_BANG, - ACTIONS(1083), 1, - anon_sym_TILDE, - ACTIONS(1087), 1, - sym__special_character, - ACTIONS(5365), 1, - sym_word, - ACTIONS(5367), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(5369), 1, - anon_sym_LPAREN, - ACTIONS(5371), 1, - anon_sym_LBRACE, - ACTIONS(5375), 1, - anon_sym_BQUOTE, - ACTIONS(5377), 1, - sym_test_operator, - STATE(2363), 1, - aux_sym__literal_repeat1, - STATE(3217), 1, - sym__expression, - ACTIONS(393), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1079), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1081), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(5373), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(6663), 2, - sym_compound_statement, - sym_subshell, - STATE(2518), 3, - sym_ternary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - STATE(2790), 3, - sym_binary_expression, - sym_unary_expression, - sym_concatenation, - STATE(2357), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [49781] = 8, + [41927] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5381), 1, - anon_sym_DQUOTE, - ACTIONS(5385), 1, - sym_variable_name, - STATE(2864), 1, - sym_string, - ACTIONS(5383), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, + ACTIONS(1306), 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(1195), 30, + 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, anon_sym_LT, 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, @@ -118026,9 +107794,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, @@ -118040,39 +107812,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [49845] = 8, + [41981] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5381), 1, - anon_sym_DQUOTE, - ACTIONS(5385), 1, - sym_variable_name, - STATE(2864), 1, - sym_string, - ACTIONS(5383), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 3, + ACTIONS(1266), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5379), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 30, + aux_sym_heredoc_redirect_token1, + ACTIONS(1264), 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, @@ -118082,9 +107845,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,31 +107863,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [49909] = 3, + [42035] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 6, + ACTIONS(1294), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 40, + ACTIONS(1292), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -118147,35 +107914,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [49963] = 6, + [42089] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5293), 1, - aux_sym_concatenation_token1, - ACTIONS(5295), 1, - sym__concat, - STATE(1201), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5389), 4, + ACTIONS(4569), 1, + sym__special_character, + STATE(1057), 1, + aux_sym__literal_repeat1, + ACTIONS(4125), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5387), 39, + ACTIONS(4123), 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, @@ -118184,10 +107951,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, @@ -118199,24 +107966,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, - [50023] = 6, + [42147] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5391), 1, - aux_sym_concatenation_token1, - ACTIONS(5393), 1, - sym__concat, - STATE(1198), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 5, + ACTIONS(1262), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 38, + ACTIONS(1260), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -118226,6 +107987,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, @@ -118241,6 +108003,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, @@ -118255,17 +108018,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [50083] = 3, + [42201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, + ACTIONS(1298), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 40, + ACTIONS(1296), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -118306,31 +108069,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [50137] = 3, + [42255] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 6, + ACTIONS(1302), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 40, + ACTIONS(1300), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_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, @@ -118357,22 +108120,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [50191] = 6, + [42309] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5391), 1, - aux_sym_concatenation_token1, - ACTIONS(5395), 1, - sym__concat, - STATE(1198), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 5, + ACTIONS(1282), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 38, + ACTIONS(1280), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -118382,6 +108140,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, @@ -118397,6 +108156,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, @@ -118411,31 +108171,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [50251] = 3, + [42363] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 6, + ACTIONS(1266), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 40, + ACTIONS(1264), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -118444,7 +108204,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -118461,23 +108220,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [50305] = 3, + [42417] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4443), 5, + ACTIONS(1294), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4441), 41, + ACTIONS(1292), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -118487,7 +108247,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -118496,9 +108255,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -118512,17 +108271,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, - [50359] = 3, + [42471] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5399), 5, + ACTIONS(4571), 1, + sym__special_character, + STATE(1057), 1, + aux_sym__literal_repeat1, + ACTIONS(1318), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5397), 41, + ACTIONS(1316), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -118533,7 +108297,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, @@ -118551,7 +108314,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, @@ -118564,22 +108326,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [50413] = 6, + [42529] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5401), 1, - aux_sym_concatenation_token1, - ACTIONS(5404), 1, - sym__concat, - STATE(1198), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 5, + ACTIONS(1262), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 38, + ACTIONS(1260), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -118589,6 +108346,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, @@ -118601,9 +108359,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, @@ -118617,101 +108375,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, - [50473] = 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(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_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, + [42583] = 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(1298), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 38, + ACTIONS(1296), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -118721,6 +108397,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, @@ -118733,9 +108410,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, @@ -118749,22 +108426,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, - [50641] = 6, + [42637] = 3, 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(1258), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 39, + ACTIONS(1256), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -118787,8 +108461,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,19 +108478,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, - [50701] = 3, + [42691] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 6, + ACTIONS(1282), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 40, + ACTIONS(1280), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -118855,21 +108530,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [50755] = 6, + [42745] = 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(1221), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 39, + ACTIONS(1219), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -118892,8 +108563,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,37 +108580,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, - [50815] = 6, + [42799] = 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(1302), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 38, + ACTIONS(1300), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_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, @@ -118949,6 +108617,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,35 +108632,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [50875] = 6, + [42853] = 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(1306), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 38, + ACTIONS(1304), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_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, @@ -119003,6 +108668,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,100 +108683,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [50935] = 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(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_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, + [42907] = 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(1302), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 38, + ACTIONS(1300), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -119120,6 +108703,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, @@ -119132,8 +108716,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,19 +108733,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, - [51103] = 3, + [42961] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, + ACTIONS(1314), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 40, + ACTIONS(1312), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -119182,6 +108767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -119198,19 +108784,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [51157] = 3, + [43015] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 6, + ACTIONS(1258), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 40, + ACTIONS(1256), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -119251,22 +108836,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [51211] = 6, + [43069] = 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(1221), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5134), 38, + ACTIONS(1219), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -119276,6 +108856,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, @@ -119288,9 +108869,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, @@ -119304,23 +108885,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, - [51271] = 6, + [43123] = 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(1302), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 38, + ACTIONS(1300), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -119330,6 +108907,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, @@ -119342,9 +108920,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, @@ -119358,23 +108936,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, - [51331] = 3, + [43177] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4305), 5, + ACTIONS(1306), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4303), 41, + ACTIONS(1304), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -119384,7 +108963,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, @@ -119393,9 +108971,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, @@ -119409,23 +108987,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, - [51385] = 6, + [43231] = 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(1302), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 38, + ACTIONS(1300), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -119435,6 +109009,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, @@ -119449,6 +109024,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, @@ -119464,32 +109040,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [51445] = 3, + [43285] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(260), 1, + anon_sym_DQUOTE, + ACTIONS(1197), 1, + sym_test_operator, + ACTIONS(4383), 1, + sym_variable_name, + STATE(2069), 1, + sym_string, + ACTIONS(4381), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(4379), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 32, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + [43349] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 5, + ACTIONS(4574), 1, + aux_sym_concatenation_token1, + ACTIONS(4576), 1, + sym__concat, + STATE(1125), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4125), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 41, + ACTIONS(4123), 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, @@ -119515,119 +109150,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [51499] = 30, - ACTIONS(71), 1, + [43409] = 8, + 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, + ACTIONS(260), 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, + ACTIONS(1191), 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, + ACTIONS(4383), 1, + sym_variable_name, + STATE(2069), 1, 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, + ACTIONS(4381), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(4379), 8, 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_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, @@ -119643,190 +109190,144 @@ static const uint16_t ts_small_parse_table[] = { 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_RBRACK, + 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_QMARK, - [51673] = 30, - ACTIONS(71), 1, + [43473] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(1254), 6, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1252), 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(1075), 1, - anon_sym_BANG, - ACTIONS(1083), 1, - anon_sym_TILDE, - ACTIONS(1087), 1, - sym__special_character, - ACTIONS(5367), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(5369), 1, - anon_sym_LPAREN, - ACTIONS(5371), 1, - anon_sym_LBRACE, - ACTIONS(5375), 1, anon_sym_BQUOTE, - ACTIONS(5451), 1, - sym_word, - ACTIONS(5455), 1, - sym_test_operator, - STATE(2327), 1, - aux_sym__literal_repeat1, - STATE(3217), 1, - sym__expression, - ACTIONS(393), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1079), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1081), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(5453), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(6639), 2, - sym_compound_statement, - sym_subshell, - STATE(2518), 3, - sym_ternary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - STATE(2668), 3, - sym_binary_expression, - sym_unary_expression, - sym_concatenation, - STATE(2418), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [51781] = 30, - ACTIONS(71), 1, + sym_word, + [43527] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(4121), 5, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4119), 41, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, 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(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_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(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, + sym_word, + [43581] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5463), 1, - aux_sym_concatenation_token1, - ACTIONS(5466), 1, - sym__concat, - STATE(1219), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 5, + ACTIONS(4569), 1, + sym__special_character, + STATE(1057), 1, + aux_sym__literal_repeat1, + ACTIONS(4006), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 38, + ACTIONS(4004), 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, @@ -119835,6 +109336,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, @@ -119843,10 +109345,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -119858,34 +109360,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, - [51949] = 3, + [43639] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1240), 5, + ACTIONS(4578), 1, + aux_sym_concatenation_token1, + ACTIONS(4580), 1, + sym__concat, + STATE(1081), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 4, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1233), 41, + ACTIONS(1207), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_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, @@ -119894,7 +109398,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, @@ -119910,23 +109413,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, - [52003] = 6, + [43699] = 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(4309), 5, + ACTIONS(1314), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 38, + ACTIONS(1312), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -119936,6 +109435,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, @@ -119948,9 +109448,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, @@ -119964,15 +109464,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [52063] = 6, + [43753] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5469), 1, + ACTIONS(4578), 1, aux_sym_concatenation_token1, - ACTIONS(5472), 1, + ACTIONS(4582), 1, sym__concat, - STATE(1222), 1, + STATE(1081), 1, aux_sym_concatenation_repeat1, ACTIONS(1215), 4, sym_file_descriptor, @@ -120019,22 +109520,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [52123] = 6, + [43813] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5391), 1, + ACTIONS(4584), 1, aux_sym_concatenation_token1, - ACTIONS(5413), 1, + ACTIONS(4587), 1, sym__concat, - STATE(1194), 1, + STATE(1081), 1, aux_sym_concatenation_repeat1, - ACTIONS(4313), 5, + ACTIONS(1221), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 38, + ACTIONS(1219), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -120044,6 +109544,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, @@ -120056,7 +109557,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, @@ -120072,18 +109572,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, - [52183] = 3, + [43873] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 6, + ACTIONS(1270), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 40, + ACTIONS(1268), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -120124,22 +109625,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [52237] = 6, + [43927] = 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(1310), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 38, + ACTIONS(1308), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -120149,6 +109645,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, @@ -120161,9 +109658,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, @@ -120177,23 +109674,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, - [52297] = 6, + [43981] = 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(1274), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5184), 38, + ACTIONS(1272), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -120203,6 +109696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -120215,8 +109709,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,24 +109726,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, - [52357] = 6, + [44035] = 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(1254), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5188), 38, + ACTIONS(1252), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -120257,6 +109747,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, @@ -120271,6 +109762,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, @@ -120286,17 +109778,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [52417] = 3, + [44089] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(4590), 1, + sym__special_character, + STATE(1177), 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), 40, + ACTIONS(237), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -120307,6 +109802,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, @@ -120322,9 +109818,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, @@ -120337,31 +109831,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [52471] = 3, + [44147] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, + ACTIONS(4594), 1, + anon_sym_DQUOTE, + ACTIONS(4598), 1, + sym_variable_name, + STATE(2436), 1, + sym_string, + ACTIONS(4596), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1197), 3, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 40, - anon_sym_SEMI, + ACTIONS(4592), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 30, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_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, @@ -120370,13 +109873,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, @@ -120388,35 +109887,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [52525] = 5, + [44211] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5477), 1, - sym__special_character, - STATE(1139), 1, - aux_sym__literal_repeat1, - ACTIONS(4370), 5, + ACTIONS(4594), 1, + anon_sym_DQUOTE, + ACTIONS(4598), 1, + sym_variable_name, + STATE(2436), 1, + sym_string, + ACTIONS(4596), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1191), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4368), 39, - anon_sym_SEMI, + ACTIONS(4592), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 30, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_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, @@ -120425,11 +109929,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, - anon_sym_DQUOTE, + sym__special_character, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -120441,17 +109943,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [52583] = 3, + [44275] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(4600), 1, + sym__special_character, + STATE(1096), 1, + aux_sym__literal_repeat1, + ACTIONS(276), 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), 40, + ACTIONS(237), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -120462,7 +109968,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, @@ -120477,9 +109983,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, @@ -120492,35 +109996,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [52637] = 5, + [44333] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4602), 1, + anon_sym_DQUOTE, + ACTIONS(4604), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4606), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4608), 1, + anon_sym_BQUOTE, + ACTIONS(4610), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2445), 3, + sym_string, + sym_expansion, + sym_command_substitution, + ACTIONS(4455), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(4457), 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, + [44399] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5479), 1, - sym__special_character, - STATE(1232), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 6, + ACTIONS(1270), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 38, + ACTIONS(1268), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_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, @@ -120529,10 +110086,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, @@ -120544,23 +110102,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, - [52695] = 6, + [44453] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5391), 1, - aux_sym_concatenation_token1, - ACTIONS(5413), 1, - sym__concat, - STATE(1191), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5266), 5, + ACTIONS(1274), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 38, + ACTIONS(1272), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -120570,6 +110124,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, @@ -120582,9 +110137,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, @@ -120598,23 +110153,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, - [52755] = 6, + [44507] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5391), 1, + ACTIONS(4578), 1, aux_sym_concatenation_token1, - ACTIONS(5413), 1, + ACTIONS(4612), 1, sym__concat, - STATE(1194), 1, + STATE(1078), 1, aux_sym_concatenation_repeat1, - ACTIONS(5270), 5, + ACTIONS(1231), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 38, + ACTIONS(1229), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -120624,6 +110179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -120636,7 +110192,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -120652,21 +110207,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, - [52815] = 5, + [44567] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5477), 1, - sym__special_character, - STATE(1139), 1, - aux_sym__literal_repeat1, - ACTIONS(4519), 5, + ACTIONS(1240), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4517), 39, + ACTIONS(1233), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -120677,6 +110229,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, @@ -120694,6 +110247,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, @@ -120706,31 +110260,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [52873] = 3, + [44621] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 7, + ACTIONS(4618), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(4620), 1, + sym_variable_name, + STATE(6320), 1, + sym_subscript, + ACTIONS(2782), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3937), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4616), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(625), 2, + sym_file_redirect, + sym_heredoc_redirect, + STATE(4432), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3944), 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(1300), 39, + ACTIONS(4614), 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, + ACTIONS(3935), 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_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -120738,11 +110303,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, @@ -120757,20 +110320,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [52927] = 5, + [44693] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5482), 1, + ACTIONS(4623), 1, sym__special_character, - STATE(1159), 1, + STATE(1096), 1, aux_sym__literal_repeat1, - ACTIONS(276), 5, + ACTIONS(1318), 6, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(237), 39, + ACTIONS(1316), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -120782,7 +110346,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, @@ -120810,31 +110373,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [52985] = 3, + [44751] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 7, + ACTIONS(4626), 1, + sym_variable_name, + STATE(6356), 1, + sym_subscript, + ACTIONS(3939), 2, sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3944), 2, + sym_test_operator, + sym__brace_start, + STATE(625), 2, + sym_file_redirect, + sym_heredoc_redirect, + STATE(4322), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3935), 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(3937), 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, + [44817] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4629), 1, + aux_sym_concatenation_token1, + ACTIONS(4631), 1, sym__concat, + STATE(1139), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4393), 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(1304), 39, + ACTIONS(4391), 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, @@ -120843,10 +110467,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, @@ -120860,23 +110482,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, - [53039] = 6, + [44877] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5429), 1, + ACTIONS(4629), 1, aux_sym_concatenation_token1, - ACTIONS(5475), 1, + ACTIONS(4631), 1, sym__concat, - STATE(1207), 1, + STATE(1149), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 5, + ACTIONS(4400), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 38, + ACTIONS(4398), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -120915,34 +110538,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [53099] = 6, + [44937] = 8, 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, - sym_file_descriptor, + ACTIONS(4635), 1, + anon_sym_DQUOTE, + ACTIONS(4639), 1, sym_variable_name, + STATE(2604), 1, + sym_string, + ACTIONS(4637), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1197), 3, + sym_file_descriptor, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 38, - anon_sym_SEMI, + ACTIONS(4633), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 30, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -120952,12 +110580,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, @@ -120969,30 +110594,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [53159] = 3, + [45001] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, - sym_file_descriptor, - sym__concat, + ACTIONS(4635), 1, + anon_sym_DQUOTE, + ACTIONS(4639), 1, sym_variable_name, + STATE(2604), 1, + sym_string, + ACTIONS(4637), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1191), 3, + sym_file_descriptor, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 40, - anon_sym_SEMI, + ACTIONS(4633), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 30, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -121004,7 +110638,64 @@ 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, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [45065] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4620), 1, + sym_variable_name, + ACTIONS(4643), 1, + aux_sym_heredoc_redirect_token1, + STATE(6320), 1, + sym_subscript, + ACTIONS(2782), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3937), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4616), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(625), 2, + sym_file_redirect, + sym_heredoc_redirect, + STATE(4432), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3944), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(4641), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + ACTIONS(3935), 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, @@ -121018,24 +110709,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, - [53213] = 3, + [45137] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 6, + ACTIONS(4117), 5, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 40, + ACTIONS(4115), 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, @@ -121045,6 +110735,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, @@ -121056,7 +110747,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, @@ -121071,22 +110761,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [53267] = 3, + [45191] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, + ACTIONS(4647), 5, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 40, + ACTIONS(4645), 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, @@ -121096,6 +110786,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, @@ -121104,9 +110795,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, @@ -121120,23 +110811,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, - [53321] = 8, + [45245] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(260), 1, + ACTIONS(4651), 1, anon_sym_DQUOTE, - ACTIONS(1197), 1, - sym_test_operator, - ACTIONS(4957), 1, + ACTIONS(4655), 1, sym_variable_name, - STATE(2219), 1, + STATE(2861), 1, sym_string, - ACTIONS(4955), 2, + ACTIONS(4653), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4953), 8, + ACTIONS(1197), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(4649), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -121145,68 +110837,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1195), 32, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + ACTIONS(1195), 30, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - [53385] = 5, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, + [45309] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5477), 1, - sym__special_character, - STATE(1139), 1, - aux_sym__literal_repeat1, - ACTIONS(4282), 5, + ACTIONS(4651), 1, + anon_sym_DQUOTE, + ACTIONS(4655), 1, + sym_variable_name, + STATE(2861), 1, + sym_string, + ACTIONS(4653), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1191), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 39, - anon_sym_SEMI, + ACTIONS(4649), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 30, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_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, @@ -121215,11 +110910,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, - anon_sym_DQUOTE, + sym__special_character, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -121231,18 +110924,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [53443] = 3, + [45373] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 7, + ACTIONS(4569), 1, + sym__special_character, + STATE(1057), 1, + aux_sym__literal_repeat1, + ACTIONS(4047), 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(1252), 39, + ACTIONS(4045), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -121254,6 +110949,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, @@ -121267,9 +110964,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, @@ -121282,18 +110977,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [53497] = 3, + [45431] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 7, + ACTIONS(4569), 1, + sym__special_character, + STATE(1057), 1, + aux_sym__literal_repeat1, + ACTIONS(3956), 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(1300), 39, + ACTIONS(3954), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -121305,6 +111002,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, @@ -121318,9 +111017,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, @@ -121333,18 +111030,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [53551] = 3, + [45489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 7, + ACTIONS(1231), 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), 39, + ACTIONS(1229), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -121355,7 +111050,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, @@ -121369,7 +111067,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, @@ -121384,31 +111081,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [53605] = 3, + [45543] = 30, + ACTIONS(71), 1, + sym_comment, + ACTIONS(577), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(579), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(583), 1, + anon_sym_DOLLAR, + ACTIONS(587), 1, + anon_sym_DQUOTE, + ACTIONS(591), 1, + aux_sym_number_token1, + ACTIONS(593), 1, + aux_sym_number_token2, + ACTIONS(595), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(601), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(607), 1, + sym__brace_start, + ACTIONS(1075), 1, + anon_sym_BANG, + ACTIONS(1083), 1, + anon_sym_TILDE, + ACTIONS(1087), 1, + sym__special_character, + ACTIONS(4657), 1, + sym_word, + ACTIONS(4659), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(4661), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + anon_sym_LBRACE, + ACTIONS(4667), 1, + anon_sym_BQUOTE, + ACTIONS(4669), 1, + sym_test_operator, + STATE(2290), 1, + aux_sym__literal_repeat1, + STATE(2938), 1, + sym__expression, + ACTIONS(603), 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(4665), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(6363), 2, + sym_compound_statement, + sym_subshell, + STATE(2394), 3, + sym_ternary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + STATE(2617), 3, + sym_binary_expression, + sym_unary_expression, + sym_concatenation, + 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, + [45651] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 7, + ACTIONS(4039), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(4620), 1, + sym_variable_name, + STATE(6320), 1, + sym_subscript, + ACTIONS(3937), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(625), 2, + sym_file_redirect, + sym_heredoc_redirect, + STATE(4432), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3944), 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(1213), 39, + ACTIONS(4037), 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(3935), 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_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -121416,11 +111200,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, @@ -121435,87 +111217,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [53659] = 8, + [45719] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(260), 1, - anon_sym_DQUOTE, - ACTIONS(1191), 1, - sym_test_operator, - ACTIONS(4957), 1, + ACTIONS(4620), 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, + STATE(6320), 1, + sym_subscript, + ACTIONS(3939), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3944), 2, + sym_test_operator, + sym__brace_start, + STATE(625), 2, + sym_file_redirect, + sym_heredoc_redirect, + STATE(4432), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3935), 17, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, 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__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_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(3937), 19, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - [53723] = 3, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [45785] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 7, + ACTIONS(1278), 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), 39, + ACTIONS(1276), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -121542,18 +111325,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [53777] = 3, + [45839] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 7, - sym_file_descriptor, + ACTIONS(4426), 1, + aux_sym_concatenation_token1, + ACTIONS(4671), 1, sym__concat, + STATE(1001), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 39, + ACTIONS(1207), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -121578,7 +111365,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, @@ -121593,31 +111379,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [53831] = 3, + [45899] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 6, - sym_file_descriptor, + ACTIONS(4426), 1, + aux_sym_concatenation_token1, + ACTIONS(4673), 1, sym__concat, - sym_variable_name, + STATE(1001), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 40, + ACTIONS(1213), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -121629,7 +111419,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 +111433,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [53885] = 3, + [45959] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, + ACTIONS(1298), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 40, + ACTIONS(1296), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -121695,7 +111484,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [53939] = 3, + [46013] = 30, + ACTIONS(71), 1, + sym_comment, + ACTIONS(577), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(579), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(583), 1, + anon_sym_DOLLAR, + ACTIONS(587), 1, + anon_sym_DQUOTE, + ACTIONS(591), 1, + aux_sym_number_token1, + ACTIONS(593), 1, + aux_sym_number_token2, + ACTIONS(595), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(601), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(607), 1, + sym__brace_start, + ACTIONS(1075), 1, + anon_sym_BANG, + ACTIONS(1083), 1, + anon_sym_TILDE, + ACTIONS(1087), 1, + sym__special_character, + ACTIONS(4659), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(4661), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + anon_sym_LBRACE, + ACTIONS(4667), 1, + anon_sym_BQUOTE, + ACTIONS(4675), 1, + sym_word, + ACTIONS(4679), 1, + sym_test_operator, + STATE(2169), 1, + aux_sym__literal_repeat1, + STATE(2938), 1, + sym__expression, + ACTIONS(603), 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(4677), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(6371), 2, + sym_compound_statement, + sym_subshell, + STATE(2394), 3, + sym_ternary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + STATE(2651), 3, + sym_binary_expression, + sym_unary_expression, + sym_concatenation, + STATE(2321), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [46121] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1250), 6, @@ -121746,17 +111613,233 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [53993] = 3, + [46175] = 30, + ACTIONS(71), 1, + sym_comment, + ACTIONS(577), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(579), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(583), 1, + anon_sym_DOLLAR, + ACTIONS(587), 1, + anon_sym_DQUOTE, + ACTIONS(591), 1, + aux_sym_number_token1, + ACTIONS(593), 1, + aux_sym_number_token2, + ACTIONS(595), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(601), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(607), 1, + sym__brace_start, + ACTIONS(1075), 1, + anon_sym_BANG, + ACTIONS(1083), 1, + anon_sym_TILDE, + ACTIONS(1087), 1, + sym__special_character, + ACTIONS(4659), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(4661), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + anon_sym_LBRACE, + ACTIONS(4667), 1, + anon_sym_BQUOTE, + ACTIONS(4681), 1, + sym_word, + ACTIONS(4685), 1, + sym_test_operator, + STATE(2203), 1, + aux_sym__literal_repeat1, + STATE(2938), 1, + sym__expression, + ACTIONS(603), 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(4683), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(6301), 2, + sym_compound_statement, + sym_subshell, + STATE(2394), 3, + sym_ternary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + STATE(2459), 3, + sym_binary_expression, + sym_unary_expression, + sym_concatenation, + STATE(2202), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [46283] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4620), 1, + sym_variable_name, + ACTIONS(4689), 1, + aux_sym_heredoc_redirect_token1, + STATE(6320), 1, + sym_subscript, + ACTIONS(2782), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3937), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4616), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(625), 2, + sym_file_redirect, + sym_heredoc_redirect, + STATE(4432), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3944), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(4687), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + ACTIONS(3935), 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, + [46355] = 30, + ACTIONS(71), 1, + sym_comment, + ACTIONS(577), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(579), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(583), 1, + anon_sym_DOLLAR, + ACTIONS(587), 1, + anon_sym_DQUOTE, + ACTIONS(591), 1, + aux_sym_number_token1, + ACTIONS(593), 1, + aux_sym_number_token2, + ACTIONS(595), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(601), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(607), 1, + sym__brace_start, + ACTIONS(1075), 1, + anon_sym_BANG, + ACTIONS(1083), 1, + anon_sym_TILDE, + ACTIONS(1087), 1, + sym__special_character, + ACTIONS(4659), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(4661), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + anon_sym_LBRACE, + ACTIONS(4667), 1, + anon_sym_BQUOTE, + ACTIONS(4691), 1, + sym_word, + ACTIONS(4695), 1, + sym_test_operator, + STATE(2222), 1, + aux_sym__literal_repeat1, + STATE(2938), 1, + sym__expression, + ACTIONS(603), 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(4693), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(6310), 2, + sym_compound_statement, + sym_subshell, + STATE(2394), 3, + sym_ternary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + STATE(2466), 3, + sym_binary_expression, + sym_unary_expression, + sym_concatenation, + STATE(2219), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [46463] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, + ACTIONS(1278), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 40, + ACTIONS(1276), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -121779,7 +111862,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, @@ -121796,32 +111878,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, + [46517] = 30, + ACTIONS(71), 1, + sym_comment, + ACTIONS(577), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(579), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(583), 1, + anon_sym_DOLLAR, + ACTIONS(587), 1, + anon_sym_DQUOTE, + ACTIONS(591), 1, + aux_sym_number_token1, + ACTIONS(593), 1, + aux_sym_number_token2, + ACTIONS(595), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(601), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(607), 1, + sym__brace_start, + ACTIONS(1075), 1, + anon_sym_BANG, + ACTIONS(1083), 1, + anon_sym_TILDE, + ACTIONS(1087), 1, + sym__special_character, + ACTIONS(4659), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(4661), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + anon_sym_LBRACE, + ACTIONS(4667), 1, + anon_sym_BQUOTE, + ACTIONS(4697), 1, sym_word, - [54047] = 3, + ACTIONS(4701), 1, + sym_test_operator, + STATE(2231), 1, + aux_sym__literal_repeat1, + STATE(2938), 1, + sym__expression, + ACTIONS(603), 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(4699), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(6337), 2, + sym_compound_statement, + sym_subshell, + STATE(2394), 3, + sym_ternary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + STATE(2470), 3, + sym_binary_expression, + sym_unary_expression, + sym_concatenation, + STATE(2230), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [46625] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 7, + ACTIONS(1250), 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(1260), 39, + ACTIONS(1248), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_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, @@ -121830,7 +111991,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, @@ -121847,27 +112007,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, - [54101] = 5, + [46679] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5477), 1, - sym__special_character, - STATE(1139), 1, - aux_sym__literal_repeat1, - ACTIONS(4309), 5, + ACTIONS(4574), 1, + aux_sym_concatenation_token1, + ACTIONS(4703), 1, + sym__concat, + STATE(1132), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 39, + ACTIONS(1207), 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, @@ -121876,7 +112038,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, @@ -121889,6 +112050,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, @@ -121901,31 +112063,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [54159] = 3, + [46739] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 7, - sym_file_descriptor, + ACTIONS(4574), 1, + aux_sym_concatenation_token1, + ACTIONS(4705), 1, sym__concat, + STATE(1132), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 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(1268), 39, + ACTIONS(1213), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -121937,7 +112103,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, @@ -121952,10 +112117,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [54213] = 3, + [46799] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 7, + ACTIONS(1314), 7, sym_file_descriptor, sym__concat, sym_test_operator, @@ -121963,7 +112128,7 @@ static const uint16_t ts_small_parse_table[] = { sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 39, + ACTIONS(1312), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -122003,10 +112168,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [54267] = 3, + [46853] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 7, + ACTIONS(1258), 7, sym_file_descriptor, sym__concat, sym_test_operator, @@ -122014,7 +112179,7 @@ static const uint16_t ts_small_parse_table[] = { sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 39, + ACTIONS(1256), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -122054,10 +112219,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [54321] = 3, + [46907] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 7, + ACTIONS(1221), 7, sym_file_descriptor, sym__concat, sym_test_operator, @@ -122065,7 +112230,7 @@ static const uint16_t ts_small_parse_table[] = { sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 39, + ACTIONS(1219), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -122105,31 +112270,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [54375] = 3, + [46961] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 6, + ACTIONS(1310), 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(1256), 40, + ACTIONS(1308), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_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, @@ -122156,35 +112321,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [54429] = 6, + [47015] = 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(5266), 5, + ACTIONS(1254), 7, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 38, + ACTIONS(1252), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, 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, @@ -122193,8 +112354,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, @@ -122208,24 +112371,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [54489] = 6, + [47069] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5429), 1, + ACTIONS(4707), 1, aux_sym_concatenation_token1, - ACTIONS(5475), 1, + ACTIONS(4710), 1, sym__concat, - STATE(1213), 1, + STATE(1132), 1, aux_sym_concatenation_repeat1, - ACTIONS(5270), 5, + ACTIONS(1221), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 38, + ACTIONS(1219), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -122247,6 +112409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -122262,24 +112425,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, - [54549] = 6, + [47129] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5391), 1, + ACTIONS(4574), 1, aux_sym_concatenation_token1, - ACTIONS(5413), 1, + ACTIONS(4576), 1, sym__concat, - STATE(1194), 1, + STATE(1125), 1, aux_sym_concatenation_repeat1, - ACTIONS(2162), 5, + ACTIONS(4006), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 38, + ACTIONS(4004), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -122318,66 +112480,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [54609] = 8, + [47189] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5486), 1, - anon_sym_DQUOTE, - ACTIONS(5490), 1, - sym_variable_name, - STATE(2462), 1, - sym_string, - ACTIONS(5488), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, - 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, + ACTIONS(1270), 7, sym_file_descriptor, sym__concat, sym_test_operator, @@ -122385,7 +112491,7 @@ static const uint16_t ts_small_parse_table[] = { sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 39, + ACTIONS(1268), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -122425,22 +112531,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [54727] = 6, + [47243] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4959), 1, - aux_sym_concatenation_token1, - ACTIONS(5138), 1, - sym__concat, - STATE(1204), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4370), 5, + ACTIONS(1274), 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), 38, + ACTIONS(1272), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -122465,6 +112567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -122479,22 +112582,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [54787] = 6, + [47297] = 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(1278), 7, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4441), 38, + ACTIONS(1276), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -122519,6 +112618,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,66 +112633,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [54847] = 8, + [47351] = 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(1266), 7, sym_file_descriptor, sym__concat, sym_test_operator, @@ -122600,7 +112644,7 @@ static const uint16_t ts_small_parse_table[] = { sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 39, + ACTIONS(1264), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -122640,17 +112684,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [54965] = 3, + [47405] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 6, + ACTIONS(1250), 7, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 40, + ACTIONS(1248), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -122661,7 +112706,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, @@ -122691,17 +112735,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [55019] = 3, + [47459] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 6, - sym_file_descriptor, + ACTIONS(4629), 1, + aux_sym_concatenation_token1, + ACTIONS(4713), 1, sym__concat, + STATE(1156), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 40, + ACTIONS(1207), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -122711,7 +112760,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, @@ -122726,7 +112774,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -122742,22 +112789,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [55073] = 6, + [47519] = 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(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(4517), 38, + ACTIONS(1260), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -122782,6 +112825,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, @@ -122796,22 +112840,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [55133] = 6, + [47573] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4959), 1, - aux_sym_concatenation_token1, - ACTIONS(5138), 1, + ACTIONS(1286), 6, + sym_file_descriptor, sym__concat, - STATE(1205), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4305), 5, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1284), 40, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [47627] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1282), 7, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4303), 38, + ACTIONS(1280), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -122836,6 +112927,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, @@ -122850,17 +112942,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [55193] = 3, + [47681] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 6, + ACTIONS(1290), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 40, + ACTIONS(1288), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -122883,6 +112975,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, @@ -122899,33 +112992,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [55247] = 3, + [47735] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, + ACTIONS(1286), 7, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 40, + ACTIONS(1284), 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, @@ -122934,6 +113026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -122950,24 +113043,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, - [55301] = 6, + [47789] = 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(4282), 5, + ACTIONS(1290), 7, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 38, + ACTIONS(1288), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -122992,6 +113080,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, @@ -123006,22 +113095,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [55361] = 6, + [47843] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4959), 1, - aux_sym_concatenation_token1, - ACTIONS(5138), 1, - sym__concat, - STATE(1205), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4439), 5, + ACTIONS(1294), 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(4437), 38, + ACTIONS(1292), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -123046,6 +113131,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, @@ -123060,22 +113146,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [55421] = 6, + [47897] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4959), 1, - aux_sym_concatenation_token1, - ACTIONS(5138), 1, - sym__concat, - STATE(1204), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4309), 5, + ACTIONS(1298), 7, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 38, + ACTIONS(1296), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -123100,6 +113182,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, @@ -123114,22 +113197,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [55481] = 6, + [47951] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4959), 1, + ACTIONS(4018), 1, + anon_sym_BQUOTE, + ACTIONS(4626), 1, + sym_variable_name, + ACTIONS(4719), 1, + aux_sym_heredoc_redirect_token1, + STATE(6356), 1, + sym_subscript, + ACTIONS(2782), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3937), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4717), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(625), 2, + sym_file_redirect, + sym_heredoc_redirect, + STATE(4322), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3944), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(4715), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + ACTIONS(3935), 26, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_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_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [48025] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4629), 1, aux_sym_concatenation_token1, - ACTIONS(5138), 1, + ACTIONS(4721), 1, sym__concat, - STATE(1205), 1, + STATE(1156), 1, aux_sym_concatenation_repeat1, - ACTIONS(4313), 5, + ACTIONS(1215), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1213), 38, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + [48085] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1231), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 38, + ACTIONS(1229), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -123140,7 +113332,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, @@ -123168,35 +113363,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [55541] = 6, + [48139] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4959), 1, + ACTIONS(4574), 1, aux_sym_concatenation_token1, - ACTIONS(5138), 1, + ACTIONS(4576), 1, sym__concat, - STATE(1204), 1, + STATE(1125), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 5, + ACTIONS(4449), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 38, + ACTIONS(4447), 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, @@ -123222,31 +113417,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [55601] = 3, + [48199] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 7, - sym_file_descriptor, + ACTIONS(4574), 1, + aux_sym_concatenation_token1, + ACTIONS(4576), 1, sym__concat, + STATE(1126), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4453), 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), 39, + ACTIONS(4451), 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, @@ -123258,7 +113457,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, @@ -123273,10 +113471,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [55655] = 3, + [48259] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 7, + ACTIONS(1302), 7, sym_file_descriptor, sym__concat, sym_test_operator, @@ -123284,7 +113482,7 @@ static const uint16_t ts_small_parse_table[] = { sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 39, + ACTIONS(1300), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -123324,10 +113522,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [55709] = 3, + [48313] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 7, + ACTIONS(1306), 7, sym_file_descriptor, sym__concat, sym_test_operator, @@ -123335,7 +113533,7 @@ static const uint16_t ts_small_parse_table[] = { sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 39, + ACTIONS(1304), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -123375,31 +113573,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [55763] = 3, + [48367] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 6, + ACTIONS(1302), 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(1248), 40, + ACTIONS(1300), 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, @@ -123408,6 +113606,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 +113623,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, - [55817] = 3, + [48421] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, - sym_file_descriptor, + ACTIONS(4723), 1, + aux_sym_concatenation_token1, + ACTIONS(4726), 1, sym__concat, + STATE(1156), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1221), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 40, + ACTIONS(1219), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -123446,7 +113649,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, @@ -123461,7 +113663,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, @@ -123477,31 +113678,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [55871] = 3, + [48481] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 6, + ACTIONS(1314), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 40, + ACTIONS(1312), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -123510,6 +113711,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, @@ -123526,19 +113728,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, - [55925] = 3, + [48535] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 6, - sym_file_descriptor, + ACTIONS(4629), 1, + aux_sym_concatenation_token1, + ACTIONS(4631), 1, sym__concat, + STATE(1139), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4449), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 40, + ACTIONS(4447), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -123548,7 +113754,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, @@ -123563,7 +113768,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, @@ -123579,22 +113783,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [55979] = 6, + [48595] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5391), 1, + ACTIONS(4629), 1, aux_sym_concatenation_token1, - ACTIONS(5413), 1, + ACTIONS(4631), 1, sym__concat, - STATE(1194), 1, + STATE(1149), 1, aux_sym_concatenation_repeat1, - ACTIONS(4439), 5, + ACTIONS(4453), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 38, + ACTIONS(4451), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -123616,7 +113820,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, @@ -123632,36 +113835,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, - [56039] = 6, + [48655] = 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(1258), 6, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5134), 38, + ACTIONS(1256), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_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, @@ -123670,8 +113870,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, @@ -123686,30 +113888,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [56098] = 3, + [48709] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 6, + ACTIONS(1221), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 39, + ACTIONS(1219), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_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, @@ -123718,6 +113921,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, @@ -123734,32 +113938,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, - [56151] = 3, + [48763] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, + ACTIONS(1310), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 39, + ACTIONS(1308), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_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, @@ -123768,6 +113972,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, @@ -123784,32 +113989,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, - [56204] = 3, + [48817] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 6, + ACTIONS(1254), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 39, + ACTIONS(1252), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_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, @@ -123818,6 +114023,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, @@ -123834,19 +114040,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [56257] = 3, + [48871] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 6, - sym_file_descriptor, + ACTIONS(4574), 1, + aux_sym_concatenation_token1, + ACTIONS(4576), 1, sym__concat, + STATE(1125), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1231), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 39, + ACTIONS(1229), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -123871,7 +114081,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 +114095,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [56310] = 6, + [48931] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5496), 1, - aux_sym_concatenation_token1, - ACTIONS(5498), 1, - sym__concat, - STATE(1462), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 4, + ACTIONS(1270), 6, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 38, + ACTIONS(1268), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_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, @@ -123925,6 +114131,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, @@ -123939,30 +114146,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [56369] = 3, + [48985] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, + ACTIONS(1274), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 39, + ACTIONS(1272), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_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, @@ -123971,6 +114179,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, @@ -123987,19 +114196,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [56422] = 3, + [49039] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4729), 1, + sym_word, + ACTIONS(4731), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4733), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4735), 1, + anon_sym_DOLLAR, + ACTIONS(4737), 1, + sym__special_character, + ACTIONS(4739), 1, + anon_sym_DQUOTE, + ACTIONS(4743), 1, + aux_sym_number_token1, + ACTIONS(4745), 1, + aux_sym_number_token2, + ACTIONS(4747), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4749), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4751), 1, + anon_sym_BQUOTE, + ACTIONS(4753), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4757), 1, + sym_test_operator, + ACTIONS(4759), 1, + sym__brace_start, + STATE(5163), 1, + aux_sym__literal_repeat1, + STATE(5284), 1, + sym_concatenation, + ACTIONS(4741), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4755), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2305), 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(5040), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2307), 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, + [49131] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4731), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4733), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4735), 1, + anon_sym_DOLLAR, + ACTIONS(4737), 1, + sym__special_character, + ACTIONS(4739), 1, + anon_sym_DQUOTE, + ACTIONS(4743), 1, + aux_sym_number_token1, + ACTIONS(4745), 1, + aux_sym_number_token2, + ACTIONS(4747), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4749), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4751), 1, + anon_sym_BQUOTE, + ACTIONS(4753), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4759), 1, + sym__brace_start, + ACTIONS(4761), 1, + sym_word, + ACTIONS(4765), 1, + sym_test_operator, + STATE(5169), 1, + aux_sym__literal_repeat1, + STATE(5270), 1, + sym_concatenation, + ACTIONS(4755), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4763), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(2309), 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(5057), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2311), 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, + [49223] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 6, + ACTIONS(1286), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 39, + ACTIONS(1284), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -124009,6 +114357,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, @@ -124039,17 +114388,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [56475] = 3, + [49277] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(1290), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 39, + ACTIONS(1288), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -124059,6 +114408,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, @@ -124071,7 +114421,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, @@ -124088,84 +114437,154 @@ static const uint16_t 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, + [49331] = 6, + 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, + STATE(2918), 1, + aux_sym__literal_repeat1, + STATE(3209), 1, + sym_concatenation, + STATE(2574), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2305), 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(2307), 23, 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_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_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, + [49391] = 6, + ACTIONS(71), 1, + sym_comment, + STATE(2929), 1, + aux_sym__literal_repeat1, + STATE(3178), 1, + sym_concatenation, + STATE(2577), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2309), 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_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(2311), 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, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [56587] = 3, + [49451] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, - sym_file_descriptor, - sym__concat, + ACTIONS(2321), 1, + anon_sym_BQUOTE, + ACTIONS(4626), 1, sym_variable_name, - sym_test_operator, - sym__brace_start, + ACTIONS(4769), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 39, - anon_sym_SEMI, + STATE(6356), 1, + sym_subscript, + ACTIONS(2782), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3937), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4717), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + STATE(625), 2, + sym_file_redirect, + sym_heredoc_redirect, + STATE(4322), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3944), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(4767), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + ACTIONS(3935), 26, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -124173,11 +114592,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, @@ -124187,35 +114604,46 @@ 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, - [56640] = 3, + [49525] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, - sym_file_descriptor, - sym__concat, + ACTIONS(4620), 1, sym_variable_name, - sym_test_operator, - sym__brace_start, + ACTIONS(4773), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 39, - anon_sym_SEMI, + STATE(6320), 1, + sym_subscript, + ACTIONS(2782), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3937), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4616), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + STATE(625), 2, + sym_file_redirect, + sym_heredoc_redirect, + STATE(4432), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3944), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(4771), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + ACTIONS(3935), 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_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -124223,11 +114651,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, @@ -124242,30 +114668,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [56693] = 3, + [49597] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 5, + ACTIONS(1278), 6, sym_file_descriptor, sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 40, + ACTIONS(1276), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_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, @@ -124274,6 +114701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -124290,93 +114718,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, - [56746] = 21, + [49651] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5507), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5510), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5513), 1, - anon_sym_DOLLAR, - ACTIONS(5516), 1, - sym__special_character, - ACTIONS(5519), 1, - anon_sym_DQUOTE, - ACTIONS(5522), 1, - aux_sym_number_token1, - ACTIONS(5525), 1, - aux_sym_number_token2, - ACTIONS(5528), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5531), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5534), 1, - anon_sym_BQUOTE, - ACTIONS(5537), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5543), 1, - sym_test_operator, - ACTIONS(5546), 1, - sym__brace_start, - STATE(3369), 1, - aux_sym__literal_repeat1, - ACTIONS(2169), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(5540), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1305), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(5504), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(3082), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2167), 13, - 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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5500), 1, + ACTIONS(4629), 1, aux_sym_concatenation_token1, - ACTIONS(5502), 1, + ACTIONS(4631), 1, sym__concat, - STATE(1353), 1, + STATE(1139), 1, aux_sym_concatenation_repeat1, - ACTIONS(4282), 6, + ACTIONS(1231), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 36, + ACTIONS(1229), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -124387,6 +114745,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, @@ -124396,7 +114756,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, @@ -124412,35 +114771,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, - [56894] = 6, + [49711] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5500), 1, - aux_sym_concatenation_token1, - ACTIONS(5502), 1, - sym__concat, - STATE(1381), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4439), 6, + ACTIONS(4775), 1, + sym__special_character, + STATE(1177), 1, + aux_sym__literal_repeat1, + ACTIONS(1318), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 36, + ACTIONS(1316), 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, @@ -124453,7 +114814,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, @@ -124466,17 +114826,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [56953] = 3, + [49769] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 6, - sym_file_descriptor, + ACTIONS(4578), 1, + aux_sym_concatenation_token1, + ACTIONS(4612), 1, sym__concat, - sym_variable_name, + STATE(1078), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4780), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 39, + ACTIONS(4778), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -124486,6 +114850,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, @@ -124500,7 +114865,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, @@ -124516,30 +114880,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [57006] = 3, + [49829] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 6, + ACTIONS(3915), 5, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 39, + ACTIONS(3913), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -124548,9 +114914,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -124564,18 +114930,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [57059] = 3, + [49883] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 5, - sym_file_descriptor, + ACTIONS(4578), 1, + aux_sym_concatenation_token1, + ACTIONS(4612), 1, sym__concat, + STATE(1080), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4784), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 40, + ACTIONS(4782), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -124600,7 +114970,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, @@ -124616,35 +114985,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [57112] = 6, + [49943] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, + ACTIONS(4426), 1, aux_sym_concatenation_token1, - ACTIONS(5494), 1, + ACTIONS(4428), 1, sym__concat, - STATE(1352), 1, + STATE(1114), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 4, + ACTIONS(4047), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 38, + ACTIONS(4045), 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, @@ -124653,6 +115022,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, @@ -124669,30 +115039,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [57171] = 3, + [50003] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 5, - sym_file_descriptor, + ACTIONS(4426), 1, + aux_sym_concatenation_token1, + ACTIONS(4428), 1, sym__concat, + STATE(1115), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4117), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 40, + ACTIONS(4115), 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, @@ -124701,9 +115076,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, @@ -124717,32 +115092,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, - [57224] = 3, + [50063] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, + ACTIONS(1266), 6, 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(1264), 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, @@ -124769,30 +115144,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [57277] = 3, + [50117] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(1250), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 39, + ACTIONS(1248), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_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 +115177,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,82 +115194,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, - [57330] = 3, + [50171] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 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(4426), 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, - [57383] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1302), 6, - sym_file_descriptor, + ACTIONS(4428), 1, sym__concat, - sym_variable_name, + STATE(1114), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3956), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 39, + ACTIONS(3954), 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, @@ -124901,9 +115232,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, @@ -124917,36 +115248,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, - [57436] = 6, + [50231] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5496), 1, + ACTIONS(4426), 1, aux_sym_concatenation_token1, - ACTIONS(5549), 1, + ACTIONS(4428), 1, sym__concat, - STATE(1297), 1, + STATE(1115), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 4, + ACTIONS(4121), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 38, + ACTIONS(4119), 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, @@ -124972,30 +115303,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [57495] = 3, + [50291] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, + ACTIONS(4010), 5, 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(4008), 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, @@ -125007,7 +115340,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, @@ -125022,30 +115354,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [57548] = 3, + [50345] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 6, - sym_file_descriptor, + ACTIONS(4426), 1, + aux_sym_concatenation_token1, + ACTIONS(4428), 1, sym__concat, - sym_variable_name, + STATE(1114), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4125), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 39, + ACTIONS(4123), 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, @@ -125054,9 +115391,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, @@ -125070,36 +115407,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [57601] = 5, + [50405] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5551), 1, - sym__special_character, - STATE(1423), 1, - aux_sym__literal_repeat1, - ACTIONS(5132), 5, + ACTIONS(4426), 1, + aux_sym_concatenation_token1, + ACTIONS(4428), 1, + sym__concat, + STATE(1115), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3915), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 38, + ACTIONS(3913), 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, @@ -125112,6 +115449,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, @@ -125124,30 +115462,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [57658] = 3, + [50465] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 5, - sym_file_descriptor, + ACTIONS(4426), 1, + aux_sym_concatenation_token1, + ACTIONS(4428), 1, sym__concat, + STATE(1114), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4006), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 40, + ACTIONS(4004), 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, @@ -125159,7 +115502,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, @@ -125174,34 +115516,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [57711] = 6, + [50525] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5500), 1, + ACTIONS(4426), 1, aux_sym_concatenation_token1, - ACTIONS(5502), 1, + ACTIONS(4428), 1, sym__concat, - STATE(1353), 1, + STATE(1115), 1, aux_sym_concatenation_repeat1, - ACTIONS(5132), 6, + ACTIONS(4010), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 36, + ACTIONS(4008), 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, @@ -125227,34 +115570,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [57770] = 6, + [50585] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5553), 1, + ACTIONS(4426), 1, aux_sym_concatenation_token1, - ACTIONS(5555), 1, + ACTIONS(4428), 1, sym__concat, - STATE(1326), 1, + STATE(1114), 1, aux_sym_concatenation_repeat1, - ACTIONS(5389), 4, + ACTIONS(1231), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5387), 38, + ACTIONS(1229), 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, @@ -125263,6 +115607,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, @@ -125278,36 +115623,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, - [57829] = 6, + [50645] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5553), 1, - aux_sym_concatenation_token1, - ACTIONS(5555), 1, - sym__concat, - STATE(1338), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5291), 4, + ACTIONS(1262), 6, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5289), 38, + ACTIONS(1260), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_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, @@ -125316,8 +115657,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, @@ -125331,36 +115674,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [57888] = 6, + [50699] = 10, 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, - sym_file_descriptor, + ACTIONS(4039), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(4626), 1, sym_variable_name, + STATE(6356), 1, + sym_subscript, + ACTIONS(3937), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(625), 2, + sym_file_redirect, + sym_heredoc_redirect, + STATE(4322), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3944), 3, + sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(5134), 36, + ACTIONS(4037), 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(3935), 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, @@ -125368,7 +115716,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, @@ -125386,21 +115733,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [57947] = 6, + [50767] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5553), 1, + ACTIONS(4574), 1, aux_sym_concatenation_token1, - ACTIONS(5557), 1, + ACTIONS(4576), 1, sym__concat, - STATE(1345), 1, + STATE(1126), 1, aux_sym_concatenation_repeat1, - ACTIONS(1229), 4, + ACTIONS(3915), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 38, + ACTIONS(3913), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -125422,6 +115770,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, @@ -125437,32 +115786,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, + [50827] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 5, + ACTIONS(1282), 6, sym_file_descriptor, sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 40, + ACTIONS(1280), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_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, @@ -125471,6 +115820,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 +115837,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, - [58059] = 3, + [50881] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 5, - sym_file_descriptor, + ACTIONS(4574), 1, + aux_sym_concatenation_token1, + ACTIONS(4576), 1, sym__concat, + STATE(1125), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4483), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 40, + ACTIONS(4481), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -125508,7 +115863,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, @@ -125521,9 +115875,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, @@ -125537,18 +115891,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, - [58112] = 3, + [50941] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 5, - sym_file_descriptor, + ACTIONS(4574), 1, + aux_sym_concatenation_token1, + ACTIONS(4576), 1, sym__concat, + STATE(1126), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4487), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 40, + ACTIONS(4485), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -125558,7 +115917,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, @@ -125574,7 +115932,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -125589,16 +115946,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [58165] = 3, + [51001] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4443), 5, + ACTIONS(1286), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4441), 40, + ACTIONS(1284), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -125609,9 +115967,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, @@ -125625,6 +115982,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 +115997,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [58218] = 3, + [51055] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 5, + ACTIONS(1290), 6, sym_file_descriptor, sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 40, + ACTIONS(1288), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_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, @@ -125671,6 +116030,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,24 +116047,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, - [58271] = 3, + [51109] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5399), 5, + ACTIONS(4574), 1, + aux_sym_concatenation_token1, + ACTIONS(4576), 1, + sym__concat, + STATE(1126), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4010), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5397), 40, + ACTIONS(4008), 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, @@ -125713,7 +116077,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, @@ -125739,30 +116102,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [58324] = 3, + [51169] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 6, + ACTIONS(1294), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 39, + ACTIONS(1292), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_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, @@ -125771,6 +116135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -125787,36 +116152,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, - [58377] = 5, + [51223] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5559), 1, - sym__special_character, - STATE(1397), 1, - aux_sym__literal_repeat1, - ACTIONS(4370), 6, + ACTIONS(4574), 1, + aux_sym_concatenation_token1, + ACTIONS(4576), 1, + sym__concat, + STATE(1125), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4491), 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(4368), 37, + ACTIONS(4489), 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, @@ -125829,6 +116194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -125841,16 +116207,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [58434] = 3, + [51283] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, - sym_file_descriptor, + ACTIONS(4574), 1, + aux_sym_concatenation_token1, + ACTIONS(4576), 1, sym__concat, + STATE(1126), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4495), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 40, + ACTIONS(4493), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -125860,7 +116232,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, @@ -125873,9 +116244,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, @@ -125889,19 +116260,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [58487] = 3, + [51343] = 30, + ACTIONS(71), 1, + sym_comment, + ACTIONS(577), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(579), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(583), 1, + anon_sym_DOLLAR, + ACTIONS(587), 1, + anon_sym_DQUOTE, + ACTIONS(591), 1, + aux_sym_number_token1, + ACTIONS(593), 1, + aux_sym_number_token2, + ACTIONS(595), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(601), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(607), 1, + sym__brace_start, + ACTIONS(1075), 1, + anon_sym_BANG, + ACTIONS(1083), 1, + anon_sym_TILDE, + ACTIONS(1087), 1, + sym__special_character, + ACTIONS(4659), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(4661), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + anon_sym_LBRACE, + ACTIONS(4667), 1, + anon_sym_BQUOTE, + ACTIONS(4786), 1, + sym_word, + ACTIONS(4790), 1, + sym_test_operator, + STATE(2255), 1, + aux_sym__literal_repeat1, + STATE(2938), 1, + sym__expression, + ACTIONS(603), 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(4788), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(6312), 2, + sym_compound_statement, + sym_subshell, + STATE(2394), 3, + sym_ternary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + STATE(2460), 3, + sym_binary_expression, + sym_unary_expression, + sym_concatenation, + STATE(2235), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [51451] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 6, - sym_file_descriptor, + ACTIONS(4792), 1, + aux_sym_concatenation_token1, + ACTIONS(4794), 1, sym__concat, - sym_variable_name, + STATE(1299), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4784), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 39, + ACTIONS(4782), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -125925,7 +116377,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, @@ -125941,20 +116392,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [58540] = 5, + [51510] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5551), 1, - sym__special_character, - STATE(1423), 1, - aux_sym__literal_repeat1, - ACTIONS(5563), 5, + ACTIONS(4796), 1, + aux_sym_concatenation_token1, + ACTIONS(4798), 1, + sym__concat, + STATE(1251), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4125), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 38, + ACTIONS(4123), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -125964,10 +116418,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, @@ -125981,6 +116432,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 +116445,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [58597] = 6, + [51569] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5553), 1, + ACTIONS(4796), 1, aux_sym_concatenation_token1, - ACTIONS(5565), 1, + ACTIONS(4798), 1, sym__concat, - STATE(1345), 1, + STATE(1313), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 4, + ACTIONS(3915), 6, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 38, + ACTIONS(3913), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -126018,8 +116472,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -126029,6 +116481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -126044,33 +116497,91 @@ static const uint16_t 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, + [51628] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4800), 1, + anon_sym_DQUOTE, + ACTIONS(4802), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4804), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4806), 1, + anon_sym_BQUOTE, + ACTIONS(4808), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2612), 3, + sym_string, + sym_expansion, + sym_command_substitution, + ACTIONS(4455), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(4457), 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, + [51693] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 6, + ACTIONS(4810), 1, + aux_sym_concatenation_token1, + ACTIONS(4812), 1, + sym__concat, + STATE(1212), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1231), 6, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 39, + ACTIONS(1229), 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_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, @@ -126079,7 +116590,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, @@ -126095,17 +116605,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, - [58709] = 3, + [51752] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 5, + ACTIONS(1294), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 40, + ACTIONS(1292), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -126115,7 +116627,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -126128,7 +116639,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -126145,24 +116655,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, - [58762] = 6, + [51805] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5500), 1, + ACTIONS(4810), 1, aux_sym_concatenation_token1, - ACTIONS(5502), 1, + ACTIONS(4814), 1, sym__concat, - STATE(1353), 1, + STATE(1218), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 6, + ACTIONS(1209), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 36, + ACTIONS(1207), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -126182,7 +116693,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 +116708,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, - [58821] = 3, + [51864] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 5, + ACTIONS(1262), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 40, + ACTIONS(1260), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -126218,7 +116730,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, @@ -126249,16 +116760,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [58874] = 3, + [51917] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 5, + ACTIONS(1298), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 40, + ACTIONS(1296), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -126268,7 +116780,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, @@ -126281,7 +116792,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, @@ -126298,24 +116808,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, - [58927] = 6, + [51970] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5500), 1, + ACTIONS(4810), 1, aux_sym_concatenation_token1, - ACTIONS(5502), 1, + ACTIONS(4816), 1, sym__concat, - STATE(1381), 1, + STATE(1218), 1, aux_sym_concatenation_repeat1, - ACTIONS(2162), 6, + ACTIONS(1215), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 36, + ACTIONS(1213), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -126335,7 +116846,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, @@ -126351,22 +116861,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, - [58986] = 6, + [52029] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5567), 1, + ACTIONS(4818), 1, aux_sym_concatenation_token1, - ACTIONS(5570), 1, + ACTIONS(4820), 1, sym__concat, - STATE(1345), 1, + STATE(1260), 1, aux_sym_concatenation_repeat1, - ACTIONS(1215), 4, + ACTIONS(4449), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 38, + ACTIONS(4447), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -126376,9 +116888,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_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, + [52088] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4818), 1, + aux_sym_concatenation_token1, + ACTIONS(4820), 1, + sym__concat, + STATE(1263), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4453), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4451), 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_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -126405,21 +116969,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [59045] = 6, + [52147] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5496), 1, + ACTIONS(4822), 1, aux_sym_concatenation_token1, - ACTIONS(5549), 1, + ACTIONS(4825), 1, sym__concat, - STATE(1297), 1, + STATE(1218), 1, aux_sym_concatenation_repeat1, - ACTIONS(5132), 4, + ACTIONS(1221), 6, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 38, + ACTIONS(1219), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -126430,8 +116996,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, @@ -126441,7 +117005,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -126457,23 +117020,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, - [59104] = 3, + [52206] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4305), 5, + ACTIONS(1282), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4303), 40, + ACTIONS(1280), 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, @@ -126482,7 +117046,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, @@ -126491,9 +117054,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, @@ -126507,22 +117070,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, - [59157] = 6, + [52259] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5496), 1, + ACTIONS(4796), 1, aux_sym_concatenation_token1, - ACTIONS(5549), 1, + ACTIONS(4798), 1, sym__concat, - STATE(1393), 1, + STATE(1251), 1, aux_sym_concatenation_repeat1, - ACTIONS(5136), 4, + ACTIONS(4483), 6, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5134), 38, + ACTIONS(4481), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -126533,8 +117099,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, @@ -126561,16 +117125,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [59216] = 3, + [52318] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 5, - sym_file_descriptor, + ACTIONS(4810), 1, + aux_sym_concatenation_token1, + ACTIONS(4812), 1, sym__concat, + STATE(1212), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4449), 6, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 40, + ACTIONS(4447), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -126580,10 +117151,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, @@ -126593,10 +117161,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, @@ -126610,17 +117176,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, - [59269] = 3, + [52377] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1240), 5, + ACTIONS(4828), 1, + sym__special_character, + STATE(1280), 1, + aux_sym__literal_repeat1, + ACTIONS(4125), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1233), 40, + ACTIONS(4123), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -126631,7 +117202,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, @@ -126648,7 +117218,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, @@ -126661,16 +117230,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [59322] = 3, + [52434] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, - sym_file_descriptor, + ACTIONS(4810), 1, + aux_sym_concatenation_token1, + ACTIONS(4812), 1, sym__concat, + STATE(1215), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4453), 6, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 40, + ACTIONS(4451), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -126680,10 +117256,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, @@ -126695,7 +117268,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, @@ -126711,35 +117283,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [59375] = 6, + [52493] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, - aux_sym_concatenation_token1, - ACTIONS(5573), 1, - sym__concat, - STATE(1421), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 4, + ACTIONS(4828), 1, + sym__special_character, + STATE(1280), 1, + aux_sym__literal_repeat1, + ACTIONS(4006), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 38, + ACTIONS(4004), 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, @@ -126748,10 +117319,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -126764,23 +117335,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [59434] = 6, + [52550] = 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(1278), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 36, + ACTIONS(1276), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -126790,7 +117354,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, @@ -126800,9 +117367,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, @@ -126816,23 +117383,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, - [59493] = 6, + [52603] = 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(1302), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 37, + ACTIONS(1300), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -126842,8 +117405,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, @@ -126856,6 +117420,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, @@ -126870,22 +117435,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [59552] = 6, + [52656] = 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(1306), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5134), 37, + ACTIONS(1304), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -126895,8 +117455,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -126909,6 +117470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -126923,23 +117485,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [59611] = 6, + [52709] = 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(1302), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 36, + ACTIONS(1300), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -126950,6 +117506,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -126962,6 +117520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -126976,23 +117535,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [59670] = 6, + [52762] = 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(1250), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 36, + ACTIONS(1248), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -127002,7 +117554,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, @@ -127012,9 +117567,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, @@ -127028,31 +117583,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, - [59729] = 3, + [52815] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 6, + ACTIONS(4830), 1, + sym__special_character, + STATE(1230), 1, + aux_sym__literal_repeat1, + ACTIONS(1318), 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(1260), 39, + ACTIONS(1316), 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, @@ -127064,9 +117624,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, @@ -127079,17 +117637,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [59782] = 3, + [52872] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, + ACTIONS(1302), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 39, + ACTIONS(1300), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -127099,6 +117656,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, @@ -127129,21 +117687,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [59835] = 5, + [52925] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5559), 1, - sym__special_character, - STATE(1397), 1, - aux_sym__literal_repeat1, - ACTIONS(4282), 6, + ACTIONS(1240), 6, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 37, + ACTIONS(1233), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -127154,6 +117708,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, @@ -127169,6 +117724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -127181,31 +117737,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [59892] = 3, + [52978] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 5, + ACTIONS(1282), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 40, + ACTIONS(1280), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -127214,9 +117769,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, @@ -127230,24 +117785,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, - [59945] = 6, + [53031] = 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(5266), 6, + ACTIONS(1258), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 36, + ACTIONS(1256), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -127258,6 +117808,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, @@ -127270,6 +117822,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, @@ -127284,23 +117837,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [60004] = 6, + [53084] = 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(1221), 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(1219), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -127311,6 +117858,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -127323,6 +117872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -127337,17 +117887,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [60063] = 3, + [53137] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 6, + ACTIONS(1310), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1308), 40, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, + [53190] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1302), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 39, + ACTIONS(1300), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -127369,7 +117969,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -127386,18 +117985,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [60116] = 3, + [53243] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, + ACTIONS(1306), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 39, + ACTIONS(1304), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -127437,34 +118037,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [60169] = 5, + [53296] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5559), 1, - sym__special_character, - STATE(1397), 1, - aux_sym__literal_repeat1, - ACTIONS(4309), 6, + ACTIONS(4796), 1, + aux_sym_concatenation_token1, + ACTIONS(4798), 1, + sym__concat, + STATE(1251), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1231), 6, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 37, + ACTIONS(1229), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -127477,6 +118077,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, @@ -127489,22 +118090,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [60226] = 6, + [53355] = 5, 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, + ACTIONS(4833), 1, + sym__special_character, + STATE(1348), 1, + aux_sym__literal_repeat1, + ACTIONS(4449), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5184), 37, + ACTIONS(4447), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -127514,8 +118113,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, @@ -127525,10 +118126,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, @@ -127540,24 +118141,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, + [53412] = 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(1302), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5188), 37, + ACTIONS(1300), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -127567,8 +118162,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, @@ -127580,6 +118176,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 +118192,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [60344] = 3, + [53465] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4439), 5, + ACTIONS(4796), 1, + aux_sym_concatenation_token1, + ACTIONS(4798), 1, + sym__concat, + STATE(1251), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4449), 6, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 40, + ACTIONS(4447), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -127645,22 +118245,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [60397] = 6, + [53524] = 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(1278), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 37, + ACTIONS(1276), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -127670,8 +118265,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, @@ -127681,9 +118277,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, @@ -127697,24 +118293,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, - [60456] = 6, + [53577] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5585), 1, + ACTIONS(4796), 1, aux_sym_concatenation_token1, - ACTIONS(5587), 1, + ACTIONS(4798), 1, sym__concat, - STATE(1372), 1, + STATE(1313), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 6, + ACTIONS(4453), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 36, + ACTIONS(4451), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -127734,6 +118331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -127749,25 +118347,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, - [60515] = 6, + [53636] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5585), 1, + ACTIONS(4835), 1, aux_sym_concatenation_token1, - ACTIONS(5589), 1, + ACTIONS(4837), 1, sym__concat, - STATE(1378), 1, + STATE(1247), 1, aux_sym_concatenation_repeat1, - ACTIONS(1229), 6, + ACTIONS(1231), 5, 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(1229), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -127777,6 +118373,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, @@ -127787,6 +118384,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, @@ -127802,24 +118400,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, - [60574] = 6, + [53695] = 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(1254), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 37, + ACTIONS(1252), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -127829,8 +118420,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, @@ -127840,9 +118433,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, @@ -127856,23 +118449,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, - [60633] = 6, + [53748] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, + ACTIONS(4835), 1, aux_sym_concatenation_token1, - ACTIONS(5579), 1, + ACTIONS(4839), 1, sym__concat, - STATE(1420), 1, + STATE(1253), 1, aux_sym_concatenation_repeat1, - ACTIONS(4439), 5, + ACTIONS(1209), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 37, + ACTIONS(1207), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -127910,23 +118504,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [60692] = 6, + [53807] = 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(1266), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 36, + ACTIONS(1264), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -127936,7 +118523,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 +118538,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,22 +118554,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [60751] = 6, + [53860] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5581), 1, + ACTIONS(4835), 1, aux_sym_concatenation_token1, - ACTIONS(5583), 1, + ACTIONS(4841), 1, sym__concat, - STATE(1444), 1, + STATE(1253), 1, aux_sym_concatenation_repeat1, - ACTIONS(5266), 5, + ACTIONS(1215), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 37, + ACTIONS(1213), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -127999,6 +118590,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 +118606,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, - [60810] = 6, + [53919] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5581), 1, + ACTIONS(4843), 1, aux_sym_concatenation_token1, - ACTIONS(5583), 1, + ACTIONS(4845), 1, sym__concat, - STATE(1454), 1, + STATE(1267), 1, aux_sym_concatenation_repeat1, - ACTIONS(5270), 5, + ACTIONS(1209), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 37, + ACTIONS(1207), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -128041,8 +118631,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, @@ -128067,25 +118659,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, - [60869] = 6, + [53978] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5593), 1, + ACTIONS(4796), 1, aux_sym_concatenation_token1, - ACTIONS(5596), 1, + ACTIONS(4847), 1, sym__concat, - STATE(1378), 1, + STATE(1336), 1, aux_sym_concatenation_repeat1, - ACTIONS(1215), 6, + ACTIONS(1209), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 36, + ACTIONS(1207), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -128105,6 +118696,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, @@ -128120,23 +118712,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, - [60928] = 6, + [54037] = 5, 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(4849), 1, + sym__special_character, + STATE(1264), 1, + aux_sym__literal_repeat1, + ACTIONS(4449), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 38, + ACTIONS(4447), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -128162,7 +118752,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, @@ -128174,17 +118763,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, - [60987] = 3, + [54094] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 5, - sym_file_descriptor, + ACTIONS(4851), 1, + aux_sym_concatenation_token1, + ACTIONS(4854), 1, sym__concat, + STATE(1253), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1221), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 40, + ACTIONS(1219), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -128194,10 +118790,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, @@ -128210,7 +118804,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, @@ -128225,23 +118818,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [61040] = 6, + [54153] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5500), 1, + ACTIONS(4835), 1, aux_sym_concatenation_token1, - ACTIONS(5599), 1, + ACTIONS(4837), 1, sym__concat, - STATE(1389), 1, + STATE(1247), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 6, + ACTIONS(4483), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 36, + ACTIONS(4481), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -128251,6 +118843,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, @@ -128278,22 +118871,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [61099] = 6, + [54212] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, + ACTIONS(4835), 1, aux_sym_concatenation_token1, - ACTIONS(5579), 1, + ACTIONS(4837), 1, sym__concat, - STATE(1418), 1, + STATE(1249), 1, aux_sym_concatenation_repeat1, - ACTIONS(5266), 5, + ACTIONS(4487), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 37, + ACTIONS(4485), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -128331,16 +118924,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [61158] = 3, + [54271] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 5, - sym_file_descriptor, + ACTIONS(4810), 1, + aux_sym_concatenation_token1, + ACTIONS(4812), 1, sym__concat, + STATE(1212), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4393), 6, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 40, + ACTIONS(4391), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -128350,10 +118950,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, @@ -128363,10 +118960,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, @@ -128380,18 +118975,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, - [61211] = 3, + [54330] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 6, - sym_file_descriptor, + ACTIONS(4810), 1, + aux_sym_concatenation_token1, + ACTIONS(4812), 1, sym__concat, + STATE(1215), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4400), 6, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 39, + ACTIONS(4398), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -128402,8 +119004,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, @@ -128413,10 +119013,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, @@ -128430,79 +119028,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, - [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, + [54389] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, + ACTIONS(4818), 1, aux_sym_concatenation_token1, - ACTIONS(5579), 1, + ACTIONS(4820), 1, sym__concat, - STATE(1420), 1, + STATE(1260), 1, aux_sym_concatenation_repeat1, - ACTIONS(5270), 5, + ACTIONS(1231), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 37, + ACTIONS(1229), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -128523,7 +119066,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, @@ -128539,35 +119081,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, - [61388] = 5, + [54448] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5611), 1, - sym__special_character, - STATE(1424), 1, - aux_sym__literal_repeat1, - ACTIONS(4309), 5, + ACTIONS(1314), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 38, + ACTIONS(1312), 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, @@ -128579,7 +119118,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,16 +119133,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [61445] = 3, + [54501] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 5, - sym_file_descriptor, + ACTIONS(4818), 1, + aux_sym_concatenation_token1, + ACTIONS(4857), 1, sym__concat, + STATE(1265), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 40, + ACTIONS(1207), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -128611,10 +119158,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, @@ -128624,10 +119169,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, @@ -128641,35 +119184,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, - [61498] = 6, + [54560] = 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(1231), 6, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 36, + ACTIONS(1229), 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, @@ -128695,88 +119236,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [61557] = 21, + [54613] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5621), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5623), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5625), 1, - anon_sym_DOLLAR, - ACTIONS(5627), 1, - sym__special_character, - ACTIONS(5629), 1, - anon_sym_DQUOTE, - ACTIONS(5631), 1, - aux_sym_number_token1, - ACTIONS(5633), 1, - aux_sym_number_token2, - ACTIONS(5635), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5637), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5639), 1, - anon_sym_BQUOTE, - ACTIONS(5641), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5645), 1, - sym_test_operator, - ACTIONS(5647), 1, - sym__brace_start, - STATE(3369), 1, - aux_sym__literal_repeat1, - ACTIONS(2162), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(5643), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1305), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(5619), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(3082), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2160), 13, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - [61646] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5551), 1, - sym__special_character, - STATE(1423), 1, - aux_sym__literal_repeat1, - ACTIONS(4282), 5, + ACTIONS(4843), 1, + aux_sym_concatenation_token1, + ACTIONS(4859), 1, + sym__concat, + STATE(1267), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 38, + ACTIONS(1213), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -128799,10 +119273,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, @@ -128815,17 +119289,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [61703] = 3, + [54672] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 6, - sym_file_descriptor, + ACTIONS(4818), 1, + aux_sym_concatenation_token1, + ACTIONS(4861), 1, sym__concat, + STATE(1265), 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(1260), 39, + ACTIONS(1213), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -128835,9 +119314,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, @@ -128849,7 +119327,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, @@ -128865,21 +119342,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [61756] = 6, + [54731] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5496), 1, - aux_sym_concatenation_token1, - ACTIONS(5649), 1, - sym__concat, - STATE(1462), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 4, + ACTIONS(4863), 1, + sym__special_character, + STATE(1264), 1, + aux_sym__literal_repeat1, + ACTIONS(1318), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 38, + ACTIONS(1316), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -128889,6 +119365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -128901,11 +119378,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, @@ -128917,18 +119392,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, - [61815] = 3, + [54788] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, - sym_file_descriptor, + ACTIONS(4866), 1, + aux_sym_concatenation_token1, + ACTIONS(4869), 1, sym__concat, + STATE(1265), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1221), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 39, + ACTIONS(1219), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -128938,9 +119419,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, @@ -128950,10 +119430,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -128967,35 +119445,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, - [61868] = 5, + [54847] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5559), 1, - sym__special_character, - STATE(1397), 1, - aux_sym__literal_repeat1, - ACTIONS(4519), 6, + ACTIONS(1286), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4517), 37, + ACTIONS(1284), 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, @@ -129007,7 +119482,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, @@ -129020,17 +119497,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [61925] = 3, + [54900] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 6, - sym_file_descriptor, + ACTIONS(4872), 1, + aux_sym_concatenation_token1, + ACTIONS(4875), 1, sym__concat, - sym_variable_name, + STATE(1267), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1221), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 39, + ACTIONS(1219), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -129040,6 +119521,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, @@ -129054,7 +119536,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, @@ -129068,36 +119549,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, - [61978] = 5, + [54959] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5651), 1, - sym__special_character, - STATE(1397), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 6, + ACTIONS(1270), 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(1316), 37, + ACTIONS(1268), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -129106,10 +119582,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, @@ -129121,17 +119598,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, - [62035] = 3, + [55012] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 5, + ACTIONS(1290), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 40, + ACTIONS(1288), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -129141,7 +119620,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, @@ -129172,17 +119650,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [62088] = 3, + [55065] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 6, + ACTIONS(1250), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 39, + ACTIONS(1248), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -129204,7 +119682,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, @@ -129221,17 +119698,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, - [62141] = 3, + [55118] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 5, - sym_file_descriptor, + ACTIONS(4818), 1, + aux_sym_concatenation_token1, + ACTIONS(4820), 1, sym__concat, + STATE(1260), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4393), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 40, + ACTIONS(4391), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -129241,10 +119725,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, @@ -129254,10 +119736,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, @@ -129271,22 +119751,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, + [55177] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, + ACTIONS(4818), 1, aux_sym_concatenation_token1, - ACTIONS(5654), 1, + ACTIONS(4820), 1, sym__concat, - STATE(1421), 1, + STATE(1263), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 4, + ACTIONS(4400), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 38, + ACTIONS(4398), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -129296,10 +119778,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, @@ -129324,22 +119804,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, - [62253] = 6, + [55236] = 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(1225), 4, + ACTIONS(1250), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 38, + ACTIONS(1248), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -129361,8 +119838,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, @@ -129376,18 +119855,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, - [62312] = 3, + [55289] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 5, + ACTIONS(1274), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 40, + ACTIONS(1272), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -129410,7 +119888,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, @@ -129427,17 +119904,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, - [62365] = 3, + [55342] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 5, + ACTIONS(1258), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 40, + ACTIONS(1256), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -129447,7 +119926,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -129478,16 +119956,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [62418] = 3, + [55395] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 5, + ACTIONS(1221), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 40, + ACTIONS(1219), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -129497,7 +119976,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, @@ -129510,7 +119988,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, @@ -129527,17 +120004,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, - [62471] = 3, + [55448] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 5, - sym_file_descriptor, + ACTIONS(4796), 1, + aux_sym_concatenation_token1, + ACTIONS(4798), 1, sym__concat, + STATE(1251), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4491), 6, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 40, + ACTIONS(4489), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -129547,10 +120032,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, @@ -129560,9 +120042,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 +120058,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, - [62524] = 3, + [55507] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 5, + ACTIONS(1294), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 40, + ACTIONS(1292), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -129610,7 +120091,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,67 +120107,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, - [62577] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4313), 5, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 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, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [62630] = 3, + [55560] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 5, + ACTIONS(1310), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 40, + ACTIONS(1308), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -129697,7 +120129,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, @@ -129728,17 +120159,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [62683] = 5, + [55613] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5656), 1, + ACTIONS(4878), 1, sym__special_character, - STATE(1410), 1, + STATE(1280), 1, aux_sym__literal_repeat1, ACTIONS(1318), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, ACTIONS(1316), 38, @@ -129747,15 +120178,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_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, @@ -129764,6 +120195,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, @@ -129778,22 +120210,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [62740] = 5, + [55670] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5551), 1, - sym__special_character, - STATE(1423), 1, - aux_sym__literal_repeat1, - ACTIONS(5266), 5, + ACTIONS(1258), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 38, + ACTIONS(1256), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -129816,10 +120243,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, @@ -129831,21 +120259,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, - [62797] = 5, + [55723] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5611), 1, - sym__special_character, - STATE(1424), 1, - aux_sym__literal_repeat1, - ACTIONS(4370), 5, + ACTIONS(1240), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4368), 38, + ACTIONS(1233), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -129856,6 +120281,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, @@ -129872,6 +120298,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 +120311,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [62854] = 3, + [55776] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 5, + ACTIONS(1221), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 40, + ACTIONS(1219), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -129934,66 +120361,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [62907] = 3, + [55829] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 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, - anon_sym_DOLLAR_LBRACK, + ACTIONS(4792), 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, - [62960] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1294), 5, - sym_file_descriptor, + ACTIONS(4794), 1, sym__concat, + STATE(1293), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4780), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 40, + ACTIONS(4778), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -130003,7 +120385,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, @@ -130018,7 +120399,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, @@ -130034,27 +120414,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [63013] = 6, + [55888] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, - aux_sym_concatenation_token1, - ACTIONS(5579), 1, - sym__concat, - STATE(1418), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1225), 5, + ACTIONS(4828), 1, + sym__special_character, + STATE(1280), 1, + aux_sym__literal_repeat1, + ACTIONS(3956), 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(3954), 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, @@ -130062,6 +120441,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, @@ -130074,7 +120454,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, @@ -130087,17 +120466,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [63072] = 3, + [55945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, + ACTIONS(1266), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 39, + ACTIONS(1264), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -130137,22 +120516,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [63125] = 6, + [55998] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, - aux_sym_concatenation_token1, - ACTIONS(5659), 1, - sym__concat, - STATE(1430), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 5, + ACTIONS(1286), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 37, + ACTIONS(1284), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -130162,8 +120536,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, @@ -130173,9 +120548,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, @@ -130189,8 +120564,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, - [63184] = 3, + [56051] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1290), 6, @@ -130240,22 +120616,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [63237] = 6, + [56104] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, + ACTIONS(4835), 1, aux_sym_concatenation_token1, - ACTIONS(5661), 1, + ACTIONS(4837), 1, sym__concat, - STATE(1430), 1, + STATE(1247), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 5, + ACTIONS(4125), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 37, + ACTIONS(4123), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -130293,75 +120669,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [63296] = 6, + [56163] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5663), 1, - aux_sym_concatenation_token1, - ACTIONS(5666), 1, - sym__concat, - STATE(1421), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 38, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_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, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [63355] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5577), 1, + ACTIONS(4835), 1, aux_sym_concatenation_token1, - ACTIONS(5579), 1, + ACTIONS(4837), 1, sym__concat, - STATE(1420), 1, + STATE(1249), 1, aux_sym_concatenation_repeat1, - ACTIONS(2162), 5, + ACTIONS(3915), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 37, + ACTIONS(3913), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -130399,20 +120722,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [63414] = 5, + [56222] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5669), 1, - sym__special_character, - STATE(1423), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 5, + ACTIONS(4796), 1, + aux_sym_concatenation_token1, + ACTIONS(4798), 1, + sym__concat, + STATE(1313), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4495), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 38, + ACTIONS(4493), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -130422,10 +120748,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, @@ -130439,6 +120762,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, @@ -130451,20 +120775,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [63471] = 5, + [56281] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5672), 1, - sym__special_character, - STATE(1424), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 5, + ACTIONS(4117), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 38, + ACTIONS(4115), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -130475,8 +120795,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, @@ -130491,6 +120812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -130503,20 +120825,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [63528] = 5, + [56334] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5675), 1, - sym__special_character, - STATE(1410), 1, - aux_sym__literal_repeat1, - ACTIONS(5266), 5, + ACTIONS(4792), 1, + aux_sym_concatenation_token1, + ACTIONS(4881), 1, + sym__concat, + STATE(1302), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 38, + ACTIONS(1207), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -130526,7 +120849,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, @@ -130542,6 +120864,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, @@ -130555,30 +120878,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [63585] = 3, + [56393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 5, + ACTIONS(4010), 5, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 40, + ACTIONS(4008), 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, @@ -130587,9 +120911,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, @@ -130603,22 +120927,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, - [63638] = 5, + [56446] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5675), 1, + ACTIONS(4833), 1, sym__special_character, - STATE(1410), 1, + STATE(1348), 1, aux_sym__literal_repeat1, - ACTIONS(5186), 5, + ACTIONS(4483), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5184), 38, + ACTIONS(4481), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -130641,6 +120964,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, @@ -130655,24 +120979,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, - [63695] = 3, + [56503] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 6, + ACTIONS(4647), 5, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 39, + ACTIONS(4645), 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, @@ -130681,6 +121004,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, @@ -130692,7 +121016,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, @@ -130707,90 +121030,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [63748] = 21, + [56556] = 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, - sym_test_operator, - ACTIONS(5647), 1, - sym__brace_start, - STATE(3369), 1, - aux_sym__literal_repeat1, - ACTIONS(2158), 2, + ACTIONS(1314), 6, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(5643), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1305), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(5619), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(3082), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2156), 13, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - [63837] = 6, - 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, - sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 37, + ACTIONS(1312), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -130800,8 +121050,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, @@ -130811,9 +121062,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,32 +121078,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, - [63896] = 3, + [56609] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1240), 6, + ACTIONS(4833), 1, + sym__special_character, + STATE(1348), 1, + aux_sym__literal_repeat1, + ACTIONS(4125), 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(1233), 39, + ACTIONS(4123), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -130865,7 +121120,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,16 +121132,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [63949] = 3, + [56666] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 5, - sym_file_descriptor, + ACTIONS(4792), 1, + aux_sym_concatenation_token1, + ACTIONS(4883), 1, sym__concat, + STATE(1302), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 40, + ACTIONS(1213), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -130897,7 +121156,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, @@ -130912,7 +121170,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, @@ -130928,16 +121185,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [64002] = 3, + [56725] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(4833), 1, + sym__special_character, + STATE(1348), 1, + aux_sym__literal_repeat1, + ACTIONS(4491), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 40, + ACTIONS(4489), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -130963,9 +121224,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, @@ -130978,16 +121237,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [64055] = 3, + [56782] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 5, + ACTIONS(4833), 1, + sym__special_character, + STATE(1348), 1, + aux_sym__literal_repeat1, + ACTIONS(4006), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 40, + ACTIONS(4004), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -131013,9 +121276,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, @@ -131028,16 +121289,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [64108] = 3, + [56839] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, - sym_file_descriptor, + ACTIONS(4885), 1, + aux_sym_concatenation_token1, + ACTIONS(4888), 1, sym__concat, + STATE(1302), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1221), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 40, + ACTIONS(1219), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -131047,7 +121313,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, @@ -131060,10 +121325,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, @@ -131077,76 +121340,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, - [64161] = 5, + [56898] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5611), 1, - sym__special_character, - STATE(1424), 1, - aux_sym__literal_repeat1, - ACTIONS(4519), 5, + ACTIONS(1262), 5, sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4517), 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, - [64218] = 6, - 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, - sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5184), 36, + ACTIONS(1260), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -131156,7 +121361,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, @@ -131168,6 +121376,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, @@ -131183,31 +121392,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [64277] = 3, + [56951] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 5, + ACTIONS(1298), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 40, + ACTIONS(1296), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_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, @@ -131216,9 +121424,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, @@ -131232,18 +121440,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, - [64330] = 3, + [57004] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 6, + ACTIONS(1270), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 39, + ACTIONS(1268), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -131283,17 +121492,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [64383] = 3, + [57057] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 6, - sym_file_descriptor, + ACTIONS(4843), 1, + aux_sym_concatenation_token1, + ACTIONS(4891), 1, sym__concat, - sym_variable_name, + STATE(1250), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4483), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 39, + ACTIONS(4481), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -131303,6 +121516,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, @@ -131315,10 +121529,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, @@ -131333,17 +121545,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [64436] = 3, + [57116] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 6, - sym_file_descriptor, + ACTIONS(4843), 1, + aux_sym_concatenation_token1, + ACTIONS(4891), 1, sym__concat, - sym_variable_name, + STATE(1262), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4487), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 39, + ACTIONS(4485), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -131353,6 +121569,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, @@ -131365,10 +121582,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, @@ -131383,16 +121598,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [64489] = 3, + [57175] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 5, - sym_file_descriptor, + ACTIONS(4843), 1, + aux_sym_concatenation_token1, + ACTIONS(4891), 1, sym__concat, + STATE(1250), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4491), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 40, + ACTIONS(4489), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -131417,7 +121637,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, @@ -131431,24 +121650,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, - [64542] = 6, + [57234] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5581), 1, + ACTIONS(4843), 1, aux_sym_concatenation_token1, - ACTIONS(5583), 1, + ACTIONS(4891), 1, sym__concat, - STATE(1444), 1, + STATE(1262), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 5, + ACTIONS(4495), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 37, + ACTIONS(4493), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -131458,8 +121675,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, @@ -131484,24 +121703,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, - [64601] = 6, + [57293] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5581), 1, - aux_sym_concatenation_token1, - ACTIONS(5683), 1, - sym__concat, - STATE(1461), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 5, + ACTIONS(4849), 1, + sym__special_character, + STATE(1264), 1, + aux_sym__literal_repeat1, + ACTIONS(4393), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 37, + ACTIONS(4391), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -131511,8 +121727,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, @@ -131525,7 +121743,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, @@ -131539,23 +121756,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [64660] = 6, + [57350] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5585), 1, - aux_sym_concatenation_token1, - ACTIONS(5587), 1, - sym__concat, - STATE(1375), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5190), 6, + ACTIONS(1310), 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(5188), 36, + ACTIONS(1308), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -131566,6 +121777,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, @@ -131577,6 +121790,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, @@ -131592,34 +121806,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [64719] = 6, + [57403] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5585), 1, - aux_sym_concatenation_token1, - ACTIONS(5587), 1, - sym__concat, - STATE(1372), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5266), 6, + ACTIONS(3915), 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(5264), 36, + ACTIONS(3913), 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, @@ -131628,6 +121839,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, @@ -131643,25 +121855,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, - [64778] = 6, + [57456] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5585), 1, + ACTIONS(4796), 1, aux_sym_concatenation_token1, - ACTIONS(5587), 1, + ACTIONS(4893), 1, sym__concat, - STATE(1375), 1, + STATE(1336), 1, aux_sym_concatenation_repeat1, - ACTIONS(5270), 6, + ACTIONS(1215), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 36, + ACTIONS(1213), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -131681,6 +121892,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, @@ -131696,22 +121908,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, - [64837] = 5, + [57515] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5551), 1, - sym__special_character, - STATE(1423), 1, - aux_sym__literal_repeat1, - ACTIONS(4309), 5, + ACTIONS(1274), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 38, + ACTIONS(1272), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -131721,7 +121929,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, @@ -131737,7 +121944,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, @@ -131750,30 +121959,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [64894] = 3, + [57568] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 6, + ACTIONS(1231), 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), 39, + ACTIONS(1229), 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_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -131785,7 +121995,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, @@ -131800,22 +122009,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [64947] = 6, + [57621] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, + ACTIONS(4796), 1, aux_sym_concatenation_token1, - ACTIONS(5579), 1, + ACTIONS(4798), 1, sym__concat, - STATE(1418), 1, + STATE(1313), 1, aux_sym_concatenation_repeat1, - ACTIONS(4309), 5, + ACTIONS(4487), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 37, + ACTIONS(4485), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -131825,7 +122035,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, @@ -131853,16 +122062,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [65006] = 3, + [57680] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 5, + ACTIONS(1254), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 40, + ACTIONS(1252), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -131872,7 +122082,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, @@ -131903,67 +122112,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [65059] = 3, + [57733] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_test_operator, - 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_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + ACTIONS(4843), 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, - [65112] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1250), 6, - sym_file_descriptor, + ACTIONS(4891), 1, sym__concat, - sym_variable_name, + STATE(1250), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4897), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 39, + ACTIONS(4895), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -131973,6 +122136,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, @@ -131985,10 +122149,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, @@ -132003,70 +122165,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [65165] = 6, + [57792] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5581), 1, + ACTIONS(4843), 1, aux_sym_concatenation_token1, - ACTIONS(5685), 1, + ACTIONS(4891), 1, sym__concat, - STATE(1461), 1, + STATE(1262), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 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, - [65224] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1298), 6, + ACTIONS(4901), 4, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 39, + ACTIONS(4899), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -132076,6 +122189,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, @@ -132088,10 +122202,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, @@ -132106,27 +122218,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [65277] = 6, + [57851] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, - aux_sym_concatenation_token1, - ACTIONS(5579), 1, - sym__concat, - STATE(1420), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4313), 5, + ACTIONS(4828), 1, + sym__special_character, + STATE(1280), 1, + aux_sym__literal_repeat1, + ACTIONS(4047), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 37, + ACTIONS(4045), 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, @@ -132134,6 +122245,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, @@ -132146,7 +122258,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, @@ -132159,20 +122270,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [65336] = 5, + [57908] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5551), 1, - sym__special_character, - STATE(1423), 1, - aux_sym__literal_repeat1, - ACTIONS(5689), 5, + ACTIONS(1286), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 38, + ACTIONS(1284), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -132195,10 +122302,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, @@ -132210,17 +122318,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, - [65393] = 3, + [57961] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 5, + ACTIONS(1290), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 40, + ACTIONS(1288), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -132261,30 +122370,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [65446] = 3, + [58014] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 5, + ACTIONS(4121), 5, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 40, + ACTIONS(4119), 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, @@ -132296,7 +122406,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, @@ -132311,30 +122420,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [65499] = 3, + [58067] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 5, + ACTIONS(1231), 5, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 40, + ACTIONS(1229), 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, @@ -132343,9 +122453,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -132359,24 +122469,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, - [65552] = 6, + [58120] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5691), 1, + ACTIONS(4843), 1, aux_sym_concatenation_token1, - ACTIONS(5694), 1, + ACTIONS(4891), 1, sym__concat, - STATE(1461), 1, + STATE(1250), 1, aux_sym_concatenation_repeat1, - ACTIONS(1215), 5, + ACTIONS(1231), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 37, + ACTIONS(1229), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -132386,8 +122494,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, @@ -132412,23 +122522,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, - [65611] = 6, + [58179] = 3, 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, + ACTIONS(1278), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 38, + ACTIONS(1276), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -132453,6 +122558,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, @@ -132467,26 +122573,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [65670] = 5, + [58232] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5611), 1, - sym__special_character, - STATE(1424), 1, - aux_sym__literal_repeat1, - ACTIONS(4282), 5, + ACTIONS(4835), 1, + aux_sym_concatenation_token1, + ACTIONS(4837), 1, + sym__concat, + STATE(1247), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4491), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 38, + ACTIONS(4489), 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, @@ -132494,7 +122601,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, @@ -132507,6 +122613,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, @@ -132519,19 +122626,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [65727] = 5, + [58291] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5703), 1, - sym__special_character, - STATE(1474), 1, - aux_sym__literal_repeat1, - ACTIONS(5389), 4, + ACTIONS(4835), 1, + aux_sym_concatenation_token1, + ACTIONS(4837), 1, + sym__concat, + STATE(1249), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4495), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5387), 38, + ACTIONS(4493), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -132541,10 +122651,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, @@ -132554,9 +122662,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, @@ -132568,18 +122678,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, - [65783] = 3, + [58350] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 5, + ACTIONS(4835), 1, + aux_sym_concatenation_token1, + ACTIONS(4837), 1, + sym__concat, + STATE(1247), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4006), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 39, + ACTIONS(4004), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -132589,10 +122704,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, @@ -132602,6 +122715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -132617,18 +122731,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, - [65835] = 3, + [58409] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 5, - sym_file_descriptor, + ACTIONS(4835), 1, + aux_sym_concatenation_token1, + ACTIONS(4837), 1, sym__concat, + STATE(1249), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4010), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 39, + ACTIONS(4008), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -132638,10 +122757,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, @@ -132651,9 +122768,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, @@ -132668,16 +122785,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [65887] = 3, + [58468] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 5, - sym_file_descriptor, + ACTIONS(4835), 1, + aux_sym_concatenation_token1, + ACTIONS(4837), 1, sym__concat, + STATE(1247), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4449), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 39, + ACTIONS(4447), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -132687,10 +122810,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -132700,9 +122821,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -132717,16 +122838,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [65939] = 3, + [58527] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5707), 5, + ACTIONS(4835), 1, + aux_sym_concatenation_token1, + ACTIONS(4837), 1, + sym__concat, + STATE(1249), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4453), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5705), 39, + ACTIONS(4451), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -132736,10 +122863,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, @@ -132749,6 +122874,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, @@ -132764,93 +122890,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, - [65991] = 8, + [58586] = 5, 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, + ACTIONS(4903), 1, sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [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, + STATE(1230), 1, + aux_sym__literal_repeat1, + ACTIONS(4047), 6, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, 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, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(4045), 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, @@ -132858,11 +122926,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_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, @@ -132874,33 +122943,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [66115] = 5, + [58643] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5715), 1, + ACTIONS(4903), 1, sym__special_character, - STATE(1514), 1, + STATE(1230), 1, aux_sym__literal_repeat1, - ACTIONS(5266), 5, + ACTIONS(4125), 6, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 37, + ACTIONS(4123), 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, @@ -132909,6 +122979,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, @@ -132923,20 +122994,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, - [66171] = 3, + [58700] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 7, + ACTIONS(1314), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 37, + ACTIONS(1312), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -132946,7 +123014,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, @@ -132956,7 +123027,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -132973,17 +123043,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, - [66223] = 3, + [58753] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 5, - sym_file_descriptor, + ACTIONS(4905), 1, + aux_sym_concatenation_token1, + ACTIONS(4908), 1, sym__concat, + STATE(1336), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1221), 6, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 39, + ACTIONS(1219), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -132993,10 +123071,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, @@ -133006,9 +123081,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, @@ -133023,19 +123098,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [66275] = 5, + [58812] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5717), 1, - sym__special_character, - STATE(1474), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 4, + ACTIONS(1302), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 38, + ACTIONS(1300), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -133060,7 +123132,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 +123148,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [66331] = 3, + [58865] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 5, + ACTIONS(1266), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 39, + ACTIONS(1264), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -133093,7 +123168,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 +123180,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 +123198,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [66383] = 3, + [58918] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 5, + ACTIONS(1294), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 39, + ACTIONS(1292), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -133142,7 +123218,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, @@ -133155,6 +123230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -133172,17 +123248,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [66435] = 3, + [58971] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, + ACTIONS(1270), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 38, + ACTIONS(1268), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -133192,8 +123268,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, @@ -133221,18 +123298,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [66487] = 3, + [59024] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 7, + ACTIONS(1262), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 37, + ACTIONS(1260), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -133243,6 +123319,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, @@ -133270,16 +123348,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [66539] = 3, + [59077] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2158), 5, + ACTIONS(1298), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 39, + ACTIONS(1296), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -133289,7 +123368,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, @@ -133305,6 +123383,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, @@ -133319,33 +123398,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [66591] = 5, + [59130] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5720), 1, + ACTIONS(4903), 1, sym__special_character, - STATE(1504), 1, + STATE(1230), 1, aux_sym__literal_repeat1, - ACTIONS(5266), 5, + ACTIONS(3956), 6, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 37, + ACTIONS(3954), 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, @@ -133370,16 +123450,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [66647] = 3, + [59187] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 5, + ACTIONS(1306), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 39, + ACTIONS(1304), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -133418,80 +123498,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, - [66699] = 3, + [59240] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 39, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_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(4796), 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, - [66751] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4305), 5, + ACTIONS(4798), 1, + sym__concat, + STATE(1251), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4006), 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(4303), 39, + ACTIONS(4004), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -133517,19 +123553,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [66803] = 5, + [59299] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5722), 1, - sym__special_character, - STATE(1484), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 4, + ACTIONS(1274), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 38, + ACTIONS(1272), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -133539,7 +123573,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, @@ -133552,10 +123585,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, @@ -133567,18 +123601,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, - [66859] = 3, + [59352] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, - sym_file_descriptor, + ACTIONS(4792), 1, + aux_sym_concatenation_token1, + ACTIONS(4794), 1, sym__concat, - sym_variable_name, + STATE(1293), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1231), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 38, + ACTIONS(1229), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -133588,8 +123627,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, @@ -133601,7 +123641,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, @@ -133617,17 +123656,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [66911] = 3, + [59411] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, + ACTIONS(4911), 1, + sym__special_character, + STATE(1348), 1, + aux_sym__literal_repeat1, + ACTIONS(1318), 5, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 38, + ACTIONS(1316), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -133637,8 +123679,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -133648,11 +123692,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, @@ -133664,31 +123707,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, - [66963] = 3, + [59468] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(4903), 1, + sym__special_character, + STATE(1230), 1, + aux_sym__literal_repeat1, + ACTIONS(4006), 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(1300), 38, + ACTIONS(4004), 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, @@ -133697,11 +123744,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, @@ -133713,23 +123759,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, - [67015] = 6, + [59525] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5725), 1, + ACTIONS(4796), 1, aux_sym_concatenation_token1, - ACTIONS(5728), 1, + ACTIONS(4798), 1, sym__concat, - STATE(1488), 1, + STATE(1313), 1, aux_sym_concatenation_repeat1, - ACTIONS(1215), 4, + ACTIONS(4010), 6, 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(4008), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -133739,7 +123786,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, @@ -133750,6 +123796,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,18 +123812,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, - [67073] = 3, + [59584] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 5, + ACTIONS(1282), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 39, + ACTIONS(1280), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -133786,7 +123833,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, @@ -133799,6 +123845,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, @@ -133816,17 +123863,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [67125] = 3, + [59637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 6, + ACTIONS(1254), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 38, + ACTIONS(1252), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -133836,8 +123883,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, @@ -133865,33 +123913,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [67177] = 5, + [59690] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5731), 1, - sym__special_character, - STATE(1484), 1, - aux_sym__literal_repeat1, - ACTIONS(5132), 4, + ACTIONS(4160), 1, + aux_sym_concatenation_token1, + ACTIONS(4162), 1, + sym__concat, + ACTIONS(4914), 1, + anon_sym_LPAREN, + STATE(1525), 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(5130), 38, - anon_sym_SEMI, + ACTIONS(1233), 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_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, @@ -133904,6 +123953,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, @@ -133916,17 +123966,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [67233] = 3, + [59750] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 6, + ACTIONS(1262), 7, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 38, + ACTIONS(1260), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -133936,7 +123987,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, @@ -133947,6 +123997,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, @@ -133963,18 +124014,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, - [67285] = 3, + [59802] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 5, + ACTIONS(1314), 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), 39, + ACTIONS(1312), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -133984,10 +124036,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, @@ -134013,18 +124062,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, - [67337] = 3, + [59854] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 6, + ACTIONS(1298), 7, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 38, + ACTIONS(1296), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -134034,7 +124085,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, @@ -134063,17 +124113,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [67389] = 3, + [59906] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 6, + ACTIONS(1278), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 38, + ACTIONS(1276), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -134083,8 +124132,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, @@ -134094,7 +124144,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, @@ -134111,69 +124160,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [67441] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5733), 1, - aux_sym_concatenation_token1, - ACTIONS(5735), 1, - sym__concat, - STATE(1488), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 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, - [67499] = 3, + [59958] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 5, + ACTIONS(1266), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 39, + ACTIONS(1264), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -134183,6 +124181,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, @@ -134211,18 +124210,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, - [67551] = 3, + [60010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 5, + ACTIONS(1250), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 39, + ACTIONS(1248), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -134262,10 +124260,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [67603] = 3, + [60062] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 7, + ACTIONS(1258), 7, sym_file_descriptor, sym__concat, sym_variable_name, @@ -134273,7 +124271,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(1256), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -134293,7 +124291,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, @@ -134310,18 +124307,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, - [67655] = 3, + [60114] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 6, + ACTIONS(1221), 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(1219), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -134331,7 +124330,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, @@ -134342,7 +124340,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 +124356,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, - [67707] = 5, + [60166] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5720), 1, - sym__special_character, - STATE(1504), 1, - aux_sym__literal_repeat1, - ACTIONS(5132), 5, + ACTIONS(1270), 7, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 37, + ACTIONS(1268), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -134384,8 +124380,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, @@ -134395,10 +124389,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, @@ -134410,21 +124405,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, - [67763] = 5, + [60218] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5720), 1, - sym__special_character, - STATE(1504), 1, - aux_sym__literal_repeat1, - ACTIONS(4282), 5, + ACTIONS(1310), 7, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 37, + ACTIONS(1308), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -134435,8 +124429,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, @@ -134446,10 +124438,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, @@ -134461,17 +124454,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, - [67819] = 3, + [60270] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 5, - sym_file_descriptor, + ACTIONS(4917), 1, + aux_sym_concatenation_token1, + ACTIONS(4919), 1, sym__concat, + STATE(1558), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4487), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 39, + ACTIONS(4485), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -134495,7 +124494,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, @@ -134509,22 +124507,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, - [67871] = 5, + [60328] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5737), 1, - sym__special_character, - STATE(1504), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 5, + ACTIONS(1274), 7, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 37, + ACTIONS(1272), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -134535,8 +124530,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, @@ -134546,10 +124539,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,11 +124555,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [67927] = 3, + [60380] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 7, + ACTIONS(1254), 7, sym_file_descriptor, sym__concat, sym_variable_name, @@ -134573,7 +124568,7 @@ static const uint16_t ts_small_parse_table[] = { sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 37, + ACTIONS(1252), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -134593,7 +124588,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 +124604,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, - [67979] = 3, + [60432] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 5, - sym_file_descriptor, + ACTIONS(4921), 1, + aux_sym_concatenation_token1, + ACTIONS(4923), 1, sym__concat, + STATE(1370), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1231), 5, + sym_file_descriptor, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 39, + ACTIONS(1229), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -134631,8 +124632,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, @@ -134644,7 +124643,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, @@ -134660,17 +124658,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [68031] = 3, + [60490] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 6, + ACTIONS(1278), 7, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 38, + ACTIONS(1276), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -134680,7 +124679,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, @@ -134691,7 +124689,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, @@ -134708,21 +124705,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, - [68083] = 5, + [60542] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5720), 1, - sym__special_character, - STATE(1504), 1, - aux_sym__literal_repeat1, - ACTIONS(4309), 5, + ACTIONS(1302), 7, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 37, + ACTIONS(1300), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -134733,8 +124729,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, @@ -134747,7 +124741,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 +124756,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [68139] = 3, + [60594] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 5, - sym_file_descriptor, + ACTIONS(4921), 1, + aux_sym_concatenation_token1, + ACTIONS(4925), 1, sym__concat, + STATE(1381), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 5, + sym_file_descriptor, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 39, + ACTIONS(1207), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -134780,8 +124782,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, @@ -134793,7 +124793,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,34 +124808,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [68191] = 6, + [60652] = 28, + ACTIONS(71), 1, + sym_comment, + ACTIONS(577), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(579), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(583), 1, + anon_sym_DOLLAR, + ACTIONS(587), 1, + anon_sym_DQUOTE, + ACTIONS(591), 1, + aux_sym_number_token1, + ACTIONS(593), 1, + aux_sym_number_token2, + ACTIONS(595), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(601), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(607), 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(4667), 1, + anon_sym_BQUOTE, + ACTIONS(4927), 1, + sym__special_character, + ACTIONS(4929), 1, + sym_extglob_pattern, + STATE(2299), 1, + aux_sym__literal_repeat1, + STATE(2590), 1, + sym__expression, + STATE(2591), 1, + sym__extglob_blob, + ACTIONS(603), 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(2556), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2196), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [60754] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5740), 1, - aux_sym_concatenation_token1, - ACTIONS(5742), 1, - sym__concat, - STATE(1515), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 4, + ACTIONS(3915), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 37, + ACTIONS(3913), 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, @@ -134845,6 +124914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -134861,16 +124931,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [68249] = 3, + [60806] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 5, + ACTIONS(1286), 7, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 39, + ACTIONS(1284), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -134880,10 +124952,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, @@ -134909,17 +124978,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [68301] = 3, + [60858] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 5, + ACTIONS(1290), 7, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1288), 37, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, + [60910] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1266), 7, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 39, + ACTIONS(1264), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -134929,10 +125050,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, @@ -134958,22 +125076,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, - [68353] = 6, + [60962] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5740), 1, + ACTIONS(4921), 1, aux_sym_concatenation_token1, - ACTIONS(5744), 1, + ACTIONS(4931), 1, sym__concat, - STATE(1515), 1, + STATE(1381), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 4, + ACTIONS(1215), 5, sym_file_descriptor, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 37, + ACTIONS(1213), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -134984,8 +125104,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, @@ -135010,21 +125128,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, - [68411] = 5, + [61020] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5746), 1, - sym__special_character, - STATE(1514), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 5, + ACTIONS(1250), 7, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 37, + ACTIONS(1248), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -135035,8 +125152,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, @@ -135048,7 +125163,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, @@ -135062,21 +125179,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [68467] = 6, + [61072] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5749), 1, - aux_sym_concatenation_token1, - ACTIONS(5752), 1, - sym__concat, - STATE(1515), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 4, + ACTIONS(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(1213), 37, + ACTIONS(1292), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -135087,8 +125201,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, @@ -135100,6 +125212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -135113,17 +125226,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, - [68525] = 3, + [61124] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 5, + ACTIONS(4935), 2, sym_file_descriptor, - sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(3944), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 39, + ACTIONS(3935), 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(4933), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -135133,6 +125266,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, @@ -135145,47 +125279,30 @@ static 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, - [68577] = 3, + [61180] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 5, + ACTIONS(4010), 5, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 39, + ACTIONS(4008), 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, @@ -135194,9 +125311,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -135210,19 +125327,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, - [68629] = 3, + [61232] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 6, - sym_file_descriptor, + ACTIONS(4937), 1, + aux_sym_concatenation_token1, + ACTIONS(4940), 1, sym__concat, - sym_variable_name, + STATE(1381), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1221), 5, + sym_file_descriptor, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 38, + ACTIONS(1219), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -135232,7 +125353,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, @@ -135245,7 +125365,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, @@ -135261,91 +125380,18 @@ static const uint16_t ts_small_parse_table[] = { 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, + [61290] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 6, + ACTIONS(1262), 7, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 38, + ACTIONS(1260), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -135355,7 +125401,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, @@ -135384,10 +125429,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [68835] = 3, + [61342] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 7, + ACTIONS(1298), 7, sym_file_descriptor, sym__concat, sym_variable_name, @@ -135395,7 +125440,7 @@ static const uint16_t ts_small_parse_table[] = { sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 37, + ACTIONS(1296), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -135415,7 +125460,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 +125476,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, - [68887] = 6, + [61394] = 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(1302), 7, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 37, + ACTIONS(1300), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -135458,8 +125500,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, @@ -135471,6 +125511,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, @@ -135484,22 +125525,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, - [68945] = 6, + [61446] = 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(1225), 4, + ACTIONS(1306), 7, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 37, + ACTIONS(1304), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -135510,8 +125549,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, @@ -135523,6 +125560,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, @@ -135536,22 +125574,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, - [69003] = 6, + [61498] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5740), 1, - aux_sym_concatenation_token1, - ACTIONS(5759), 1, - sym__concat, - STATE(1513), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5136), 4, + ACTIONS(1302), 7, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5134), 37, + ACTIONS(1300), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -135562,8 +125598,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, @@ -135575,6 +125609,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, @@ -135588,17 +125623,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, - [69061] = 3, + [61550] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 5, + ACTIONS(1254), 7, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 39, + ACTIONS(1252), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -135609,8 +125647,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, @@ -135638,16 +125674,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [69113] = 3, + [61602] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 5, + ACTIONS(1282), 7, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 39, + ACTIONS(1280), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -135658,8 +125696,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, @@ -135669,7 +125705,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, @@ -135686,19 +125721,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [69165] = 3, + [61654] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 7, + ACTIONS(1294), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 37, + ACTIONS(1292), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -135708,7 +125742,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, @@ -135718,7 +125755,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, @@ -135736,16 +125772,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [69217] = 3, + [61706] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 5, + ACTIONS(1262), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 39, + ACTIONS(1260), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -135755,6 +125791,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, @@ -135767,7 +125804,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, @@ -135785,18 +125821,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [69269] = 3, + [61758] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 7, + ACTIONS(1298), 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(1296), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -135806,7 +125840,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, @@ -135816,7 +125853,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, @@ -135834,16 +125870,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [69321] = 3, + [61810] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 5, - sym_file_descriptor, + ACTIONS(4943), 1, + aux_sym_concatenation_token1, + ACTIONS(4946), 1, sym__concat, + STATE(1392), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1221), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 39, + ACTIONS(1219), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -135865,10 +125906,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, @@ -135883,29 +125922,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [69373] = 3, + [61868] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 5, + ACTIONS(1231), 6, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 39, + ACTIONS(1229), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -135917,7 +125957,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 +125971,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [69425] = 3, + [61920] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 5, + ACTIONS(4949), 1, + sym__special_character, + STATE(1559), 1, + aux_sym__literal_repeat1, + ACTIONS(4393), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 39, + ACTIONS(4391), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -135951,7 +125994,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, @@ -135966,9 +126008,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, @@ -135980,17 +126020,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, - [69477] = 3, + [61976] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 5, + ACTIONS(1231), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 39, + ACTIONS(1229), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -136013,9 +126054,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, @@ -136030,16 +126071,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [69529] = 3, + [62028] = 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(1099), 1, + anon_sym_LPAREN, + ACTIONS(1101), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1103), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1109), 1, + anon_sym_DQUOTE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1115), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1135), 1, + sym_word, + ACTIONS(1137), 1, + anon_sym_BANG, + ACTIONS(1143), 1, + anon_sym_TILDE, + ACTIONS(1145), 1, + sym__special_character, + ACTIONS(1149), 1, + sym_test_operator, + ACTIONS(4951), 1, + anon_sym_BQUOTE, + ACTIONS(4953), 1, + sym_extglob_pattern, + STATE(2197), 1, + aux_sym__literal_repeat1, + STATE(2425), 1, + sym__extglob_blob, + STATE(2674), 1, + sym__expression, + ACTIONS(1117), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1139), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1141), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1147), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2394), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2298), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [62130] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 5, - sym_file_descriptor, + ACTIONS(4917), 1, + aux_sym_concatenation_token1, + ACTIONS(4919), 1, sym__concat, + STATE(1552), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1231), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 39, + ACTIONS(1229), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -136061,10 +126181,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, @@ -136079,16 +126197,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [69581] = 3, + [62188] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 5, - sym_file_descriptor, + ACTIONS(4955), 1, + aux_sym_concatenation_token1, + ACTIONS(4957), 1, sym__concat, + STATE(1440), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4780), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 39, + ACTIONS(4778), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -136098,10 +126221,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, @@ -136113,7 +126234,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, @@ -136127,17 +126247,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, - [69633] = 3, + [62246] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 5, + ACTIONS(1282), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 39, + ACTIONS(1280), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -136177,16 +126298,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [69685] = 3, + [62298] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 5, - sym_file_descriptor, + ACTIONS(4955), 1, + aux_sym_concatenation_token1, + ACTIONS(4957), 1, sym__concat, + STATE(1441), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4784), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 39, + ACTIONS(4782), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -136196,9 +126322,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, @@ -136208,10 +126333,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, @@ -136225,17 +126348,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, - [69737] = 3, + [62356] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 5, + ACTIONS(4453), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 39, + ACTIONS(4451), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -136258,9 +126382,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, @@ -136275,16 +126399,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [69789] = 3, + [62408] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 5, + ACTIONS(1286), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 39, + ACTIONS(1284), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -136294,6 +126418,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, @@ -136322,18 +126447,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, - [69841] = 3, + [62460] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 5, + ACTIONS(1290), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 39, + ACTIONS(1288), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -136343,6 +126467,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, @@ -136371,52 +126496,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, - [69893] = 21, - ACTIONS(3), 1, + [62512] = 28, + ACTIONS(71), 1, sym_comment, - ACTIONS(5763), 1, + ACTIONS(185), 1, + anon_sym_TILDE, + ACTIONS(566), 1, + sym_word, + ACTIONS(573), 1, + anon_sym_LPAREN, + ACTIONS(575), 1, + anon_sym_BANG, + ACTIONS(577), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5765), 1, + ACTIONS(579), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5767), 1, + ACTIONS(583), 1, anon_sym_DOLLAR, - ACTIONS(5769), 1, - sym__special_character, - ACTIONS(5771), 1, + ACTIONS(587), 1, anon_sym_DQUOTE, - ACTIONS(5773), 1, + ACTIONS(591), 1, aux_sym_number_token1, - ACTIONS(5775), 1, + ACTIONS(593), 1, aux_sym_number_token2, - ACTIONS(5777), 1, + ACTIONS(595), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5779), 1, + ACTIONS(597), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5781), 1, - anon_sym_BQUOTE, - ACTIONS(5783), 1, + ACTIONS(601), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5787), 1, + ACTIONS(605), 1, sym_test_operator, - ACTIONS(5789), 1, + ACTIONS(607), 1, sym__brace_start, - STATE(5595), 1, + ACTIONS(4667), 1, + anon_sym_BQUOTE, + ACTIONS(4959), 1, + sym__special_character, + ACTIONS(4961), 1, + sym_extglob_pattern, + STATE(2414), 1, aux_sym__literal_repeat1, - STATE(5612), 1, - sym_concatenation, - ACTIONS(2273), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(5785), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5761), 3, + STATE(2848), 1, + sym__expression, + STATE(2858), 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(589), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(5489), 9, + ACTIONS(603), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2702), 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, @@ -136426,34 +126571,16 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2271), 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, - [69981] = 5, + [62614] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5720), 1, - sym__special_character, - STATE(1504), 1, - aux_sym__literal_repeat1, - ACTIONS(5689), 5, + ACTIONS(1266), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 37, + ACTIONS(1264), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -136475,10 +126602,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, @@ -136490,66 +126618,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, - [70037] = 21, + [62666] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5763), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5765), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5767), 1, - anon_sym_DOLLAR, - ACTIONS(5769), 1, - sym__special_character, - ACTIONS(5771), 1, - anon_sym_DQUOTE, - ACTIONS(5773), 1, - aux_sym_number_token1, - ACTIONS(5775), 1, - aux_sym_number_token2, - ACTIONS(5777), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5779), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5781), 1, - anon_sym_BQUOTE, - ACTIONS(5783), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5789), 1, - sym__brace_start, - ACTIONS(5793), 1, - sym_test_operator, - STATE(5558), 1, - aux_sym__literal_repeat1, - STATE(5613), 1, - sym_concatenation, - ACTIONS(2277), 2, + ACTIONS(1294), 5, sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5785), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5791), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(5498), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2275), 13, + ACTIONS(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, @@ -136557,17 +126650,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_LT, - [70125] = 3, + 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, + [62718] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(1262), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 39, + ACTIONS(1260), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -136577,7 +126688,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, @@ -136606,17 +126716,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, - [70177] = 3, + [62770] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 5, + ACTIONS(1278), 7, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 39, + ACTIONS(1276), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -136626,10 +126739,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, @@ -136639,6 +126749,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, @@ -136656,16 +126767,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [70229] = 3, + [62822] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(1298), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 39, + ACTIONS(1296), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -136675,7 +126786,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, @@ -136704,17 +126814,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, - [70281] = 3, + [62874] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4439), 5, + ACTIONS(1314), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 39, + ACTIONS(1312), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -136724,10 +126836,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, @@ -136740,6 +126850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -136754,21 +126865,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [70333] = 6, + [62926] = 3, 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(1270), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 37, + ACTIONS(1268), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -136778,8 +126884,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, @@ -136791,6 +126898,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, @@ -136806,16 +126914,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [70391] = 3, + [62978] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 5, + ACTIONS(1314), 7, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 39, + ACTIONS(1312), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -136826,8 +126936,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, @@ -136837,6 +126945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -136853,18 +126962,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [70443] = 3, + [63030] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 5, + ACTIONS(4453), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 39, + ACTIONS(4451), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -136874,6 +126982,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, @@ -136888,7 +126997,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, @@ -136904,17 +127012,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [70495] = 3, + [63082] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, - sym_file_descriptor, + ACTIONS(4917), 1, + aux_sym_concatenation_token1, + ACTIONS(4919), 1, sym__concat, - sym_variable_name, + STATE(1552), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4491), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 38, + ACTIONS(4489), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -136924,8 +127036,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, @@ -136935,10 +127048,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, @@ -136953,17 +127064,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [70547] = 3, + [63140] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 6, + ACTIONS(1314), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 38, + ACTIONS(1312), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -136973,8 +127083,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, @@ -136984,7 +127096,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, @@ -137002,16 +127113,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [70599] = 3, + [63192] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 5, + ACTIONS(1258), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 39, + ACTIONS(1256), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -137021,9 +127133,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -137051,16 +127162,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [70651] = 3, + [63244] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 5, + ACTIONS(1221), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 39, + ACTIONS(1219), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -137070,9 +127182,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, @@ -137100,17 +127211,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [70703] = 3, + [63296] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 6, + ACTIONS(4963), 1, + sym__special_character, + STATE(1526), 1, + aux_sym__literal_repeat1, + ACTIONS(4125), 5, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 38, + ACTIONS(4123), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -137120,8 +127234,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, @@ -137131,11 +127246,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, @@ -137147,20 +127261,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, - [70755] = 3, + [63352] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 7, + ACTIONS(1310), 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(1308), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -137170,6 +127282,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, @@ -137198,16 +127311,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [70807] = 3, + [63404] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 5, + ACTIONS(4967), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 39, + ACTIONS(4965), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -137217,6 +127330,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, @@ -137232,7 +127346,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, @@ -137247,16 +127360,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [70859] = 3, + [63456] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 5, + ACTIONS(4971), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 39, + ACTIONS(4969), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -137266,6 +127379,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, @@ -137281,7 +127395,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 +127409,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [70911] = 3, + [63508] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 5, + ACTIONS(1254), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 39, + ACTIONS(1252), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -137315,9 +127429,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -137327,6 +127440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -137343,18 +127457,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, - [70963] = 3, + [63560] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 5, + ACTIONS(4973), 1, + sym__special_character, + STATE(1423), 1, + aux_sym__literal_repeat1, + ACTIONS(1318), 4, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 39, + ACTIONS(1316), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -137364,6 +127480,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, @@ -137378,9 +127495,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, @@ -137394,29 +127509,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [71015] = 3, + [63616] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 5, + ACTIONS(4117), 5, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 39, + ACTIONS(4115), 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, @@ -137425,9 +127541,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, @@ -137441,31 +127557,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, - [71067] = 3, + [63668] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 5, + ACTIONS(4647), 5, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 39, + ACTIONS(4645), 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, @@ -137474,9 +127590,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, @@ -137490,19 +127606,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [71119] = 3, + [63720] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 6, + ACTIONS(1314), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 38, + ACTIONS(1312), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -137541,92 +127656,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [71171] = 28, - ACTIONS(71), 1, + [63772] = 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(1310), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1308), 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, - 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, - ACTIONS(5799), 1, - sym_extglob_pattern, - STATE(2549), 1, - aux_sym__literal_repeat1, - STATE(2842), 1, - sym__extglob_blob, - STATE(3011), 1, - sym__expression, - ACTIONS(181), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(183), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(379), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(393), 2, + anon_sym_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, + [63824] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 7, + ACTIONS(1258), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 37, + ACTIONS(1256), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -137636,6 +127725,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, @@ -137646,7 +127736,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, @@ -137663,17 +127752,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, - [71325] = 3, + [63876] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 5, + ACTIONS(1221), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 39, + ACTIONS(1219), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -137683,9 +127774,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, @@ -137713,117 +127803,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [71377] = 3, + [63928] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 7, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 37, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [71429] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5801), 1, - aux_sym_concatenation_token1, - ACTIONS(5803), 1, - sym__concat, - STATE(1583), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 5, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 36, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_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, - [71487] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1302), 5, + ACTIONS(1282), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 39, + ACTIONS(1280), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -137863,16 +127852,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [71539] = 3, + [63980] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 5, + ACTIONS(1270), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 39, + ACTIONS(1268), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -137882,9 +127872,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, @@ -137894,6 +127883,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, @@ -137910,73 +127900,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, - [71591] = 3, + [64032] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(1302), 7, sym_file_descriptor, sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 39, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_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, - [71643] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5801), 1, - aux_sym_concatenation_token1, - ACTIONS(5805), 1, - sym__concat, - STATE(1583), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 5, - sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 36, + ACTIONS(1300), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -137999,6 +127935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -138013,18 +127950,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [71701] = 3, + [64084] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 7, + ACTIONS(1310), 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(1308), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -138034,6 +127970,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, @@ -138044,7 +127981,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, @@ -138061,19 +127997,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, - [71753] = 3, + [64136] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 7, + ACTIONS(4967), 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(4965), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -138083,7 +128018,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, @@ -138093,10 +128031,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, @@ -138110,17 +128046,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, - [71805] = 3, + [64188] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 5, + ACTIONS(1274), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 39, + ACTIONS(1272), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -138130,9 +128068,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, @@ -138160,16 +128097,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [71857] = 3, + [64240] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 5, + ACTIONS(4971), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 39, + ACTIONS(4969), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -138179,6 +128116,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, @@ -138191,10 +128129,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, @@ -138208,17 +128144,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [71909] = 3, + [64292] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 5, + ACTIONS(1254), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 39, + ACTIONS(1252), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -138228,9 +128166,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -138240,7 +128177,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -138257,17 +128193,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, - [71961] = 3, + [64344] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 5, - sym_file_descriptor, + ACTIONS(4917), 1, + aux_sym_concatenation_token1, + ACTIONS(4919), 1, sym__concat, + STATE(1558), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4495), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 39, + ACTIONS(4493), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -138289,10 +128231,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, @@ -138307,16 +128247,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [72013] = 3, + [64402] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 5, - sym_file_descriptor, + ACTIONS(4955), 1, + aux_sym_concatenation_token1, + ACTIONS(4957), 1, sym__concat, + STATE(1440), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1231), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 39, + ACTIONS(1229), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -138326,9 +128271,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, @@ -138338,10 +128282,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, @@ -138355,17 +128297,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, - [72065] = 3, + [64460] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, - sym_file_descriptor, + ACTIONS(4955), 1, + aux_sym_concatenation_token1, + ACTIONS(4976), 1, sym__concat, + STATE(1445), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 39, + ACTIONS(1207), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -138375,9 +128323,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, @@ -138387,10 +128334,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, @@ -138404,17 +128349,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, - [72117] = 3, + [64518] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 5, - sym_file_descriptor, + ACTIONS(4955), 1, + aux_sym_concatenation_token1, + ACTIONS(4978), 1, sym__concat, + STATE(1445), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 39, + ACTIONS(1213), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -138424,9 +128375,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -138436,10 +128386,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, @@ -138453,17 +128401,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, - [72169] = 3, + [64576] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(1306), 7, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 39, + ACTIONS(1304), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -138474,8 +128425,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, @@ -138503,22 +128452,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [72221] = 6, + [64628] = 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(1254), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 36, + ACTIONS(1252), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -138528,7 +128471,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, @@ -138538,9 +128484,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, @@ -138555,18 +128501,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [72279] = 3, + [64680] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 7, + ACTIONS(4963), 1, + sym__special_character, + STATE(1526), 1, + aux_sym__literal_repeat1, + ACTIONS(4449), 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(4447), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -138577,6 +128525,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, @@ -138589,9 +128539,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, @@ -138604,104 +128552,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [72331] = 28, - ACTIONS(71), 1, - sym_comment, - ACTIONS(367), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, - anon_sym_DOLLAR, - ACTIONS(377), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - aux_sym_number_token1, - ACTIONS(383), 1, - aux_sym_number_token2, - ACTIONS(385), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, - sym__brace_start, - ACTIONS(1071), 1, - sym_word, - ACTIONS(1073), 1, - anon_sym_LPAREN, - ACTIONS(1075), 1, - anon_sym_BANG, - ACTIONS(1083), 1, - anon_sym_TILDE, - ACTIONS(1093), 1, - sym_test_operator, - ACTIONS(5375), 1, - anon_sym_BQUOTE, - ACTIONS(5813), 1, - sym__special_character, - ACTIONS(5815), 1, - sym_extglob_pattern, - STATE(2407), 1, - aux_sym__literal_repeat1, - STATE(2644), 1, - sym__expression, - STATE(2645), 1, - sym__extglob_blob, - ACTIONS(393), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1079), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1081), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1089), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2608), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2403), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [72433] = 3, + [64736] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4305), 6, + ACTIONS(4980), 1, + aux_sym_concatenation_token1, + ACTIONS(4983), 1, + sym__concat, + STATE(1445), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1221), 4, 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(1219), 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, @@ -138710,7 +128587,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, @@ -138726,18 +128602,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, - [72485] = 3, + [64794] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, + ACTIONS(1270), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 38, + ACTIONS(1268), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -138758,7 +128635,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -138775,23 +128651,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, + [64846] = 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(1274), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 36, + ACTIONS(1272), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -138801,6 +128673,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, @@ -138811,9 +128684,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, @@ -138827,72 +128700,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [72595] = 28, - ACTIONS(71), 1, + [64898] = 21, + 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, + ACTIONS(4988), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(4990), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(4992), 1, + anon_sym_DOLLAR, + ACTIONS(4994), 1, + sym__special_character, + ACTIONS(4996), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(4998), 1, + aux_sym_number_token1, + ACTIONS(5000), 1, + aux_sym_number_token2, + ACTIONS(5002), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(5004), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5006), 1, + anon_sym_BQUOTE, + ACTIONS(5008), 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(5012), 1, sym_test_operator, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - ACTIONS(5757), 1, - sym_extglob_pattern, - STATE(2312), 1, + ACTIONS(5014), 1, + sym__brace_start, + STATE(5256), 1, aux_sym__literal_repeat1, - STATE(2541), 1, - sym__extglob_blob, - STATE(2969), 1, - sym__expression, - ACTIONS(1125), 2, + STATE(5322), 1, + sym_concatenation, + ACTIONS(2307), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(5010), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1151), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1153), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1159), 2, + ACTIONS(4986), 3, 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_word, + STATE(5212), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -138902,33 +128755,12 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [72697] = 6, - 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, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 36, - anon_sym_SEMI, + ACTIONS(2305), 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, @@ -138936,40 +128768,84 @@ 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, + [64986] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4988), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4990), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(4992), 1, anon_sym_DOLLAR, + ACTIONS(4994), 1, sym__special_character, + ACTIONS(4996), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4998), 1, aux_sym_number_token1, + ACTIONS(5000), 1, aux_sym_number_token2, + ACTIONS(5002), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5004), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(5006), 1, anon_sym_BQUOTE, + ACTIONS(5008), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(5014), 1, + sym__brace_start, + ACTIONS(5018), 1, + sym_test_operator, + STATE(5294), 1, + aux_sym__literal_repeat1, + STATE(5321), 1, + sym_concatenation, + ACTIONS(2311), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(5010), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(5016), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [72755] = 6, + STATE(5222), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2309), 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, + [65074] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, - aux_sym_concatenation_token1, - ACTIONS(5821), 1, - sym__concat, - STATE(1430), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 5, + ACTIONS(1302), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 36, + ACTIONS(1300), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -138979,7 +128855,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, @@ -138989,9 +128868,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, @@ -139006,33 +128885,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [72813] = 6, + [65126] = 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(1231), 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(1229), 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, @@ -139041,6 +128917,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 +128933,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, - [72871] = 6, + [65178] = 5, 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(4949), 1, + sym__special_character, + STATE(1559), 1, + aux_sym__literal_repeat1, + ACTIONS(4449), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 36, + ACTIONS(4447), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -139084,6 +128958,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, @@ -139096,7 +128972,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, @@ -139110,33 +128985,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [72929] = 6, + [65234] = 7, 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(5027), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5029), 1, sym_file_descriptor, + ACTIONS(5032), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(5387), 36, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(5024), 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, @@ -139144,7 +129007,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_LT, + ACTIONS(5022), 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(5020), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -139160,35 +129037,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, - [72987] = 6, + [65294] = 7, 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(5027), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5029), 1, sym_file_descriptor, + ACTIONS(5032), 3, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 36, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, + ACTIONS(5024), 11, 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, @@ -139196,8 +129060,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(5022), 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(5020), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -139214,17 +129091,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [73045] = 3, + [65354] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 6, + ACTIONS(1278), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 38, + ACTIONS(1276), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -139263,21 +129140,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [73097] = 6, + [65406] = 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(1278), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 37, + ACTIONS(1276), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -139287,8 +129159,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, @@ -139298,9 +129172,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, @@ -139315,22 +129189,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [73155] = 6, + [65458] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, - aux_sym_concatenation_token1, - ACTIONS(5829), 1, - sym__concat, - STATE(1632), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5291), 5, + ACTIONS(1266), 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(5289), 36, + ACTIONS(1264), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -139340,6 +129209,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,8 +129220,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, @@ -139365,23 +129237,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, - [73213] = 6, + [65510] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5833), 1, - aux_sym_concatenation_token1, - ACTIONS(5837), 1, - sym__concat, - STATE(1600), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 4, + ACTIONS(1250), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 37, + ACTIONS(1248), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -139405,6 +129272,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, @@ -139419,21 +129287,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [73271] = 6, + [65562] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5839), 1, - aux_sym_concatenation_token1, - ACTIONS(5842), 1, - sym__concat, - STATE(1600), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 4, + ACTIONS(1262), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 37, + ACTIONS(1260), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -139457,6 +129321,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, @@ -139471,39 +129336,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [73329] = 11, + [65614] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5847), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5849), 1, - sym_variable_name, - STATE(6633), 1, - sym_subscript, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4529), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5845), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - STATE(5105), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4161), 3, + ACTIONS(1286), 7, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, - STATE(5163), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4153), 27, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1284), 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, @@ -139511,9 +129366,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, @@ -139528,39 +129385,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [73397] = 11, + [65666] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5849), 1, + ACTIONS(1258), 7, + sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(5852), 1, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(6633), 1, - sym_subscript, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4529), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5845), 2, + ACTIONS(1256), 37, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - STATE(5105), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4161), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - STATE(5163), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4153), 27, + anon_sym_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, @@ -139568,9 +129415,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, @@ -139585,21 +129434,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [73465] = 6, + [65718] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5833), 1, - aux_sym_concatenation_token1, - ACTIONS(5854), 1, - sym__concat, - STATE(1597), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1225), 4, + ACTIONS(1282), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 37, + ACTIONS(1280), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -139623,6 +129468,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, @@ -139637,20 +129483,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [73523] = 5, + [65770] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5858), 2, + ACTIONS(1221), 7, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4161), 3, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(4153), 17, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1219), 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, @@ -139665,7 +129532,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - ACTIONS(5856), 22, + [65822] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1278), 6, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1276), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -139675,10 +129552,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 +129563,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [73579] = 5, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + [65874] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5715), 1, - sym__special_character, - STATE(1514), 1, - aux_sym__literal_repeat1, - ACTIONS(5186), 5, + ACTIONS(1270), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5184), 37, + ACTIONS(1268), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -139711,6 +129600,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, @@ -139725,7 +129615,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, @@ -139737,19 +129629,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, - [73635] = 3, + [65926] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4443), 6, + ACTIONS(3915), 6, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4441), 38, + ACTIONS(3913), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -139788,30 +129679,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [73687] = 3, + [65978] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5399), 6, + ACTIONS(4487), 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(5397), 38, + ACTIONS(4485), 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, @@ -139837,21 +129728,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [73739] = 7, + [66030] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(1302), 5, sym_file_descriptor, - ACTIONS(5872), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(5864), 11, + aux_sym_heredoc_redirect_token1, + ACTIONS(1300), 39, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -139859,23 +129758,59 @@ 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_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, + [66082] = 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), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - anon_sym_esac, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - ACTIONS(5860), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -139889,22 +129824,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, - [73799] = 7, + [66134] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(1302), 5, sym_file_descriptor, - ACTIONS(5872), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(5864), 11, + aux_sym_heredoc_redirect_token1, + ACTIONS(1300), 39, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -139912,21 +129856,58 @@ 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_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, + [66186] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3915), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(3913), 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, - ACTIONS(5860), 16, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -139943,33 +129924,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [73859] = 6, + [66238] = 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(4121), 6, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 36, + ACTIONS(4119), 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, @@ -139995,22 +129973,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [73917] = 6, + [66290] = 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(1286), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5134), 36, + ACTIONS(1284), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -140020,6 +129993,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, @@ -140033,6 +130007,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, @@ -140047,30 +130022,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [73975] = 3, + [66342] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4439), 6, + ACTIONS(1290), 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(4437), 38, + ACTIONS(1288), 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, @@ -140082,6 +130056,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, @@ -140096,30 +130071,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [74027] = 3, + [66394] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4313), 6, + ACTIONS(1266), 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(4311), 38, + ACTIONS(1264), 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, @@ -140128,9 +130102,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 +130118,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, - [74079] = 6, + [66446] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5733), 1, - aux_sym_concatenation_token1, - ACTIONS(5874), 1, - sym__concat, - STATE(1496), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5389), 4, + ACTIONS(1250), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5387), 37, + ACTIONS(1248), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -140182,6 +130153,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, @@ -140197,21 +130169,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [74137] = 6, + [66498] = 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(1294), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5289), 37, + ACTIONS(1292), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -140232,8 +130200,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -140247,20 +130217,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [74195] = 3, + [66550] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 7, + ACTIONS(1274), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 37, + ACTIONS(1272), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -140270,7 +130237,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, @@ -140296,20 +130266,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [74247] = 3, + [66602] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 7, + ACTIONS(1250), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 37, + ACTIONS(1248), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -140319,7 +130286,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, @@ -140345,20 +130315,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, - [74299] = 3, + [66654] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 7, + ACTIONS(4495), 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(4493), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -140368,7 +130335,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, @@ -140378,9 +130348,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, @@ -140394,20 +130364,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, - [74351] = 3, + [66706] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 7, + ACTIONS(1258), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 37, + ACTIONS(1256), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -140418,6 +130385,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, @@ -140445,18 +130414,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [74403] = 3, + [66758] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 7, + ACTIONS(1221), 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(1219), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -140467,6 +130434,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, @@ -140494,18 +130463,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [74455] = 3, + [66810] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 7, + ACTIONS(4010), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4008), 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, + [66862] = 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), 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, + [66914] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1262), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 37, + ACTIONS(1260), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -140515,6 +130581,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, @@ -140543,18 +130610,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [74507] = 3, + [66966] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 7, + ACTIONS(1298), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 37, + ACTIONS(1296), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -140564,6 +130630,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, @@ -140574,6 +130641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -140590,24 +130658,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, - [74559] = 6, + [67018] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(4835), 1, aux_sym_concatenation_token1, - ACTIONS(5829), 1, + ACTIONS(5034), 1, sym__concat, - STATE(1626), 1, + STATE(1253), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 5, + ACTIONS(1209), 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(1207), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -140627,6 +130694,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, @@ -140642,20 +130710,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [74617] = 3, + [67076] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 7, + ACTIONS(1282), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 37, + ACTIONS(1280), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -140665,6 +130731,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, @@ -140693,10 +130760,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [74669] = 3, + [67128] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 7, + ACTIONS(1266), 7, sym_file_descriptor, sym__concat, sym_variable_name, @@ -140704,7 +130771,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(1264), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -140742,22 +130809,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [74721] = 6, + [67180] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(4835), 1, aux_sym_concatenation_token1, - ACTIONS(5876), 1, + ACTIONS(5036), 1, sym__concat, - STATE(1636), 1, + STATE(1253), 1, aux_sym_concatenation_repeat1, - ACTIONS(1229), 5, + ACTIONS(1215), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 36, + ACTIONS(1213), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -140777,6 +130844,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, @@ -140792,22 +130860,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [74779] = 5, + [67238] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5720), 1, + ACTIONS(4818), 1, + aux_sym_concatenation_token1, + ACTIONS(5038), 1, + sym__concat, + STATE(1265), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1207), 36, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, - STATE(1504), 1, - aux_sym__literal_repeat1, - ACTIONS(5563), 5, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + [67296] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4818), 1, + aux_sym_concatenation_token1, + ACTIONS(5040), 1, + sym__concat, + STATE(1265), 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(5561), 37, + ACTIONS(1213), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -140818,8 +130939,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, @@ -140829,10 +130948,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,23 +130963,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, - [74835] = 3, + [67354] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4439), 5, + ACTIONS(1286), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 39, + ACTIONS(1284), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -140868,7 +130988,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, @@ -140877,9 +130996,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 +131012,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, - [74887] = 3, + [67406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 7, + ACTIONS(1290), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 37, + ACTIONS(1288), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -140915,6 +131034,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, @@ -140943,10 +131063,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [74939] = 3, + [67458] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 7, + ACTIONS(1250), 7, sym_file_descriptor, sym__concat, sym_variable_name, @@ -140954,7 +131074,7 @@ static const uint16_t ts_small_parse_table[] = { sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 37, + ACTIONS(1248), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -140974,6 +131094,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, @@ -140990,12 +131111,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, - [74991] = 3, + [67510] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 7, + ACTIONS(1294), 7, sym_file_descriptor, sym__concat, sym_variable_name, @@ -141003,7 +131123,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(1292), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -141023,6 +131143,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,24 +131160,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, - [75043] = 6, + [67562] = 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(1294), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 36, + ACTIONS(1292), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -141066,6 +131181,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, @@ -141078,6 +131194,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, @@ -141093,18 +131210,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [75101] = 3, + [67614] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 7, + ACTIONS(1302), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1300), 39, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, + [67666] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 37, + ACTIONS(1296), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -141114,6 +131279,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, @@ -141142,18 +131308,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [75153] = 3, + [67718] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 7, + ACTIONS(1302), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 37, + ACTIONS(1300), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -141163,6 +131328,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, @@ -141173,6 +131339,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, @@ -141189,24 +131356,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [75205] = 3, + [67770] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4313), 5, + ACTIONS(1306), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 39, + ACTIONS(1304), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -141214,7 +131380,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -141226,6 +131391,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 +131406,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [75257] = 6, + [67822] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5880), 1, - aux_sym_concatenation_token1, - ACTIONS(5883), 1, - sym__concat, - STATE(1636), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 5, + ACTIONS(1302), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 36, + ACTIONS(1300), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -141265,6 +131426,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,8 +131437,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, @@ -141290,20 +131454,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, - [75315] = 3, + [67874] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 7, + ACTIONS(1274), 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(1272), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -141314,6 +131475,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, @@ -141341,67 +131504,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [75367] = 3, - ACTIONS(3), 1, + [67926] = 28, + ACTIONS(71), 1, sym_comment, - ACTIONS(1298), 7, - sym_file_descriptor, - sym__concat, - 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, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 37, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_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(1099), 1, + anon_sym_LPAREN, + ACTIONS(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1109), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1151), 1, + sym_word, + ACTIONS(1153), 1, + anon_sym_BANG, + ACTIONS(1159), 1, + anon_sym_TILDE, + ACTIONS(1165), 1, + sym_test_operator, + ACTIONS(4951), 1, + anon_sym_BQUOTE, + ACTIONS(4953), 1, + sym_extglob_pattern, + ACTIONS(5042), 1, + sym__special_character, + STATE(2398), 1, + aux_sym__literal_repeat1, + STATE(2425), 1, + sym__extglob_blob, + STATE(2737), 1, + sym__expression, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [75419] = 3, + ACTIONS(1155), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1157), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1163), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2394), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2227), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [68028] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 7, + ACTIONS(1286), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 37, + ACTIONS(1284), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -141412,6 +131598,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, @@ -141439,18 +131627,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [75471] = 3, + [68080] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 7, - sym_file_descriptor, + ACTIONS(4921), 1, + aux_sym_concatenation_token1, + ACTIONS(4923), 1, sym__concat, - sym_variable_name, + STATE(1370), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4780), 5, + sym_file_descriptor, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 37, + ACTIONS(4778), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -141472,7 +131664,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, @@ -141488,10 +131679,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [75523] = 3, + [68138] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 7, + ACTIONS(1270), 7, sym_file_descriptor, sym__concat, sym_variable_name, @@ -141499,7 +131690,7 @@ static const uint16_t ts_small_parse_table[] = { sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 37, + ACTIONS(1268), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -141519,6 +131710,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, @@ -141535,12 +131727,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, - [75575] = 3, + [68190] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 7, + ACTIONS(1310), 7, sym_file_descriptor, sym__concat, sym_variable_name, @@ -141548,7 +131739,7 @@ static const uint16_t ts_small_parse_table[] = { sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 37, + ACTIONS(1308), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -141568,6 +131759,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, @@ -141584,18 +131776,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, - [75627] = 3, + [68242] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 5, + ACTIONS(4010), 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(4008), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -141606,7 +131798,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, @@ -141635,16 +131826,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [75679] = 3, + [68294] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4313), 5, + ACTIONS(4835), 1, + aux_sym_concatenation_token1, + ACTIONS(4837), 1, + sym__concat, + STATE(1487), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4483), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 39, + ACTIONS(4481), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -141654,10 +131851,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, @@ -141684,18 +131878,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [75731] = 3, + [68352] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 7, - sym_file_descriptor, + ACTIONS(4835), 1, + aux_sym_concatenation_token1, + ACTIONS(4837), 1, sym__concat, + STATE(1490), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4487), 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(4485), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -141718,7 +131916,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 +131930,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [75783] = 3, + [68410] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 6, + ACTIONS(4818), 1, + aux_sym_concatenation_token1, + ACTIONS(4820), 1, + sym__concat, + STATE(1491), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4393), 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(4391), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -141765,7 +131965,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, @@ -141781,19 +131980,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, - [75835] = 3, + [68468] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 7, - sym_file_descriptor, + ACTIONS(4818), 1, + aux_sym_concatenation_token1, + ACTIONS(4820), 1, sym__concat, + STATE(1492), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4400), 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(4398), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -141813,10 +132017,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, @@ -141830,19 +132032,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, - [75887] = 3, + [68526] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 7, + ACTIONS(1314), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 37, + ACTIONS(1312), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -141853,6 +132054,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, @@ -141862,7 +132065,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, @@ -141879,31 +132081,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, - [75939] = 3, + [68578] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4443), 5, + ACTIONS(4835), 1, + aux_sym_concatenation_token1, + ACTIONS(4837), 1, + sym__concat, + STATE(1487), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4125), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4441), 39, + ACTIONS(4123), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -141929,18 +132135,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [75991] = 3, + [68636] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 7, - sym_file_descriptor, + ACTIONS(4835), 1, + aux_sym_concatenation_token1, + ACTIONS(4837), 1, sym__concat, + STATE(1490), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3915), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 37, + ACTIONS(3913), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -141963,7 +132173,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -141978,18 +132187,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [76043] = 3, + [68694] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 7, + ACTIONS(1290), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 37, + ACTIONS(1288), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -142000,6 +132207,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, @@ -142009,7 +132218,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, @@ -142026,34 +132234,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, - [76095] = 6, + [68746] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5833), 1, + ACTIONS(4160), 1, aux_sym_concatenation_token1, - ACTIONS(5854), 1, + ACTIONS(5044), 1, sym__concat, - STATE(1597), 1, + STATE(885), 1, aux_sym_concatenation_repeat1, - ACTIONS(5132), 4, + ACTIONS(1209), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 37, - anon_sym_SEMI, + ACTIONS(1207), 36, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, + anon_sym_LPAREN, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -142079,21 +132288,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [76153] = 6, + [68804] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5833), 1, + ACTIONS(4835), 1, aux_sym_concatenation_token1, - ACTIONS(5854), 1, + ACTIONS(4837), 1, sym__concat, - STATE(1599), 1, + STATE(1487), 1, aux_sym_concatenation_repeat1, - ACTIONS(5136), 4, + ACTIONS(4491), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5134), 37, + ACTIONS(4489), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -142103,7 +132313,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, @@ -142131,30 +132340,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [76211] = 3, + [68862] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5399), 5, + ACTIONS(4835), 1, + aux_sym_concatenation_token1, + ACTIONS(4837), 1, + sym__concat, + STATE(1490), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4495), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5397), 39, + ACTIONS(4493), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -142180,16 +132392,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [76263] = 3, + [68920] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 5, + ACTIONS(4835), 1, + aux_sym_concatenation_token1, + ACTIONS(4837), 1, + sym__concat, + STATE(1487), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4006), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 39, + ACTIONS(4004), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -142199,10 +132417,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, @@ -142229,17 +132444,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [76315] = 3, + [68978] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 6, - sym_file_descriptor, + ACTIONS(4835), 1, + aux_sym_concatenation_token1, + ACTIONS(4837), 1, sym__concat, + STATE(1490), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4010), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 38, + ACTIONS(4008), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -142249,7 +132469,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, @@ -142260,9 +132479,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, @@ -142276,19 +132495,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, - [76367] = 3, + [69036] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 6, - sym_file_descriptor, + ACTIONS(4835), 1, + aux_sym_concatenation_token1, + ACTIONS(4837), 1, sym__concat, + STATE(1487), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4449), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 38, + ACTIONS(4447), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -142298,7 +132521,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, @@ -142312,7 +132534,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, @@ -142327,17 +132548,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [76419] = 3, + [69094] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, - sym_file_descriptor, + ACTIONS(4835), 1, + aux_sym_concatenation_token1, + ACTIONS(4837), 1, sym__concat, + STATE(1490), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4453), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 38, + ACTIONS(4451), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -142347,7 +132573,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, @@ -142361,7 +132586,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, @@ -142376,29 +132600,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [76471] = 3, + [69152] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 6, - sym_file_descriptor, + ACTIONS(4160), 1, + aux_sym_concatenation_token1, + ACTIONS(5046), 1, sym__concat, - sym_variable_name, + STATE(885), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 38, - anon_sym_SEMI, + ACTIONS(1213), 36, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, + anon_sym_LPAREN, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -142407,9 +132635,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, @@ -142423,18 +132651,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, - [76523] = 3, + [69210] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 5, + ACTIONS(5048), 1, + sym__special_character, + STATE(1526), 1, + aux_sym__literal_repeat1, + ACTIONS(1318), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 39, + ACTIONS(1316), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -142444,7 +132675,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, @@ -142457,10 +132687,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, @@ -142472,19 +132702,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, - [76575] = 3, + [69266] = 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(1099), 1, + anon_sym_LPAREN, + ACTIONS(1101), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1103), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1109), 1, + anon_sym_DQUOTE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1115), 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(4951), 1, + anon_sym_BQUOTE, + ACTIONS(4953), 1, + sym_extglob_pattern, + STATE(2197), 1, + aux_sym__literal_repeat1, + STATE(2425), 1, + sym__extglob_blob, + STATE(3103), 1, + sym__expression, + ACTIONS(1117), 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(2394), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2444), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [69368] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 6, - sym_file_descriptor, + ACTIONS(4818), 1, + aux_sym_concatenation_token1, + ACTIONS(4820), 1, sym__concat, + STATE(1491), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4449), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 38, + ACTIONS(4447), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -142494,7 +132802,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, @@ -142505,10 +132812,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, @@ -142522,23 +132827,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, - [76627] = 6, + [69426] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, + ACTIONS(4818), 1, aux_sym_concatenation_token1, - ACTIONS(5579), 1, + ACTIONS(4820), 1, sym__concat, - STATE(1590), 1, + STATE(1492), 1, aux_sym_concatenation_repeat1, - ACTIONS(5132), 5, + ACTIONS(4453), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 36, + ACTIONS(4451), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -142558,7 +132864,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, @@ -142574,34 +132879,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [76685] = 6, + [69484] = 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(4117), 6, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5134), 36, + ACTIONS(4115), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -142627,17 +132930,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [76743] = 3, + [69536] = 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(1099), 1, + anon_sym_LPAREN, + ACTIONS(1101), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1103), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1107), 1, + sym__special_character, + ACTIONS(1109), 1, + anon_sym_DQUOTE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1115), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4951), 1, + anon_sym_BQUOTE, + ACTIONS(4953), 1, + sym_extglob_pattern, + STATE(2197), 1, + aux_sym__literal_repeat1, + STATE(2425), 1, + sym__extglob_blob, + STATE(2688), 1, + sym__expression, + ACTIONS(101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1111), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1117), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2394), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2268), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [69638] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 6, - sym_file_descriptor, + ACTIONS(4921), 1, + aux_sym_concatenation_token1, + ACTIONS(4923), 1, sym__concat, - sym_variable_name, + STATE(1376), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4784), 5, + sym_file_descriptor, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 38, + ACTIONS(4782), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -142647,7 +133029,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, @@ -142658,10 +133039,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, @@ -142675,34 +133054,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, - [76795] = 6, + [69696] = 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(4121), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5184), 36, + ACTIONS(4119), 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, @@ -142711,6 +133088,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, @@ -142726,24 +133104,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, - [76853] = 6, + [69748] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5581), 1, + ACTIONS(4835), 1, aux_sym_concatenation_token1, - ACTIONS(5583), 1, + ACTIONS(4837), 1, sym__concat, - STATE(1593), 1, + STATE(1487), 1, aux_sym_concatenation_repeat1, - ACTIONS(5190), 5, + ACTIONS(1231), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5188), 36, + ACTIONS(1229), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -142763,6 +133140,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, @@ -142778,24 +133156,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, - [76911] = 6, + [69806] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, + ACTIONS(4818), 1, aux_sym_concatenation_token1, - ACTIONS(5579), 1, + ACTIONS(4820), 1, sym__concat, - STATE(1591), 1, + STATE(1491), 1, aux_sym_concatenation_repeat1, - ACTIONS(2158), 5, + ACTIONS(1231), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 36, + ACTIONS(1229), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -142815,7 +133192,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, @@ -142831,23 +133207,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, - [76969] = 6, + [69864] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, + ACTIONS(4917), 1, aux_sym_concatenation_token1, - ACTIONS(5579), 1, + ACTIONS(4919), 1, sym__concat, - STATE(1590), 1, + STATE(1552), 1, aux_sym_concatenation_repeat1, - ACTIONS(4282), 5, + ACTIONS(4897), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 36, + ACTIONS(4895), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -142858,6 +133234,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, @@ -142867,7 +133245,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, @@ -142884,22 +133261,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [77027] = 6, + [69922] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, + ACTIONS(4917), 1, aux_sym_concatenation_token1, - ACTIONS(5579), 1, + ACTIONS(4919), 1, sym__concat, - STATE(1591), 1, + STATE(1558), 1, aux_sym_concatenation_repeat1, - ACTIONS(4439), 5, + ACTIONS(4901), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 36, + ACTIONS(4899), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -142910,6 +133286,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 +133297,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 +133313,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [77085] = 3, + [69980] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2162), 5, + ACTIONS(4963), 1, + sym__special_character, + STATE(1526), 1, + aux_sym__literal_repeat1, + ACTIONS(4006), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 39, + ACTIONS(4004), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -142955,7 +133336,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, @@ -142972,7 +133352,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, @@ -142985,21 +133364,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [77137] = 6, + [70036] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5733), 1, - aux_sym_concatenation_token1, - ACTIONS(5874), 1, - sym__concat, - STATE(1496), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1225), 4, + ACTIONS(1302), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 37, + ACTIONS(1300), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -143022,6 +133397,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, @@ -143037,17 +133413,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [77195] = 3, + [70088] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, + ACTIONS(1306), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 38, + ACTIONS(1304), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -143068,7 +133444,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, @@ -143085,31 +133460,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, - [77247] = 3, + [70140] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5888), 5, + ACTIONS(4160), 1, + aux_sym_concatenation_token1, + ACTIONS(4162), 1, + sym__concat, + STATE(1518), 1, + aux_sym_concatenation_repeat1, + ACTIONS(276), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5886), 39, - 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_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_LPAREN, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -143135,22 +133514,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [77299] = 6, + [70198] = 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(2162), 5, + ACTIONS(1302), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 36, + ACTIONS(1300), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -143160,6 +133534,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, @@ -143170,9 +133545,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, @@ -143186,34 +133561,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, - [77357] = 6, + [70250] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, + ACTIONS(4160), 1, aux_sym_concatenation_token1, - ACTIONS(5579), 1, + ACTIONS(4162), 1, sym__concat, - STATE(1590), 1, + STATE(1525), 1, aux_sym_concatenation_repeat1, - ACTIONS(4309), 5, + ACTIONS(1240), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 36, - anon_sym_SEMI, + ACTIONS(1233), 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, @@ -143239,22 +133615,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [77415] = 6, + [70308] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, + ACTIONS(4917), 1, aux_sym_concatenation_token1, - ACTIONS(5579), 1, + ACTIONS(4919), 1, sym__concat, - STATE(1591), 1, + STATE(1552), 1, aux_sym_concatenation_repeat1, - ACTIONS(4313), 5, + ACTIONS(4483), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 36, + ACTIONS(4481), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -143265,6 +133640,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, @@ -143274,7 +133651,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, @@ -143291,22 +133667,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [77473] = 6, + [70366] = 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(1310), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 36, + ACTIONS(1308), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -143317,6 +133687,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, @@ -143326,9 +133698,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 +133714,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, - [77531] = 6, + [70418] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, - aux_sym_concatenation_token1, - ACTIONS(5579), 1, - sym__concat, - STATE(1591), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5270), 5, + ACTIONS(4963), 1, + sym__special_character, + STATE(1526), 1, + aux_sym__literal_repeat1, + ACTIONS(4483), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 36, + ACTIONS(4481), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -143369,6 +133740,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, @@ -143382,7 +133755,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, @@ -143395,17 +133767,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [77589] = 3, + [70474] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, + ACTIONS(1231), 5, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 38, + ACTIONS(1229), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -143415,8 +133786,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, @@ -143428,7 +133801,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, @@ -143444,29 +133816,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [77641] = 3, + [70526] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 6, - sym_file_descriptor, + ACTIONS(4160), 1, + aux_sym_concatenation_token1, + ACTIONS(4162), 1, sym__concat, - sym_variable_name, + STATE(1518), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1231), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 38, - anon_sym_SEMI, + ACTIONS(1229), 36, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, + anon_sym_LPAREN, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -143475,9 +133851,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, @@ -143491,18 +133867,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, - [77693] = 3, + [70584] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5707), 5, + ACTIONS(1282), 7, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5705), 39, + ACTIONS(1280), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -143512,10 +133889,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, @@ -143528,6 +133902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -143542,17 +133917,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [77745] = 3, + [70636] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, + ACTIONS(1254), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 38, + ACTIONS(1252), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -143562,8 +133936,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, @@ -143573,7 +133948,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, @@ -143590,18 +133964,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, - [77797] = 3, + [70688] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, + ACTIONS(1258), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 38, + ACTIONS(1256), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -143611,8 +133985,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, @@ -143638,98 +134014,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, - [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, + [70740] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5581), 1, + ACTIONS(4917), 1, aux_sym_concatenation_token1, - ACTIONS(5583), 1, + ACTIONS(5051), 1, sym__concat, - STATE(1592), 1, + STATE(1392), 1, aux_sym_concatenation_repeat1, - ACTIONS(5266), 5, + ACTIONS(1209), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 36, + ACTIONS(1207), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -143740,6 +134040,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, @@ -143764,24 +134066,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, - [78009] = 6, + [70798] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5581), 1, - aux_sym_concatenation_token1, - ACTIONS(5583), 1, - sym__concat, - STATE(1593), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5270), 5, + ACTIONS(5053), 1, + sym__special_character, + STATE(1423), 1, + aux_sym__literal_repeat1, + ACTIONS(4780), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 36, + ACTIONS(4778), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -143791,7 +134089,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, @@ -143804,7 +134105,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, @@ -143818,16 +134118,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [78067] = 3, + [70854] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 5, + ACTIONS(1221), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 39, + ACTIONS(1219), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -143850,9 +134150,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, @@ -143867,22 +134167,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [78119] = 6, + [70906] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, - aux_sym_concatenation_token1, - ACTIONS(5579), 1, - sym__concat, - STATE(1590), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1225), 5, + ACTIONS(1274), 7, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 36, + ACTIONS(1272), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -143905,6 +134201,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, @@ -143919,22 +134216,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [78177] = 6, + [70958] = 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(4963), 1, + sym__special_character, + STATE(1526), 1, + aux_sym__literal_repeat1, + ACTIONS(4491), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 36, + ACTIONS(4489), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -143945,6 +134240,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, @@ -143954,10 +134251,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, @@ -143969,107 +134266,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, - [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, + [71014] = 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(4647), 6, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(237), 36, + ACTIONS(4645), 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, @@ -144097,33 +134316,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [78395] = 6, + [71066] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4661), 1, + ACTIONS(4917), 1, aux_sym_concatenation_token1, - ACTIONS(4663), 1, + ACTIONS(5055), 1, sym__concat, - STATE(1707), 1, + STATE(1392), 1, aux_sym_concatenation_repeat1, - ACTIONS(1240), 5, + ACTIONS(1215), 4, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1233), 36, + ACTIONS(1213), 37, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -144132,7 +134352,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, @@ -144149,34 +134368,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [78453] = 7, + [71124] = 5, 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(5057), 1, + sym__special_character, + STATE(1559), 1, + aux_sym__literal_repeat1, + ACTIONS(1318), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1233), 35, + ACTIONS(1316), 37, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_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,11 +134403,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, @@ -144201,18 +134417,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, - [78513] = 3, + [71180] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 6, + ACTIONS(1290), 7, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 38, + ACTIONS(1288), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -144222,7 +134440,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, @@ -144233,6 +134450,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, @@ -144249,75 +134467,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, - [78565] = 10, - ACTIONS(3), 1, + [71232] = 5, + ACTIONS(71), 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, + STATE(1575), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5060), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1233), 15, anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(5105), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4161), 3, + 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, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - STATE(5163), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4155), 4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4153), 27, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, + anon_sym_LPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [78631] = 3, + [71287] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, - sym_file_descriptor, + ACTIONS(5062), 1, + aux_sym_concatenation_token1, + ACTIONS(5064), 1, sym__concat, - sym_variable_name, + STATE(1664), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4487), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 38, + ACTIONS(4485), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -144340,7 +134555,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, @@ -144354,35 +134568,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [78683] = 6, + [71344] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4661), 1, + ACTIONS(5066), 1, aux_sym_concatenation_token1, - ACTIONS(4663), 1, + ACTIONS(5068), 1, sym__concat, - STATE(1595), 1, + STATE(1678), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 5, + ACTIONS(4491), 5, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 36, + ACTIONS(4489), 35, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_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, @@ -144391,7 +134604,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, @@ -144408,34 +134620,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [78741] = 9, + [71401] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5849), 1, - sym_variable_name, - STATE(6633), 1, - sym_subscript, - ACTIONS(4161), 2, + ACTIONS(5066), 1, + aux_sym_concatenation_token1, + ACTIONS(5068), 1, + sym__concat, + STATE(1577), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4495), 5, + sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(4268), 2, - sym_file_descriptor, + ts_builtin_sym_end, 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(4493), 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, @@ -144445,8 +134655,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - ACTIONS(4153), 17, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -144463,17 +134671,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [78805] = 3, + [71458] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, - sym_file_descriptor, + ACTIONS(5066), 1, + aux_sym_concatenation_token1, + ACTIONS(5068), 1, sym__concat, - sym_variable_name, + STATE(1678), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4897), 5, + sym_file_descriptor, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 38, + ACTIONS(4895), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -144483,7 +134696,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -144494,10 +134706,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, @@ -144512,17 +134722,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [78857] = 3, + [71515] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, + ACTIONS(1266), 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), 38, + ACTIONS(1264), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -144532,7 +134742,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, @@ -144543,7 +134752,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, @@ -144560,18 +134768,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, - [78909] = 3, + [71566] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(5070), 1, + sym__special_character, + STATE(1578), 1, + aux_sym__literal_repeat1, + ACTIONS(4393), 5, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 38, + ACTIONS(4391), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -144592,12 +134804,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, @@ -144609,18 +134818,75 @@ static const uint16_t 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, - ACTIONS(3), 1, + [71621] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(1286), 6, + ACTIONS(1331), 1, + anon_sym_LPAREN, + STATE(1575), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5060), 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, 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, + [71678] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5066), 1, + aux_sym_concatenation_token1, + ACTIONS(5068), 1, sym__concat, - sym_variable_name, + STATE(1577), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4901), 5, + sym_file_descriptor, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 38, + ACTIONS(4899), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -144630,7 +134896,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, @@ -144643,7 +134908,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, @@ -144657,19 +134921,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, + [71735] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 6, + ACTIONS(1250), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 38, + ACTIONS(1248), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -144679,7 +134942,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, @@ -144708,17 +134970,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [79065] = 3, + [71786] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 6, + ACTIONS(1294), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 38, + ACTIONS(1292), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -144728,7 +134990,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, @@ -144739,7 +135000,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, @@ -144756,18 +135016,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, - [79117] = 3, + [71837] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5060), 1, + aux_sym_concatenation_token1, + ACTIONS(5072), 1, + sym__concat, + STATE(1651), 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, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [71894] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, + ACTIONS(5074), 1, + sym__special_character, + STATE(1633), 1, + aux_sym__literal_repeat1, + ACTIONS(4125), 6, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 38, + ACTIONS(4123), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -144777,7 +135093,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, @@ -144788,11 +135103,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, @@ -144804,18 +135118,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, - [79169] = 3, + [71949] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5888), 5, + ACTIONS(1282), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5886), 39, + ACTIONS(1280), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -144825,7 +135138,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, @@ -144840,6 +135152,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, @@ -144853,35 +135166,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, - [79221] = 6, - ACTIONS(3), 1, + [72000] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(4661), 1, + ACTIONS(5060), 1, aux_sym_concatenation_token1, - ACTIONS(5895), 1, + ACTIONS(5076), 1, sym__concat, - STATE(895), 1, + STATE(1651), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 5, + 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, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [72057] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5078), 1, + sym__special_character, + STATE(1615), 1, + aux_sym__literal_repeat1, + ACTIONS(4393), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 36, + ACTIONS(4391), 35, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_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, @@ -144890,11 +135252,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, @@ -144906,89 +135266,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, - [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, + [72112] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2158), 5, + ACTIONS(5066), 1, + aux_sym_concatenation_token1, + ACTIONS(5080), 1, + sym__concat, + STATE(1710), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 38, + ACTIONS(1213), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -144999,8 +135294,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, @@ -145010,7 +135303,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, @@ -145027,16 +135319,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [79429] = 3, + [72169] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 5, + ACTIONS(5082), 1, + sym__special_character, + STATE(1578), 1, + aux_sym__literal_repeat1, + ACTIONS(1318), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 38, + ACTIONS(1316), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -145059,9 +135355,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, @@ -145075,22 +135369,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [79480] = 6, + [72224] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5899), 1, - aux_sym_concatenation_token1, - ACTIONS(5901), 1, - sym__concat, - STATE(1715), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 5, + ACTIONS(5070), 1, + sym__special_character, + STATE(1578), 1, + aux_sym__literal_repeat1, + ACTIONS(4449), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 35, + ACTIONS(4447), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -145100,6 +135392,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, @@ -145113,7 +135406,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, @@ -145125,17 +135417,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [79537] = 3, + [72279] = 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(1099), 1, + anon_sym_LPAREN, + ACTIONS(1101), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1103), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1109), 1, + anon_sym_DQUOTE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1115), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1151), 1, + sym_word, + ACTIONS(1153), 1, + anon_sym_BANG, + ACTIONS(1159), 1, + anon_sym_TILDE, + ACTIONS(1165), 1, + sym_test_operator, + ACTIONS(4951), 1, + anon_sym_BQUOTE, + ACTIONS(5042), 1, + sym__special_character, + ACTIONS(5085), 1, + sym__regex_no_space, + STATE(2398), 1, + aux_sym__literal_repeat1, + STATE(2725), 1, + sym__expression, + ACTIONS(1117), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1155), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1157), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1163), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2394), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2227), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [72378] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 5, + ACTIONS(1262), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 38, + ACTIONS(1260), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -145146,8 +135512,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, @@ -145173,17 +135537,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, - [79588] = 3, + [72429] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5707), 5, + ACTIONS(1298), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5705), 38, + ACTIONS(1296), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -145194,8 +135560,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, @@ -145205,9 +135569,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 +135585,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, + [72480] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 5, + ACTIONS(1302), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 38, + ACTIONS(1300), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -145242,8 +135608,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, @@ -145269,23 +135633,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, - [79690] = 6, + [72531] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5903), 1, - aux_sym_concatenation_token1, - ACTIONS(5906), 1, - sym__concat, - STATE(1715), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 5, + ACTIONS(1306), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 35, + ACTIONS(1304), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -145307,6 +135667,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, @@ -145320,59 +135681,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, - [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, + [72582] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1278), 5, @@ -145391,57 +135702,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [79855] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1290), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 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, @@ -145467,17 +135729,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, - [79906] = 3, + [72633] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 5, + ACTIONS(1302), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 38, + ACTIONS(1300), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -145487,7 +135751,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -145516,69 +135779,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [79957] = 5, + [72684] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5909), 1, - sym__special_character, - STATE(1870), 1, - aux_sym__literal_repeat1, - ACTIONS(5266), 5, + ACTIONS(4010), 5, 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_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, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [80012] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5911), 1, - sym__special_character, - STATE(1721), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 37, + ACTIONS(4008), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -145604,56 +135814,7 @@ 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, - [80067] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5914), 1, sym__special_character, - STATE(1811), 1, - aux_sym__literal_repeat1, - ACTIONS(5132), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 37, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -145666,22 +135827,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [80122] = 6, + [72735] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5899), 1, + ACTIONS(4955), 1, aux_sym_concatenation_token1, - ACTIONS(5916), 1, + ACTIONS(5087), 1, sym__concat, - STATE(1895), 1, + STATE(1445), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 5, + ACTIONS(1209), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 35, + ACTIONS(1207), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -145716,18 +135876,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, - [80179] = 3, + [72792] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 6, - sym_file_descriptor, + ACTIONS(4955), 1, + aux_sym_concatenation_token1, + ACTIONS(5089), 1, sym__concat, + STATE(1445), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 37, + ACTIONS(1213), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -145747,10 +135912,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -145764,17 +135927,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, - [80230] = 3, + [72849] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 5, + ACTIONS(5091), 1, + sym__special_character, + STATE(1621), 1, + aux_sym__literal_repeat1, + ACTIONS(4483), 4, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 38, + ACTIONS(4481), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -145784,6 +135951,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, @@ -145798,9 +135966,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, @@ -145813,16 +135979,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [80281] = 3, + [72904] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 5, + ACTIONS(1254), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 38, + ACTIONS(1252), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -145861,16 +136027,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [80332] = 3, + [72955] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 5, + ACTIONS(5091), 1, + sym__special_character, + STATE(1621), 1, + aux_sym__literal_repeat1, + ACTIONS(4897), 4, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 38, + ACTIONS(4895), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -145880,6 +136049,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, @@ -145894,9 +136064,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, @@ -145909,16 +136077,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [80383] = 3, + [73010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 5, + ACTIONS(1290), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 38, + ACTIONS(1288), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -145957,16 +136125,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [80434] = 3, + [73061] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 5, + ACTIONS(1266), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 38, + ACTIONS(1264), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -145976,9 +136144,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, @@ -146004,17 +136171,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, - [80485] = 3, + [73112] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(1282), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 38, + ACTIONS(1280), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -146024,7 +136193,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, @@ -146053,16 +136221,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [80536] = 3, + [73163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 5, + ACTIONS(1250), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 38, + ACTIONS(1248), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -146101,16 +136269,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [80587] = 3, + [73214] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(1258), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 38, + ACTIONS(1256), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -146120,7 +136289,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, @@ -146149,16 +136317,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [80638] = 3, + [73265] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 5, + ACTIONS(1221), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 38, + ACTIONS(1219), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -146168,7 +136337,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, @@ -146197,16 +136365,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [80689] = 3, + [73316] = 27, + ACTIONS(71), 1, + sym_comment, + ACTIONS(185), 1, + anon_sym_TILDE, + ACTIONS(566), 1, + sym_word, + ACTIONS(573), 1, + anon_sym_LPAREN, + ACTIONS(575), 1, + anon_sym_BANG, + ACTIONS(577), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(579), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(583), 1, + anon_sym_DOLLAR, + ACTIONS(587), 1, + anon_sym_DQUOTE, + ACTIONS(591), 1, + aux_sym_number_token1, + ACTIONS(593), 1, + aux_sym_number_token2, + ACTIONS(595), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(601), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(605), 1, + sym_test_operator, + ACTIONS(607), 1, + sym__brace_start, + ACTIONS(4667), 1, + anon_sym_BQUOTE, + ACTIONS(4959), 1, + sym__special_character, + ACTIONS(5093), 1, + sym__regex_no_space, + STATE(2414), 1, + aux_sym__literal_repeat1, + STATE(2812), 1, + sym__expression, + ACTIONS(181), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(183), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(589), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(603), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2702), 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, + [73415] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(5091), 1, + sym__special_character, + STATE(1621), 1, + aux_sym__literal_repeat1, + ACTIONS(4491), 4, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 38, + ACTIONS(4489), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -146216,6 +136459,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, @@ -146230,9 +136474,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, @@ -146245,16 +136487,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [80740] = 3, + [73470] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 5, - sym_file_descriptor, + ACTIONS(5062), 1, + aux_sym_concatenation_token1, + ACTIONS(5064), 1, sym__concat, + STATE(1631), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1231), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 38, + ACTIONS(1229), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -146264,9 +136511,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, @@ -146278,7 +136524,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, @@ -146293,16 +136538,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [80791] = 3, + [73527] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(5074), 1, + sym__special_character, + STATE(1633), 1, + aux_sym__literal_repeat1, + ACTIONS(4449), 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), 38, + ACTIONS(4447), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -146313,8 +136563,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, @@ -146324,11 +136572,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, @@ -146341,72 +136588,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [80842] = 11, - ACTIONS(71), 1, + [73582] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(4155), 1, - anon_sym_LT_LT, - ACTIONS(4157), 1, - anon_sym_PIPE, - ACTIONS(4268), 1, - anon_sym_PIPE_AMP, - ACTIONS(5918), 1, + ACTIONS(5074), 1, + sym__special_character, + STATE(1633), 1, + aux_sym__literal_repeat1, + ACTIONS(4483), 6, + sym_file_descriptor, sym_variable_name, - STATE(6657), 1, - sym_subscript, - STATE(5135), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4159), 3, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(4481), 35, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_LT_LT_DASH, - STATE(5381), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4153), 10, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4161), 20, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_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, - [80909] = 3, + sym_word, + [73637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 5, + ACTIONS(1262), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 38, + ACTIONS(1260), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -146445,17 +136686,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [80960] = 3, + [73688] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 6, - sym_file_descriptor, + ACTIONS(5066), 1, + aux_sym_concatenation_token1, + ACTIONS(5068), 1, sym__concat, + STATE(1678), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1231), 5, + sym_file_descriptor, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 37, + ACTIONS(1229), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -146475,10 +136721,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, @@ -146493,17 +136737,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [81011] = 3, + [73745] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 6, + ACTIONS(5095), 1, + sym__special_character, + STATE(1626), 1, + aux_sym__literal_repeat1, + ACTIONS(4780), 4, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 37, + ACTIONS(4778), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -146514,6 +136760,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, @@ -146523,12 +136771,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, @@ -146540,18 +136785,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, - [81062] = 3, + [73800] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, + ACTIONS(1314), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 37, + ACTIONS(1312), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -146561,6 +136806,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, @@ -146571,7 +136817,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, @@ -146588,70 +136833,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, - [81113] = 27, + [73851] = 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(1099), 1, anon_sym_LPAREN, - ACTIONS(1075), 1, + ACTIONS(1101), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1103), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1109), 1, + anon_sym_DQUOTE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1115), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1151), 1, + sym_word, + ACTIONS(1153), 1, anon_sym_BANG, - ACTIONS(1083), 1, + ACTIONS(1159), 1, anon_sym_TILDE, - ACTIONS(1093), 1, + ACTIONS(1165), 1, sym_test_operator, - ACTIONS(5375), 1, + ACTIONS(4951), 1, anon_sym_BQUOTE, - ACTIONS(5813), 1, + ACTIONS(5042), 1, sym__special_character, - ACTIONS(5921), 1, - sym__regex_no_space, - STATE(2407), 1, + STATE(2398), 1, aux_sym__literal_repeat1, - STATE(2637), 1, + STATE(2717), 1, sym__expression, - ACTIONS(393), 2, + STATE(6803), 1, + sym__test_command_binary_expression, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1079), 2, + ACTIONS(1155), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1081), 2, + ACTIONS(1157), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1089), 2, + ACTIONS(1163), 2, sym_raw_string, sym_ansi_c_string, - STATE(2608), 6, + STATE(2394), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2403), 9, + STATE(2227), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -146661,17 +136907,16 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [81212] = 3, + [73950] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, + ACTIONS(4453), 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(4451), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -146682,6 +136927,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,7 +136941,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, @@ -146709,74 +136955,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [81263] = 12, - ACTIONS(71), 1, + [74001] = 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(1270), 6, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1268), 37, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - STATE(5135), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(5131), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4153), 10, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4161), 20, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [81332] = 3, + aux_sym__simple_variable_name_token1, + sym_word, + [74052] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 6, + ACTIONS(1282), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 37, + ACTIONS(1280), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -146786,6 +137022,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, @@ -146796,7 +137033,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -146813,16 +137049,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, - [81383] = 6, + [74103] = 27, ACTIONS(71), 1, sym_comment, - STATE(3442), 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(1099), 1, + anon_sym_LPAREN, + ACTIONS(1101), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1103), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1109), 1, + anon_sym_DQUOTE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1115), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1151), 1, + sym_word, + ACTIONS(1153), 1, + anon_sym_BANG, + ACTIONS(1159), 1, + anon_sym_TILDE, + ACTIONS(1165), 1, + sym_test_operator, + ACTIONS(4951), 1, + anon_sym_BQUOTE, + ACTIONS(5042), 1, + sym__special_character, + STATE(2398), 1, aux_sym__literal_repeat1, - STATE(1865), 2, + STATE(2857), 1, + sym__expression, + STATE(6971), 1, + sym__test_command_binary_expression, + ACTIONS(1117), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1155), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1157), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1163), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2394), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3373), 9, + STATE(2227), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -146832,102 +137123,165 @@ static const uint16_t ts_small_parse_table[] = { 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, + [74202] = 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, - sym_word, - ACTIONS(2162), 21, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, + ACTIONS(282), 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(1099), 1, + anon_sym_LPAREN, + ACTIONS(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - sym__special_character, + ACTIONS(1109), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1151), 1, + sym_word, + ACTIONS(1153), 1, + anon_sym_BANG, + ACTIONS(1159), 1, + anon_sym_TILDE, + ACTIONS(1165), 1, + sym_test_operator, + ACTIONS(4951), 1, + anon_sym_BQUOTE, + ACTIONS(5042), 1, + sym__special_character, + ACTIONS(5097), 1, + sym__regex_no_space, + STATE(2398), 1, + aux_sym__literal_repeat1, + STATE(2725), 1, + sym__expression, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [81440] = 3, - ACTIONS(3), 1, + ACTIONS(1155), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1157), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1163), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2394), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2227), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [74301] = 27, + ACTIONS(71), 1, sym_comment, - ACTIONS(1270), 6, - sym_file_descriptor, - sym__concat, - sym_test_operator, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, + aux_sym_number_token1, + ACTIONS(264), 1, + aux_sym_number_token2, + ACTIONS(268), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 37, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(1099), 1, + anon_sym_LPAREN, + ACTIONS(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1109), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1135), 1, + sym_word, + ACTIONS(1137), 1, + anon_sym_BANG, + ACTIONS(1143), 1, + anon_sym_TILDE, + ACTIONS(1145), 1, + sym__special_character, + ACTIONS(1149), 1, + sym_test_operator, + ACTIONS(4951), 1, + anon_sym_BQUOTE, + ACTIONS(5097), 1, + sym__regex_no_space, + STATE(2197), 1, + aux_sym__literal_repeat1, + STATE(2800), 1, + sym__expression, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [81491] = 6, + ACTIONS(1139), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1141), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1147), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2394), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2298), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [74400] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5833), 1, - aux_sym_concatenation_token1, - ACTIONS(5929), 1, - sym__concat, - STATE(1600), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 4, + ACTIONS(5099), 1, + sym__special_character, + STATE(1615), 1, + aux_sym__literal_repeat1, + ACTIONS(1318), 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(1316), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -146947,11 +137301,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, @@ -146963,22 +137315,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, - [81548] = 6, + [74455] = 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(1258), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 36, + ACTIONS(1256), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -146988,6 +137336,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, @@ -146998,9 +137347,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 +137363,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, - [81605] = 6, + [74506] = 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(1302), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 36, + ACTIONS(1300), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -147040,6 +137385,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, @@ -147049,9 +137396,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, @@ -147066,71 +137413,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [81662] = 9, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5918), 1, - 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, - anon_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(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, - ACTIONS(4161), 14, - 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, - [81725] = 3, + [74557] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 6, + ACTIONS(1221), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 37, + ACTIONS(1219), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -147140,6 +137432,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 +137443,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 +137459,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, + [74608] = 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(1306), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 36, + ACTIONS(1304), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -147192,8 +137480,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, @@ -147205,6 +137494,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, @@ -147219,89 +137509,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [81833] = 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(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, - 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, + [74659] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 6, + ACTIONS(1302), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 37, + ACTIONS(1300), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -147312,6 +137529,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 +137540,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, @@ -147339,21 +137557,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [81983] = 5, + [74710] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5937), 1, + ACTIONS(5102), 1, sym__special_character, - STATE(1827), 1, + STATE(1621), 1, aux_sym__literal_repeat1, - ACTIONS(5266), 6, + ACTIONS(1318), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 35, + ACTIONS(1316), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -147363,7 +137579,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, @@ -147387,23 +137606,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, - [82038] = 6, + [74765] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5933), 1, + ACTIONS(5066), 1, aux_sym_concatenation_token1, - ACTIONS(5939), 1, + ACTIONS(5068), 1, sym__concat, - STATE(1759), 1, + STATE(1577), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 4, + ACTIONS(4487), 5, sym_file_descriptor, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 36, + ACTIONS(4485), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -147413,7 +137632,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, @@ -147440,17 +137658,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [82095] = 3, + [74822] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 6, + ACTIONS(1314), 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(1312), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -147461,6 +137678,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 +137689,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, @@ -147488,72 +137706,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [82146] = 6, - ACTIONS(3), 1, + [74873] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(5941), 1, - aux_sym_concatenation_token1, - ACTIONS(5944), 1, - sym__concat, - STATE(1759), 1, + STATE(1572), 1, aux_sym_concatenation_repeat1, - ACTIONS(1215), 4, + ACTIONS(5060), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1229), 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(1231), 25, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 36, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, + anon_sym_LPAREN, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [82203] = 6, + [74928] = 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(1278), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 36, + ACTIONS(1276), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -147564,6 +137776,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, @@ -147573,9 +137787,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, @@ -147590,21 +137804,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [82260] = 6, + [74979] = 5, 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(5105), 1, + sym__special_character, + STATE(1626), 1, + aux_sym__literal_repeat1, + ACTIONS(1318), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5134), 36, + ACTIONS(1316), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -147615,6 +137827,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, @@ -147624,11 +137838,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, @@ -147640,16 +137852,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, - [82317] = 3, + [75034] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 4, + ACTIONS(1310), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 39, + ACTIONS(1308), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -147659,10 +137873,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, @@ -147674,6 +137886,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 +137902,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [82368] = 3, + [75085] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5888), 5, + ACTIONS(4955), 1, + aux_sym_concatenation_token1, + ACTIONS(4957), 1, + sym__concat, + STATE(1588), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4780), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5886), 38, + ACTIONS(4778), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -147709,8 +137927,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, @@ -147737,16 +137953,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [82419] = 3, + [75142] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 5, - sym_file_descriptor, + ACTIONS(4955), 1, + aux_sym_concatenation_token1, + ACTIONS(4957), 1, sym__concat, + STATE(1589), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4784), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 38, + ACTIONS(4782), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -147756,7 +137977,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, @@ -147769,7 +137989,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, @@ -147785,29 +138004,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [82470] = 3, + [75199] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4439), 5, - sym_file_descriptor, + ACTIONS(4039), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5108), 1, sym_variable_name, + STATE(6370), 1, + sym_subscript, + ACTIONS(3937), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(737), 2, + sym_file_redirect, + sym_heredoc_redirect, + STATE(4856), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3944), 3, + sym_file_descriptor, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 38, - anon_sym_SEMI, + ACTIONS(4037), 4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3935), 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_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -147815,7 +138042,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, @@ -147833,21 +138059,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [82521] = 6, + [75264] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5733), 1, + ACTIONS(5062), 1, aux_sym_concatenation_token1, - ACTIONS(5947), 1, + ACTIONS(5111), 1, sym__concat, - STATE(1488), 1, + STATE(1669), 1, aux_sym_concatenation_repeat1, - ACTIONS(1229), 4, + ACTIONS(1209), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 36, + ACTIONS(1207), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -147857,6 +138083,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, @@ -147882,23 +138109,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, - [82578] = 6, + [75321] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5733), 1, - aux_sym_concatenation_token1, - ACTIONS(5949), 1, - sym__concat, - STATE(1488), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 4, + ACTIONS(5113), 1, + sym__special_character, + STATE(1693), 1, + aux_sym__literal_repeat1, + ACTIONS(4125), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 36, + ACTIONS(4123), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -147908,6 +138133,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, @@ -147918,10 +138144,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -147933,19 +138159,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, - [82635] = 3, + [75376] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 6, + ACTIONS(5115), 1, + sym__special_character, + STATE(1633), 1, + aux_sym__literal_repeat1, + ACTIONS(1318), 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(1316), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -147968,9 +138197,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, @@ -147983,165 +138210,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [82686] = 27, - ACTIONS(71), 1, - sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1127), 1, - sym_word, - ACTIONS(1129), 1, - anon_sym_BANG, - ACTIONS(1135), 1, - anon_sym_TILDE, - ACTIONS(1141), 1, - sym_test_operator, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - ACTIONS(5890), 1, - sym__special_character, - STATE(2451), 1, - aux_sym__literal_repeat1, - STATE(2983), 1, - sym__expression, - STATE(6937), 1, - sym__test_command_binary_expression, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1131), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1133), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1139), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2361), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [82785] = 27, - ACTIONS(71), 1, - sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1147), 1, - sym_word, - ACTIONS(1149), 1, - anon_sym_BANG, - ACTIONS(1155), 1, - anon_sym_TILDE, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1161), 1, - sym_test_operator, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - ACTIONS(5897), 1, - sym__regex_no_space, - STATE(2312), 1, - aux_sym__literal_repeat1, - STATE(2962), 1, - sym__expression, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1151), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1153), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1159), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2381), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [82884] = 5, + [75431] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5937), 1, - sym__special_character, - STATE(1827), 1, - aux_sym__literal_repeat1, - ACTIONS(5186), 6, + ACTIONS(1286), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5184), 35, + ACTIONS(1284), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -148151,6 +138229,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, @@ -148163,7 +138242,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, @@ -148177,17 +138258,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [82939] = 3, + [75482] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 6, - sym_file_descriptor, + ACTIONS(5062), 1, + aux_sym_concatenation_token1, + ACTIONS(5064), 1, sym__concat, + STATE(1631), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4897), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 37, + ACTIONS(4895), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -148197,6 +138282,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, @@ -148207,10 +138293,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, @@ -148225,16 +138309,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [82990] = 3, + [75539] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 5, + ACTIONS(1254), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 38, + ACTIONS(1252), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -148273,17 +138357,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [83041] = 3, + [75590] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, + ACTIONS(1290), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 37, + ACTIONS(1288), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -148293,6 +138376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -148303,7 +138387,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -148320,28 +138403,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, - [83092] = 3, + [75641] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 6, + ACTIONS(5108), 1, + sym_variable_name, + STATE(6370), 1, + sym_subscript, + ACTIONS(3939), 2, sym_file_descriptor, - sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(3944), 2, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 37, - anon_sym_SEMI, + STATE(737), 2, + sym_file_redirect, + sym_heredoc_redirect, + STATE(4856), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3937), 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, @@ -148351,10 +138441,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + ACTIONS(3935), 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, @@ -148369,16 +138459,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [83143] = 3, + [75704] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 5, + ACTIONS(1286), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 38, + ACTIONS(1284), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -148400,9 +138490,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, @@ -148417,16 +138507,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [83194] = 3, + [75755] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 5, + ACTIONS(1274), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 38, + ACTIONS(1272), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -148436,8 +138526,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, @@ -148447,7 +138538,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, @@ -148465,32 +138555,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [83245] = 6, + [75806] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4959), 1, + ACTIONS(5062), 1, aux_sym_concatenation_token1, - ACTIONS(5951), 1, + ACTIONS(5064), 1, sym__concat, - STATE(994), 1, + STATE(1631), 1, aux_sym_concatenation_repeat1, - ACTIONS(1229), 5, + ACTIONS(4491), 4, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 35, + ACTIONS(4489), 36, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -148499,7 +138590,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -148516,32 +138606,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [83302] = 6, + [75863] = 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(1250), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 35, + ACTIONS(1248), 38, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -148550,9 +138637,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 +138654,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [83359] = 3, + [75914] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, + ACTIONS(5113), 1, + sym__special_character, + STATE(1693), 1, + aux_sym__literal_repeat1, + ACTIONS(4491), 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), 37, + ACTIONS(4489), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -148587,6 +138677,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, @@ -148600,9 +138691,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, @@ -148615,7 +138704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [83410] = 27, + [75969] = 27, ACTIONS(71), 1, sym_comment, ACTIONS(256), 1, @@ -148628,56 +138717,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(1099), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(1109), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1127), 1, + ACTIONS(1151), 1, sym_word, - ACTIONS(1129), 1, + ACTIONS(1153), 1, anon_sym_BANG, - ACTIONS(1135), 1, + ACTIONS(1159), 1, anon_sym_TILDE, - ACTIONS(1141), 1, + ACTIONS(1165), 1, sym_test_operator, - ACTIONS(5755), 1, + ACTIONS(4951), 1, anon_sym_BQUOTE, - ACTIONS(5890), 1, + ACTIONS(5042), 1, sym__special_character, - STATE(2451), 1, + STATE(2398), 1, aux_sym__literal_repeat1, - STATE(3006), 1, + STATE(2837), 1, sym__expression, - STATE(7112), 1, + STATE(6650), 1, sym__test_command_binary_expression, - ACTIONS(1125), 2, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1131), 2, + ACTIONS(1155), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1133), 2, + ACTIONS(1157), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1139), 2, + ACTIONS(1163), 2, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, + STATE(2394), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2361), 9, + STATE(2227), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -148687,16 +138776,17 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [83509] = 3, + [76068] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 5, + ACTIONS(1290), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 38, + ACTIONS(1288), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -148706,7 +138796,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, @@ -148717,7 +138806,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -148734,17 +138822,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, - [83560] = 3, + [76119] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 5, + ACTIONS(1294), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 38, + ACTIONS(1292), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -148765,7 +138854,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, @@ -148782,29 +138870,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, - [83611] = 3, + [76170] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, - sym_file_descriptor, + ACTIONS(4426), 1, + aux_sym_concatenation_token1, + ACTIONS(5118), 1, sym__concat, + STATE(1001), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 37, - anon_sym_SEMI, + ACTIONS(1207), 35, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -148816,7 +138909,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, @@ -148831,100 +138923,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, 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, + [76227] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 5, - sym_file_descriptor, + ACTIONS(4426), 1, + aux_sym_concatenation_token1, + ACTIONS(5120), 1, sym__concat, + STATE(1001), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 38, - anon_sym_SEMI, + ACTIONS(1213), 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, @@ -148936,7 +138960,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, @@ -148951,21 +138974,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [83812] = 5, + [76284] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5955), 1, - sym__special_character, - STATE(1868), 1, - aux_sym__literal_repeat1, - ACTIONS(5689), 6, + ACTIONS(1231), 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(1229), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -148976,6 +138994,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, @@ -148989,6 +139009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -149001,16 +139022,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [83867] = 3, + [76335] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 5, + ACTIONS(1266), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 38, + ACTIONS(1264), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -149020,8 +139041,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, @@ -149031,7 +139053,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, @@ -149049,7 +139070,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [83918] = 27, + [76386] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(1651), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5122), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1219), 15, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1221), 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, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [76441] = 27, ACTIONS(71), 1, sym_comment, ACTIONS(256), 1, @@ -149062,56 +139133,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(1099), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(1109), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1127), 1, + ACTIONS(1151), 1, sym_word, - ACTIONS(1129), 1, + ACTIONS(1153), 1, anon_sym_BANG, - ACTIONS(1135), 1, + ACTIONS(1159), 1, anon_sym_TILDE, - ACTIONS(1141), 1, + ACTIONS(1165), 1, sym_test_operator, - ACTIONS(5755), 1, + ACTIONS(4951), 1, anon_sym_BQUOTE, - ACTIONS(5890), 1, + ACTIONS(5042), 1, sym__special_character, - STATE(2451), 1, + STATE(2398), 1, aux_sym__literal_repeat1, - STATE(2812), 1, + STATE(2721), 1, sym__expression, - STATE(7319), 1, + STATE(6969), 1, sym__test_command_binary_expression, - ACTIONS(1125), 2, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1131), 2, + ACTIONS(1155), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1133), 2, + ACTIONS(1157), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1139), 2, + ACTIONS(1163), 2, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, + STATE(2394), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2361), 9, + STATE(2227), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -149121,21 +139192,16 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [84017] = 5, + [76540] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5955), 1, - sym__special_character, - STATE(1868), 1, - aux_sym__literal_repeat1, - ACTIONS(4282), 6, + ACTIONS(4453), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 35, + ACTIONS(4451), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -149146,6 +139212,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -149155,107 +139223,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, - 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, - [84072] = 6, - 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, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 36, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [84129] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1262), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 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, @@ -149269,8 +139238,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, - [84180] = 27, + [76591] = 27, ACTIONS(71), 1, sym_comment, ACTIONS(256), 1, @@ -149283,56 +139253,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(1099), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(1109), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1127), 1, + ACTIONS(1167), 1, sym_word, - ACTIONS(1129), 1, + ACTIONS(1169), 1, anon_sym_BANG, - ACTIONS(1135), 1, + ACTIONS(1175), 1, anon_sym_TILDE, - ACTIONS(1141), 1, + ACTIONS(1177), 1, + sym__special_character, + ACTIONS(1181), 1, sym_test_operator, - ACTIONS(5755), 1, + ACTIONS(4951), 1, anon_sym_BQUOTE, - ACTIONS(5890), 1, - sym__special_character, - STATE(2451), 1, + ACTIONS(5097), 1, + sym__regex_no_space, + STATE(2197), 1, aux_sym__literal_repeat1, - STATE(2819), 1, + STATE(3096), 1, sym__expression, - STATE(7372), 1, - sym__test_command_binary_expression, - ACTIONS(1125), 2, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1131), 2, + ACTIONS(1171), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1133), 2, + ACTIONS(1173), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1139), 2, + ACTIONS(1179), 2, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, + STATE(2394), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2361), 9, + STATE(2444), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -149342,17 +139312,77 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [84279] = 3, + [76690] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(5108), 1, + sym_variable_name, + ACTIONS(5127), 1, + aux_sym_heredoc_redirect_token1, + STATE(6370), 1, + sym_subscript, + ACTIONS(2782), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3937), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5125), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(737), 2, + sym_file_redirect, + sym_heredoc_redirect, + STATE(4856), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3944), 3, sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(3935), 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, + [76757] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5062), 1, + aux_sym_concatenation_token1, + ACTIONS(5064), 1, sym__concat, + STATE(1664), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4901), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 37, + ACTIONS(4899), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -149362,6 +139392,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, @@ -149372,10 +139403,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, @@ -149390,17 +139419,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [84330] = 3, + [76814] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, + ACTIONS(5113), 1, + sym__special_character, + STATE(1693), 1, + aux_sym__literal_repeat1, + ACTIONS(4006), 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(4004), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -149410,6 +139442,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, @@ -149423,9 +139456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -149438,17 +139469,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [84381] = 3, + [76869] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(1294), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 37, + ACTIONS(1292), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -149459,6 +139489,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, @@ -149468,7 +139500,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, @@ -149486,16 +139517,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [84432] = 3, + [76920] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 5, + ACTIONS(1310), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 38, + ACTIONS(1308), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -149505,7 +139537,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, @@ -149516,7 +139547,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, @@ -149533,8 +139563,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, - [84483] = 27, + [76971] = 27, ACTIONS(71), 1, sym_comment, ACTIONS(256), 1, @@ -149547,56 +139578,200 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(1099), 1, anon_sym_LPAREN, + ACTIONS(1101), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1103), 1, + anon_sym_DOLLAR_LBRACK, ACTIONS(1109), 1, + anon_sym_DQUOTE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1115), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1151), 1, + sym_word, + ACTIONS(1153), 1, + anon_sym_BANG, + ACTIONS(1159), 1, + anon_sym_TILDE, + ACTIONS(1165), 1, + sym_test_operator, + ACTIONS(4951), 1, + anon_sym_BQUOTE, + ACTIONS(5042), 1, + sym__special_character, + STATE(2398), 1, + aux_sym__literal_repeat1, + STATE(2675), 1, + sym__expression, + STATE(6742), 1, + sym__test_command_binary_expression, + ACTIONS(1117), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1155), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1157), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1163), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2394), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2227), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [77070] = 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(1099), 1, + anon_sym_LPAREN, + ACTIONS(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(1109), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1127), 1, + ACTIONS(1151), 1, sym_word, - ACTIONS(1129), 1, + ACTIONS(1153), 1, anon_sym_BANG, - ACTIONS(1135), 1, + ACTIONS(1159), 1, anon_sym_TILDE, - ACTIONS(1141), 1, + ACTIONS(1165), 1, sym_test_operator, - ACTIONS(5755), 1, + ACTIONS(4951), 1, anon_sym_BQUOTE, - ACTIONS(5890), 1, + ACTIONS(5042), 1, sym__special_character, - STATE(2451), 1, + STATE(2398), 1, aux_sym__literal_repeat1, - STATE(2825), 1, + STATE(2805), 1, sym__expression, - STATE(6817), 1, + STATE(6847), 1, sym__test_command_binary_expression, - ACTIONS(1125), 2, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1131), 2, + ACTIONS(1155), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1133), 2, + ACTIONS(1157), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1139), 2, + ACTIONS(1163), 2, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, + STATE(2394), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2361), 9, + STATE(2227), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [77169] = 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(1099), 1, + anon_sym_LPAREN, + ACTIONS(1101), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1103), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1109), 1, + anon_sym_DQUOTE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1115), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1151), 1, + sym_word, + ACTIONS(1153), 1, + anon_sym_BANG, + ACTIONS(1159), 1, + anon_sym_TILDE, + ACTIONS(1165), 1, + sym_test_operator, + ACTIONS(4951), 1, + anon_sym_BQUOTE, + ACTIONS(5042), 1, + sym__special_character, + STATE(2398), 1, + aux_sym__literal_repeat1, + STATE(2844), 1, + sym__expression, + STATE(7010), 1, + sym__test_command_binary_expression, + ACTIONS(1117), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1155), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1157), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1163), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2394), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2227), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -149606,22 +139781,71 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [84582] = 6, + [77268] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5899), 1, + ACTIONS(5113), 1, + sym__special_character, + STATE(1693), 1, + aux_sym__literal_repeat1, + ACTIONS(4483), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4481), 36, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [77323] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5062), 1, aux_sym_concatenation_token1, - ACTIONS(5916), 1, + ACTIONS(5129), 1, sym__concat, - STATE(1895), 1, + STATE(1669), 1, aux_sym_concatenation_repeat1, - ACTIONS(5132), 5, + ACTIONS(1215), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 35, + ACTIONS(1213), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -149631,6 +139855,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, @@ -149657,22 +139882,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [84639] = 6, + [77380] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5899), 1, - aux_sym_concatenation_token1, - ACTIONS(5916), 1, + ACTIONS(1270), 5, + sym_file_descriptor, sym__concat, - STATE(1711), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5136), 5, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1268), 38, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + [77431] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1274), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5134), 35, + ACTIONS(1272), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -149694,6 +139962,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 +139976,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, - [84696] = 5, + [77482] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5959), 1, - sym__special_character, - STATE(1843), 1, - aux_sym__literal_repeat1, - ACTIONS(5389), 4, + ACTIONS(4955), 1, + aux_sym_concatenation_token1, + ACTIONS(4957), 1, + sym__concat, + STATE(1588), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1231), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5387), 37, + ACTIONS(1229), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -149731,8 +140003,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, @@ -149745,6 +140015,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, @@ -149758,16 +140029,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [84751] = 3, + [77539] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4313), 5, + ACTIONS(4967), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 38, + ACTIONS(4965), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -149806,21 +140077,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [84802] = 5, + [77590] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5955), 1, - sym__special_character, - STATE(1868), 1, - aux_sym__literal_repeat1, - ACTIONS(5132), 6, + ACTIONS(5131), 1, + aux_sym_concatenation_token1, + ACTIONS(5134), 1, + sym__concat, + STATE(1669), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1221), 4, 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(1219), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -149830,6 +140101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -149840,10 +140112,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, @@ -149856,16 +140128,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [84857] = 3, + [77647] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 5, + ACTIONS(1298), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 38, + ACTIONS(1296), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -149886,7 +140158,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -149903,89 +140174,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, - [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, + [77698] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 5, + ACTIONS(1274), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 38, + ACTIONS(1272), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -150006,7 +140206,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, @@ -150023,17 +140222,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, - [85058] = 3, + [77749] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 5, + ACTIONS(1262), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 38, + ACTIONS(1260), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -150043,8 +140243,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, @@ -150054,7 +140255,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, @@ -150072,16 +140272,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [85109] = 3, + [77800] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 5, + ACTIONS(4971), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 38, + ACTIONS(4969), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -150091,8 +140291,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, @@ -150105,7 +140306,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, @@ -150120,44 +140320,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [85160] = 5, + [77851] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5955), 1, - sym__special_character, - STATE(1868), 1, - aux_sym__literal_repeat1, - ACTIONS(5563), 6, + ACTIONS(4935), 2, sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3944), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 35, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + ACTIONS(3935), 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, @@ -150170,16 +140348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [85215] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1258), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 38, + ACTIONS(4933), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -150189,8 +140358,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, @@ -150200,37 +140370,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_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [85266] = 5, + [77906] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5961), 1, + ACTIONS(5113), 1, sym__special_character, - STATE(1811), 1, + STATE(1693), 1, aux_sym__literal_repeat1, - ACTIONS(1318), 4, + ACTIONS(4449), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 37, + ACTIONS(4447), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -150240,10 +140393,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, @@ -150253,6 +140404,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, @@ -150268,16 +140420,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [85321] = 3, + [77961] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 5, - sym_file_descriptor, + ACTIONS(5062), 1, + aux_sym_concatenation_token1, + ACTIONS(5064), 1, sym__concat, + STATE(1664), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4495), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 38, + ACTIONS(4493), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -150298,10 +140455,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, @@ -150316,35 +140471,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [85372] = 5, - ACTIONS(3), 1, + [78018] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(5858), 2, + STATE(1572), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5060), 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, 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_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, + [78073] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5066), 1, + aux_sym_concatenation_token1, + ACTIONS(5137), 1, + sym__concat, + STATE(1710), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 5, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1207), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -150355,8 +140547,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, @@ -150366,20 +140556,104 @@ 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, - ACTIONS(3), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [78130] = 27, + ACTIONS(71), 1, sym_comment, - ACTIONS(5909), 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(1099), 1, + anon_sym_LPAREN, + ACTIONS(1101), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1103), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1107), 1, sym__special_character, - STATE(1870), 1, + ACTIONS(1109), 1, + anon_sym_DQUOTE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1115), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4951), 1, + anon_sym_BQUOTE, + ACTIONS(5097), 1, + sym__regex_no_space, + STATE(2197), 1, aux_sym__literal_repeat1, - ACTIONS(5132), 5, + STATE(2669), 1, + sym__expression, + ACTIONS(101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1111), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1117), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2394), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2268), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [78229] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 36, + ACTIONS(1308), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -150389,8 +140663,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, @@ -150400,10 +140675,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, @@ -150416,28 +140692,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [85482] = 3, + [78280] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, + ACTIONS(5108), 1, + sym_variable_name, + ACTIONS(5139), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 38, - anon_sym_SEMI, + STATE(6370), 1, + sym_subscript, + ACTIONS(2782), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3937), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5125), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + STATE(737), 2, + sym_file_redirect, + sym_heredoc_redirect, + STATE(4856), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3944), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(3935), 27, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -150445,11 +140731,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, @@ -150464,16 +140748,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [85533] = 3, + [78347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 5, + ACTIONS(1254), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 38, + ACTIONS(1252), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -150483,7 +140768,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, @@ -150494,7 +140778,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, @@ -150511,29 +140794,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, - [85584] = 3, + [78398] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 5, - sym_file_descriptor, + ACTIONS(4426), 1, + aux_sym_concatenation_token1, + ACTIONS(4428), 1, sym__concat, + STATE(1647), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4047), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 38, - anon_sym_SEMI, + ACTIONS(4045), 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, @@ -150545,7 +140833,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,32 +140847,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [85635] = 5, + [78455] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5955), 1, - sym__special_character, - STATE(1868), 1, - aux_sym__literal_repeat1, - ACTIONS(4309), 6, + ACTIONS(4426), 1, + aux_sym_concatenation_token1, + ACTIONS(4428), 1, + sym__concat, + STATE(1648), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4117), 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(4307), 35, - anon_sym_SEMI, + ACTIONS(4115), 35, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -150598,6 +140885,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, @@ -150610,21 +140898,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [85690] = 5, + [78512] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5955), 1, + ACTIONS(5074), 1, sym__special_character, - STATE(1868), 1, + STATE(1633), 1, aux_sym__literal_repeat1, - ACTIONS(5266), 6, + ACTIONS(4006), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 35, + ACTIONS(4004), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -150660,20 +140948,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [85745] = 5, + [78567] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5964), 1, - sym__special_character, - STATE(1892), 1, - aux_sym__literal_repeat1, - ACTIONS(5186), 5, + ACTIONS(1221), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5184), 36, + ACTIONS(1219), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -150683,8 +140967,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, @@ -150696,7 +140981,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, @@ -150708,18 +140995,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, - [85800] = 3, + [78618] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(4487), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 38, + ACTIONS(4485), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -150729,8 +141015,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, @@ -150743,7 +141030,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, @@ -150758,16 +141044,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [85851] = 3, + [78669] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 5, + ACTIONS(3915), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 38, + ACTIONS(3913), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -150777,8 +141063,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, @@ -150791,7 +141078,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, @@ -150806,33 +141092,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [85902] = 7, + [78720] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(4426), 1, + aux_sym_concatenation_token1, + ACTIONS(4428), 1, + sym__concat, + STATE(1647), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3956), 5, sym_file_descriptor, - ACTIONS(5872), 3, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(5862), 11, - anon_sym_SEMI, + aux_sym_heredoc_redirect_token1, + ACTIONS(3954), 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_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - 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, @@ -150840,8 +141125,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, @@ -150858,33 +141143,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [85961] = 7, + [78777] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(4426), 1, + aux_sym_concatenation_token1, + ACTIONS(4428), 1, + sym__concat, + STATE(1648), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4121), 5, sym_file_descriptor, - ACTIONS(5872), 3, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(5862), 11, - anon_sym_SEMI, + aux_sym_heredoc_redirect_token1, + ACTIONS(4119), 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_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - 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, @@ -150892,8 +141176,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, @@ -150910,66 +141194,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [86020] = 5, - ACTIONS(3), 1, + [78834] = 27, + ACTIONS(71), 1, sym_comment, - ACTIONS(5909), 1, - sym__special_character, - STATE(1870), 1, - aux_sym__literal_repeat1, - ACTIONS(5689), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, + aux_sym_number_token1, + ACTIONS(264), 1, + aux_sym_number_token2, + ACTIONS(268), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 36, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(1099), 1, + anon_sym_LPAREN, + ACTIONS(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + ACTIONS(1109), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1151), 1, + sym_word, + ACTIONS(1153), 1, + anon_sym_BANG, + ACTIONS(1159), 1, + anon_sym_TILDE, + ACTIONS(1165), 1, + sym_test_operator, + ACTIONS(4951), 1, + anon_sym_BQUOTE, + ACTIONS(5042), 1, + sym__special_character, + STATE(2398), 1, + aux_sym__literal_repeat1, + STATE(2778), 1, + sym__expression, + STATE(6536), 1, + sym__test_command_binary_expression, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [86075] = 3, + ACTIONS(1155), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1157), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1163), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2394), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2227), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [78933] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(1298), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 38, + ACTIONS(1296), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -150979,8 +141285,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, @@ -150990,7 +141297,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,21 +141314,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [86126] = 5, + [78984] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5966), 1, + ACTIONS(5141), 1, sym__special_character, - STATE(1827), 1, + STATE(1693), 1, aux_sym__literal_repeat1, - ACTIONS(1318), 6, + ACTIONS(1318), 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(1316), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -151032,6 +141337,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, @@ -151042,6 +141348,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, @@ -151056,22 +141363,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, - [86181] = 5, + [79039] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5964), 1, - sym__special_character, - STATE(1892), 1, - aux_sym__literal_repeat1, - ACTIONS(5266), 5, + ACTIONS(4967), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 36, + ACTIONS(4965), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -151081,8 +141383,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, @@ -151095,6 +141398,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, @@ -151108,16 +141412,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [86236] = 3, + [79090] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 5, + ACTIONS(1314), 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), 38, + ACTIONS(1312), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -151128,8 +141433,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, @@ -151141,6 +141444,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, @@ -151156,16 +141460,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [86287] = 3, + [79141] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 5, - sym_file_descriptor, + ACTIONS(5062), 1, + aux_sym_concatenation_token1, + ACTIONS(5064), 1, sym__concat, + STATE(1631), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4483), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 38, + ACTIONS(4481), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -151175,9 +141484,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, @@ -151189,7 +141497,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, @@ -151204,16 +141511,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [86338] = 3, + [79198] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 5, + ACTIONS(1278), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 38, + ACTIONS(1276), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -151224,8 +141532,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, @@ -151251,29 +141557,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, - [86389] = 3, + [79249] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 5, - sym_file_descriptor, + ACTIONS(4426), 1, + aux_sym_concatenation_token1, + ACTIONS(4428), 1, sym__concat, + STATE(1647), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4125), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 38, - anon_sym_SEMI, + ACTIONS(4123), 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, @@ -151282,9 +141593,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 +141609,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, - [86440] = 3, + [79306] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2162), 5, + ACTIONS(4426), 1, + aux_sym_concatenation_token1, + ACTIONS(4428), 1, + sym__concat, + STATE(1648), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3915), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 38, - anon_sym_SEMI, + ACTIONS(3913), 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, @@ -151348,32 +141661,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [86491] = 5, + [79363] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5909), 1, - sym__special_character, - STATE(1870), 1, - aux_sym__literal_repeat1, - ACTIONS(4282), 5, + ACTIONS(4426), 1, + aux_sym_concatenation_token1, + ACTIONS(4428), 1, + sym__concat, + STATE(1647), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4006), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 36, - anon_sym_SEMI, + ACTIONS(4004), 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, @@ -151386,6 +141699,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, @@ -151398,29 +141712,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [86546] = 3, + [79420] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5707), 5, + ACTIONS(4426), 1, + aux_sym_concatenation_token1, + ACTIONS(4428), 1, + sym__concat, + STATE(1648), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4010), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5705), 38, - anon_sym_SEMI, + ACTIONS(4008), 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, @@ -151429,6 +141746,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, @@ -151444,30 +141762,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, - [86597] = 3, + [79477] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 5, - sym_file_descriptor, + ACTIONS(4426), 1, + aux_sym_concatenation_token1, + ACTIONS(4428), 1, sym__concat, + STATE(1647), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1231), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 38, - anon_sym_SEMI, + ACTIONS(1229), 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, @@ -151476,9 +141797,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, @@ -151492,18 +141813,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, - [86648] = 3, + [79534] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5888), 5, + ACTIONS(1258), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5886), 38, + ACTIONS(1256), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -151525,9 +141845,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, @@ -151542,28 +141862,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [86699] = 3, + [79585] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 6, + ACTIONS(5027), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5029), 1, sym_file_descriptor, - sym__concat, + ACTIONS(5032), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 37, + ACTIONS(5022), 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, + ACTIONS(5024), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -151571,10 +141896,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5020), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -151588,18 +141913,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, - [86750] = 3, + [79644] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 5, + ACTIONS(4971), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 38, + ACTIONS(4969), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -151623,7 +141947,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, @@ -151637,29 +141960,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, - [86801] = 3, + [79695] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 6, + ACTIONS(5027), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5029), 1, sym_file_descriptor, - sym__concat, + ACTIONS(5032), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 37, + ACTIONS(5022), 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, + ACTIONS(5024), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -151667,10 +141996,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5020), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -151684,19 +142013,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, - [86852] = 3, + [79754] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 6, + ACTIONS(1270), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 37, + ACTIONS(1268), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -151707,6 +142034,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, @@ -151732,19 +142061,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, - [86903] = 3, + [79805] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 6, + ACTIONS(4495), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 37, + ACTIONS(4493), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -151755,6 +142082,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, @@ -151764,9 +142093,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, @@ -151780,21 +142109,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, - [86954] = 5, + [79856] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5969), 1, + ACTIONS(5078), 1, sym__special_character, - STATE(1843), 1, + STATE(1615), 1, aux_sym__literal_repeat1, - ACTIONS(1318), 4, + ACTIONS(4449), 6, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 37, + ACTIONS(4447), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -151805,8 +142135,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, @@ -151832,17 +142160,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [87009] = 3, + [79911] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, - sym_file_descriptor, + ACTIONS(5144), 1, + aux_sym_concatenation_token1, + ACTIONS(5147), 1, sym__concat, + STATE(1710), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1221), 5, + sym_file_descriptor, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 37, + ACTIONS(1219), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -151864,7 +142197,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, @@ -151878,19 +142210,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [87060] = 3, + [79968] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 6, + ACTIONS(1302), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 37, + ACTIONS(1300), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -151900,6 +142230,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, @@ -151928,16 +142259,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [87111] = 3, + [80019] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 5, + ACTIONS(1306), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 38, + ACTIONS(1304), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -151947,9 +142278,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, @@ -151975,18 +142305,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, - [87162] = 3, + [80070] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, + ACTIONS(5074), 1, + sym__special_character, + STATE(1633), 1, + aux_sym__literal_repeat1, + ACTIONS(4491), 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(4489), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -152006,11 +142341,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, @@ -152022,19 +142356,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [87213] = 3, + [80125] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 6, + ACTIONS(1302), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 37, + ACTIONS(1300), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -152044,6 +142376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -152072,72 +142405,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [87264] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5972), 1, - aux_sym_concatenation_token1, - ACTIONS(5974), 1, - sym__concat, - STATE(1878), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1227), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1229), 25, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [87321] = 6, + [80176] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5933), 1, + ACTIONS(5066), 1, aux_sym_concatenation_token1, - ACTIONS(5957), 1, + ACTIONS(5068), 1, sym__concat, - STATE(1753), 1, + STATE(1678), 1, aux_sym_concatenation_repeat1, - ACTIONS(5132), 4, + ACTIONS(4483), 5, sym_file_descriptor, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 36, + ACTIONS(4481), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -152147,7 +142430,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, @@ -152174,21 +142456,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [87378] = 6, + [80233] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5933), 1, - aux_sym_concatenation_token1, - ACTIONS(5957), 1, - sym__concat, - STATE(1757), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5136), 4, + ACTIONS(1231), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5134), 36, + ACTIONS(1229), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -152198,8 +142475,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, @@ -152224,18 +142502,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, - [87435] = 3, + [80284] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, + ACTIONS(1231), 4, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 37, + ACTIONS(1229), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -152245,7 +142522,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, @@ -152257,7 +142537,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, @@ -152273,17 +142552,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [87486] = 3, + [80335] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 6, + ACTIONS(1286), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 37, + ACTIONS(1284), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -152321,17 +142600,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [87537] = 3, + [80386] = 27, + ACTIONS(71), 1, + sym_comment, + ACTIONS(577), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(579), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(583), 1, + anon_sym_DOLLAR, + ACTIONS(587), 1, + anon_sym_DQUOTE, + ACTIONS(591), 1, + aux_sym_number_token1, + ACTIONS(593), 1, + aux_sym_number_token2, + ACTIONS(595), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(601), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(607), 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(4667), 1, + anon_sym_BQUOTE, + ACTIONS(4927), 1, + sym__special_character, + ACTIONS(5150), 1, + sym__regex_no_space, + STATE(2299), 1, + aux_sym__literal_repeat1, + STATE(2583), 1, + sym__expression, + ACTIONS(603), 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(2556), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2196), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [80485] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 6, + ACTIONS(4487), 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(4485), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -152351,9 +142702,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, @@ -152367,18 +142718,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, - [87588] = 3, + [80535] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 5, + ACTIONS(5152), 1, + sym__special_character, + STATE(1853), 1, + aux_sym__literal_repeat1, + ACTIONS(4780), 5, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 38, + ACTIONS(4778), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -152388,7 +142742,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, @@ -152401,9 +142754,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, @@ -152417,17 +142768,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [87639] = 3, + [80589] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(185), 1, + anon_sym_TILDE, + ACTIONS(566), 1, + sym_word, + ACTIONS(573), 1, + anon_sym_LPAREN, + ACTIONS(575), 1, + anon_sym_BANG, + ACTIONS(577), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(579), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(583), 1, + anon_sym_DOLLAR, + ACTIONS(587), 1, + anon_sym_DQUOTE, + ACTIONS(591), 1, + aux_sym_number_token1, + ACTIONS(593), 1, + aux_sym_number_token2, + ACTIONS(595), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(601), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(605), 1, + sym_test_operator, + ACTIONS(607), 1, + sym__brace_start, + ACTIONS(4667), 1, + anon_sym_BQUOTE, + ACTIONS(4959), 1, + sym__special_character, + STATE(2414), 1, + aux_sym__literal_repeat1, + STATE(2768), 1, + sym__expression, + ACTIONS(181), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(183), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(589), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(603), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2702), 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, + [80685] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 6, + ACTIONS(1258), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 37, + ACTIONS(1256), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -152463,19 +142884,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, - [87690] = 3, + [80735] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, + ACTIONS(1221), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 37, + ACTIONS(1219), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -152511,66 +142931,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, - [87741] = 3, - ACTIONS(3), 1, + [80785] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1310), 5, + ACTIONS(1268), 15, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1270), 27, sym_file_descriptor, sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 38, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_LPAREN, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [87792] = 3, + [80835] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 5, + ACTIONS(1310), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 38, + ACTIONS(1308), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -152580,7 +142999,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, @@ -152607,67 +143025,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, - [87843] = 3, - ACTIONS(3), 1, + [80885] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1250), 6, + ACTIONS(1272), 15, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1274), 27, sym_file_descriptor, sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 37, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, + anon_sym_LPAREN, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [87894] = 3, + [80935] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, + ACTIONS(1254), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 37, + ACTIONS(1252), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -152703,19 +143119,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, - [87945] = 3, + [80985] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(1270), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 37, + ACTIONS(1268), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -152751,19 +143166,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, - [87996] = 3, + [81035] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, + ACTIONS(4453), 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(4451), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -152785,7 +143199,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, @@ -152801,17 +143214,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [88047] = 3, + [81085] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(1274), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 37, + ACTIONS(1272), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -152847,66 +143260,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, - [88098] = 22, + [81135] = 26, 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, + ACTIONS(256), 1, anon_sym_DOLLAR, - ACTIONS(5988), 1, - sym__special_character, - ACTIONS(5991), 1, - anon_sym_DQUOTE, - ACTIONS(5997), 1, + ACTIONS(262), 1, aux_sym_number_token1, - ACTIONS(6000), 1, + ACTIONS(264), 1, aux_sym_number_token2, - ACTIONS(6003), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6006), 1, + ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6009), 1, - anon_sym_BQUOTE, - ACTIONS(6012), 1, + ACTIONS(282), 1, + sym__brace_start, + ACTIONS(1099), 1, + anon_sym_LPAREN, + ACTIONS(1101), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1103), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1109), 1, + anon_sym_DQUOTE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6018), 1, + ACTIONS(1135), 1, + sym_word, + ACTIONS(1137), 1, + anon_sym_BANG, + ACTIONS(1143), 1, + anon_sym_TILDE, + ACTIONS(1145), 1, + sym__special_character, + ACTIONS(1149), 1, sym_test_operator, - ACTIONS(6021), 1, - sym__brace_start, - STATE(3442), 1, + ACTIONS(4951), 1, + anon_sym_BQUOTE, + STATE(2197), 1, aux_sym__literal_repeat1, - ACTIONS(5994), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6015), 2, + STATE(2793), 1, + sym__expression, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1865), 2, + ACTIONS(1139), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1141), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1147), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2394), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2167), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(2169), 8, - sym_file_descriptor, - sym_variable_name, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - STATE(3373), 9, + STATE(2298), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -152916,352 +143331,287 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [88187] = 3, - ACTIONS(3), 1, + [81231] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(1258), 6, - sym_file_descriptor, - sym__concat, - sym_test_operator, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, + aux_sym_number_token1, + ACTIONS(264), 1, + aux_sym_number_token2, + ACTIONS(268), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 37, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_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(1099), 1, + anon_sym_LPAREN, + ACTIONS(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1109), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1135), 1, + sym_word, + ACTIONS(1137), 1, + anon_sym_BANG, + ACTIONS(1143), 1, + anon_sym_TILDE, + ACTIONS(1145), 1, + sym__special_character, + ACTIONS(1149), 1, + sym_test_operator, + ACTIONS(4951), 1, + anon_sym_BQUOTE, + STATE(2197), 1, + aux_sym__literal_repeat1, + STATE(2815), 1, + sym__expression, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [88238] = 5, + ACTIONS(1139), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1141), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1147), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2394), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2298), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [81327] = 26, ACTIONS(71), 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, + ACTIONS(256), 1, 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(276), 25, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, + ACTIONS(282), 1, sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, + ACTIONS(1099), 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(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - sym__special_character, + ACTIONS(1109), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [88293] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6024), 1, + ACTIONS(1135), 1, + sym_word, + ACTIONS(1137), 1, + anon_sym_BANG, + ACTIONS(1143), 1, + anon_sym_TILDE, + ACTIONS(1145), 1, sym__special_character, - STATE(1868), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 6, - sym_file_descriptor, - sym_variable_name, + ACTIONS(1149), 1, 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, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_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, - anon_sym_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(4951), 1, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, + STATE(2197), 1, + aux_sym__literal_repeat1, + STATE(2816), 1, + sym__expression, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [88348] = 6, + ACTIONS(1139), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1141), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1147), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2394), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2298), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [81423] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(5972), 1, - aux_sym_concatenation_token1, - ACTIONS(6027), 1, - sym__concat, - STATE(1878), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1207), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - 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(1209), 25, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, + ACTIONS(282), 1, sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, + ACTIONS(1099), 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(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - sym__special_character, + ACTIONS(1109), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [88405] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6029), 1, + ACTIONS(1135), 1, + sym_word, + ACTIONS(1137), 1, + anon_sym_BANG, + ACTIONS(1143), 1, + anon_sym_TILDE, + ACTIONS(1145), 1, sym__special_character, - STATE(1870), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 5, - sym_file_descriptor, - sym_variable_name, + ACTIONS(1149), 1, sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 36, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - anon_sym_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(4951), 1, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, + STATE(2197), 1, + aux_sym__literal_repeat1, + STATE(2838), 1, + sym__expression, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [88460] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1262), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 38, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(1139), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1141), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1147), 2, sym_raw_string, sym_ansi_c_string, + STATE(2394), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2298), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [81519] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, aux_sym_number_token1, + ACTIONS(264), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, + ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [88511] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1274), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, + ACTIONS(282), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 38, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + ACTIONS(1099), 1, + anon_sym_LPAREN, + ACTIONS(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1109), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1135), 1, + sym_word, + ACTIONS(1137), 1, + anon_sym_BANG, + ACTIONS(1143), 1, + anon_sym_TILDE, + ACTIONS(1145), 1, + sym__special_character, + ACTIONS(1149), 1, + sym_test_operator, + ACTIONS(4951), 1, + anon_sym_BQUOTE, + STATE(2197), 1, + aux_sym__literal_repeat1, + STATE(2843), 1, + sym__expression, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [88562] = 27, + ACTIONS(1139), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1141), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1147), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2394), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2298), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [81615] = 26, ACTIONS(71), 1, sym_comment, ACTIONS(256), 1, @@ -153274,56 +143624,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(1099), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(1109), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1127), 1, + ACTIONS(1135), 1, sym_word, - ACTIONS(1129), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(1135), 1, + ACTIONS(1143), 1, anon_sym_TILDE, - ACTIONS(1141), 1, + ACTIONS(1145), 1, + sym__special_character, + ACTIONS(1149), 1, sym_test_operator, - ACTIONS(5755), 1, + ACTIONS(4951), 1, anon_sym_BQUOTE, - ACTIONS(5890), 1, - sym__special_character, - ACTIONS(6032), 1, - sym__regex_no_space, - STATE(2451), 1, + STATE(2197), 1, aux_sym__literal_repeat1, - STATE(2870), 1, + STATE(2849), 1, sym__expression, - ACTIONS(1125), 2, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1131), 2, + ACTIONS(1139), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1133), 2, + ACTIONS(1141), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1139), 2, + ACTIONS(1147), 2, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, + STATE(2394), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2361), 9, + STATE(2298), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -153333,213 +143681,127 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [88661] = 3, - ACTIONS(3), 1, + [81711] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(5270), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 38, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(1276), 15, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_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_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_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, - [88712] = 6, - 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(1278), 27, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5387), 36, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, + anon_sym_LPAREN, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - 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, - aux_sym__simple_variable_name_token1, - sym_word, - [88769] = 6, - ACTIONS(3), 1, + [81761] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(5733), 1, - aux_sym_concatenation_token1, - ACTIONS(5874), 1, - sym__concat, - STATE(1767), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5291), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5289), 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, + ACTIONS(256), 1, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(262), 1, aux_sym_number_token1, + ACTIONS(264), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, + ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [88826] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, + ACTIONS(282), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 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, + ACTIONS(1099), 1, + anon_sym_LPAREN, + ACTIONS(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1109), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1135), 1, + sym_word, + ACTIONS(1137), 1, + anon_sym_BANG, + ACTIONS(1143), 1, + anon_sym_TILDE, + ACTIONS(1145), 1, + sym__special_character, + ACTIONS(1149), 1, + sym_test_operator, + ACTIONS(4951), 1, + anon_sym_BQUOTE, + STATE(2197), 1, + aux_sym__literal_repeat1, + STATE(2855), 1, + sym__expression, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [88877] = 5, + ACTIONS(1139), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1141), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1147), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2394), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2298), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [81857] = 3, ACTIONS(71), 1, sym_comment, - STATE(1878), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6034), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1213), 15, + ACTIONS(1264), 15, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, @@ -153555,8 +143817,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1215), 25, + ACTIONS(1266), 27, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, @@ -153573,6 +143836,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, @@ -153581,15 +143845,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [88932] = 5, + [81907] = 3, ACTIONS(71), 1, sym_comment, - STATE(1869), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5972), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1233), 15, + ACTIONS(1248), 15, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, @@ -153605,8 +143864,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1240), 25, + ACTIONS(1250), 27, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, @@ -153623,6 +143883,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, @@ -153631,113 +143892,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [88987] = 3, - ACTIONS(3), 1, + [81957] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1266), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 38, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(1260), 15, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_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, - [89038] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1282), 5, + ACTIONS(1262), 27, sym_file_descriptor, sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 38, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, + anon_sym_LPAREN, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [89089] = 6, + [82007] = 3, ACTIONS(71), 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, + ACTIONS(1280), 15, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, @@ -153753,14 +143958,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1240), 24, + ACTIONS(1282), 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, @@ -153770,6 +143977,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, @@ -153778,7 +143986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [89146] = 27, + [82057] = 26, ACTIONS(71), 1, sym_comment, ACTIONS(256), 1, @@ -153791,56 +143999,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(1099), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(1109), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1167), 1, + ACTIONS(1135), 1, sym_word, - ACTIONS(1169), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(1175), 1, + ACTIONS(1143), 1, anon_sym_TILDE, - ACTIONS(1177), 1, + ACTIONS(1145), 1, sym__special_character, - ACTIONS(1181), 1, + ACTIONS(1149), 1, sym_test_operator, - ACTIONS(5755), 1, + ACTIONS(4951), 1, anon_sym_BQUOTE, - ACTIONS(5897), 1, - sym__regex_no_space, - STATE(2312), 1, + STATE(2197), 1, aux_sym__literal_repeat1, - STATE(3243), 1, + STATE(2676), 1, sym__expression, - ACTIONS(1125), 2, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1171), 2, + ACTIONS(1139), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1173), 2, + ACTIONS(1141), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1179), 2, + ACTIONS(1147), 2, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, + STATE(2394), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2557), 9, + STATE(2298), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -153850,15 +144056,9 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [89245] = 27, + [82153] = 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, @@ -153867,52 +144067,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(280), 1, - sym_test_operator, ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(1099), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, - sym__special_character, - ACTIONS(1117), 1, + ACTIONS(1109), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, + ACTIONS(1135), 1, + sym_word, + ACTIONS(1137), 1, + anon_sym_BANG, + ACTIONS(1143), 1, + anon_sym_TILDE, + ACTIONS(1145), 1, + sym__special_character, + ACTIONS(1149), 1, + sym_test_operator, + ACTIONS(4951), 1, anon_sym_BQUOTE, - ACTIONS(5897), 1, - sym__regex_no_space, - STATE(2312), 1, + STATE(2197), 1, aux_sym__literal_repeat1, - STATE(2910), 1, + STATE(2684), 1, sym__expression, - ACTIONS(101), 2, + ACTIONS(1117), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1139), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(103), 2, + ACTIONS(1141), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1119), 2, + ACTIONS(1147), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2518), 6, + STATE(2394), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2344), 9, + STATE(2298), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -153922,20 +144126,17 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [89344] = 5, + [82249] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5909), 1, - sym__special_character, - STATE(1870), 1, - aux_sym__literal_repeat1, - ACTIONS(5563), 5, + ACTIONS(1278), 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(5561), 36, + ACTIONS(1276), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -153945,7 +144146,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, @@ -153956,10 +144156,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, @@ -153972,15 +144173,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [89399] = 5, + [82299] = 26, ACTIONS(71), 1, sym_comment, - STATE(1849), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5972), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1223), 15, + ACTIONS(256), 1, + 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(1099), 1, + anon_sym_LPAREN, + ACTIONS(1101), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1103), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1109), 1, + anon_sym_DQUOTE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1115), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1135), 1, + sym_word, + ACTIONS(1137), 1, + anon_sym_BANG, + ACTIONS(1143), 1, + anon_sym_TILDE, + ACTIONS(1145), 1, + sym__special_character, + ACTIONS(1149), 1, + sym_test_operator, + ACTIONS(4951), 1, + anon_sym_BQUOTE, + STATE(2197), 1, + aux_sym__literal_repeat1, + STATE(2700), 1, + sym__expression, + ACTIONS(1117), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1139), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1141), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1147), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2394), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2298), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [82395] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1284), 15, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, @@ -153996,8 +144262,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1225), 25, + ACTIONS(1286), 27, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, @@ -154014,6 +144281,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, @@ -154022,66 +144290,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [89454] = 6, - ACTIONS(3), 1, + [82445] = 3, + ACTIONS(71), 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(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, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 36, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, + anon_sym_LPAREN, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [89511] = 3, + [82495] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 4, + ACTIONS(1266), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 39, + ACTIONS(1264), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -154091,10 +144357,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, @@ -154104,9 +144367,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, @@ -154121,32 +144384,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [89562] = 6, + [82545] = 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(1250), 6, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4368), 35, + ACTIONS(1248), 36, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -154155,9 +144414,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, @@ -154172,119 +144431,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [89619] = 6, - ACTIONS(3), 1, + [82595] = 3, + ACTIONS(71), 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, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4441), 35, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(1292), 15, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_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, - [89676] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1250), 5, + ACTIONS(1294), 27, sym_file_descriptor, sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 38, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, + anon_sym_LPAREN, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [89727] = 5, + [82645] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6037), 1, - sym__special_character, - STATE(1892), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 5, + ACTIONS(1262), 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(1316), 36, + ACTIONS(1260), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -154294,7 +144498,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, @@ -154307,7 +144510,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, @@ -154319,89 +144524,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, - [89782] = 6, - ACTIONS(3), 1, + [82695] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(4959), 1, - aux_sym_concatenation_token1, - ACTIONS(5138), 1, - sym__concat, - STATE(1778), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4519), 5, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4517), 35, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(1296), 15, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_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, - [89839] = 6, - 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(1298), 27, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4303), 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, @@ -154409,36 +144563,96 @@ 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, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [82745] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, aux_sym_number_token1, + ACTIONS(264), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, + ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(282), 1, + sym__brace_start, + ACTIONS(1099), 1, + anon_sym_LPAREN, + ACTIONS(1101), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1103), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1109), 1, + anon_sym_DQUOTE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1135), 1, + sym_word, + ACTIONS(1137), 1, + anon_sym_BANG, + ACTIONS(1143), 1, + anon_sym_TILDE, + ACTIONS(1145), 1, + sym__special_character, + ACTIONS(1149), 1, + sym_test_operator, + ACTIONS(4951), 1, + anon_sym_BQUOTE, + STATE(2197), 1, + aux_sym__literal_repeat1, + STATE(2707), 1, + sym__expression, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [89896] = 6, + ACTIONS(1139), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1141), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1147), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2394), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2298), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [82841] = 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(1282), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 35, + ACTIONS(1280), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -154460,6 +144674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -154474,96 +144689,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [89953] = 3, - ACTIONS(3), 1, + [82891] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(1310), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, + aux_sym_number_token1, + ACTIONS(264), 1, + aux_sym_number_token2, + ACTIONS(268), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 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(1099), 1, + anon_sym_LPAREN, + ACTIONS(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1109), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1135), 1, + sym_word, + ACTIONS(1137), 1, + anon_sym_BANG, + ACTIONS(1143), 1, + anon_sym_TILDE, + ACTIONS(1145), 1, + sym__special_character, + ACTIONS(1149), 1, + sym_test_operator, + ACTIONS(4951), 1, + anon_sym_BQUOTE, + STATE(2197), 1, + aux_sym__literal_repeat1, + STATE(2711), 1, + sym__expression, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [90004] = 27, + ACTIONS(1139), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1141), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1147), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2394), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2298), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [82987] = 26, ACTIONS(71), 1, sym_comment, ACTIONS(185), 1, anon_sym_TILDE, - ACTIONS(356), 1, + ACTIONS(566), 1, sym_word, - ACTIONS(363), 1, + ACTIONS(573), 1, anon_sym_LPAREN, - ACTIONS(365), 1, + ACTIONS(575), 1, anon_sym_BANG, - ACTIONS(367), 1, + ACTIONS(577), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, + ACTIONS(579), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, + ACTIONS(583), 1, anon_sym_DOLLAR, - ACTIONS(377), 1, + ACTIONS(587), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(591), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(593), 1, aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(595), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(597), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, + ACTIONS(601), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(395), 1, + ACTIONS(605), 1, sym_test_operator, - ACTIONS(397), 1, + ACTIONS(607), 1, sym__brace_start, - ACTIONS(5375), 1, + ACTIONS(4667), 1, anon_sym_BQUOTE, - ACTIONS(5797), 1, + ACTIONS(4959), 1, sym__special_character, - ACTIONS(6042), 1, - sym__regex_no_space, - STATE(2549), 1, + STATE(2414), 1, aux_sym__literal_repeat1, - STATE(3002), 1, + STATE(2769), 1, sym__expression, ACTIONS(181), 2, anon_sym_PLUS_PLUS2, @@ -154571,13 +144806,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(183), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(379), 2, + ACTIONS(589), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(393), 2, + ACTIONS(603), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2847), 6, + STATE(2702), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, @@ -154594,32 +144829,28 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [90103] = 6, + [83083] = 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(4282), 5, + ACTIONS(3915), 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), 35, + ACTIONS(3913), 36, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -154645,32 +144876,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [90160] = 6, + [83133] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4959), 1, - aux_sym_concatenation_token1, - ACTIONS(5138), 1, - sym__concat, - STATE(1779), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4439), 5, + ACTIONS(4487), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 35, + ACTIONS(4485), 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, @@ -154696,32 +144923,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [90217] = 6, + [83183] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4959), 1, - aux_sym_concatenation_token1, - ACTIONS(5138), 1, - sym__concat, - STATE(1778), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4309), 5, + ACTIONS(1286), 6, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 35, + ACTIONS(1284), 36, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -154730,9 +144953,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, @@ -154747,32 +144970,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [90274] = 6, + [83233] = 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(1290), 6, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 35, + ACTIONS(1288), 36, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -154781,9 +145000,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 +145017,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [90331] = 6, + [83283] = 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(1314), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 35, + ACTIONS(1312), 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, @@ -154832,9 +145047,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, @@ -154849,32 +145064,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [90388] = 5, + [83333] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6044), 1, - sym__special_character, - STATE(1721), 1, - aux_sym__literal_repeat1, - ACTIONS(5132), 4, + ACTIONS(5029), 1, sym_file_descriptor, + ACTIONS(5027), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5032), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 37, + ACTIONS(5022), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5024), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -154882,11 +145097,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(5020), 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, @@ -154899,16 +145115,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [90443] = 3, + [83391] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 5, + ACTIONS(1294), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 38, + ACTIONS(1292), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -154918,7 +145135,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, @@ -154945,22 +145161,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, + [83441] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5909), 1, - sym__special_character, - STATE(1870), 1, - aux_sym__literal_repeat1, - ACTIONS(4309), 5, + ACTIONS(1258), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 36, + ACTIONS(1256), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -154981,10 +145192,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, @@ -154997,16 +145209,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [90549] = 3, + [83491] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 5, + ACTIONS(1221), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 38, + ACTIONS(1219), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -155016,9 +145228,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, @@ -155028,9 +145239,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, @@ -155045,42 +145256,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [90600] = 8, + [83541] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(4935), 2, sym_file_descriptor, - ACTIONS(6046), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, + aux_sym_heredoc_redirect_token1, + ACTIONS(3944), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, + ACTIONS(3935), 17, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -155097,85 +145284,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [90660] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, - sym_file_descriptor, - ACTIONS(6049), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(4933), 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, - 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, - [90720] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, - sym_file_descriptor, - ACTIONS(6052), 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, @@ -155183,35 +145304,18 @@ 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_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [90780] = 3, + anon_sym_LT_LT_DASH, + [83595] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 6, + ACTIONS(1298), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 36, + ACTIONS(1296), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -155248,179 +145352,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [90830] = 3, - ACTIONS(3), 1, + [83645] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(5270), 6, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 36, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(1300), 15, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [90880] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1254), 5, + ACTIONS(1302), 27, sym_file_descriptor, sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 37, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, + anon_sym_LPAREN, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [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, + [83695] = 3, ACTIONS(71), 1, sym_comment, - STATE(1934), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6055), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4517), 15, + ACTIONS(1304), 15, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, @@ -155436,14 +145418,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(4519), 24, + ACTIONS(1306), 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, @@ -155453,6 +145437,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, @@ -155461,85 +145446,10 @@ static const uint16_t ts_small_parse_table[] = { 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_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, + [83745] = 3, ACTIONS(71), 1, sym_comment, - STATE(1970), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6055), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4303), 15, + ACTIONS(1300), 15, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, @@ -155555,14 +145465,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(4305), 24, + ACTIONS(1302), 27, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, @@ -155572,6 +145484,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, @@ -155580,436 +145493,63 @@ static const uint16_t ts_small_parse_table[] = { 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_BQUOTE, - STATE(2312), 1, - aux_sym__literal_repeat1, - STATE(2961), 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, - [91326] = 26, - ACTIONS(71), 1, + [83795] = 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(1310), 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(1308), 37, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, - ACTIONS(1117), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, - 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, 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, + [83845] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 5, + ACTIONS(1254), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 37, + ACTIONS(1252), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -156047,16 +145587,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [91856] = 3, + [83895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 5, + ACTIONS(1270), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 37, + ACTIONS(1268), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -156094,351 +145634,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [91906] = 6, - ACTIONS(71), 1, + [83945] = 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(1302), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1300), 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_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, + [83995] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1306), 6, + sym_file_descriptor, + sym__concat, 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, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1304), 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, + [84045] = 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(5132), 4, + ACTIONS(1302), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 35, + ACTIONS(1300), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -156460,6 +145760,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, @@ -156474,21 +145775,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [92402] = 6, + [84095] = 3, 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(1274), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5134), 35, + ACTIONS(1272), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -156498,6 +145794,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, @@ -156510,6 +145807,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, @@ -156524,87 +145822,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [92458] = 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(2970), 1, - sym__expression, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1151), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1153), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1159), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2381), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [92554] = 3, + [84145] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 6, + ACTIONS(4495), 6, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 36, + ACTIONS(4493), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -156624,9 +145852,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, @@ -156641,340 +145869,216 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [92604] = 6, - ACTIONS(71), 1, + [84195] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(6055), 1, - aux_sym_concatenation_token1, - ACTIONS(6057), 1, + ACTIONS(1278), 5, + sym_file_descriptor, sym__concat, - STATE(2044), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1227), 15, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1276), 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_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(1229), 24, + [84245] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1266), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1264), 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, - 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, + [84295] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1260), 15, + ACTIONS(1250), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1248), 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_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(1262), 27, + [84345] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1262), 5, sym_file_descriptor, sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1260), 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, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [92806] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, aux_sym_number_token1, - ACTIONS(264), 1, aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1127), 1, - sym_word, - ACTIONS(1129), 1, - anon_sym_BANG, - ACTIONS(1135), 1, - anon_sym_TILDE, - ACTIONS(1141), 1, - sym_test_operator, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - ACTIONS(5890), 1, - sym__special_character, - STATE(2451), 1, - aux_sym__literal_repeat1, - STATE(2545), 1, - sym__expression, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1131), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1133), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1139), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2361), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [92902] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1127), 1, - sym_word, - ACTIONS(1129), 1, - anon_sym_BANG, - ACTIONS(1135), 1, - anon_sym_TILDE, - ACTIONS(1141), 1, - sym_test_operator, - ACTIONS(5755), 1, anon_sym_BQUOTE, - ACTIONS(5890), 1, - sym__special_character, - STATE(2451), 1, - aux_sym__literal_repeat1, - STATE(2954), 1, - sym__expression, - ACTIONS(1125), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1131), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1133), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1139), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2361), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [92998] = 8, + sym_word, + [84395] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(1282), 5, sym_file_descriptor, - ACTIONS(6059), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(1280), 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, @@ -156982,10 +146086,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, @@ -157000,227 +146104,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [93058] = 26, - ACTIONS(71), 1, + [84445] = 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, + ACTIONS(1286), 5, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - STATE(2312), 1, - aux_sym__literal_repeat1, - STATE(3174), 1, - sym__expression, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1171), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1173), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1179), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2557), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [93154] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(367), 1, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1284), 37, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(377), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, - aux_sym_number_token1, - ACTIONS(383), 1, - aux_sym_number_token2, - ACTIONS(385), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, - sym__brace_start, - ACTIONS(1071), 1, - sym_word, - ACTIONS(1073), 1, - anon_sym_LPAREN, - ACTIONS(1075), 1, - anon_sym_BANG, - ACTIONS(1083), 1, - anon_sym_TILDE, - ACTIONS(1093), 1, - sym_test_operator, - ACTIONS(5375), 1, - anon_sym_BQUOTE, - ACTIONS(5813), 1, sym__special_character, - STATE(2407), 1, - aux_sym__literal_repeat1, - STATE(2636), 1, - sym__expression, - ACTIONS(393), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1079), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1081), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1089), 2, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(2608), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2403), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [93250] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(367), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, - anon_sym_DOLLAR, - ACTIONS(377), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, aux_sym_number_token1, - ACTIONS(383), 1, aux_sym_number_token2, - ACTIONS(385), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, - sym__brace_start, - ACTIONS(1071), 1, - sym_word, - ACTIONS(1073), 1, - anon_sym_LPAREN, - ACTIONS(1075), 1, - anon_sym_BANG, - ACTIONS(1083), 1, - anon_sym_TILDE, - ACTIONS(1093), 1, - sym_test_operator, - ACTIONS(5375), 1, anon_sym_BQUOTE, - ACTIONS(5813), 1, - sym__special_character, - STATE(2407), 1, - aux_sym__literal_repeat1, - STATE(2637), 1, - sym__expression, - ACTIONS(393), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1079), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1081), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1089), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2608), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2403), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [93346] = 3, + sym_word, + [84495] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(1290), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 36, + ACTIONS(1288), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -157230,6 +146170,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, @@ -157257,437 +146198,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [93396] = 26, - ACTIONS(71), 1, + [84545] = 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, + ACTIONS(1294), 5, + sym_file_descriptor, + sym__concat, 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(1292), 37, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + 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(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_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_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(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, - 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_word, + [84595] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(1298), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1296), 37, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(377), 1, - 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_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1079), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1081), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1089), 2, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(2608), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2403), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [93876] = 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(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, + [84645] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, + ACTIONS(1302), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 36, + ACTIONS(1300), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -157697,6 +146311,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, @@ -157724,17 +146339,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [94022] = 3, + [84695] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(1306), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 36, + ACTIONS(1304), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -157744,6 +146358,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, @@ -157771,86 +146386,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [94072] = 26, - ACTIONS(71), 1, + [84745] = 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(1302), 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(1300), 37, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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(2987), 1, - sym__expression, - ACTIONS(101), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(103), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1119), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2344), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [94168] = 3, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [84795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 5, + ACTIONS(4010), 6, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 37, + ACTIONS(4008), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -157860,7 +146453,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,9 +146463,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, @@ -157888,98 +146480,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [94218] = 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(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, - 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, + [84845] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(577), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, + ACTIONS(579), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, + ACTIONS(583), 1, anon_sym_DOLLAR, - ACTIONS(377), 1, + ACTIONS(587), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(591), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(593), 1, aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(595), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(597), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, + ACTIONS(601), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, + ACTIONS(607), 1, sym__brace_start, ACTIONS(1071), 1, sym_word, @@ -157991,15 +146513,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, ACTIONS(1093), 1, sym_test_operator, - ACTIONS(5375), 1, + ACTIONS(4667), 1, anon_sym_BQUOTE, - ACTIONS(5813), 1, + ACTIONS(4927), 1, sym__special_character, - STATE(2407), 1, + STATE(2299), 1, aux_sym__literal_repeat1, - STATE(2641), 1, + STATE(2570), 1, sym__expression, - ACTIONS(393), 2, + ACTIONS(603), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(1079), 2, @@ -158011,14 +146533,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1089), 2, sym_raw_string, sym_ansi_c_string, - STATE(2608), 6, + STATE(2556), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2403), 9, + STATE(2196), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -158028,16 +146550,17 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [94410] = 3, + [84941] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 5, + ACTIONS(4967), 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(4965), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -158047,7 +146570,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -158060,7 +146582,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -158074,348 +146595,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, - [94460] = 26, + [84991] = 12, ACTIONS(71), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, + ACTIONS(3724), 1, + anon_sym_LT_LT, + ACTIONS(3730), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3937), 1, + anon_sym_PIPE, + ACTIONS(3939), 1, + anon_sym_PIPE_AMP, + ACTIONS(5156), 1, + sym_variable_name, + STATE(6344), 1, + sym_subscript, + ACTIONS(5154), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(722), 2, + sym_file_redirect, + sym_heredoc_redirect, + STATE(4940), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3935), 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(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(3944), 20, + sym_file_descriptor, sym_test_operator, - ACTIONS(5375), 1, - anon_sym_BQUOTE, - ACTIONS(5813), 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, - STATE(2407), 1, - aux_sym__literal_repeat1, - STATE(2642), 1, - sym__expression, - ACTIONS(393), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1079), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1081), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1089), 2, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(2608), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2403), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [94556] = 26, - ACTIONS(71), 1, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [85059] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(4453), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(4451), 36, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(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(2643), 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, - [94652] = 26, - ACTIONS(71), 1, + sym_word, + [85109] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(5029), 1, + sym_file_descriptor, + ACTIONS(5027), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5032), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(5022), 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(5024), 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(5020), 16, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, anon_sym_DOLLAR, - ACTIONS(377), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(381), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(383), 1, aux_sym_number_token2, - ACTIONS(385), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, - sym__brace_start, - ACTIONS(1071), 1, - sym_word, - ACTIONS(1073), 1, - anon_sym_LPAREN, - ACTIONS(1075), 1, - anon_sym_BANG, - ACTIONS(1083), 1, - anon_sym_TILDE, - ACTIONS(1093), 1, - sym_test_operator, - ACTIONS(5375), 1, anon_sym_BQUOTE, - ACTIONS(5813), 1, - sym__special_character, - STATE(2407), 1, - aux_sym__literal_repeat1, - STATE(2646), 1, - sym__expression, - ACTIONS(393), 2, + anon_sym_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, - [94748] = 26, - ACTIONS(71), 1, + sym_word, + [85167] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(4971), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(4969), 36, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(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(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, + aux_sym__simple_variable_name_token1, + sym_word, + [85217] = 26, 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(1099), 1, anon_sym_LPAREN, - ACTIONS(1075), 1, + ACTIONS(1101), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1103), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1109), 1, + anon_sym_DQUOTE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1115), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1135), 1, + sym_word, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(1083), 1, + ACTIONS(1143), 1, anon_sym_TILDE, - ACTIONS(1093), 1, + ACTIONS(1145), 1, + sym__special_character, + ACTIONS(1149), 1, sym_test_operator, - ACTIONS(5375), 1, + ACTIONS(4951), 1, anon_sym_BQUOTE, - ACTIONS(5813), 1, - sym__special_character, - STATE(2407), 1, + STATE(2197), 1, aux_sym__literal_repeat1, - STATE(2648), 1, + STATE(2759), 1, sym__expression, - ACTIONS(393), 2, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1079), 2, + ACTIONS(1139), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1081), 2, + ACTIONS(1141), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1089), 2, + ACTIONS(1147), 2, sym_raw_string, sym_ansi_c_string, - STATE(2608), 6, + STATE(2394), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2403), 9, + STATE(2298), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -158425,17 +146868,17 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [94940] = 3, + [85313] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5707), 6, + ACTIONS(4967), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5705), 36, + ACTIONS(4965), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -158472,277 +146915,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [94990] = 26, - ACTIONS(71), 1, + [85363] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(5159), 1, + sym__special_character, + STATE(1981), 1, + aux_sym__literal_repeat1, + ACTIONS(4780), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4778), 36, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, anon_sym_DOLLAR, - ACTIONS(377), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, + 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, + aux_sym__simple_variable_name_token1, + sym_word, + [85417] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(3915), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(3913), 37, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(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(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, + sym_word, + [85467] = 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, + 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, - sym_test_operator, - ACTIONS(397), 1, + ACTIONS(282), 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_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_comment, - ACTIONS(367), 1, + ACTIONS(1099), 1, + anon_sym_LPAREN, + ACTIONS(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, - anon_sym_DOLLAR, - ACTIONS(377), 1, + ACTIONS(1109), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, - aux_sym_number_token1, - ACTIONS(383), 1, - aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, - sym__brace_start, - ACTIONS(1071), 1, + ACTIONS(1135), 1, sym_word, - ACTIONS(1073), 1, - anon_sym_LPAREN, - ACTIONS(1075), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(1083), 1, + ACTIONS(1143), 1, anon_sym_TILDE, - ACTIONS(1093), 1, + ACTIONS(1145), 1, + sym__special_character, + ACTIONS(1149), 1, sym_test_operator, - ACTIONS(5375), 1, + ACTIONS(4951), 1, anon_sym_BQUOTE, - ACTIONS(5813), 1, - sym__special_character, - STATE(2407), 1, + STATE(2197), 1, aux_sym__literal_repeat1, - STATE(2750), 1, + STATE(2719), 1, sym__expression, - ACTIONS(393), 2, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1079), 2, + ACTIONS(1139), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1081), 2, + ACTIONS(1141), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1089), 2, + ACTIONS(1147), 2, sym_raw_string, sym_ansi_c_string, - STATE(2608), 6, + STATE(2394), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2403), 9, + STATE(2298), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -158752,90 +147081,64 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [95374] = 26, - ACTIONS(71), 1, + [85563] = 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(1231), 4, + sym_file_descriptor, sym_test_operator, - ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1229), 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_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, + anon_sym_DOLLAR, sym__special_character, - ACTIONS(1117), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - STATE(2312), 1, - aux_sym__literal_repeat1, - STATE(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, + [85613] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6062), 1, - sym__special_character, - STATE(2072), 1, - aux_sym__literal_repeat1, - ACTIONS(5389), 5, + ACTIONS(1231), 6, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5387), 35, + ACTIONS(1229), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -158855,9 +147158,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, @@ -158869,39 +147174,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, - [95524] = 3, - ACTIONS(71), 1, + [85663] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 15, + ACTIONS(4495), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4493), 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_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(1274), 27, + [85713] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4010), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4008), 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, @@ -158909,76 +147255,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_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, + [85763] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(6055), 1, - aux_sym_concatenation_token1, - ACTIONS(6064), 1, - sym__concat, - STATE(2044), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1207), 15, + ACTIONS(4453), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4451), 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_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(1209), 24, + [85813] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5163), 4, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5161), 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, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_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, + [85863] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5888), 6, + ACTIONS(4901), 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(4899), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -158988,7 +147381,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, @@ -159013,9 +147409,78 @@ static const uint16_t 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, + [85913] = 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(1099), 1, + anon_sym_LPAREN, + ACTIONS(1101), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1103), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1109), 1, + anon_sym_DQUOTE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1115), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1151), 1, + sym_word, + ACTIONS(1153), 1, + anon_sym_BANG, + ACTIONS(1159), 1, + anon_sym_TILDE, + ACTIONS(1165), 1, + sym_test_operator, + ACTIONS(4951), 1, + anon_sym_BQUOTE, + ACTIONS(5042), 1, + sym__special_character, + STATE(2398), 1, + aux_sym__literal_repeat1, + STATE(2720), 1, + sym__expression, + ACTIONS(1117), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1155), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1157), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1163), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2394), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2227), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [86009] = 26, ACTIONS(71), 1, sym_comment, ACTIONS(105), 1, @@ -159036,46 +147501,186 @@ static const uint16_t ts_small_parse_table[] = { sym_test_operator, ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(1099), 1, anon_sym_LPAREN, + ACTIONS(1101), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1103), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1107), 1, + sym__special_character, ACTIONS(1109), 1, + anon_sym_DQUOTE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1115), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4951), 1, + anon_sym_BQUOTE, + STATE(2197), 1, + aux_sym__literal_repeat1, + STATE(2669), 1, + sym__expression, + ACTIONS(101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1111), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1117), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2394), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2268), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [86105] = 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(1099), 1, + anon_sym_LPAREN, + ACTIONS(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1109), 1, + anon_sym_DQUOTE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_LBRACE, ACTIONS(1115), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1151), 1, + sym_word, + ACTIONS(1153), 1, + anon_sym_BANG, + ACTIONS(1159), 1, + anon_sym_TILDE, + ACTIONS(1165), 1, + sym_test_operator, + ACTIONS(4951), 1, + anon_sym_BQUOTE, + ACTIONS(5042), 1, sym__special_character, - ACTIONS(1117), 1, + STATE(2398), 1, + aux_sym__literal_repeat1, + STATE(2727), 1, + sym__expression, + ACTIONS(1117), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1155), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1157), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1163), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2394), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2227), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [86201] = 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(1099), 1, + anon_sym_LPAREN, + ACTIONS(1101), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1103), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1109), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, + ACTIONS(1151), 1, + sym_word, + ACTIONS(1153), 1, + anon_sym_BANG, + ACTIONS(1159), 1, + anon_sym_TILDE, + ACTIONS(1165), 1, + sym_test_operator, + ACTIONS(4951), 1, anon_sym_BQUOTE, - STATE(2312), 1, + ACTIONS(5042), 1, + sym__special_character, + STATE(2398), 1, aux_sym__literal_repeat1, - STATE(3012), 1, + STATE(2731), 1, sym__expression, - ACTIONS(101), 2, + ACTIONS(1117), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1155), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(103), 2, + ACTIONS(1157), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1119), 2, + ACTIONS(1163), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2518), 6, + STATE(2394), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2344), 9, + STATE(2227), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -159085,54 +147690,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [95776] = 3, - ACTIONS(3), 1, - sym_comment, - 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, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [95826] = 26, + [86297] = 26, ACTIONS(71), 1, sym_comment, ACTIONS(256), 1, @@ -159145,54 +147703,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(1099), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(1109), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1147), 1, + ACTIONS(1151), 1, sym_word, - ACTIONS(1149), 1, + ACTIONS(1153), 1, anon_sym_BANG, - ACTIONS(1155), 1, + ACTIONS(1159), 1, anon_sym_TILDE, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1161), 1, + ACTIONS(1165), 1, sym_test_operator, - ACTIONS(5755), 1, + ACTIONS(4951), 1, anon_sym_BQUOTE, - STATE(2312), 1, + ACTIONS(5042), 1, + sym__special_character, + STATE(2398), 1, aux_sym__literal_repeat1, - STATE(3015), 1, + STATE(2732), 1, sym__expression, - ACTIONS(1125), 2, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1151), 2, + ACTIONS(1155), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1153), 2, + ACTIONS(1157), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1159), 2, + ACTIONS(1163), 2, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, + STATE(2394), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2381), 9, + STATE(2227), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -159202,54 +147760,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [95922] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1262), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 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, - [95972] = 26, + [86393] = 26, ACTIONS(71), 1, sym_comment, ACTIONS(256), 1, @@ -159262,54 +147773,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(1099), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(1109), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1147), 1, + ACTIONS(1151), 1, sym_word, - ACTIONS(1149), 1, + ACTIONS(1153), 1, anon_sym_BANG, - ACTIONS(1155), 1, + ACTIONS(1159), 1, anon_sym_TILDE, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1161), 1, + ACTIONS(1165), 1, sym_test_operator, - ACTIONS(5755), 1, + ACTIONS(4951), 1, anon_sym_BQUOTE, - STATE(2312), 1, + ACTIONS(5042), 1, + sym__special_character, + STATE(2398), 1, aux_sym__literal_repeat1, - STATE(2962), 1, + STATE(2734), 1, sym__expression, - ACTIONS(1125), 2, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1151), 2, + ACTIONS(1155), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1153), 2, + ACTIONS(1157), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1159), 2, + ACTIONS(1163), 2, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, + STATE(2394), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2381), 9, + STATE(2227), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -159319,67 +147830,67 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [96068] = 26, + [86489] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(185), 1, - anon_sym_TILDE, - ACTIONS(356), 1, - sym_word, - ACTIONS(363), 1, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, + aux_sym_number_token1, + ACTIONS(264), 1, + aux_sym_number_token2, + ACTIONS(268), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, + sym__brace_start, + ACTIONS(1099), 1, anon_sym_LPAREN, - ACTIONS(365), 1, - anon_sym_BANG, - ACTIONS(367), 1, + ACTIONS(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, - anon_sym_DOLLAR, - ACTIONS(377), 1, + ACTIONS(1109), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, - aux_sym_number_token1, - ACTIONS(383), 1, - aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(395), 1, + ACTIONS(1151), 1, + sym_word, + ACTIONS(1153), 1, + anon_sym_BANG, + ACTIONS(1159), 1, + anon_sym_TILDE, + ACTIONS(1165), 1, sym_test_operator, - ACTIONS(397), 1, - sym__brace_start, - ACTIONS(5375), 1, + ACTIONS(4951), 1, anon_sym_BQUOTE, - ACTIONS(5797), 1, + ACTIONS(5042), 1, sym__special_character, - STATE(2549), 1, + STATE(2398), 1, aux_sym__literal_repeat1, - STATE(2873), 1, + STATE(2735), 1, sym__expression, - ACTIONS(181), 2, + ACTIONS(1117), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1155), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(183), 2, + ACTIONS(1157), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(379), 2, + ACTIONS(1163), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(393), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2847), 6, + STATE(2394), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2309), 9, + STATE(2227), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -159389,15 +147900,9 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [96164] = 26, + [86585] = 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, @@ -159406,50 +147911,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(280), 1, - sym_test_operator, ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(1099), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, - sym__special_character, - ACTIONS(1117), 1, + ACTIONS(1109), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, + ACTIONS(1151), 1, + sym_word, + ACTIONS(1153), 1, + anon_sym_BANG, + ACTIONS(1159), 1, + anon_sym_TILDE, + ACTIONS(1165), 1, + sym_test_operator, + ACTIONS(4951), 1, anon_sym_BQUOTE, - STATE(2312), 1, + ACTIONS(5042), 1, + sym__special_character, + STATE(2398), 1, aux_sym__literal_repeat1, - STATE(2912), 1, + STATE(2736), 1, sym__expression, - ACTIONS(101), 2, + ACTIONS(1117), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1155), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(103), 2, + ACTIONS(1157), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1119), 2, + ACTIONS(1163), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2518), 6, + STATE(2394), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2344), 9, + STATE(2227), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -159459,17 +147970,15 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [96260] = 3, + [86681] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5707), 6, + ACTIONS(5167), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5705), 36, + ACTIONS(5165), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -159479,7 +147988,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, @@ -159504,135 +148016,110 @@ static const uint16_t 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, + [86731] = 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, + ACTIONS(5171), 4, + sym_file_descriptor, 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, - sym_comment, - ACTIONS(1264), 15, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5169), 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_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_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(1266), 27, + [86781] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5175), 4, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5173), 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_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_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, + [86831] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5707), 5, + ACTIONS(5179), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5705), 37, + ACTIONS(5177), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -159642,8 +148129,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, @@ -159653,7 +148142,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, @@ -159670,86 +148158,15 @@ 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, + [86881] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 5, + ACTIONS(5183), 4, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 37, + ACTIONS(5181), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -159759,8 +148176,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, @@ -159772,7 +148191,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,64 +148205,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [96652] = 3, - ACTIONS(71), 1, + [86931] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1280), 15, + ACTIONS(5187), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5185), 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_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_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(1282), 27, + [86981] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5187), 4, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5185), 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_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_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, + [87031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 6, + ACTIONS(5191), 4, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 36, + ACTIONS(5189), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -159854,7 +148317,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, @@ -159866,7 +148332,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, @@ -159881,17 +148346,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [96752] = 3, + [87081] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4439), 6, + ACTIONS(5191), 4, 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(5189), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -159901,7 +148364,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, @@ -159911,7 +148377,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, @@ -159928,134 +148393,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [96802] = 3, - ACTIONS(71), 1, + [87131] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1248), 15, + ACTIONS(5195), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5193), 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_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_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(1250), 27, + [87181] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5199), 4, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5197), 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_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, 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, + [87231] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, + ACTIONS(5203), 4, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 36, + ACTIONS(5201), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -160065,7 +148505,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, @@ -160077,7 +148520,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, @@ -160092,21 +148534,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [96998] = 6, + [87281] = 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(5203), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 35, + ACTIONS(5201), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -160116,7 +148552,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, @@ -160142,21 +148581,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [97054] = 6, + [87331] = 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(5207), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 35, + ACTIONS(5205), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -160166,7 +148599,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, @@ -160192,138 +148628,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [97110] = 26, - ACTIONS(71), 1, + [87381] = 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(5207), 4, + sym_file_descriptor, 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, - sym_comment, - ACTIONS(1268), 15, + aux_sym_heredoc_redirect_token1, + ACTIONS(5205), 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_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_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(1270), 27, + [87431] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5211), 4, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5209), 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_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_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, + [87481] = 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(5215), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 35, + ACTIONS(5213), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -160333,7 +148740,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, @@ -160359,17 +148769,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [97312] = 3, + [87531] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, + ACTIONS(5215), 4, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 36, + ACTIONS(5213), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -160379,7 +148787,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, @@ -160391,7 +148802,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, @@ -160406,62 +148816,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [97362] = 3, - ACTIONS(71), 1, + [87581] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1256), 15, + ACTIONS(5219), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5217), 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_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_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(1258), 27, + [87631] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5219), 4, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5217), 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_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [97412] = 26, + sym_word, + [87681] = 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, @@ -160470,50 +148921,126 @@ 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(1099), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, - sym__special_character, - ACTIONS(1117), 1, + ACTIONS(1109), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, + ACTIONS(1151), 1, + sym_word, + ACTIONS(1153), 1, + anon_sym_BANG, + ACTIONS(1159), 1, + anon_sym_TILDE, + ACTIONS(1165), 1, + sym_test_operator, + ACTIONS(4951), 1, anon_sym_BQUOTE, - STATE(2312), 1, + ACTIONS(5042), 1, + sym__special_character, + STATE(2398), 1, aux_sym__literal_repeat1, - STATE(2915), 1, + STATE(2738), 1, sym__expression, - ACTIONS(101), 2, + ACTIONS(1117), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1155), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(103), 2, + ACTIONS(1157), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1119), 2, + ACTIONS(1163), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1125), 2, + STATE(2394), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2227), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [87777] = 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(1099), 1, + anon_sym_LPAREN, + ACTIONS(1101), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1103), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1109), 1, + anon_sym_DQUOTE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1115), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1151), 1, + sym_word, + ACTIONS(1153), 1, + anon_sym_BANG, + ACTIONS(1159), 1, + anon_sym_TILDE, + ACTIONS(1165), 1, + sym_test_operator, + ACTIONS(4951), 1, + anon_sym_BQUOTE, + ACTIONS(5042), 1, + sym__special_character, + STATE(2398), 1, + aux_sym__literal_repeat1, + STATE(2739), 1, + sym__expression, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2518), 6, + ACTIONS(1155), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1157), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1163), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2394), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2344), 9, + STATE(2227), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -160523,59 +149050,147 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [97508] = 8, - ACTIONS(3), 1, + [87873] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, - sym_file_descriptor, - ACTIONS(6070), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, - sym_variable_name, - sym_test_operator, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, + aux_sym_number_token1, + ACTIONS(264), 1, + aux_sym_number_token2, + ACTIONS(268), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, sym__brace_start, - ACTIONS(5862), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(1099), 1, + anon_sym_LPAREN, + ACTIONS(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1109), 1, anon_sym_DQUOTE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1115), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1151), 1, + sym_word, + ACTIONS(1153), 1, + anon_sym_BANG, + ACTIONS(1159), 1, + anon_sym_TILDE, + ACTIONS(1165), 1, + sym_test_operator, + ACTIONS(4951), 1, + anon_sym_BQUOTE, + ACTIONS(5042), 1, + sym__special_character, + STATE(2398), 1, + aux_sym__literal_repeat1, + STATE(2744), 1, + sym__expression, + ACTIONS(1117), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1155), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1157), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1163), 2, sym_raw_string, sym_ansi_c_string, + STATE(2394), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2227), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [87969] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, aux_sym_number_token1, + ACTIONS(264), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, + ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(282), 1, + sym__brace_start, + ACTIONS(1099), 1, + anon_sym_LPAREN, + ACTIONS(1101), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1103), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1109), 1, + anon_sym_DQUOTE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1151), 1, + sym_word, + ACTIONS(1153), 1, + anon_sym_BANG, + ACTIONS(1159), 1, + anon_sym_TILDE, + ACTIONS(1165), 1, + sym_test_operator, + ACTIONS(4951), 1, + anon_sym_BQUOTE, + ACTIONS(5042), 1, + sym__special_character, + STATE(2398), 1, + aux_sym__literal_repeat1, + STATE(2747), 1, + sym__expression, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [97568] = 26, + ACTIONS(1155), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1157), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1163), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2394), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2227), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [88065] = 26, ACTIONS(71), 1, sym_comment, ACTIONS(256), 1, @@ -160588,54 +149203,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(1099), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(1109), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1147), 1, + ACTIONS(1151), 1, sym_word, - ACTIONS(1149), 1, + ACTIONS(1153), 1, anon_sym_BANG, - ACTIONS(1155), 1, + ACTIONS(1159), 1, anon_sym_TILDE, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1161), 1, + ACTIONS(1165), 1, sym_test_operator, - ACTIONS(5755), 1, + ACTIONS(4951), 1, anon_sym_BQUOTE, - STATE(2312), 1, + ACTIONS(5042), 1, + sym__special_character, + STATE(2398), 1, aux_sym__literal_repeat1, - STATE(2990), 1, + STATE(2749), 1, sym__expression, - ACTIONS(1125), 2, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1151), 2, + ACTIONS(1155), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1153), 2, + ACTIONS(1157), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1159), 2, + ACTIONS(1163), 2, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, + STATE(2394), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2381), 9, + STATE(2227), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -160645,19 +149260,15 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [97664] = 5, + [88161] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6073), 1, - sym__special_character, - STATE(2001), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 4, + ACTIONS(1231), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 36, + ACTIONS(1229), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -160667,8 +149278,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, @@ -160678,10 +149290,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, @@ -160693,18 +149305,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, - [97718] = 3, + [88211] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 6, + ACTIONS(5221), 1, + sym__special_character, + STATE(1846), 1, + aux_sym__literal_repeat1, + ACTIONS(1318), 4, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 36, + ACTIONS(1316), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -160715,6 +149330,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, @@ -160726,9 +149343,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, @@ -160741,62 +149356,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [97768] = 3, + [88265] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1276), 15, + STATE(1847), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5224), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1219), 14, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1278), 27, - 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(1221), 25, sym_test_operator, - sym__bare_dollar, - sym__brace_start, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_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, - [97818] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [88319] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 4, + ACTIONS(4967), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 38, + ACTIONS(4965), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -160806,10 +149424,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, @@ -160819,6 +149435,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, @@ -160835,16 +149452,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [97868] = 3, + [88369] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 5, + ACTIONS(5227), 1, + sym__special_character, + STATE(1846), 1, + aux_sym__literal_repeat1, + ACTIONS(4897), 4, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 37, + ACTIONS(4895), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -160854,8 +149474,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, @@ -160867,9 +149488,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, @@ -160882,63 +149501,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [97918] = 3, - 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, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1290), 27, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [97968] = 3, + [88423] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 5, + ACTIONS(1231), 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(1229), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -160948,7 +149521,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, @@ -160961,7 +149533,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, @@ -160975,17 +149546,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, - [98018] = 3, + [88473] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 5, + ACTIONS(4453), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 37, + ACTIONS(4451), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -161008,7 +149580,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, @@ -161022,17 +149593,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, - [98068] = 3, + [88523] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 5, + ACTIONS(4971), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 37, + ACTIONS(4969), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -161053,9 +149625,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, @@ -161070,16 +149642,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [98118] = 3, + [88573] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 5, + ACTIONS(5229), 1, + sym__special_character, + STATE(1853), 1, + aux_sym__literal_repeat1, + ACTIONS(1318), 5, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 37, + ACTIONS(1316), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -161089,7 +149665,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, @@ -161102,9 +149677,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, @@ -161116,29 +149689,245 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + [88627] = 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(1099), 1, + anon_sym_LPAREN, + ACTIONS(1101), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1103), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1109), 1, + anon_sym_DQUOTE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1115), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1151), 1, + sym_word, + ACTIONS(1153), 1, + anon_sym_BANG, + ACTIONS(1159), 1, + anon_sym_TILDE, + ACTIONS(1165), 1, + sym_test_operator, + ACTIONS(4951), 1, + anon_sym_BQUOTE, + ACTIONS(5042), 1, + sym__special_character, + STATE(2398), 1, + aux_sym__literal_repeat1, + STATE(2833), 1, + sym__expression, + ACTIONS(1117), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1155), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1157), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1163), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2394), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2227), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [88723] = 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(1099), 1, + anon_sym_LPAREN, + ACTIONS(1101), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1103), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1109), 1, + anon_sym_DQUOTE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1115), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1151), 1, + sym_word, + ACTIONS(1153), 1, + anon_sym_BANG, + ACTIONS(1159), 1, + anon_sym_TILDE, + ACTIONS(1165), 1, + sym_test_operator, + ACTIONS(4951), 1, + anon_sym_BQUOTE, + ACTIONS(5042), 1, + sym__special_character, + STATE(2352), 1, + sym__expression, + STATE(2398), 1, + aux_sym__literal_repeat1, + ACTIONS(1117), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1155), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1157), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1163), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2394), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2227), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [88819] = 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(1099), 1, + anon_sym_LPAREN, + ACTIONS(1101), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1103), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1109), 1, + anon_sym_DQUOTE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1115), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1151), 1, sym_word, - [98168] = 3, + ACTIONS(1153), 1, + anon_sym_BANG, + ACTIONS(1159), 1, + anon_sym_TILDE, + ACTIONS(1165), 1, + sym_test_operator, + ACTIONS(4951), 1, + anon_sym_BQUOTE, + ACTIONS(5042), 1, + sym__special_character, + STATE(2398), 1, + aux_sym__literal_repeat1, + STATE(2754), 1, + sym__expression, + ACTIONS(1117), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1155), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1157), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1163), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2394), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2227), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [88915] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 6, + ACTIONS(5027), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5029), 1, sym_file_descriptor, - sym__concat, + ACTIONS(5232), 1, + anon_sym_RPAREN, + ACTIONS(5032), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 36, + ACTIONS(5022), 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_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5024), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -161146,10 +149935,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5020), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -161164,28 +149953,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [98218] = 26, + [88975] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(577), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, + ACTIONS(579), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, + ACTIONS(583), 1, anon_sym_DOLLAR, - ACTIONS(377), 1, + ACTIONS(587), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(591), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(593), 1, aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(595), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(597), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, + ACTIONS(601), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, + ACTIONS(607), 1, sym__brace_start, ACTIONS(1071), 1, sym_word, @@ -161197,15 +149986,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, ACTIONS(1093), 1, sym_test_operator, - ACTIONS(5375), 1, + ACTIONS(4667), 1, anon_sym_BQUOTE, - ACTIONS(5813), 1, + ACTIONS(4927), 1, sym__special_character, - STATE(2407), 1, + STATE(2299), 1, aux_sym__literal_repeat1, - STATE(2626), 1, + STATE(2582), 1, sym__expression, - ACTIONS(393), 2, + ACTIONS(603), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(1079), 2, @@ -161217,14 +150006,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1089), 2, sym_raw_string, sym_ansi_c_string, - STATE(2608), 6, + STATE(2556), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2403), 9, + STATE(2196), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -161234,122 +150023,308 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [98314] = 3, - ACTIONS(3), 1, + [89071] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(1278), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 37, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + ACTIONS(577), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(579), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(583), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(587), 1, anon_sym_DQUOTE, + ACTIONS(591), 1, + aux_sym_number_token1, + ACTIONS(593), 1, + aux_sym_number_token2, + ACTIONS(595), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(601), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(607), 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(4667), 1, + anon_sym_BQUOTE, + ACTIONS(4927), 1, + sym__special_character, + STATE(2299), 1, + aux_sym__literal_repeat1, + STATE(2583), 1, + sym__expression, + ACTIONS(603), 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(2556), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2196), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [89167] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(577), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(579), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(583), 1, + anon_sym_DOLLAR, + ACTIONS(587), 1, + anon_sym_DQUOTE, + ACTIONS(591), 1, aux_sym_number_token1, + ACTIONS(593), 1, aux_sym_number_token2, + ACTIONS(595), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(597), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(601), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(607), 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(4667), 1, + anon_sym_BQUOTE, + ACTIONS(4927), 1, + sym__special_character, + STATE(2299), 1, + aux_sym__literal_repeat1, + STATE(2584), 1, + sym__expression, + ACTIONS(603), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [98364] = 3, - ACTIONS(3), 1, + ACTIONS(1079), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1081), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1089), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2556), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2196), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [89263] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(1290), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 37, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_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(577), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(579), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(583), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(587), 1, anon_sym_DQUOTE, + ACTIONS(591), 1, + aux_sym_number_token1, + ACTIONS(593), 1, + aux_sym_number_token2, + ACTIONS(595), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(601), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(607), 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(4667), 1, + anon_sym_BQUOTE, + ACTIONS(4927), 1, + sym__special_character, + STATE(2299), 1, + aux_sym__literal_repeat1, + STATE(2585), 1, + sym__expression, + ACTIONS(603), 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(2556), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2196), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [89359] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(577), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(579), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(583), 1, + anon_sym_DOLLAR, + ACTIONS(587), 1, + anon_sym_DQUOTE, + ACTIONS(591), 1, aux_sym_number_token1, + ACTIONS(593), 1, aux_sym_number_token2, + ACTIONS(595), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(597), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(601), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(607), 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(4667), 1, + anon_sym_BQUOTE, + ACTIONS(4927), 1, + sym__special_character, + STATE(2299), 1, + aux_sym__literal_repeat1, + STATE(2586), 1, + sym__expression, + ACTIONS(603), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [98414] = 26, + ACTIONS(1079), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1081), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1089), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2556), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2196), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [89455] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(577), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, + ACTIONS(579), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, + ACTIONS(583), 1, anon_sym_DOLLAR, - ACTIONS(377), 1, + ACTIONS(587), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(591), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(593), 1, aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(595), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(597), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, + ACTIONS(601), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, + ACTIONS(607), 1, sym__brace_start, ACTIONS(1071), 1, sym_word, @@ -161361,15 +150336,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, ACTIONS(1093), 1, sym_test_operator, - ACTIONS(5375), 1, + ACTIONS(4667), 1, anon_sym_BQUOTE, - ACTIONS(5813), 1, + ACTIONS(4927), 1, sym__special_character, - STATE(2407), 1, + STATE(2299), 1, aux_sym__literal_repeat1, - STATE(2627), 1, + STATE(2587), 1, sym__expression, - ACTIONS(393), 2, + ACTIONS(603), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(1079), 2, @@ -161381,14 +150356,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1089), 2, sym_raw_string, sym_ansi_c_string, - STATE(2608), 6, + STATE(2556), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2403), 9, + STATE(2196), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -161398,68 +150373,506 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [98510] = 8, - ACTIONS(3), 1, + [89551] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, - sym_file_descriptor, - ACTIONS(6076), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, - sym_variable_name, + ACTIONS(577), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(579), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(583), 1, + anon_sym_DOLLAR, + ACTIONS(587), 1, + anon_sym_DQUOTE, + ACTIONS(591), 1, + aux_sym_number_token1, + ACTIONS(593), 1, + aux_sym_number_token2, + ACTIONS(595), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(601), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(607), 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(4667), 1, + anon_sym_BQUOTE, + ACTIONS(4927), 1, + sym__special_character, + STATE(2299), 1, + aux_sym__literal_repeat1, + STATE(2588), 1, + sym__expression, + ACTIONS(603), 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(2556), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2196), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [89647] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(577), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(579), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(583), 1, + anon_sym_DOLLAR, + ACTIONS(587), 1, + anon_sym_DQUOTE, + ACTIONS(591), 1, + aux_sym_number_token1, + ACTIONS(593), 1, + aux_sym_number_token2, + ACTIONS(595), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(601), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(607), 1, sym__brace_start, - ACTIONS(5862), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(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(4667), 1, + anon_sym_BQUOTE, + ACTIONS(4927), 1, + sym__special_character, + STATE(2299), 1, + aux_sym__literal_repeat1, + STATE(2589), 1, + sym__expression, + ACTIONS(603), 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(2556), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2196), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [89743] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(577), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(579), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(583), 1, anon_sym_DOLLAR, + ACTIONS(587), 1, + anon_sym_DQUOTE, + ACTIONS(591), 1, + aux_sym_number_token1, + ACTIONS(593), 1, + aux_sym_number_token2, + ACTIONS(595), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(601), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(607), 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(4667), 1, + anon_sym_BQUOTE, + ACTIONS(4927), 1, sym__special_character, + STATE(2299), 1, + aux_sym__literal_repeat1, + STATE(2592), 1, + sym__expression, + ACTIONS(603), 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(2556), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2196), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [89839] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(577), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(579), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(583), 1, + anon_sym_DOLLAR, + ACTIONS(587), 1, anon_sym_DQUOTE, + ACTIONS(591), 1, + aux_sym_number_token1, + ACTIONS(593), 1, + aux_sym_number_token2, + ACTIONS(595), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(601), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(607), 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(4667), 1, + anon_sym_BQUOTE, + ACTIONS(4927), 1, + sym__special_character, + STATE(2299), 1, + aux_sym__literal_repeat1, + STATE(2593), 1, + sym__expression, + ACTIONS(603), 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(2556), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2196), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [89935] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(577), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(579), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(583), 1, + anon_sym_DOLLAR, + ACTIONS(587), 1, + anon_sym_DQUOTE, + ACTIONS(591), 1, aux_sym_number_token1, + ACTIONS(593), 1, aux_sym_number_token2, + ACTIONS(595), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(597), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(601), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(607), 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(4667), 1, anon_sym_BQUOTE, + ACTIONS(4927), 1, + sym__special_character, + STATE(2299), 1, + aux_sym__literal_repeat1, + STATE(2594), 1, + sym__expression, + ACTIONS(603), 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(2556), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2196), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [90031] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(577), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(579), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(583), 1, + anon_sym_DOLLAR, + ACTIONS(587), 1, + anon_sym_DQUOTE, + ACTIONS(591), 1, + aux_sym_number_token1, + ACTIONS(593), 1, + aux_sym_number_token2, + ACTIONS(595), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(601), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(607), 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(4667), 1, + anon_sym_BQUOTE, + ACTIONS(4927), 1, + sym__special_character, + STATE(2299), 1, + aux_sym__literal_repeat1, + STATE(2595), 1, + sym__expression, + ACTIONS(603), 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(2556), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2196), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [90127] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(577), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(579), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(583), 1, + anon_sym_DOLLAR, + ACTIONS(587), 1, + anon_sym_DQUOTE, + ACTIONS(591), 1, + aux_sym_number_token1, + ACTIONS(593), 1, + aux_sym_number_token2, + ACTIONS(595), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(601), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(607), 1, + sym__brace_start, + ACTIONS(1071), 1, sym_word, - [98570] = 3, + 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(4667), 1, + anon_sym_BQUOTE, + ACTIONS(4927), 1, + sym__special_character, + STATE(2299), 1, + aux_sym__literal_repeat1, + STATE(2597), 1, + sym__expression, + ACTIONS(603), 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(2556), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2196), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [90223] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 5, + ACTIONS(4967), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 37, + ACTIONS(4965), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -161482,7 +150895,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, @@ -161496,120 +150908,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [98620] = 7, - ACTIONS(3), 1, + [90273] = 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, - sym__brace_start, - ACTIONS(5862), 10, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(577), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(579), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(583), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(587), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(591), 1, aux_sym_number_token1, + ACTIONS(593), 1, aux_sym_number_token2, + ACTIONS(595), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(597), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(601), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + ACTIONS(607), 1, + sym__brace_start, + ACTIONS(1071), 1, sym_word, - [98678] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, - sym_file_descriptor, - ACTIONS(5872), 3, - sym_variable_name, + ACTIONS(1073), 1, + anon_sym_LPAREN, + ACTIONS(1075), 1, + anon_sym_BANG, + ACTIONS(1083), 1, + anon_sym_TILDE, + ACTIONS(1093), 1, sym_test_operator, - sym__brace_start, - ACTIONS(5862), 10, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5860), 16, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + ACTIONS(4667), 1, + anon_sym_BQUOTE, + ACTIONS(4927), 1, sym__special_character, - anon_sym_DQUOTE, + STATE(2299), 1, + aux_sym__literal_repeat1, + STATE(2579), 1, + sym__expression, + ACTIONS(603), 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(2556), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2196), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [90369] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, aux_sym_number_token1, + ACTIONS(264), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, + ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(282), 1, + sym__brace_start, + ACTIONS(1099), 1, + anon_sym_LPAREN, + ACTIONS(1101), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1103), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1109), 1, + anon_sym_DQUOTE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1135), 1, + sym_word, + ACTIONS(1137), 1, + anon_sym_BANG, + ACTIONS(1143), 1, + anon_sym_TILDE, + ACTIONS(1145), 1, + sym__special_character, + ACTIONS(1149), 1, + sym_test_operator, + ACTIONS(4951), 1, + anon_sym_BQUOTE, + STATE(2197), 1, + aux_sym__literal_repeat1, + STATE(2800), 1, + sym__expression, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [98736] = 3, + ACTIONS(1139), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1141), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1147), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2394), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2298), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [90465] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2162), 6, + ACTIONS(4971), 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(4969), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -161619,6 +151069,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, @@ -161629,7 +151080,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, @@ -161645,18 +151095,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, - [98786] = 3, + [90515] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 6, - sym_file_descriptor, + ACTIONS(5062), 1, + aux_sym_concatenation_token1, + ACTIONS(5235), 1, sym__concat, + STATE(1669), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 36, + ACTIONS(1207), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -161678,7 +151133,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 +151147,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [98836] = 3, + [90571] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 5, - sym_file_descriptor, + ACTIONS(5062), 1, + aux_sym_concatenation_token1, + ACTIONS(5237), 1, sym__concat, + STATE(1669), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 37, + ACTIONS(1213), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -161712,7 +151171,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, @@ -161725,7 +151183,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, @@ -161740,17 +151197,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [98886] = 3, + [90627] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 6, - sym_file_descriptor, + ACTIONS(5062), 1, + aux_sym_concatenation_token1, + ACTIONS(5064), 1, sym__concat, + STATE(1875), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1231), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 36, + ACTIONS(1229), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -161772,7 +151233,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, @@ -161787,114 +151247,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [98936] = 3, + [90683] = 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(577), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(579), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(583), 1, anon_sym_DOLLAR, + ACTIONS(587), 1, + anon_sym_DQUOTE, + ACTIONS(591), 1, aux_sym_number_token1, + ACTIONS(593), 1, aux_sym_number_token2, + ACTIONS(595), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(597), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1294), 27, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, + ACTIONS(601), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(607), 1, sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, + ACTIONS(1071), 1, + sym_word, + ACTIONS(1073), 1, anon_sym_LPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(1075), 1, + anon_sym_BANG, + ACTIONS(1083), 1, + anon_sym_TILDE, + ACTIONS(1093), 1, + sym_test_operator, + ACTIONS(4667), 1, + anon_sym_BQUOTE, + ACTIONS(4927), 1, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + STATE(2299), 1, + aux_sym__literal_repeat1, + STATE(2571), 1, + sym__expression, + ACTIONS(603), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [98986] = 26, + ACTIONS(1079), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1081), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1089), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2556), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2196), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [90779] = 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(577), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(579), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(583), 1, anon_sym_DOLLAR, - ACTIONS(262), 1, + ACTIONS(587), 1, + anon_sym_DQUOTE, + ACTIONS(591), 1, aux_sym_number_token1, - ACTIONS(264), 1, + ACTIONS(593), 1, aux_sym_number_token2, - ACTIONS(268), 1, + ACTIONS(595), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(597), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(280), 1, - sym_test_operator, - ACTIONS(282), 1, + ACTIONS(601), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(607), 1, sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(1071), 1, + sym_word, + ACTIONS(1073), 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, + ACTIONS(1075), 1, + anon_sym_BANG, + ACTIONS(1083), 1, + anon_sym_TILDE, + ACTIONS(1093), 1, + sym_test_operator, + ACTIONS(4667), 1, anon_sym_BQUOTE, - STATE(2312), 1, + ACTIONS(4927), 1, + sym__special_character, + STATE(2299), 1, aux_sym__literal_repeat1, - STATE(2957), 1, + STATE(2572), 1, sym__expression, - ACTIONS(101), 2, + ACTIONS(603), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1079), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(103), 2, + ACTIONS(1081), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1119), 2, + ACTIONS(1089), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2518), 6, + STATE(2556), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2344), 9, + STATE(2196), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -161904,80 +151387,33 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [99082] = 5, + [90875] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6079), 1, - sym__special_character, - STATE(2026), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 5, + ACTIONS(5027), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5029), 1, sym_file_descriptor, + ACTIONS(5239), 1, + anon_sym_RPAREN, + ACTIONS(5032), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 35, + ACTIONS(5022), 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_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_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, - [99136] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6082), 1, - sym__special_character, - STATE(2026), 1, - aux_sym__literal_repeat1, - ACTIONS(5132), 5, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 35, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(5024), 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, @@ -161985,11 +151421,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(5020), 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, @@ -162002,17 +151439,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [99190] = 3, + [90935] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 6, + ACTIONS(4971), 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), 36, + ACTIONS(4969), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -162032,9 +151469,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, @@ -162049,16 +151486,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [99240] = 3, + [90985] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, + STATE(3310), 1, + aux_sym__literal_repeat1, + STATE(3372), 1, + sym_concatenation, + STATE(3228), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2305), 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, @@ -162066,133 +151513,30 @@ 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), 27, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [99290] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5858), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4161), 3, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(4153), 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), 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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5888), 6, + ACTIONS(2307), 21, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(5886), 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, - [99394] = 26, + [91041] = 26, ACTIONS(71), 1, sym_comment, ACTIONS(105), 1, @@ -162213,25 +151557,25 @@ static const uint16_t ts_small_parse_table[] = { sym_test_operator, ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(1099), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, + ACTIONS(1107), 1, sym__special_character, - ACTIONS(1117), 1, + ACTIONS(1109), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, + ACTIONS(4951), 1, anon_sym_BQUOTE, - STATE(2312), 1, + STATE(2197), 1, aux_sym__literal_repeat1, - STATE(2545), 1, + STATE(2352), 1, sym__expression, ACTIONS(101), 2, anon_sym_PLUS_PLUS2, @@ -162239,20 +151583,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(103), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1119), 2, + ACTIONS(1111), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1125), 2, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2518), 6, + STATE(2394), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2344), 9, + STATE(2268), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -162262,7 +151606,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [99490] = 26, + [91137] = 26, ACTIONS(71), 1, sym_comment, ACTIONS(105), 1, @@ -162283,25 +151627,25 @@ static const uint16_t ts_small_parse_table[] = { sym_test_operator, ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(1099), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, + ACTIONS(1107), 1, sym__special_character, - ACTIONS(1117), 1, + ACTIONS(1109), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, + ACTIONS(4951), 1, anon_sym_BQUOTE, - STATE(2312), 1, + STATE(2197), 1, aux_sym__literal_repeat1, - STATE(2958), 1, + STATE(2841), 1, sym__expression, ACTIONS(101), 2, anon_sym_PLUS_PLUS2, @@ -162309,20 +151653,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(103), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1119), 2, + ACTIONS(1111), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1125), 2, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2518), 6, + STATE(2394), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2344), 9, + STATE(2268), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -162332,28 +151676,33 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [99586] = 3, + [91233] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4313), 6, + ACTIONS(5027), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5029), 1, sym_file_descriptor, + ACTIONS(5242), 1, + anon_sym_RPAREN, + ACTIONS(5032), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 36, + ACTIONS(5022), 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_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5024), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -162361,8 +151710,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(5020), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -162379,20 +151728,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [99636] = 8, + [91293] = 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(1099), 1, + anon_sym_LPAREN, + ACTIONS(1101), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1103), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1109), 1, + anon_sym_DQUOTE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1115), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1135), 1, + sym_word, + ACTIONS(1137), 1, + anon_sym_BANG, + ACTIONS(1143), 1, + anon_sym_TILDE, + ACTIONS(1145), 1, + sym__special_character, + ACTIONS(1149), 1, + sym_test_operator, + ACTIONS(4951), 1, + anon_sym_BQUOTE, + STATE(2197), 1, + aux_sym__literal_repeat1, + STATE(2352), 1, + sym__expression, + ACTIONS(1117), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1139), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1141), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1147), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2394), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2298), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [91389] = 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(1099), 1, + anon_sym_LPAREN, + ACTIONS(1101), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1103), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1109), 1, + anon_sym_DQUOTE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1115), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1135), 1, + sym_word, + ACTIONS(1137), 1, + anon_sym_BANG, + ACTIONS(1143), 1, + anon_sym_TILDE, + ACTIONS(1145), 1, + sym__special_character, + ACTIONS(1149), 1, + sym_test_operator, + ACTIONS(4951), 1, + anon_sym_BQUOTE, + STATE(2197), 1, + aux_sym__literal_repeat1, + STATE(2753), 1, + sym__expression, + ACTIONS(1117), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1139), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1141), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1147), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2394), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2298), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [91485] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(5027), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(5029), 1, sym_file_descriptor, - ACTIONS(6084), 1, + ACTIONS(5245), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(5032), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(5022), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -162402,7 +151891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(5024), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -162414,7 +151903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(5020), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -162431,32 +151920,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [99696] = 3, - ACTIONS(3), 1, + [91545] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(5270), 6, + STATE(2007), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5248), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4123), 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(4125), 24, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 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, @@ -162464,89 +151961,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [99746] = 3, - ACTIONS(3), 1, + [91599] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1302), 5, - sym_file_descriptor, + STATE(2011), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5248), 2, sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 37, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + aux_sym_concatenation_token1, + ACTIONS(3913), 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(3915), 24, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [99796] = 3, + [91653] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 5, + ACTIONS(5027), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5029), 1, sym_file_descriptor, - sym__concat, + ACTIONS(5250), 1, + anon_sym_RPAREN, + ACTIONS(5032), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 37, + ACTIONS(5022), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5024), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -162554,10 +152052,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5020), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -162572,28 +152070,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [99846] = 3, + [91713] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(5027), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5029), 1, sym_file_descriptor, - sym__concat, + ACTIONS(5253), 1, + anon_sym_RPAREN, + ACTIONS(5032), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 37, + ACTIONS(5022), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5024), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -162601,10 +152104,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5020), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -162619,217 +152122,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [99896] = 26, + [91773] = 5, 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, + STATE(2007), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5248), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4004), 15, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(262), 1, aux_sym_number_token1, - ACTIONS(264), 1, aux_sym_number_token2, - ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(280), 1, + anon_sym_BQUOTE, + sym_word, + ACTIONS(4006), 24, + sym_file_descriptor, sym_test_operator, - ACTIONS(282), 1, + 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(1115), 1, sym__special_character, - ACTIONS(1117), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - STATE(2312), 1, - aux_sym__literal_repeat1, - STATE(2948), 1, - sym__expression, - ACTIONS(101), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(103), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1119), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1125), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2344), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [99992] = 26, + [91827] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(367), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, + STATE(2011), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5248), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4008), 15, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(377), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, aux_sym_number_token1, - ACTIONS(383), 1, aux_sym_number_token2, - ACTIONS(385), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, - sym__brace_start, - ACTIONS(1071), 1, + anon_sym_BQUOTE, sym_word, - ACTIONS(1073), 1, - anon_sym_LPAREN, - ACTIONS(1075), 1, - anon_sym_BANG, - ACTIONS(1083), 1, - anon_sym_TILDE, - ACTIONS(1093), 1, + ACTIONS(4010), 24, + sym_file_descriptor, sym_test_operator, - ACTIONS(5375), 1, - anon_sym_BQUOTE, - ACTIONS(5813), 1, + sym__bare_dollar, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + 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, - STATE(2407), 1, - aux_sym__literal_repeat1, - STATE(2625), 1, - sym__expression, - ACTIONS(393), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1079), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1081), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1089), 2, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(2608), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2403), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [100088] = 5, - ACTIONS(71), 1, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [91881] = 8, + ACTIONS(3), 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, + ACTIONS(5027), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5029), 1, + sym_file_descriptor, + ACTIONS(5256), 1, + anon_sym_RPAREN, + ACTIONS(5032), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(5022), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5024), 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, - 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, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_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(5020), 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, + [91941] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 5, + ACTIONS(5027), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5029), 1, sym_file_descriptor, + ACTIONS(5259), 1, + anon_sym_RPAREN, + ACTIONS(5032), 3, sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 37, + ACTIONS(5022), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5024), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -162837,8 +152306,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(5020), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -162855,80 +152324,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [100192] = 5, - ACTIONS(71), 1, + [92001] = 8, + ACTIONS(3), 1, sym_comment, - STATE(2044), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6090), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1213), 15, + ACTIONS(5027), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5029), 1, + sym_file_descriptor, + ACTIONS(5262), 1, + anon_sym_RPAREN, + ACTIONS(5032), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(5022), 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(5024), 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(5020), 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), 24, + [92061] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5027), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5029), 1, sym_file_descriptor, + ACTIONS(5265), 1, + anon_sym_RPAREN, + ACTIONS(5032), 3, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ACTIONS(5022), 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(5024), 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(5020), 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, - [100246] = 5, + sym_word, + [92121] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6093), 1, - sym__special_character, - STATE(2087), 1, - aux_sym__literal_repeat1, - ACTIONS(5389), 4, + ACTIONS(5027), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5029), 1, sym_file_descriptor, + ACTIONS(5268), 1, + anon_sym_RPAREN, + ACTIONS(5032), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5387), 36, + ACTIONS(5022), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5024), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -162936,10 +152462,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5020), 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, @@ -162951,100 +152479,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, - [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, + [92181] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2158), 5, + ACTIONS(5027), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5029), 1, sym_file_descriptor, + ACTIONS(5271), 1, + anon_sym_RPAREN, + ACTIONS(5032), 3, sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 37, + ACTIONS(5022), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5024), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -163052,8 +152514,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(5020), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -163070,90 +152532,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [100446] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1147), 1, - sym_word, - ACTIONS(1149), 1, - anon_sym_BANG, - ACTIONS(1155), 1, - anon_sym_TILDE, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1161), 1, - sym_test_operator, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - STATE(2312), 1, - aux_sym__literal_repeat1, - STATE(2992), 1, - sym__expression, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1151), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1153), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1159), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2518), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2381), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [100542] = 8, + [92241] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(5027), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(5029), 1, sym_file_descriptor, - ACTIONS(6095), 1, + ACTIONS(5274), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(5032), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(5022), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -163163,7 +152555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(5024), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -163175,7 +152567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(5020), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -163192,98 +152584,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [100602] = 26, - ACTIONS(71), 1, + [92301] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(185), 1, - anon_sym_TILDE, - ACTIONS(356), 1, - sym_word, - ACTIONS(363), 1, - anon_sym_LPAREN, - ACTIONS(365), 1, - anon_sym_BANG, - ACTIONS(367), 1, + ACTIONS(5027), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5029), 1, + sym_file_descriptor, + ACTIONS(5277), 1, + anon_sym_RPAREN, + ACTIONS(5032), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(5022), 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(5024), 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(5020), 16, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, anon_sym_DOLLAR, - ACTIONS(377), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(381), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(383), 1, aux_sym_number_token2, - ACTIONS(385), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(395), 1, - sym_test_operator, - ACTIONS(397), 1, - sym__brace_start, - ACTIONS(5375), 1, anon_sym_BQUOTE, - ACTIONS(5797), 1, - sym__special_character, - STATE(2549), 1, - aux_sym__literal_repeat1, - STATE(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_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, - [100698] = 3, + sym_word, + [92361] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 6, + ACTIONS(5027), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5029), 1, sym_file_descriptor, - sym__concat, + ACTIONS(5280), 1, + anon_sym_RPAREN, + ACTIONS(5032), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 36, + ACTIONS(5022), 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_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5024), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -163291,10 +152670,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5020), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -163309,28 +152688,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [100748] = 3, + [92421] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, + ACTIONS(5027), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5029), 1, sym_file_descriptor, - sym__concat, + ACTIONS(5032), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 36, + ACTIONS(5022), 10, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5024), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -163338,10 +152721,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5020), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -163356,28 +152739,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [100798] = 3, + [92479] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 6, + ACTIONS(5027), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5029), 1, sym_file_descriptor, + ACTIONS(5283), 1, + anon_sym_RPAREN, + ACTIONS(5032), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 36, + ACTIONS(5022), 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_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5024), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -163385,7 +152773,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(5020), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -163401,30 +152790,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, - [100848] = 3, + [92539] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 6, + ACTIONS(5027), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5029), 1, sym_file_descriptor, - sym__concat, + ACTIONS(5286), 1, + anon_sym_RPAREN, + ACTIONS(5032), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 36, + ACTIONS(5022), 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_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5024), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -163432,10 +152825,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5020), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -163450,28 +152843,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [100898] = 3, + [92599] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4439), 5, + ACTIONS(5027), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5029), 1, sym_file_descriptor, + ACTIONS(5289), 1, + anon_sym_RPAREN, + ACTIONS(5032), 3, sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 37, + ACTIONS(5022), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5024), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -163479,8 +152877,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(5020), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -163497,28 +152895,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [100948] = 3, + [92659] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 5, + ACTIONS(5027), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5029), 1, sym_file_descriptor, + ACTIONS(5292), 1, + anon_sym_RPAREN, + ACTIONS(5032), 3, sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 37, + ACTIONS(5022), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5024), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -163526,7 +152929,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(5020), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -163542,22 +152946,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, - [100998] = 8, + [92719] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(5027), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(5029), 1, sym_file_descriptor, - ACTIONS(6098), 1, + ACTIONS(5295), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(5032), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(5022), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -163567,7 +152970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(5024), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -163579,7 +152982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(5020), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -163596,98 +152999,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, 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, + [92779] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, + ACTIONS(5027), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5029), 1, sym_file_descriptor, - sym__concat, + ACTIONS(5298), 1, + anon_sym_RPAREN, + ACTIONS(5032), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 36, + ACTIONS(5022), 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_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5024), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -163695,10 +153033,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5020), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -163713,17 +153051,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [101204] = 3, + [92839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, + ACTIONS(1314), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 36, + ACTIONS(1312), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -163760,20 +153098,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [101254] = 8, + [92889] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(5027), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(5029), 1, sym_file_descriptor, - ACTIONS(6101), 1, + ACTIONS(5301), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(5032), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(5022), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -163783,7 +153121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(5024), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -163795,7 +153133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(5020), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -163812,371 +153150,436 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [101314] = 3, - ACTIONS(71), 1, + [92949] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 15, + ACTIONS(5027), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5029), 1, + sym_file_descriptor, + ACTIONS(5304), 1, + anon_sym_RPAREN, + ACTIONS(5032), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(5022), 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(5024), 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(5020), 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), 27, + [93009] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5027), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5029), 1, sym_file_descriptor, - sym__concat, + ACTIONS(5307), 1, + anon_sym_RPAREN, + ACTIONS(5032), 3, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ACTIONS(5022), 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(5024), 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(5020), 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, - [101364] = 3, - ACTIONS(71), 1, + sym_word, + [93069] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 15, + ACTIONS(5027), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5029), 1, + sym_file_descriptor, + ACTIONS(5310), 1, + anon_sym_RPAREN, + ACTIONS(5032), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(5022), 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(5024), 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(5020), 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), 27, + [93129] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5027), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5029), 1, sym_file_descriptor, - sym__concat, + ACTIONS(5313), 1, + anon_sym_RPAREN, + ACTIONS(5032), 3, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ACTIONS(5022), 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(5024), 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(5020), 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, - [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, + [93189] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5027), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5029), 1, + sym_file_descriptor, + ACTIONS(5316), 1, + anon_sym_RPAREN, + ACTIONS(5032), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(5022), 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(5024), 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(5020), 16, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, anon_sym_DOLLAR, - ACTIONS(377), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(381), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(383), 1, aux_sym_number_token2, - ACTIONS(385), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(395), 1, - sym_test_operator, - ACTIONS(397), 1, - sym__brace_start, - ACTIONS(5375), 1, anon_sym_BQUOTE, - ACTIONS(5797), 1, - sym__special_character, - STATE(2549), 1, - aux_sym__literal_repeat1, - STATE(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_word, + [93249] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 15, + ACTIONS(5027), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5029), 1, + sym_file_descriptor, + ACTIONS(5319), 1, + anon_sym_RPAREN, + ACTIONS(5032), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(5022), 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(5024), 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(5020), 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), 27, + [93309] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5027), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5029), 1, sym_file_descriptor, - sym__concat, + ACTIONS(5322), 1, + anon_sym_RPAREN, + ACTIONS(5032), 3, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ACTIONS(5022), 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(5024), 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(5020), 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, - [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, + [93369] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5027), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5029), 1, + sym_file_descriptor, + ACTIONS(5325), 1, + anon_sym_RPAREN, + ACTIONS(5032), 3, + sym_variable_name, sym_test_operator, - ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(5022), 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(5024), 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(5020), 16, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, + anon_sym_DOLLAR, sym__special_character, - ACTIONS(1117), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - STATE(2312), 1, - aux_sym__literal_repeat1, - STATE(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, + sym_word, + [93429] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(5027), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(5029), 1, sym_file_descriptor, - ACTIONS(6104), 1, + ACTIONS(5328), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(5032), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(5022), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -164186,7 +153589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(5024), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -164198,7 +153601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(5020), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -164215,28 +153618,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [101812] = 3, + [93489] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 6, + ACTIONS(5027), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5029), 1, sym_file_descriptor, - sym__concat, + ACTIONS(5331), 1, + anon_sym_RPAREN, + ACTIONS(5032), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 36, + ACTIONS(5022), 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_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5024), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -164244,10 +153652,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5020), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -164262,20 +153670,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [101862] = 8, + [93549] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(5027), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(5029), 1, sym_file_descriptor, - ACTIONS(6107), 1, + ACTIONS(5334), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(5032), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(5022), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -164285,7 +153693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(5024), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -164297,7 +153705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(5020), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -164314,101 +153722,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [101922] = 26, - ACTIONS(71), 1, + [93609] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(185), 1, - anon_sym_TILDE, - ACTIONS(356), 1, - sym_word, - ACTIONS(363), 1, - anon_sym_LPAREN, - ACTIONS(365), 1, - anon_sym_BANG, - ACTIONS(367), 1, + ACTIONS(5027), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5029), 1, + sym_file_descriptor, + ACTIONS(5337), 1, + anon_sym_RPAREN, + ACTIONS(5032), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(5022), 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(5024), 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(5020), 16, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, anon_sym_DOLLAR, - ACTIONS(377), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(381), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(383), 1, aux_sym_number_token2, - ACTIONS(385), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(395), 1, - sym_test_operator, - ACTIONS(397), 1, - sym__brace_start, - ACTIONS(5375), 1, anon_sym_BQUOTE, - ACTIONS(5797), 1, - sym__special_character, - STATE(2549), 1, - aux_sym__literal_repeat1, - STATE(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_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, - [102018] = 5, + sym_word, + [93669] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6110), 1, - sym__special_character, - STATE(2072), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 5, + ACTIONS(5027), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5029), 1, sym_file_descriptor, + ACTIONS(5340), 1, + anon_sym_RPAREN, + ACTIONS(5032), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 35, + ACTIONS(5022), 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_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5024), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -164416,10 +153808,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5020), 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, @@ -164431,22 +153825,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, - [102072] = 8, + [93729] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(5027), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(5029), 1, sym_file_descriptor, - ACTIONS(6113), 1, + ACTIONS(5343), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(5032), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(5022), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -164456,7 +153849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(5024), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -164468,7 +153861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(5020), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -164485,20 +153878,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [102132] = 8, + [93789] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(5027), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(5029), 1, sym_file_descriptor, - ACTIONS(6116), 1, + ACTIONS(5346), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(5032), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(5022), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -164508,7 +153901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(5024), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -164520,7 +153913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(5020), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -164537,20 +153930,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [102192] = 8, + [93849] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(5027), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(5029), 1, sym_file_descriptor, - ACTIONS(6119), 1, + ACTIONS(5349), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(5032), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(5022), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -164560,7 +153953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(5024), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -164572,7 +153965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(5020), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -164589,28 +153982,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [102252] = 3, + [93909] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 4, + ACTIONS(5027), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5029), 1, sym_file_descriptor, + ACTIONS(5352), 1, + anon_sym_RPAREN, + ACTIONS(5032), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 38, + ACTIONS(5022), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5024), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -164618,7 +154016,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(5020), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -164634,22 +154033,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, - [102302] = 8, + [93969] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(5027), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(5029), 1, sym_file_descriptor, - ACTIONS(6122), 1, + ACTIONS(5355), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(5032), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(5022), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -164659,7 +154057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(5024), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -164671,7 +154069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(5020), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -164688,209 +154086,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [102362] = 5, - ACTIONS(71), 1, + [94029] = 8, + 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(5027), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5029), 1, sym_file_descriptor, + ACTIONS(5358), 1, + anon_sym_RPAREN, + ACTIONS(5032), 3, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ACTIONS(5022), 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(5024), 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(5020), 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, - [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, + sym_word, + [94089] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(5027), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(5029), 1, sym_file_descriptor, - ACTIONS(6125), 1, + ACTIONS(5361), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(5032), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(5022), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -164900,7 +154161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(5024), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -164912,7 +154173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(5020), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -164929,28 +154190,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [102668] = 3, + [94149] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5888), 5, + ACTIONS(5027), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5029), 1, sym_file_descriptor, + ACTIONS(5364), 1, + anon_sym_RPAREN, + ACTIONS(5032), 3, sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5886), 37, + ACTIONS(5022), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5024), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -164958,7 +154224,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(5020), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -164974,22 +154241,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, - [102718] = 8, + [94209] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(5027), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(5029), 1, sym_file_descriptor, - ACTIONS(6128), 1, + ACTIONS(5367), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(5032), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(5022), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -164999,7 +154265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(5024), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -165011,7 +154277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(5020), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -165028,20 +154294,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [102778] = 8, + [94269] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(5027), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(5029), 1, sym_file_descriptor, - ACTIONS(6131), 1, + ACTIONS(5370), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(5032), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(5022), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -165051,7 +154317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(5024), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -165063,7 +154329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(5020), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -165080,28 +154346,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [102838] = 3, + [94329] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5707), 5, + ACTIONS(5027), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5029), 1, sym_file_descriptor, + ACTIONS(5373), 1, + anon_sym_RPAREN, + ACTIONS(5032), 3, sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5705), 37, + ACTIONS(5022), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5024), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -165109,7 +154380,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(5020), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -165125,22 +154397,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, - [102888] = 8, + [94389] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(5027), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(5029), 1, sym_file_descriptor, - ACTIONS(6134), 1, + ACTIONS(5376), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(5032), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(5022), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -165150,7 +154421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(5024), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -165162,7 +154433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(5020), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -165179,31 +154450,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [102948] = 5, + [94449] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6137), 1, - sym__special_character, - STATE(2087), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 4, + ACTIONS(5027), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5029), 1, sym_file_descriptor, + ACTIONS(5379), 1, + anon_sym_RPAREN, + ACTIONS(5032), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 36, + ACTIONS(5022), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5024), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -165211,10 +154484,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5020), 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, @@ -165226,22 +154501,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, - [103002] = 8, + [94509] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(5027), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(5029), 1, sym_file_descriptor, - ACTIONS(6140), 1, + ACTIONS(5382), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(5032), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(5022), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -165251,7 +154525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(5024), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -165263,7 +154537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(5020), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -165280,90 +154554,20 @@ 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, + [94569] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(5027), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(5029), 1, sym_file_descriptor, - ACTIONS(6143), 1, + ACTIONS(5385), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(5032), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(5022), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -165373,7 +154577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(5024), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -165385,7 +154589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(5020), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -165402,20 +154606,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [103218] = 8, + [94629] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(5027), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(5029), 1, sym_file_descriptor, - ACTIONS(6146), 1, + ACTIONS(5388), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(5032), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(5022), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -165425,7 +154629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(5024), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -165437,7 +154641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(5020), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -165454,20 +154658,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [103278] = 8, + [94689] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(5027), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(5029), 1, sym_file_descriptor, - ACTIONS(6149), 1, + ACTIONS(5391), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(5032), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(5022), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -165477,7 +154681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(5024), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -165489,7 +154693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(5020), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -165506,20 +154710,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [103338] = 8, + [94749] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(5027), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(5029), 1, sym_file_descriptor, - ACTIONS(6152), 1, + ACTIONS(5394), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(5032), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(5022), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -165529,7 +154733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(5024), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -165541,7 +154745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(5020), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -165558,20 +154762,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [103398] = 8, + [94809] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(5027), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(5029), 1, sym_file_descriptor, - ACTIONS(6155), 1, + ACTIONS(5397), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(5032), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(5022), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -165581,7 +154785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(5024), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -165593,7 +154797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(5020), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -165610,20 +154814,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [103458] = 8, + [94869] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(5027), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(5029), 1, sym_file_descriptor, - ACTIONS(6158), 1, + ACTIONS(5400), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(5032), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(5022), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -165633,7 +154837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(5024), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -165645,7 +154849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(5020), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -165662,20 +154866,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [103518] = 8, + [94929] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(5027), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(5029), 1, sym_file_descriptor, - ACTIONS(6161), 1, + ACTIONS(5403), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(5032), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(5022), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -165685,7 +154889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(5024), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -165697,7 +154901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(5020), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -165714,20 +154918,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [103578] = 8, + [94989] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(5027), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(5029), 1, sym_file_descriptor, - ACTIONS(6164), 1, + ACTIONS(5406), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(5032), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(5022), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -165737,7 +154941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(5024), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -165749,7 +154953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(5020), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -165766,20 +154970,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [103638] = 8, + [95049] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(5027), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(5029), 1, sym_file_descriptor, - ACTIONS(6167), 1, + ACTIONS(5409), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(5032), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(5022), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -165789,7 +154993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(5024), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -165801,7 +155005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(5020), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -165818,90 +155022,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [103698] = 26, - ACTIONS(71), 1, + [95109] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(105), 1, - anon_sym_TILDE, - ACTIONS(235), 1, - sym_word, - ACTIONS(246), 1, - anon_sym_BANG, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(280), 1, + ACTIONS(5027), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5029), 1, + sym_file_descriptor, + ACTIONS(5412), 1, + anon_sym_RPAREN, + ACTIONS(5032), 3, + sym_variable_name, sym_test_operator, - ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(5022), 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(5024), 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(5020), 16, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, + anon_sym_DOLLAR, sym__special_character, - ACTIONS(1117), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - STATE(2312), 1, - aux_sym__literal_repeat1, - STATE(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, + aux_sym_number_token1, + aux_sym_number_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, - [103794] = 8, + sym_word, + [95169] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(5027), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(5029), 1, sym_file_descriptor, - ACTIONS(6170), 1, + ACTIONS(5415), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(5032), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(5022), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -165911,7 +155097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(5024), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -165923,7 +155109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(5020), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -165940,20 +155126,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [103854] = 8, + [95229] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(5027), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(5029), 1, sym_file_descriptor, - ACTIONS(6173), 1, + ACTIONS(5418), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(5032), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(5022), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -165963,7 +155149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(5024), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -165975,7 +155161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(5020), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -165992,20 +155178,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [103914] = 8, + [95289] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(5027), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(5029), 1, sym_file_descriptor, - ACTIONS(6176), 1, + ACTIONS(5421), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(5032), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(5022), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -166015,7 +155201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(5024), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -166027,7 +155213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(5020), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -166044,20 +155230,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [103974] = 8, + [95349] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(5027), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(5029), 1, sym_file_descriptor, - ACTIONS(6179), 1, + ACTIONS(5424), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(5032), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(5022), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -166067,7 +155253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(5024), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -166079,7 +155265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(5020), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -166096,20 +155282,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [104034] = 8, + [95409] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(5027), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(5029), 1, sym_file_descriptor, - ACTIONS(6182), 1, + ACTIONS(5427), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(5032), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(5022), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -166119,7 +155305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(5024), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -166131,7 +155317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(5020), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -166148,20 +155334,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [104094] = 8, + [95469] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(5027), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(5029), 1, sym_file_descriptor, - ACTIONS(6185), 1, + ACTIONS(5430), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(5032), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(5022), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -166171,7 +155357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(5024), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -166183,7 +155369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(5020), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -166200,20 +155386,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [104154] = 8, + [95529] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(5027), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(5029), 1, sym_file_descriptor, - ACTIONS(6188), 1, + ACTIONS(5433), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(5032), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(5022), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -166223,7 +155409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(5024), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -166235,7 +155421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(5020), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -166252,20 +155438,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [104214] = 8, + [95589] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(5027), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(5029), 1, sym_file_descriptor, - ACTIONS(6191), 1, + ACTIONS(5436), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(5032), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(5022), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -166275,7 +155461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(5024), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -166287,7 +155473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(5020), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -166304,20 +155490,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [104274] = 8, + [95649] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(5027), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(5029), 1, sym_file_descriptor, - ACTIONS(6194), 1, + ACTIONS(5439), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(5032), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(5022), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -166327,7 +155513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(5024), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -166339,7 +155525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(5020), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -166356,20 +155542,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [104334] = 8, + [95709] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(5027), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(5029), 1, sym_file_descriptor, - ACTIONS(6197), 1, + ACTIONS(5442), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(5032), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(5022), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -166379,7 +155565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(5024), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -166391,7 +155577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(5020), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -166408,32 +155594,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [104394] = 5, + [95769] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6200), 1, - sym__special_character, - STATE(2149), 1, - aux_sym__literal_repeat1, - ACTIONS(5132), 4, + ACTIONS(5027), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5029), 1, sym_file_descriptor, + ACTIONS(5445), 1, + anon_sym_RPAREN, + ACTIONS(5032), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 36, + ACTIONS(5022), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5024), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -166441,10 +155628,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5020), 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, @@ -166457,16 +155646,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [104448] = 3, + [95829] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1252), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, + STATE(3313), 1, + aux_sym__literal_repeat1, + STATE(3379), 1, + sym_concatenation, + STATE(3225), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2309), 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, @@ -166474,49 +155673,184 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1254), 27, + ACTIONS(2311), 21, 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, 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, - [104498] = 5, - ACTIONS(3), 1, + [95885] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(6202), 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(1099), 1, + anon_sym_LPAREN, + ACTIONS(1101), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1103), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1107), 1, sym__special_character, - STATE(2001), 1, + ACTIONS(1109), 1, + anon_sym_DQUOTE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1115), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4951), 1, + anon_sym_BQUOTE, + STATE(2197), 1, + aux_sym__literal_repeat1, + STATE(2745), 1, + sym__expression, + ACTIONS(101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1111), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1117), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2394), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2268), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [95981] = 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(1099), 1, + anon_sym_LPAREN, + ACTIONS(1101), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1103), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1109), 1, + anon_sym_DQUOTE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1115), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1135), 1, + sym_word, + ACTIONS(1137), 1, + anon_sym_BANG, + ACTIONS(1143), 1, + anon_sym_TILDE, + ACTIONS(1145), 1, + sym__special_character, + ACTIONS(1149), 1, + sym_test_operator, + ACTIONS(4951), 1, + anon_sym_BQUOTE, + STATE(2197), 1, aux_sym__literal_repeat1, - ACTIONS(5132), 4, + STATE(2836), 1, + sym__expression, + ACTIONS(1117), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1139), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1141), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1147), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2394), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2298), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [96077] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5062), 1, + aux_sym_concatenation_token1, + ACTIONS(5064), 1, + sym__concat, + STATE(1875), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4897), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 36, + ACTIONS(4895), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -166526,7 +155860,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, @@ -166537,10 +155870,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, @@ -166553,257 +155886,282 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [104552] = 5, - ACTIONS(71), 1, + [96133] = 6, + ACTIONS(3), 1, sym_comment, - STATE(1934), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6055), 2, - sym__concat, + ACTIONS(5062), 1, 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(5064), 1, + sym__concat, + STATE(1876), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4901), 4, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4899), 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, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [104606] = 5, - ACTIONS(71), 1, + sym_word, + [96189] = 6, + ACTIONS(3), 1, sym_comment, - STATE(1970), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6055), 2, - sym__concat, + ACTIONS(5062), 1, aux_sym_concatenation_token1, - ACTIONS(4437), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(4439), 24, + ACTIONS(5064), 1, + sym__concat, + STATE(1875), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4483), 4, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4481), 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, - [104660] = 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(2844), 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, - [104756] = 5, - ACTIONS(71), 1, + sym_word, + [96245] = 6, + ACTIONS(3), 1, sym_comment, - STATE(1934), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6055), 2, - sym__concat, + ACTIONS(5062), 1, aux_sym_concatenation_token1, - ACTIONS(4307), 15, + ACTIONS(5064), 1, + sym__concat, + STATE(1876), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4487), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4485), 35, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_EQ_TILDE, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(4309), 24, + [96301] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5062), 1, + aux_sym_concatenation_token1, + ACTIONS(5064), 1, + sym__concat, + STATE(1875), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4491), 4, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4489), 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, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [104810] = 5, - ACTIONS(71), 1, + sym_word, + [96357] = 6, + ACTIONS(3), 1, sym_comment, - STATE(1970), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6055), 2, - sym__concat, + ACTIONS(5062), 1, aux_sym_concatenation_token1, - ACTIONS(4311), 15, + ACTIONS(5064), 1, + sym__concat, + STATE(1876), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4495), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4493), 35, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_EQ_TILDE, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(4313), 24, + [96413] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1231), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1229), 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, @@ -166811,54 +156169,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, - [104864] = 26, + sym_word, + [96463] = 26, ACTIONS(71), 1, sym_comment, ACTIONS(185), 1, anon_sym_TILDE, - ACTIONS(356), 1, + ACTIONS(566), 1, sym_word, - ACTIONS(363), 1, + ACTIONS(573), 1, anon_sym_LPAREN, - ACTIONS(365), 1, + ACTIONS(575), 1, anon_sym_BANG, - ACTIONS(367), 1, + ACTIONS(577), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, + ACTIONS(579), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, + ACTIONS(583), 1, anon_sym_DOLLAR, - ACTIONS(377), 1, + ACTIONS(587), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(591), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(593), 1, aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(595), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(597), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, + ACTIONS(601), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(395), 1, + ACTIONS(605), 1, sym_test_operator, - ACTIONS(397), 1, + ACTIONS(607), 1, sym__brace_start, - ACTIONS(5375), 1, + ACTIONS(4667), 1, anon_sym_BQUOTE, - ACTIONS(5797), 1, + ACTIONS(4959), 1, sym__special_character, - STATE(2549), 1, + STATE(2414), 1, aux_sym__literal_repeat1, - STATE(2894), 1, + STATE(2767), 1, sym__expression, ACTIONS(181), 2, anon_sym_PLUS_PLUS2, @@ -166866,13 +156230,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(183), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(379), 2, + ACTIONS(589), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(393), 2, + ACTIONS(603), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2847), 6, + STATE(2702), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, @@ -166889,67 +156253,67 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [104960] = 26, + [96559] = 26, 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(1099), 1, + anon_sym_LPAREN, + ACTIONS(1101), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1103), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1107), 1, sym__special_character, - STATE(2549), 1, + ACTIONS(1109), 1, + anon_sym_DQUOTE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1115), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4951), 1, + anon_sym_BQUOTE, + STATE(2197), 1, aux_sym__literal_repeat1, - STATE(2853), 1, + STATE(2779), 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(1111), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(393), 2, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2847), 6, + STATE(2394), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2309), 9, + STATE(2268), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -166959,67 +156323,67 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [105056] = 26, + [96655] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(185), 1, - anon_sym_TILDE, - ACTIONS(356), 1, - sym_word, - ACTIONS(363), 1, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, + aux_sym_number_token1, + ACTIONS(264), 1, + aux_sym_number_token2, + ACTIONS(268), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, + sym__brace_start, + ACTIONS(1099), 1, anon_sym_LPAREN, - ACTIONS(365), 1, - anon_sym_BANG, - ACTIONS(367), 1, + ACTIONS(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, - anon_sym_DOLLAR, - ACTIONS(377), 1, + ACTIONS(1109), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, - aux_sym_number_token1, - ACTIONS(383), 1, - aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(395), 1, + ACTIONS(1135), 1, + sym_word, + ACTIONS(1137), 1, + anon_sym_BANG, + ACTIONS(1143), 1, + anon_sym_TILDE, + ACTIONS(1145), 1, + sym__special_character, + ACTIONS(1149), 1, sym_test_operator, - ACTIONS(397), 1, - sym__brace_start, - ACTIONS(5375), 1, + ACTIONS(4951), 1, anon_sym_BQUOTE, - ACTIONS(5797), 1, - sym__special_character, - STATE(2549), 1, + STATE(2197), 1, aux_sym__literal_repeat1, - STATE(2855), 1, + STATE(2809), 1, sym__expression, - ACTIONS(181), 2, + ACTIONS(1117), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1139), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(183), 2, + ACTIONS(1141), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(379), 2, + ACTIONS(1147), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(393), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2847), 6, + STATE(2394), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2309), 9, + STATE(2298), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -167029,66 +156393,156 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [105152] = 5, - ACTIONS(3), 1, + [96751] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(4161), 3, - sym_variable_name, + ACTIONS(105), 1, + anon_sym_TILDE, + ACTIONS(235), 1, + sym_word, + ACTIONS(246), 1, + anon_sym_BANG, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, + aux_sym_number_token1, + ACTIONS(264), 1, + aux_sym_number_token2, + ACTIONS(268), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(280), 1, sym_test_operator, + ACTIONS(282), 1, sym__brace_start, - ACTIONS(5858), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(4153), 17, - anon_sym_LT_LT_LT, + ACTIONS(1099), 1, + anon_sym_LPAREN, + ACTIONS(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + ACTIONS(1107), 1, sym__special_character, + ACTIONS(1109), 1, anon_sym_DQUOTE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1115), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4951), 1, + anon_sym_BQUOTE, + STATE(2197), 1, + aux_sym__literal_repeat1, + STATE(2761), 1, + sym__expression, + ACTIONS(101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1111), 2, sym_raw_string, sym_ansi_c_string, + ACTIONS(1117), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2394), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2268), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [96847] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, aux_sym_number_token1, + ACTIONS(264), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, + ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(282), 1, + sym__brace_start, + ACTIONS(1099), 1, + anon_sym_LPAREN, + ACTIONS(1101), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1103), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1109), 1, + anon_sym_DQUOTE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1135), 1, + sym_word, + ACTIONS(1137), 1, + anon_sym_BANG, + ACTIONS(1143), 1, + anon_sym_TILDE, + ACTIONS(1145), 1, + sym__special_character, + ACTIONS(1149), 1, + sym_test_operator, + ACTIONS(4951), 1, + anon_sym_BQUOTE, + STATE(2197), 1, + aux_sym__literal_repeat1, + STATE(2764), 1, + sym__expression, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - ACTIONS(5856), 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, - [105206] = 3, + ACTIONS(1139), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1141), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1147), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2394), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2298), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [96943] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 6, + ACTIONS(1231), 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(1229), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -167098,6 +156552,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,7 +156563,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, @@ -167124,254 +156578,203 @@ static const uint16_t 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, - ACTIONS(3), 1, + [96993] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, - sym_file_descriptor, - ACTIONS(6204), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(5862), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(185), 1, + anon_sym_TILDE, + ACTIONS(566), 1, + sym_word, + ACTIONS(573), 1, + anon_sym_LPAREN, + ACTIONS(575), 1, + anon_sym_BANG, + ACTIONS(577), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(579), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(583), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(587), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(591), 1, aux_sym_number_token1, + ACTIONS(593), 1, aux_sym_number_token2, + ACTIONS(595), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(597), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(601), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(605), 1, + sym_test_operator, + ACTIONS(607), 1, + sym__brace_start, + ACTIONS(4667), 1, + anon_sym_BQUOTE, + ACTIONS(4959), 1, + sym__special_character, + STATE(2414), 1, + aux_sym__literal_repeat1, + STATE(2724), 1, + sym__expression, + ACTIONS(181), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(183), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(589), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(603), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [105316] = 8, - ACTIONS(3), 1, + STATE(2702), 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, + [97089] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, - sym_file_descriptor, - ACTIONS(6207), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(5862), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + STATE(2007), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5248), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4045), 15, 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_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_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, - [105376] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5869), 1, + ACTIONS(4047), 24, 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__bare_dollar, sym__brace_start, - ACTIONS(5862), 9, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [105434] = 26, + [97143] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(256), 1, + STATE(2011), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5248), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4115), 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(4117), 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(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(2887), 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, - [105530] = 3, + [97197] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 5, + ACTIONS(5027), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5029), 1, sym_file_descriptor, + ACTIONS(5448), 1, + anon_sym_RPAREN, + ACTIONS(5032), 3, sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 37, + ACTIONS(5022), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5024), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -167379,8 +156782,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(5020), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -167397,33 +156800,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [105580] = 8, + [97257] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(5451), 1, + sym__special_character, + STATE(1981), 1, + aux_sym__literal_repeat1, + ACTIONS(1318), 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(1316), 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, @@ -167431,12 +156832,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, @@ -167448,68 +156847,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [105640] = 26, + [97311] = 26, 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(1099), 1, + anon_sym_LPAREN, + ACTIONS(1101), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1103), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1107), 1, sym__special_character, - STATE(2549), 1, + ACTIONS(1109), 1, + anon_sym_DQUOTE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1115), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4951), 1, + anon_sym_BQUOTE, + STATE(2197), 1, aux_sym__literal_repeat1, - STATE(2900), 1, + STATE(2818), 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(1111), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(393), 2, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2847), 6, + STATE(2394), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2309), 9, + STATE(2268), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -167519,59 +156919,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [105736] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, - sym_file_descriptor, - ACTIONS(6213), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(5862), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5860), 16, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [105796] = 26, + [97407] = 26, ACTIONS(71), 1, sym_comment, ACTIONS(256), 1, @@ -167584,54 +156932,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(1099), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(1109), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1127), 1, + ACTIONS(1151), 1, sym_word, - ACTIONS(1129), 1, + ACTIONS(1153), 1, anon_sym_BANG, - ACTIONS(1135), 1, + ACTIONS(1159), 1, anon_sym_TILDE, - ACTIONS(1141), 1, + ACTIONS(1165), 1, sym_test_operator, - ACTIONS(5755), 1, + ACTIONS(4951), 1, anon_sym_BQUOTE, - ACTIONS(5890), 1, + ACTIONS(5042), 1, sym__special_character, - STATE(2451), 1, + STATE(2398), 1, aux_sym__literal_repeat1, - STATE(2840), 1, + STATE(2726), 1, sym__expression, - ACTIONS(1125), 2, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1131), 2, + ACTIONS(1155), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1133), 2, + ACTIONS(1157), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1139), 2, + ACTIONS(1163), 2, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, + STATE(2394), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2361), 9, + STATE(2227), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -167641,7 +156989,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [105892] = 26, + [97503] = 26, ACTIONS(71), 1, sym_comment, ACTIONS(105), 1, @@ -167662,25 +157010,25 @@ static const uint16_t ts_small_parse_table[] = { sym_test_operator, ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(1099), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, + ACTIONS(1107), 1, sym__special_character, - ACTIONS(1117), 1, + ACTIONS(1109), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, + ACTIONS(4951), 1, anon_sym_BQUOTE, - STATE(2312), 1, + STATE(2197), 1, aux_sym__literal_repeat1, - STATE(2910), 1, + STATE(2668), 1, sym__expression, ACTIONS(101), 2, anon_sym_PLUS_PLUS2, @@ -167688,20 +157036,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(103), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1119), 2, + ACTIONS(1111), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1125), 2, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2518), 6, + STATE(2394), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2344), 9, + STATE(2268), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -167711,7 +157059,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [105988] = 26, + [97599] = 26, ACTIONS(71), 1, sym_comment, ACTIONS(256), 1, @@ -167724,54 +157072,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(1099), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(1109), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1147), 1, + ACTIONS(1151), 1, sym_word, - ACTIONS(1149), 1, + ACTIONS(1153), 1, anon_sym_BANG, - ACTIONS(1155), 1, + ACTIONS(1159), 1, anon_sym_TILDE, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1161), 1, + ACTIONS(1165), 1, sym_test_operator, - ACTIONS(5755), 1, + ACTIONS(4951), 1, anon_sym_BQUOTE, - STATE(2312), 1, + ACTIONS(5042), 1, + sym__special_character, + STATE(2398), 1, aux_sym__literal_repeat1, - STATE(2904), 1, + STATE(2725), 1, sym__expression, - ACTIONS(1125), 2, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1151), 2, + ACTIONS(1155), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1153), 2, + ACTIONS(1157), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1159), 2, + ACTIONS(1163), 2, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, + STATE(2394), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2381), 9, + STATE(2227), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -167781,61 +157129,15 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [106084] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, - sym_file_descriptor, - ACTIONS(6216), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(5862), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5860), 16, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [106144] = 26, + [97695] = 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, @@ -167844,56 +157146,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(280), 1, + sym_test_operator, ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(1099), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(1107), 1, + sym__special_character, + ACTIONS(1109), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1115), 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, + ACTIONS(4951), 1, anon_sym_BQUOTE, - ACTIONS(5890), 1, - sym__special_character, - STATE(2451), 1, + STATE(2197), 1, aux_sym__literal_repeat1, - STATE(2883), 1, + STATE(2670), 1, sym__expression, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1131), 2, + ACTIONS(101), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1133), 2, + ACTIONS(103), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1139), 2, + ACTIONS(1111), 2, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, + ACTIONS(1117), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2394), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2361), 9, + STATE(2268), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -167903,106 +157199,147 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [106240] = 8, - ACTIONS(3), 1, + [97791] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, - sym_file_descriptor, - ACTIONS(6219), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, - sym_variable_name, + ACTIONS(105), 1, + anon_sym_TILDE, + ACTIONS(235), 1, + sym_word, + ACTIONS(246), 1, + anon_sym_BANG, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, + aux_sym_number_token1, + ACTIONS(264), 1, + aux_sym_number_token2, + ACTIONS(268), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(280), 1, sym_test_operator, + ACTIONS(282), 1, sym__brace_start, - ACTIONS(5862), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(1099), 1, + anon_sym_LPAREN, + ACTIONS(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + ACTIONS(1107), 1, sym__special_character, + ACTIONS(1109), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4951), 1, + anon_sym_BQUOTE, + STATE(2197), 1, + aux_sym__literal_repeat1, + STATE(2672), 1, + sym__expression, + ACTIONS(101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1111), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [106300] = 3, + STATE(2394), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2268), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [97887] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1284), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(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(1286), 27, - 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, + ACTIONS(1099), 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(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(1107), 1, sym__special_character, + ACTIONS(1109), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4951), 1, + anon_sym_BQUOTE, + STATE(2197), 1, + aux_sym__literal_repeat1, + STATE(2677), 1, + sym__expression, + ACTIONS(101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1111), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [106350] = 26, + STATE(2394), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2268), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [97983] = 26, ACTIONS(71), 1, sym_comment, ACTIONS(105), 1, @@ -168023,25 +157360,25 @@ static const uint16_t ts_small_parse_table[] = { sym_test_operator, ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(1099), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, + ACTIONS(1107), 1, sym__special_character, - ACTIONS(1117), 1, + ACTIONS(1109), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, + ACTIONS(4951), 1, anon_sym_BQUOTE, - STATE(2312), 1, + STATE(2197), 1, aux_sym__literal_repeat1, - STATE(3018), 1, + STATE(2685), 1, sym__expression, ACTIONS(101), 2, anon_sym_PLUS_PLUS2, @@ -168049,20 +157386,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(103), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1119), 2, + ACTIONS(1111), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1125), 2, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2518), 6, + STATE(2394), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2344), 9, + STATE(2268), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -168072,311 +157409,217 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [106446] = 8, - ACTIONS(3), 1, + [98079] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, - sym_file_descriptor, - ACTIONS(6222), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(5862), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5860), 16, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + 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, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(262), 1, aux_sym_number_token1, + ACTIONS(264), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, + ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [106506] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, - sym_file_descriptor, - ACTIONS(6225), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, - sym_variable_name, + ACTIONS(280), 1, sym_test_operator, + ACTIONS(282), 1, sym__brace_start, - ACTIONS(5862), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(1099), 1, + anon_sym_LPAREN, + ACTIONS(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + ACTIONS(1107), 1, sym__special_character, + ACTIONS(1109), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [106566] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, - sym_file_descriptor, - ACTIONS(6228), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(5862), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5860), 16, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(4951), 1, + anon_sym_BQUOTE, + STATE(2197), 1, + aux_sym__literal_repeat1, + STATE(2686), 1, + sym__expression, + ACTIONS(101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1111), 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(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [106626] = 5, + STATE(2394), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2268), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [98175] = 26, ACTIONS(71), 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, + 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(4370), 24, - sym_file_descriptor, + ACTIONS(280), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(282), 1, sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(1099), 1, + anon_sym_LPAREN, + ACTIONS(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1107), 1, sym__special_character, + ACTIONS(1109), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [106680] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, - sym_file_descriptor, - ACTIONS(6231), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(5862), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5860), 16, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(4951), 1, + anon_sym_BQUOTE, + STATE(2197), 1, + aux_sym__literal_repeat1, + STATE(2687), 1, + sym__expression, + ACTIONS(101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1111), 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(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [106740] = 3, + STATE(2394), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2268), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [98271] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1213), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + 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(1215), 27, - 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, + ACTIONS(1099), 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(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(1107), 1, sym__special_character, + ACTIONS(1109), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4951), 1, + anon_sym_BQUOTE, + STATE(2197), 1, + aux_sym__literal_repeat1, + STATE(2691), 1, + sym__expression, + ACTIONS(101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1111), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [106790] = 26, + STATE(2394), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2268), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [98367] = 26, ACTIONS(71), 1, sym_comment, ACTIONS(105), 1, @@ -168397,25 +157640,25 @@ static const uint16_t ts_small_parse_table[] = { sym_test_operator, ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(1099), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, + ACTIONS(1107), 1, sym__special_character, - ACTIONS(1117), 1, + ACTIONS(1109), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, + ACTIONS(4951), 1, anon_sym_BQUOTE, - STATE(2312), 1, + STATE(2197), 1, aux_sym__literal_repeat1, - STATE(2922), 1, + STATE(2692), 1, sym__expression, ACTIONS(101), 2, anon_sym_PLUS_PLUS2, @@ -168423,20 +157666,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(103), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1119), 2, + ACTIONS(1111), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1125), 2, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2518), 6, + STATE(2394), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2344), 9, + STATE(2268), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -168446,61 +157689,85 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [106886] = 8, - ACTIONS(3), 1, + [98463] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, - sym_file_descriptor, - ACTIONS(6234), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, - sym_variable_name, + ACTIONS(105), 1, + anon_sym_TILDE, + ACTIONS(235), 1, + sym_word, + ACTIONS(246), 1, + anon_sym_BANG, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, + aux_sym_number_token1, + ACTIONS(264), 1, + aux_sym_number_token2, + ACTIONS(268), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(280), 1, sym_test_operator, + ACTIONS(282), 1, sym__brace_start, - ACTIONS(5862), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(1099), 1, + anon_sym_LPAREN, + ACTIONS(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + ACTIONS(1107), 1, sym__special_character, + ACTIONS(1109), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4951), 1, + anon_sym_BQUOTE, + STATE(2197), 1, + aux_sym__literal_repeat1, + STATE(2695), 1, + sym__expression, + ACTIONS(101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1111), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [106946] = 26, + STATE(2394), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2268), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [98559] = 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, @@ -168509,56 +157776,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(280), 1, + sym_test_operator, ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(1099), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(1107), 1, + sym__special_character, + ACTIONS(1109), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1115), 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, + ACTIONS(4951), 1, anon_sym_BQUOTE, - ACTIONS(5890), 1, - sym__special_character, - STATE(2451), 1, + STATE(2197), 1, aux_sym__literal_repeat1, - STATE(2884), 1, + STATE(2697), 1, sym__expression, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1131), 2, + ACTIONS(101), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1133), 2, + ACTIONS(103), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1139), 2, + ACTIONS(1111), 2, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, + ACTIONS(1117), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2394), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2361), 9, + STATE(2268), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -168568,14 +157829,67 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [107042] = 6, + [98655] = 26, ACTIONS(71), 1, sym_comment, - STATE(3427), 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(1099), 1, + anon_sym_LPAREN, + ACTIONS(1101), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1103), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1107), 1, + sym__special_character, + ACTIONS(1109), 1, + anon_sym_DQUOTE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1115), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4951), 1, + anon_sym_BQUOTE, + STATE(2197), 1, aux_sym__literal_repeat1, - STATE(3692), 1, + STATE(2698), 1, + sym__expression, + ACTIONS(101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1111), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1117), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2394), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - STATE(3361), 9, + STATE(2268), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -168585,7 +157899,30 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2271), 10, + [98751] = 11, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3937), 1, + anon_sym_PIPE, + ACTIONS(3939), 1, + anon_sym_PIPE_AMP, + ACTIONS(4037), 1, + anon_sym_LT_LT, + ACTIONS(5156), 1, + sym_variable_name, + STATE(6344), 1, + sym_subscript, + STATE(765), 2, + sym_file_redirect, + sym_heredoc_redirect, + STATE(4940), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4039), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(3935), 10, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -168596,9 +157933,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(2273), 21, + ACTIONS(3944), 20, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_GT_GT, @@ -168618,59 +157954,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [107098] = 5, - ACTIONS(3), 1, + [98817] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(6237), 1, - sym__special_character, - STATE(2149), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 4, + STATE(2007), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5248), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(3954), 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(3956), 24, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 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, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [107152] = 3, + [98871] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1312), 15, + STATE(2011), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5248), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4119), 15, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, @@ -168686,61 +158027,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1314), 27, + ACTIONS(4121), 24, sym_file_descriptor, - sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + 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, + [98925] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4487), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4485), 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_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [107202] = 8, + sym_word, + [98975] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(4495), 4, sym_file_descriptor, - ACTIONS(6240), 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(4493), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -168748,8 +158129,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, @@ -168766,67 +158146,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [107262] = 26, + [99025] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(185), 1, + anon_sym_TILDE, + ACTIONS(566), 1, + sym_word, + ACTIONS(573), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(575), 1, + anon_sym_BANG, + ACTIONS(577), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(579), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(583), 1, + anon_sym_DOLLAR, + ACTIONS(587), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(591), 1, + aux_sym_number_token1, + ACTIONS(593), 1, + aux_sym_number_token2, + ACTIONS(595), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(601), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1127), 1, - sym_word, - ACTIONS(1129), 1, - anon_sym_BANG, - ACTIONS(1135), 1, - anon_sym_TILDE, - ACTIONS(1141), 1, + ACTIONS(605), 1, sym_test_operator, - ACTIONS(5755), 1, + ACTIONS(607), 1, + sym__brace_start, + ACTIONS(4667), 1, anon_sym_BQUOTE, - ACTIONS(5890), 1, + ACTIONS(4959), 1, sym__special_character, - STATE(2451), 1, + STATE(2414), 1, aux_sym__literal_repeat1, - STATE(2895), 1, + STATE(2708), 1, sym__expression, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1131), 2, + ACTIONS(181), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1133), 2, + ACTIONS(183), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1139), 2, + ACTIONS(589), 2, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, + ACTIONS(603), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2702), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2361), 9, + STATE(2309), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -168836,59 +158216,77 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [107358] = 8, - ACTIONS(3), 1, + [99121] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, - sym_file_descriptor, - ACTIONS(6243), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(5862), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(185), 1, + anon_sym_TILDE, + ACTIONS(566), 1, + sym_word, + ACTIONS(573), 1, + anon_sym_LPAREN, + ACTIONS(575), 1, + anon_sym_BANG, + ACTIONS(577), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(579), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(583), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(587), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(591), 1, aux_sym_number_token1, + ACTIONS(593), 1, aux_sym_number_token2, + ACTIONS(595), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(597), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(601), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(605), 1, + sym_test_operator, + ACTIONS(607), 1, + sym__brace_start, + ACTIONS(4667), 1, + anon_sym_BQUOTE, + ACTIONS(4959), 1, + sym__special_character, + STATE(2414), 1, + aux_sym__literal_repeat1, + STATE(2812), 1, + sym__expression, + ACTIONS(181), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(183), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(589), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(603), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [107418] = 26, + STATE(2702), 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, + [99217] = 26, ACTIONS(71), 1, sym_comment, ACTIONS(256), 1, @@ -168901,54 +158299,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(1099), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(1109), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1127), 1, + ACTIONS(1167), 1, sym_word, - ACTIONS(1129), 1, + ACTIONS(1169), 1, anon_sym_BANG, - ACTIONS(1135), 1, + ACTIONS(1175), 1, anon_sym_TILDE, - ACTIONS(1141), 1, + ACTIONS(1177), 1, + sym__special_character, + ACTIONS(1181), 1, sym_test_operator, - ACTIONS(5755), 1, + ACTIONS(4951), 1, anon_sym_BQUOTE, - ACTIONS(5890), 1, - sym__special_character, - STATE(2451), 1, + STATE(2197), 1, aux_sym__literal_repeat1, - STATE(2851), 1, + STATE(3030), 1, sym__expression, - ACTIONS(1125), 2, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1131), 2, + ACTIONS(1171), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1133), 2, + ACTIONS(1173), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1139), 2, + ACTIONS(1179), 2, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, + STATE(2394), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2361), 9, + STATE(2444), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -168958,15 +158356,9 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [107514] = 26, + [99313] = 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, @@ -168975,50 +158367,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(280), 1, - sym_test_operator, ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(1099), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, - sym__special_character, - ACTIONS(1117), 1, + ACTIONS(1109), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, + ACTIONS(1135), 1, + sym_word, + ACTIONS(1137), 1, + anon_sym_BANG, + ACTIONS(1143), 1, + anon_sym_TILDE, + ACTIONS(1145), 1, + sym__special_character, + ACTIONS(1149), 1, + sym_test_operator, + ACTIONS(4951), 1, anon_sym_BQUOTE, - STATE(2312), 1, + STATE(2197), 1, aux_sym__literal_repeat1, - STATE(2909), 1, + STATE(2826), 1, sym__expression, - ACTIONS(101), 2, + ACTIONS(1117), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1139), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(103), 2, + ACTIONS(1141), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1119), 2, + ACTIONS(1147), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2518), 6, + STATE(2394), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2344), 9, + STATE(2298), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -169028,119 +158426,67 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [107610] = 8, - ACTIONS(3), 1, + [99409] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, - sym_file_descriptor, - ACTIONS(6246), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(5862), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(185), 1, + anon_sym_TILDE, + ACTIONS(566), 1, + sym_word, + ACTIONS(573), 1, + anon_sym_LPAREN, + ACTIONS(575), 1, + anon_sym_BANG, + ACTIONS(577), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(579), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(583), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(587), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(591), 1, aux_sym_number_token1, + ACTIONS(593), 1, aux_sym_number_token2, + ACTIONS(595), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(597), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(601), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [107670] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(105), 1, - anon_sym_TILDE, - ACTIONS(235), 1, - sym_word, - ACTIONS(246), 1, - anon_sym_BANG, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(280), 1, + ACTIONS(605), 1, sym_test_operator, - ACTIONS(282), 1, + ACTIONS(607), 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, + ACTIONS(4667), 1, anon_sym_BQUOTE, - STATE(2312), 1, + ACTIONS(4959), 1, + sym__special_character, + STATE(2414), 1, aux_sym__literal_repeat1, - STATE(2923), 1, + STATE(2824), 1, sym__expression, - ACTIONS(101), 2, + ACTIONS(181), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(103), 2, + ACTIONS(183), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1119), 2, + ACTIONS(589), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1125), 2, + ACTIONS(603), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2518), 6, + STATE(2702), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2344), 9, + STATE(2309), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -169150,32 +158496,41 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [107766] = 3, - ACTIONS(3), 1, + [99505] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(2162), 5, + ACTIONS(5248), 1, + aux_sym_concatenation_token1, + ACTIONS(5454), 1, + sym__concat, + STATE(2027), 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), 24, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 37, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -169183,81 +158538,75 @@ 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, - [107816] = 26, + [99561] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(185), 1, + anon_sym_TILDE, + ACTIONS(566), 1, + sym_word, + ACTIONS(573), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(575), 1, + anon_sym_BANG, + ACTIONS(577), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(579), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(583), 1, + anon_sym_DOLLAR, + ACTIONS(587), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(591), 1, + aux_sym_number_token1, + ACTIONS(593), 1, + aux_sym_number_token2, + ACTIONS(595), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(601), 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(605), 1, sym_test_operator, - ACTIONS(5755), 1, + ACTIONS(607), 1, + sym__brace_start, + ACTIONS(4667), 1, anon_sym_BQUOTE, - STATE(2312), 1, + ACTIONS(4959), 1, + sym__special_character, + STATE(2414), 1, aux_sym__literal_repeat1, - STATE(3242), 1, + STATE(2825), 1, sym__expression, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1171), 2, + ACTIONS(181), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1173), 2, + ACTIONS(183), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1179), 2, + ACTIONS(589), 2, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, + ACTIONS(603), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2702), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2557), 9, + STATE(2309), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -169267,67 +158616,67 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [107912] = 26, + [99657] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(185), 1, + anon_sym_TILDE, + ACTIONS(566), 1, + sym_word, + ACTIONS(573), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(575), 1, + anon_sym_BANG, + ACTIONS(577), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(579), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(583), 1, + anon_sym_DOLLAR, + ACTIONS(587), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(591), 1, + aux_sym_number_token1, + ACTIONS(593), 1, + aux_sym_number_token2, + ACTIONS(595), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(601), 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(605), 1, sym_test_operator, - ACTIONS(5755), 1, + ACTIONS(607), 1, + sym__brace_start, + ACTIONS(4667), 1, anon_sym_BQUOTE, - STATE(2312), 1, + ACTIONS(4959), 1, + sym__special_character, + STATE(2414), 1, aux_sym__literal_repeat1, - STATE(3245), 1, + STATE(2834), 1, sym__expression, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1171), 2, + ACTIONS(181), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1173), 2, + ACTIONS(183), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1179), 2, + ACTIONS(589), 2, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, + ACTIONS(603), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2702), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2557), 9, + STATE(2309), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -169337,67 +158686,67 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [108008] = 26, + [99753] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(185), 1, + anon_sym_TILDE, + ACTIONS(566), 1, + sym_word, + ACTIONS(573), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(575), 1, + anon_sym_BANG, + ACTIONS(577), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(579), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(583), 1, + anon_sym_DOLLAR, + ACTIONS(587), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(591), 1, + aux_sym_number_token1, + ACTIONS(593), 1, + aux_sym_number_token2, + ACTIONS(595), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(601), 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(605), 1, sym_test_operator, - ACTIONS(5755), 1, + ACTIONS(607), 1, + sym__brace_start, + ACTIONS(4667), 1, anon_sym_BQUOTE, - STATE(2312), 1, + ACTIONS(4959), 1, + sym__special_character, + STATE(2414), 1, aux_sym__literal_repeat1, - STATE(3246), 1, + STATE(2835), 1, sym__expression, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1171), 2, + ACTIONS(181), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1173), 2, + ACTIONS(183), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1179), 2, + ACTIONS(589), 2, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, + ACTIONS(603), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2702), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2557), 9, + STATE(2309), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -169407,67 +158756,117 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [108104] = 26, + [99849] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(256), 1, + ACTIONS(5248), 1, + aux_sym_concatenation_token1, + ACTIONS(5456), 1, + sym__concat, + STATE(2027), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1213), 15, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - 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(1215), 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(1167), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [99905] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(185), 1, + anon_sym_TILDE, + ACTIONS(566), 1, sym_word, - ACTIONS(1169), 1, + ACTIONS(573), 1, + anon_sym_LPAREN, + ACTIONS(575), 1, anon_sym_BANG, - ACTIONS(1175), 1, - anon_sym_TILDE, - ACTIONS(1177), 1, - sym__special_character, - ACTIONS(1181), 1, + ACTIONS(577), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(579), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(583), 1, + anon_sym_DOLLAR, + ACTIONS(587), 1, + anon_sym_DQUOTE, + ACTIONS(591), 1, + aux_sym_number_token1, + ACTIONS(593), 1, + aux_sym_number_token2, + ACTIONS(595), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(601), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(605), 1, sym_test_operator, - ACTIONS(5755), 1, + ACTIONS(607), 1, + sym__brace_start, + ACTIONS(4667), 1, anon_sym_BQUOTE, - STATE(2312), 1, + ACTIONS(4959), 1, + sym__special_character, + STATE(2414), 1, aux_sym__literal_repeat1, - STATE(3247), 1, + STATE(2845), 1, sym__expression, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1171), 2, + ACTIONS(181), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1173), 2, + ACTIONS(183), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1179), 2, + ACTIONS(589), 2, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, + ACTIONS(603), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2702), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2557), 9, + STATE(2309), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -169477,7 +158876,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [108200] = 26, + [100001] = 26, ACTIONS(71), 1, sym_comment, ACTIONS(256), 1, @@ -169490,17 +158889,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(1099), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(1109), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(1167), 1, sym_word, @@ -169512,13 +158911,13 @@ static const uint16_t ts_small_parse_table[] = { sym__special_character, ACTIONS(1181), 1, sym_test_operator, - ACTIONS(5755), 1, + ACTIONS(4951), 1, anon_sym_BQUOTE, - STATE(2312), 1, + STATE(2197), 1, aux_sym__literal_repeat1, - STATE(3248), 1, + STATE(3095), 1, sym__expression, - ACTIONS(1125), 2, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(1171), 2, @@ -169530,14 +158929,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1179), 2, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, + STATE(2394), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2557), 9, + STATE(2444), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -169547,7 +158946,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [108296] = 26, + [100097] = 26, ACTIONS(71), 1, sym_comment, ACTIONS(256), 1, @@ -169560,17 +158959,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(1099), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(1109), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(1167), 1, sym_word, @@ -169582,13 +158981,13 @@ static const uint16_t ts_small_parse_table[] = { sym__special_character, ACTIONS(1181), 1, sym_test_operator, - ACTIONS(5755), 1, + ACTIONS(4951), 1, anon_sym_BQUOTE, - STATE(2312), 1, + STATE(2197), 1, aux_sym__literal_repeat1, - STATE(3249), 1, + STATE(3098), 1, sym__expression, - ACTIONS(1125), 2, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(1171), 2, @@ -169600,14 +158999,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1179), 2, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, + STATE(2394), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2557), 9, + STATE(2444), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -169617,59 +159016,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [108392] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, - sym_file_descriptor, - ACTIONS(6249), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(5862), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5860), 16, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [108452] = 26, + [100193] = 26, ACTIONS(71), 1, sym_comment, ACTIONS(256), 1, @@ -169682,17 +159029,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(1099), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(1109), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(1167), 1, sym_word, @@ -169704,13 +159051,13 @@ static const uint16_t ts_small_parse_table[] = { sym__special_character, ACTIONS(1181), 1, sym_test_operator, - ACTIONS(5755), 1, + ACTIONS(4951), 1, anon_sym_BQUOTE, - STATE(2312), 1, + STATE(2197), 1, aux_sym__literal_repeat1, - STATE(3019), 1, + STATE(3099), 1, sym__expression, - ACTIONS(1125), 2, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(1171), 2, @@ -169722,14 +159069,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1179), 2, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, + STATE(2394), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2557), 9, + STATE(2444), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -169739,7 +159086,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [108548] = 26, + [100289] = 26, ACTIONS(71), 1, sym_comment, ACTIONS(256), 1, @@ -169752,17 +159099,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(1099), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(1109), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(1167), 1, sym_word, @@ -169774,13 +159121,13 @@ static const uint16_t ts_small_parse_table[] = { sym__special_character, ACTIONS(1181), 1, sym_test_operator, - ACTIONS(5755), 1, + ACTIONS(4951), 1, anon_sym_BQUOTE, - STATE(2312), 1, + STATE(2197), 1, aux_sym__literal_repeat1, - STATE(3252), 1, + STATE(3100), 1, sym__expression, - ACTIONS(1125), 2, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(1171), 2, @@ -169792,14 +159139,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1179), 2, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, + STATE(2394), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2557), 9, + STATE(2444), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -169809,7 +159156,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [108644] = 26, + [100385] = 26, ACTIONS(71), 1, sym_comment, ACTIONS(256), 1, @@ -169822,17 +159169,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(1099), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(1109), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(1167), 1, sym_word, @@ -169844,13 +159191,13 @@ static const uint16_t ts_small_parse_table[] = { sym__special_character, ACTIONS(1181), 1, sym_test_operator, - ACTIONS(5755), 1, + ACTIONS(4951), 1, anon_sym_BQUOTE, - STATE(2312), 1, + STATE(2197), 1, aux_sym__literal_repeat1, - STATE(3253), 1, + STATE(3101), 1, sym__expression, - ACTIONS(1125), 2, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(1171), 2, @@ -169862,14 +159209,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1179), 2, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, + STATE(2394), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2557), 9, + STATE(2444), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -169879,7 +159226,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [108740] = 26, + [100481] = 26, ACTIONS(71), 1, sym_comment, ACTIONS(256), 1, @@ -169892,17 +159239,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(1099), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(1109), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(1167), 1, sym_word, @@ -169914,13 +159261,13 @@ static const uint16_t ts_small_parse_table[] = { sym__special_character, ACTIONS(1181), 1, sym_test_operator, - ACTIONS(5755), 1, + ACTIONS(4951), 1, anon_sym_BQUOTE, - STATE(2312), 1, + STATE(2197), 1, aux_sym__literal_repeat1, - STATE(3254), 1, + STATE(3102), 1, sym__expression, - ACTIONS(1125), 2, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(1171), 2, @@ -169932,14 +159279,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1179), 2, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, + STATE(2394), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2557), 9, + STATE(2444), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -169949,67 +159296,67 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [108836] = 26, + [100577] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(185), 1, + anon_sym_TILDE, + ACTIONS(566), 1, + sym_word, + ACTIONS(573), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(575), 1, + anon_sym_BANG, + ACTIONS(577), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(579), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(583), 1, + anon_sym_DOLLAR, + ACTIONS(587), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(591), 1, + aux_sym_number_token1, + ACTIONS(593), 1, + aux_sym_number_token2, + ACTIONS(595), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(601), 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(605), 1, sym_test_operator, - ACTIONS(5755), 1, + ACTIONS(607), 1, + sym__brace_start, + ACTIONS(4667), 1, anon_sym_BQUOTE, - STATE(2312), 1, + ACTIONS(4959), 1, + sym__special_character, + STATE(2414), 1, aux_sym__literal_repeat1, - STATE(3255), 1, + STATE(2846), 1, sym__expression, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1171), 2, + ACTIONS(181), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1173), 2, + ACTIONS(183), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1179), 2, + ACTIONS(589), 2, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, + ACTIONS(603), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2702), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2557), 9, + STATE(2309), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -170019,67 +159366,9 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [108932] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, - sym_file_descriptor, - ACTIONS(6252), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(5862), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5860), 16, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [108992] = 26, + [100673] = 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, @@ -170088,50 +159377,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(280), 1, - sym_test_operator, ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(1099), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, - sym__special_character, - ACTIONS(1117), 1, + ACTIONS(1109), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, + ACTIONS(1167), 1, + sym_word, + ACTIONS(1169), 1, + anon_sym_BANG, + ACTIONS(1175), 1, + anon_sym_TILDE, + ACTIONS(1177), 1, + sym__special_character, + ACTIONS(1181), 1, + sym_test_operator, + ACTIONS(4951), 1, anon_sym_BQUOTE, - STATE(2312), 1, + STATE(2197), 1, aux_sym__literal_repeat1, - STATE(2997), 1, + STATE(3104), 1, sym__expression, - ACTIONS(101), 2, + ACTIONS(1117), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1171), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(103), 2, + ACTIONS(1173), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1119), 2, + ACTIONS(1179), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2518), 6, + STATE(2394), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2344), 9, + STATE(2444), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -170141,7 +159436,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [109088] = 26, + [100769] = 26, ACTIONS(71), 1, sym_comment, ACTIONS(256), 1, @@ -170154,17 +159449,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(1099), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(1109), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(1167), 1, sym_word, @@ -170176,13 +159471,13 @@ static const uint16_t ts_small_parse_table[] = { sym__special_character, ACTIONS(1181), 1, sym_test_operator, - ACTIONS(5755), 1, + ACTIONS(4951), 1, anon_sym_BQUOTE, - STATE(2312), 1, + STATE(2197), 1, aux_sym__literal_repeat1, - STATE(3259), 1, + STATE(3105), 1, sym__expression, - ACTIONS(1125), 2, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(1171), 2, @@ -170194,14 +159489,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1179), 2, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, + STATE(2394), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2557), 9, + STATE(2444), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -170211,119 +159506,67 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [109184] = 8, - ACTIONS(3), 1, + [100865] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, - sym_file_descriptor, - ACTIONS(6255), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(5862), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5860), 16, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + ACTIONS(256), 1, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(262), 1, aux_sym_number_token1, + ACTIONS(264), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, + ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [109244] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(185), 1, - anon_sym_TILDE, - ACTIONS(356), 1, - sym_word, - ACTIONS(363), 1, + ACTIONS(282), 1, + sym__brace_start, + ACTIONS(1099), 1, anon_sym_LPAREN, - ACTIONS(365), 1, - anon_sym_BANG, - ACTIONS(367), 1, + ACTIONS(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, - anon_sym_DOLLAR, - ACTIONS(377), 1, + ACTIONS(1109), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, - aux_sym_number_token1, - ACTIONS(383), 1, - aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(395), 1, + ACTIONS(1167), 1, + sym_word, + ACTIONS(1169), 1, + anon_sym_BANG, + ACTIONS(1175), 1, + anon_sym_TILDE, + ACTIONS(1177), 1, + sym__special_character, + ACTIONS(1181), 1, sym_test_operator, - ACTIONS(397), 1, - sym__brace_start, - ACTIONS(5375), 1, + ACTIONS(4951), 1, anon_sym_BQUOTE, - ACTIONS(5797), 1, - sym__special_character, - STATE(2549), 1, + STATE(2197), 1, aux_sym__literal_repeat1, - STATE(3002), 1, + STATE(3106), 1, sym__expression, - ACTIONS(181), 2, + ACTIONS(1117), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1171), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(183), 2, + ACTIONS(1173), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(379), 2, + ACTIONS(1179), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(393), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2847), 6, + STATE(2394), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2309), 9, + STATE(2444), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -170333,108 +159576,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [109340] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, - sym_file_descriptor, - ACTIONS(6258), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(5862), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5860), 16, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [109400] = 5, - ACTIONS(71), 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, - 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, - [109454] = 26, + [100961] = 26, ACTIONS(71), 1, sym_comment, ACTIONS(256), 1, @@ -170447,54 +159589,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(1099), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(1109), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1127), 1, + ACTIONS(1167), 1, sym_word, - ACTIONS(1129), 1, + ACTIONS(1169), 1, anon_sym_BANG, - ACTIONS(1135), 1, + ACTIONS(1175), 1, anon_sym_TILDE, - ACTIONS(1141), 1, + ACTIONS(1177), 1, + sym__special_character, + ACTIONS(1181), 1, sym_test_operator, - ACTIONS(5755), 1, + ACTIONS(4951), 1, anon_sym_BQUOTE, - ACTIONS(5890), 1, - sym__special_character, - STATE(2451), 1, + STATE(2197), 1, aux_sym__literal_repeat1, - STATE(2854), 1, + STATE(3107), 1, sym__expression, - ACTIONS(1125), 2, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1131), 2, + ACTIONS(1171), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1133), 2, + ACTIONS(1173), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1139), 2, + ACTIONS(1179), 2, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, + STATE(2394), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2361), 9, + STATE(2444), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -170504,56 +159646,85 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [109550] = 3, + [101057] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(256), 1, 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(1310), 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(1099), 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(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, + ACTIONS(1109), 1, anon_sym_DQUOTE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1115), 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(4951), 1, + anon_sym_BQUOTE, + STATE(2197), 1, + aux_sym__literal_repeat1, + STATE(3108), 1, + sym__expression, + ACTIONS(1117), 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, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [109600] = 26, + STATE(2394), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2444), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [101153] = 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, @@ -170562,56 +159733,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(280), 1, + sym_test_operator, ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(1099), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(1107), 1, + sym__special_character, + ACTIONS(1109), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1115), 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, + ACTIONS(4951), 1, anon_sym_BQUOTE, - ACTIONS(5890), 1, - sym__special_character, - STATE(2451), 1, + STATE(2197), 1, aux_sym__literal_repeat1, - STATE(2857), 1, + STATE(2808), 1, sym__expression, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1131), 2, + ACTIONS(101), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1133), 2, + ACTIONS(103), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1139), 2, + ACTIONS(1111), 2, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, + ACTIONS(1117), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2394), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2361), 9, + STATE(2268), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -170621,67 +159786,67 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [109696] = 26, + [101249] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(185), 1, - anon_sym_TILDE, - ACTIONS(356), 1, - sym_word, - ACTIONS(363), 1, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, + aux_sym_number_token1, + ACTIONS(264), 1, + aux_sym_number_token2, + ACTIONS(268), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, + sym__brace_start, + ACTIONS(1099), 1, anon_sym_LPAREN, - ACTIONS(365), 1, - anon_sym_BANG, - ACTIONS(367), 1, + ACTIONS(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, - anon_sym_DOLLAR, - ACTIONS(377), 1, + ACTIONS(1109), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, - aux_sym_number_token1, - ACTIONS(383), 1, - aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(395), 1, + ACTIONS(1167), 1, + sym_word, + ACTIONS(1169), 1, + anon_sym_BANG, + ACTIONS(1175), 1, + anon_sym_TILDE, + ACTIONS(1177), 1, + sym__special_character, + ACTIONS(1181), 1, sym_test_operator, - ACTIONS(397), 1, - sym__brace_start, - ACTIONS(5375), 1, + ACTIONS(4951), 1, anon_sym_BQUOTE, - ACTIONS(5797), 1, - sym__special_character, - STATE(2549), 1, + STATE(2197), 1, aux_sym__literal_repeat1, - STATE(2862), 1, + STATE(3117), 1, sym__expression, - ACTIONS(181), 2, + ACTIONS(1117), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1171), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(183), 2, + ACTIONS(1173), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(379), 2, + ACTIONS(1179), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(393), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2847), 6, + STATE(2394), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2309), 9, + STATE(2444), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -170691,111 +159856,109 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [109792] = 8, - ACTIONS(3), 1, + [101345] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + STATE(2027), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5458), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1219), 15, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1221), 24, sym_file_descriptor, - ACTIONS(6261), 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, 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, 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, - [109852] = 8, - ACTIONS(3), 1, + [101399] = 9, + ACTIONS(71), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, - sym_file_descriptor, - ACTIONS(6264), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(5156), 1, sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(5862), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + STATE(6344), 1, + sym_subscript, + STATE(765), 2, + sym_file_redirect, + sym_heredoc_redirect, + STATE(4940), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3935), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(3937), 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, + ACTIONS(3939), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + ACTIONS(3944), 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, - [109912] = 26, + [101461] = 26, ACTIONS(71), 1, sym_comment, ACTIONS(256), 1, @@ -170808,17 +159971,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(1099), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(1109), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(1167), 1, sym_word, @@ -170830,13 +159993,13 @@ static const uint16_t ts_small_parse_table[] = { sym__special_character, ACTIONS(1181), 1, sym_test_operator, - ACTIONS(5755), 1, + ACTIONS(4951), 1, anon_sym_BQUOTE, - STATE(2312), 1, + STATE(2197), 1, aux_sym__literal_repeat1, - STATE(2545), 1, + STATE(2352), 1, sym__expression, - ACTIONS(1125), 2, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(1171), 2, @@ -170848,14 +160011,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1179), 2, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, + STATE(2394), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2557), 9, + STATE(2444), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -170865,7 +160028,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [110008] = 26, + [101557] = 26, ACTIONS(71), 1, sym_comment, ACTIONS(256), 1, @@ -170878,17 +160041,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(1099), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(1109), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(1167), 1, sym_word, @@ -170900,13 +160063,13 @@ static const uint16_t ts_small_parse_table[] = { sym__special_character, ACTIONS(1181), 1, sym_test_operator, - ACTIONS(5755), 1, + ACTIONS(4951), 1, anon_sym_BQUOTE, - STATE(2312), 1, + STATE(2197), 1, aux_sym__literal_repeat1, - STATE(3260), 1, + STATE(3118), 1, sym__expression, - ACTIONS(1125), 2, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(1171), 2, @@ -170918,14 +160081,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1179), 2, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, + STATE(2394), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2557), 9, + STATE(2444), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -170935,9 +160098,15 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [110104] = 26, + [101653] = 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, @@ -170946,56 +160115,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(280), 1, + sym_test_operator, ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(1099), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(1107), 1, + sym__special_character, + ACTIONS(1109), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1147), 1, - sym_word, - ACTIONS(1149), 1, - anon_sym_BANG, - ACTIONS(1155), 1, - anon_sym_TILDE, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1161), 1, - sym_test_operator, - ACTIONS(5755), 1, + ACTIONS(4951), 1, anon_sym_BQUOTE, - STATE(2312), 1, + STATE(2197), 1, aux_sym__literal_repeat1, - STATE(3004), 1, + STATE(2840), 1, sym__expression, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1151), 2, + ACTIONS(101), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1153), 2, + ACTIONS(103), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1159), 2, + ACTIONS(1111), 2, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, + ACTIONS(1117), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2394), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2381), 9, + STATE(2268), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -171005,54 +160168,7 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5886), 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, - [110250] = 26, + [101749] = 26, ACTIONS(71), 1, sym_comment, ACTIONS(256), 1, @@ -171065,54 +160181,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(1099), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(1109), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1127), 1, + ACTIONS(1135), 1, sym_word, - ACTIONS(1129), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(1135), 1, + ACTIONS(1143), 1, anon_sym_TILDE, - ACTIONS(1141), 1, + ACTIONS(1145), 1, + sym__special_character, + ACTIONS(1149), 1, sym_test_operator, - ACTIONS(5755), 1, + ACTIONS(4951), 1, anon_sym_BQUOTE, - ACTIONS(5890), 1, - sym__special_character, - STATE(2451), 1, + STATE(2197), 1, aux_sym__literal_repeat1, - STATE(2867), 1, + STATE(2820), 1, sym__expression, - ACTIONS(1125), 2, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1131), 2, + ACTIONS(1139), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1133), 2, + ACTIONS(1141), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1139), 2, + ACTIONS(1147), 2, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, + STATE(2394), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2361), 9, + STATE(2298), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -171122,98 +160238,95 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [110346] = 8, - ACTIONS(3), 1, + [101845] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + STATE(2007), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5248), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1229), 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(1231), 24, sym_file_descriptor, - ACTIONS(6267), 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, 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, 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, - [110406] = 26, + [101899] = 26, ACTIONS(71), 1, sym_comment, ACTIONS(185), 1, anon_sym_TILDE, - ACTIONS(356), 1, + ACTIONS(566), 1, sym_word, - ACTIONS(363), 1, + ACTIONS(573), 1, anon_sym_LPAREN, - ACTIONS(365), 1, + ACTIONS(575), 1, anon_sym_BANG, - ACTIONS(367), 1, + ACTIONS(577), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, + ACTIONS(579), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, + ACTIONS(583), 1, anon_sym_DOLLAR, - ACTIONS(377), 1, + ACTIONS(587), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(591), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(593), 1, aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(595), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(597), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, + ACTIONS(601), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(395), 1, + ACTIONS(605), 1, sym_test_operator, - ACTIONS(397), 1, + ACTIONS(607), 1, sym__brace_start, - ACTIONS(5375), 1, + ACTIONS(4667), 1, anon_sym_BQUOTE, - ACTIONS(5797), 1, + ACTIONS(4959), 1, sym__special_character, - STATE(2549), 1, + STATE(2414), 1, aux_sym__literal_repeat1, - STATE(2868), 1, + STATE(2865), 1, sym__expression, ACTIONS(181), 2, anon_sym_PLUS_PLUS2, @@ -171221,13 +160334,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(183), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(379), 2, + ACTIONS(589), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(393), 2, + ACTIONS(603), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2847), 6, + STATE(2702), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, @@ -171244,67 +160357,67 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [110502] = 26, + [101995] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, - aux_sym_number_token1, - ACTIONS(264), 1, - aux_sym_number_token2, - ACTIONS(268), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(185), 1, + anon_sym_TILDE, + ACTIONS(566), 1, + sym_word, + ACTIONS(573), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(575), 1, + anon_sym_BANG, + ACTIONS(577), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(579), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(583), 1, + anon_sym_DOLLAR, + ACTIONS(587), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(591), 1, + aux_sym_number_token1, + ACTIONS(593), 1, + aux_sym_number_token2, + ACTIONS(595), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(601), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1127), 1, - sym_word, - ACTIONS(1129), 1, - anon_sym_BANG, - ACTIONS(1135), 1, - anon_sym_TILDE, - ACTIONS(1141), 1, + ACTIONS(605), 1, sym_test_operator, - ACTIONS(5755), 1, + ACTIONS(607), 1, + sym__brace_start, + ACTIONS(4667), 1, anon_sym_BQUOTE, - ACTIONS(5890), 1, + ACTIONS(4959), 1, sym__special_character, - STATE(2451), 1, + STATE(2414), 1, aux_sym__literal_repeat1, - STATE(2886), 1, + STATE(2866), 1, sym__expression, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1131), 2, + ACTIONS(181), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1133), 2, + ACTIONS(183), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1139), 2, + ACTIONS(589), 2, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, + ACTIONS(603), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2702), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2361), 9, + STATE(2309), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -171314,85 +160427,32 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [110598] = 8, + [102091] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(5227), 1, + sym__special_character, + STATE(1846), 1, + aux_sym__literal_repeat1, + ACTIONS(4483), 4, sym_file_descriptor, - ACTIONS(6270), 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(4481), 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_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_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, - [110658] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, - sym_file_descriptor, - ACTIONS(6273), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(5862), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_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, @@ -171400,12 +160460,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, @@ -171418,496 +160476,289 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [110718] = 8, - ACTIONS(3), 1, + [102145] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, - sym_file_descriptor, - ACTIONS(6276), 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(1312), 15, 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_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_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, - [110778] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1225), 5, + ACTIONS(1314), 27, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 37, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, + anon_sym_LPAREN, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [110828] = 8, - ACTIONS(3), 1, + [102195] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, - sym_file_descriptor, - ACTIONS(6279), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(5862), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(185), 1, + anon_sym_TILDE, + ACTIONS(566), 1, + sym_word, + ACTIONS(573), 1, + anon_sym_LPAREN, + ACTIONS(575), 1, + anon_sym_BANG, + ACTIONS(577), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(579), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(583), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(587), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(591), 1, aux_sym_number_token1, + ACTIONS(593), 1, aux_sym_number_token2, + ACTIONS(595), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(597), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(601), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [110888] = 8, - ACTIONS(3), 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, - sym_variable_name, + ACTIONS(605), 1, sym_test_operator, + ACTIONS(607), 1, sym__brace_start, - ACTIONS(5862), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5860), 16, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + ACTIONS(4667), 1, + anon_sym_BQUOTE, + ACTIONS(4959), 1, sym__special_character, - anon_sym_DQUOTE, + STATE(2414), 1, + aux_sym__literal_repeat1, + STATE(2867), 1, + sym__expression, + ACTIONS(181), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(183), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(589), 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(603), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [110948] = 8, - ACTIONS(3), 1, + STATE(2702), 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, + [102291] = 26, + ACTIONS(71), 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, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(185), 1, + anon_sym_TILDE, + ACTIONS(566), 1, + sym_word, + ACTIONS(573), 1, + anon_sym_LPAREN, + ACTIONS(575), 1, + anon_sym_BANG, + ACTIONS(577), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(579), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(583), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(587), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(591), 1, aux_sym_number_token1, + ACTIONS(593), 1, aux_sym_number_token2, + ACTIONS(595), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(597), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(601), 1, 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, - sym_file_descriptor, - ACTIONS(6288), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, - sym_variable_name, + ACTIONS(605), 1, sym_test_operator, + ACTIONS(607), 1, sym__brace_start, - ACTIONS(5862), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5860), 16, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + ACTIONS(4667), 1, + anon_sym_BQUOTE, + ACTIONS(4959), 1, sym__special_character, - anon_sym_DQUOTE, + STATE(2414), 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(589), 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(603), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [111068] = 8, - ACTIONS(3), 1, + STATE(2702), 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, + [102387] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, - sym_file_descriptor, - ACTIONS(6291), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(5862), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(185), 1, + anon_sym_TILDE, + ACTIONS(566), 1, + sym_word, + ACTIONS(573), 1, + anon_sym_LPAREN, + ACTIONS(575), 1, + anon_sym_BANG, + ACTIONS(577), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(579), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(583), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(587), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(591), 1, aux_sym_number_token1, + ACTIONS(593), 1, aux_sym_number_token2, + ACTIONS(595), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(597), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(601), 1, 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, + ACTIONS(605), 1, sym_test_operator, + ACTIONS(607), 1, sym__brace_start, - ACTIONS(5862), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5860), 16, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + ACTIONS(4667), 1, + anon_sym_BQUOTE, + ACTIONS(4959), 1, sym__special_character, - anon_sym_DQUOTE, + STATE(2414), 1, + aux_sym__literal_repeat1, + STATE(2659), 1, + sym__expression, + ACTIONS(181), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(183), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(589), 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(603), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [111188] = 8, + STATE(2702), 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, + [102483] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(5227), 1, + sym__special_character, + STATE(1846), 1, + aux_sym__literal_repeat1, + ACTIONS(4491), 4, sym_file_descriptor, - ACTIONS(6297), 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(4489), 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_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_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, - [111248] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, - sym_file_descriptor, - ACTIONS(6300), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(5862), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_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, @@ -171915,12 +160766,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, @@ -171933,266 +160782,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [111308] = 8, - ACTIONS(3), 1, + [102537] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, - sym_file_descriptor, - ACTIONS(6303), 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(1256), 15, 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_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_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, - [111368] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(1258), 27, sym_file_descriptor, - ACTIONS(6306), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(5862), 9, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, + anon_sym_LPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [111428] = 8, - ACTIONS(3), 1, + [102587] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, - sym_file_descriptor, - ACTIONS(6309), 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(1219), 15, 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_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_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, - [111488] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5869), 1, + ACTIONS(1221), 27, sym_file_descriptor, - ACTIONS(5867), 2, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(5872), 3, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(5862), 9, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, + anon_sym_LPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [111546] = 8, - ACTIONS(3), 1, + [102637] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(1308), 15, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1310), 27, sym_file_descriptor, - ACTIONS(6312), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(5862), 9, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, + anon_sym_LPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [111606] = 26, + [102687] = 26, ACTIONS(71), 1, sym_comment, ACTIONS(256), 1, @@ -172205,54 +160936,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(1099), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(1109), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1127), 1, + ACTIONS(1135), 1, sym_word, - ACTIONS(1129), 1, + ACTIONS(1137), 1, anon_sym_BANG, - ACTIONS(1135), 1, + ACTIONS(1143), 1, anon_sym_TILDE, - ACTIONS(1141), 1, + ACTIONS(1145), 1, + sym__special_character, + ACTIONS(1149), 1, sym_test_operator, - ACTIONS(5755), 1, + ACTIONS(4951), 1, anon_sym_BQUOTE, - ACTIONS(5890), 1, - sym__special_character, - STATE(2451), 1, + STATE(2197), 1, aux_sym__literal_repeat1, - STATE(2903), 1, + STATE(2662), 1, sym__expression, - ACTIONS(1125), 2, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1131), 2, + ACTIONS(1139), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1133), 2, + ACTIONS(1141), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1139), 2, + ACTIONS(1147), 2, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, + STATE(2394), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2361), 9, + STATE(2298), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -172262,32 +160993,37 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [111702] = 3, - ACTIONS(3), 1, + [102783] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(4313), 5, + ACTIONS(1252), 15, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1254), 27, sym_file_descriptor, - sym_variable_name, + sym__concat, 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_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, + anon_sym_LPAREN, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -172295,56 +161031,28 @@ 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, - [111752] = 8, + [102833] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, - sym_file_descriptor, - ACTIONS(6315), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(3944), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, + ACTIONS(4935), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(3935), 17, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -172361,7 +161069,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [111812] = 26, + ACTIONS(4933), 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, + [102887] = 26, ACTIONS(71), 1, sym_comment, ACTIONS(256), 1, @@ -172374,87 +161102,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(1099), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1103), 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(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__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(1113), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(1167), 1, sym_word, @@ -172466,13 +161124,13 @@ static const uint16_t ts_small_parse_table[] = { sym__special_character, ACTIONS(1181), 1, sym_test_operator, - ACTIONS(5755), 1, + ACTIONS(4951), 1, anon_sym_BQUOTE, - STATE(2312), 1, + STATE(2197), 1, aux_sym__literal_repeat1, - STATE(3243), 1, + STATE(3096), 1, sym__expression, - ACTIONS(1125), 2, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(1171), 2, @@ -172484,14 +161142,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1179), 2, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, + STATE(2394), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2557), 9, + STATE(2444), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -172501,28 +161159,32 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [112004] = 3, + [102983] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 4, + ACTIONS(5027), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5029), 1, sym_file_descriptor, + ACTIONS(5032), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 38, + ACTIONS(5022), 10, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5024), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -172530,8 +161192,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(5020), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -172548,20 +161210,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [112054] = 8, + [103041] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(5027), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(5029), 1, sym_file_descriptor, - ACTIONS(6318), 1, + ACTIONS(5461), 1, anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(5032), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(5022), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -172571,7 +161233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 11, + ACTIONS(5024), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -172583,7 +161245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5860), 16, + ACTIONS(5020), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -172600,110 +161262,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [112114] = 8, - ACTIONS(3), 1, + [103101] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, - sym_file_descriptor, - ACTIONS(6321), 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(1268), 15, 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_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_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, - [112174] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6324), 1, - sym__special_character, - STATE(2217), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 4, + ACTIONS(1270), 26, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 35, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [112227] = 3, + [103150] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 15, + ACTIONS(1280), 15, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, @@ -172719,7 +161327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1302), 26, + ACTIONS(1282), 26, sym_file_descriptor, sym__concat, sym_test_operator, @@ -172746,10 +161354,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [112276] = 3, + [103199] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5464), 1, + sym__special_character, + STATE(2152), 1, + aux_sym__literal_repeat1, + ACTIONS(4483), 5, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(4481), 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, + [103252] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1252), 14, + ACTIONS(1085), 1, + aux_sym_concatenation_token1, + STATE(2223), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1229), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -172764,7 +161424,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1254), 27, + sym__special_character, + ACTIONS(1231), 24, sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, @@ -172786,41 +161447,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [112325] = 3, + [103305] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 15, + STATE(2117), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5466), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4004), 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(1306), 26, + ACTIONS(4006), 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, @@ -172829,8 +161491,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, @@ -172838,35 +161498,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [112374] = 3, + [103358] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 15, + STATE(2118), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5466), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4493), 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(1302), 26, + ACTIONS(4495), 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, @@ -172875,8 +161539,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, @@ -172884,10 +161546,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [112423] = 3, + [103411] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1213), 15, + ACTIONS(1284), 15, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, @@ -172903,7 +161565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1215), 26, + ACTIONS(1286), 26, sym_file_descriptor, sym__concat, sym_test_operator, @@ -172930,194 +161592,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [112472] = 3, + [103460] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1284), 14, - anon_sym_EQ, + ACTIONS(1288), 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(1286), 27, + 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), 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_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - [112521] = 3, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [103509] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1213), 14, - anon_sym_EQ, + STATE(2118), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5466), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4008), 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(1215), 27, - 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(4010), 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_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [112570] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1260), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1262), 27, - sym__concat, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_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, + [103562] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5464), 1, + sym__special_character, + STATE(2152), 1, + aux_sym__literal_repeat1, + ACTIONS(4491), 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(4489), 34, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [112619] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1312), 14, - anon_sym_EQ, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1314), 27, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [112668] = 3, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, + [103615] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1268), 14, + STATE(2184), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1105), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1229), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -173132,8 +161757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1270), 27, - sym__concat, + ACTIONS(1231), 24, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -173155,44 +161779,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [112717] = 5, + sym__special_character, + [103668] = 3, 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(1292), 15, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(2158), 24, + ACTIONS(1294), 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, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -173201,6 +161819,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,107 +161828,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [112770] = 3, + [103717] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 14, - anon_sym_EQ, + ACTIONS(1296), 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(1310), 27, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1298), 26, + sym_file_descriptor, sym__concat, 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_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - [112819] = 3, - ACTIONS(71), 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, + [103766] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 14, - anon_sym_EQ, + ACTIONS(5468), 1, + sym__special_character, + STATE(2064), 1, + aux_sym__literal_repeat1, + ACTIONS(1318), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1316), 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(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, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, + [103819] = 5, ACTIONS(71), 1, sym_comment, - STATE(2275), 1, + STATE(2117), 1, aux_sym_concatenation_repeat1, - ACTIONS(6327), 2, + ACTIONS(5466), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(4280), 14, + ACTIONS(4489), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -173323,7 +161945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(4282), 24, + ACTIONS(4491), 24, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -173348,56 +161970,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [112921] = 3, + [103872] = 5, 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, + STATE(2256), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1105), 2, sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, aux_sym_concatenation_token1, - [112970] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1288), 14, + ACTIONS(1229), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -173412,8 +161993,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1290), 27, - sym__concat, + sym__special_character, + ACTIONS(1231), 23, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -173434,154 +162015,105 @@ 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, - aux_sym_concatenation_token1, - [113019] = 3, + [103925] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 14, - anon_sym_EQ, + ACTIONS(1276), 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(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, - aux_sym_concatenation_token1, - [113068] = 3, - ACTIONS(3), 1, - sym_comment, - 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, + sym_word, + ACTIONS(1278), 26, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 37, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + 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, - aux_sym__simple_variable_name_token1, - sym_word, - [113117] = 3, + [103974] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1280), 14, - anon_sym_EQ, + ACTIONS(1300), 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(1282), 27, + 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), 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_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - [113166] = 3, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [104023] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 14, + ACTIONS(1312), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -173596,7 +162128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1294), 27, + ACTIONS(1314), 27, sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, @@ -173624,58 +162156,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_COLON, aux_sym_concatenation_token1, - [113215] = 5, - ACTIONS(71), 1, + [104072] = 5, + ACTIONS(3), 1, sym_comment, - STATE(2273), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6327), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4437), 14, + ACTIONS(5471), 1, + sym__special_character, + STATE(2064), 1, + aux_sym__literal_repeat1, + ACTIONS(4897), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4895), 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, - sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_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, + [104125] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1231), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1229), 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_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, - [113268] = 3, + sym_word, + [104174] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 14, + ACTIONS(1256), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -173690,7 +162268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1250), 27, + ACTIONS(1258), 27, sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, @@ -173718,10 +162296,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_COLON, aux_sym_concatenation_token1, - [113317] = 3, + [104223] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 14, + ACTIONS(1219), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -173736,7 +162314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1298), 27, + ACTIONS(1221), 27, sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, @@ -173764,10 +162342,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_COLON, aux_sym_concatenation_token1, - [113366] = 3, + [104272] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 14, + ACTIONS(1268), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -173782,7 +162360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1302), 27, + ACTIONS(1270), 27, sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, @@ -173810,10 +162388,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_COLON, aux_sym_concatenation_token1, - [113415] = 3, + [104321] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 14, + 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_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1306), 26, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_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, + [104370] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5473), 1, + sym__special_character, + STATE(2115), 1, + aux_sym__literal_repeat1, + ACTIONS(237), 14, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(276), 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, + [104423] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1308), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -173828,7 +162500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1306), 27, + ACTIONS(1310), 27, sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, @@ -173856,10 +162528,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_COLON, aux_sym_concatenation_token1, - [113464] = 3, + [104472] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5163), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5161), 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, + [104521] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4901), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4899), 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, + [104570] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 14, + ACTIONS(1300), 15, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1302), 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, + [104619] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1272), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -173874,7 +162684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1302), 27, + ACTIONS(1274), 27, sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, @@ -173902,10 +162712,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_COLON, aux_sym_concatenation_token1, - [113513] = 3, + [104668] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 14, + ACTIONS(1252), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -173920,7 +162730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1258), 27, + ACTIONS(1254), 27, sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, @@ -173948,36 +162758,264 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_COLON, aux_sym_concatenation_token1, - [113562] = 3, - ACTIONS(71), 1, + [104717] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1312), 15, + ACTIONS(5167), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5165), 37, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_EQ_TILDE, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_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, + [104766] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5171), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5169), 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, + [104815] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5175), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5173), 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, + [104864] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5179), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5177), 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, + [104913] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5183), 4, sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5181), 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, + [104962] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4835), 1, + aux_sym_concatenation_token1, + ACTIONS(5475), 1, sym__concat, + STATE(1253), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1207), 33, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -173985,73 +163023,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [113611] = 5, - ACTIONS(71), 1, + sym_word, + [105017] = 6, + ACTIONS(3), 1, sym_comment, - STATE(2417), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1085), 2, + ACTIONS(4835), 1, + aux_sym_concatenation_token1, + ACTIONS(5477), 1, sym__concat, + STATE(1253), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1213), 33, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [105072] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4818), 1, aux_sym_concatenation_token1, - ACTIONS(1223), 15, - anon_sym_EQ, + ACTIONS(5479), 1, + sym__concat, + STATE(1265), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1207), 33, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_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_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, + aux_sym__simple_variable_name_token1, + sym_word, + [105127] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4818), 1, + aux_sym_concatenation_token1, + ACTIONS(5481), 1, + sym__concat, + STATE(1265), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 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(1213), 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, - [113664] = 3, + 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, + [105182] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 5, + ACTIONS(5187), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 36, + ACTIONS(5185), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -174062,6 +163203,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, @@ -174086,257 +163229,522 @@ static const uint16_t 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, - ACTIONS(71), 1, + [105231] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1308), 15, + ACTIONS(5187), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5185), 37, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_EQ_TILDE, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_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), 26, + [105280] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5191), 4, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5189), 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, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [113762] = 5, - ACTIONS(71), 1, + sym_word, + [105329] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(6329), 1, + ACTIONS(5191), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5189), 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, - STATE(2249), 1, - aux_sym__literal_repeat1, - ACTIONS(1316), 14, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [105378] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5195), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5193), 37, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_EQ_TILDE, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_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(1318), 25, + [105427] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5199), 4, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5197), 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_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_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, - [113815] = 5, - ACTIONS(71), 1, + sym_word, + [105476] = 3, + ACTIONS(3), 1, sym_comment, - STATE(2273), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6327), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(2160), 14, + ACTIONS(5203), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5201), 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, - ACTIONS(2162), 24, + [105525] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1231), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1229), 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, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [113868] = 3, - ACTIONS(71), 1, + aux_sym__simple_variable_name_token1, + sym_word, + [105574] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1252), 15, + ACTIONS(5203), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5201), 37, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_EQ_TILDE, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_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, + [105623] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5207), 4, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5205), 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, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_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_word, + [105672] = 3, + ACTIONS(3), 1, sym_comment, - STATE(2275), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6327), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4307), 14, + ACTIONS(5207), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5205), 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, - ACTIONS(4309), 24, + [105721] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5211), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5209), 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_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, - [113970] = 5, + sym_word, + [105770] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6332), 1, - sym__special_character, - STATE(2217), 1, - aux_sym__literal_repeat1, - ACTIONS(5132), 4, + ACTIONS(5215), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 35, + ACTIONS(5213), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -174346,8 +163754,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, @@ -174360,6 +163769,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, @@ -174372,29 +163782,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [114023] = 6, + [105819] = 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(5215), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 33, + ACTIONS(5213), 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, @@ -174404,7 +163812,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, @@ -174421,29 +163828,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [114078] = 6, + [105868] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, - aux_sym_concatenation_token1, - ACTIONS(6336), 1, - sym__concat, - STATE(1430), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 5, + ACTIONS(5219), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 33, + ACTIONS(5217), 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, @@ -174453,7 +163858,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, @@ -174470,29 +163874,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [114133] = 6, + [105917] = 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(5219), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 33, + ACTIONS(5217), 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, @@ -174517,31 +163919,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, - [114188] = 6, - ACTIONS(3), 1, + [105966] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(5581), 1, - aux_sym_concatenation_token1, - ACTIONS(6340), 1, + 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, - STATE(1461), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 5, + 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, + [106015] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5471), 1, + sym__special_character, + STATE(2064), 1, + aux_sym__literal_repeat1, + ACTIONS(4483), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 33, + ACTIONS(4481), 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, @@ -174554,7 +164002,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, @@ -174566,9 +164013,54 @@ static const uint16_t 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, + [106068] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1284), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1286), 27, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, + [106117] = 3, ACTIONS(71), 1, sym_comment, ACTIONS(1272), 15, @@ -174614,14 +164106,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [114292] = 5, + [106166] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1085), 1, - aux_sym_concatenation_token1, - STATE(2317), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1223), 15, + ACTIONS(1264), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -174636,8 +164124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - sym__special_character, - ACTIONS(1225), 24, + ACTIONS(1266), 27, sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, @@ -174659,59 +164146,112 @@ 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, - [114345] = 3, + anon_sym_COLON, + aux_sym_concatenation_token1, + [106215] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 15, + ACTIONS(1248), 14, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1258), 26, - sym_file_descriptor, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1250), 27, sym__concat, sym_test_operator, - sym__bare_dollar, - sym__brace_start, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_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, + [106264] = 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_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + 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, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [114394] = 3, + [106313] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 15, + ACTIONS(5483), 1, + sym__special_character, + STATE(2115), 1, + aux_sym__literal_repeat1, + ACTIONS(1316), 14, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, @@ -174725,17 +164265,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(1266), 26, + ACTIONS(1318), 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, @@ -174745,95 +164284,96 @@ static const 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, - [114443] = 8, - ACTIONS(3), 1, + [106366] = 5, + ACTIONS(71), 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, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(6342), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 25, + STATE(2187), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1085), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1229), 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_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_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_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, 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, - [114502] = 3, + ACTIONS(1231), 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, + [106419] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1276), 15, + ACTIONS(5466), 1, + aux_sym_concatenation_token1, + ACTIONS(5486), 1, + sym__concat, + STATE(2119), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1207), 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(1278), 26, + ACTIONS(1209), 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, @@ -174842,8 +164382,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, @@ -174851,14 +164389,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [114551] = 5, + [106474] = 6, ACTIONS(71), 1, sym_comment, - STATE(2264), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6350), 2, - sym__concat, + ACTIONS(5466), 1, aux_sym_concatenation_token1, + ACTIONS(5488), 1, + sym__concat, + STATE(2119), 1, + aux_sym_concatenation_repeat1, ACTIONS(1213), 14, anon_sym_PIPE, anon_sym_LT, @@ -174899,35 +164438,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [114604] = 3, + [106529] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 15, + STATE(2119), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5490), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1219), 14, anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1250), 26, + ACTIONS(1221), 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, @@ -174936,8 +164479,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, @@ -174945,35 +164486,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [114653] = 3, + [106582] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1288), 15, + STATE(2117), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5466), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1229), 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(1290), 26, + ACTIONS(1231), 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, @@ -174982,8 +164527,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, @@ -174991,74 +164534,223 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [114702] = 3, - ACTIONS(71), 1, + [106635] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(1292), 15, + ACTIONS(5471), 1, + sym__special_character, + STATE(2064), 1, + aux_sym__literal_repeat1, + ACTIONS(4491), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4489), 35, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_EQ_TILDE, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1294), 26, - sym_file_descriptor, + [106688] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1260), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1262), 27, sym__concat, sym_test_operator, - sym__bare_dollar, - sym__brace_start, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_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, + [106737] = 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_PIPE_AMP, + 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, + [106786] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5495), 1, + anon_sym_DQUOTE, + ACTIONS(5499), 1, + sym_variable_name, + STATE(3293), 1, + sym_string, + ACTIONS(5497), 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(5493), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 25, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_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, - [114751] = 7, + sym_word, + [106845] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, - sym_file_descriptor, - ACTIONS(5872), 3, + ACTIONS(5495), 1, + anon_sym_DQUOTE, + ACTIONS(5499), 1, sym_variable_name, + STATE(3293), 1, + sym_string, + ACTIONS(5497), 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(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, + ACTIONS(5493), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 25, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -175070,35 +164762,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - ACTIONS(5860), 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, - [114808] = 7, + [106904] = 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, + [106953] = 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, + [107002] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(5027), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(5029), 1, sym_file_descriptor, - ACTIONS(5872), 3, + ACTIONS(5032), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ACTIONS(5022), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -175108,7 +164889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5864), 12, + ACTIONS(5024), 12, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -175121,7 +164902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, anon_sym_BQUOTE, - ACTIONS(5860), 15, + ACTIONS(5020), 15, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -175137,104 +164918,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [114865] = 5, + [107059] = 3, ACTIONS(71), 1, sym_comment, - STATE(2275), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6327), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1223), 14, + 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_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), 24, + 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, + [107108] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5027), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5029), 1, sym_file_descriptor, + ACTIONS(5032), 3, sym_variable_name, sym_test_operator, sym__brace_start, + ACTIONS(5022), 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(5024), 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(5020), 15, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [114918] = 3, + sym_word, + [107165] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 15, + ACTIONS(1280), 14, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1298), 26, - sym_file_descriptor, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1282), 27, sym__concat, sym_test_operator, - sym__bare_dollar, - sym__brace_start, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + 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, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [114967] = 3, + [107214] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1280), 15, + ACTIONS(1312), 15, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, @@ -175250,7 +165079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1282), 26, + ACTIONS(1314), 26, sym_file_descriptor, sym__concat, sym_test_operator, @@ -175277,84 +165106,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [115016] = 6, - ACTIONS(71), 1, + [107263] = 3, + ACTIONS(3), 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, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1209), 24, + ACTIONS(1231), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1229), 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, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [115071] = 3, + aux_sym__simple_variable_name_token1, + sym_word, + [107312] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1260), 15, + STATE(2117), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5466), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4481), 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(1262), 26, + ACTIONS(4483), 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, @@ -175363,8 +165193,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, @@ -175372,16 +165200,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [115120] = 6, + [107365] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6327), 1, - aux_sym_concatenation_token1, - ACTIONS(6355), 1, - sym__concat, - STATE(2264), 1, + STATE(2118), 1, aux_sym_concatenation_repeat1, - ACTIONS(1227), 14, + ACTIONS(5466), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4485), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -175396,7 +165223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1229), 24, + ACTIONS(4487), 24, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -175421,104 +165248,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [115175] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1225), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 37, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [115224] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2314), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1113), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1223), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1225), 24, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym__special_character, - [115277] = 3, + [107418] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1268), 15, + ACTIONS(1256), 15, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, @@ -175534,7 +165267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1270), 26, + ACTIONS(1258), 26, sym_file_descriptor, sym__concat, sym_test_operator, @@ -175561,90 +165294,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [115326] = 5, - ACTIONS(3), 1, + [107467] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6357), 1, - sym__special_character, - STATE(2280), 1, - aux_sym__literal_repeat1, - ACTIONS(5132), 5, + ACTIONS(1219), 15, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1221), 26, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 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_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, - [115379] = 5, + [107516] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6359), 1, - sym__special_character, - STATE(2280), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 5, + ACTIONS(4935), 2, sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3944), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 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, + ACTIONS(3935), 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, @@ -175652,20 +165363,11 @@ 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, - [115432] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1225), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 37, + ACTIONS(4933), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -175675,7 +165377,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, @@ -175686,56 +165387,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_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, - [115481] = 5, + [107569] = 3, ACTIONS(71), 1, sym_comment, - STATE(2275), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6327), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5130), 14, + 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, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(5132), 24, + ACTIONS(1310), 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, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -175744,6 +165425,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, @@ -175751,39 +165434,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [115534] = 5, + [107618] = 3, ACTIONS(71), 1, sym_comment, - STATE(2273), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6327), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5134), 14, + 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, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(5136), 24, + ACTIONS(1254), 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, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -175792,6 +165471,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, @@ -175799,15 +165480,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [115587] = 5, + [107667] = 5, ACTIONS(71), 1, sym_comment, - STATE(2396), 1, + STATE(2200), 1, aux_sym_concatenation_repeat1, - ACTIONS(1113), 2, + ACTIONS(1105), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1223), 14, + ACTIONS(1229), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -175822,7 +165503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1225), 24, + ACTIONS(1231), 24, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -175847,22 +165528,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_COLON, sym__special_character, - [115640] = 5, + [107720] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5858), 2, + ACTIONS(5464), 1, + sym__special_character, + STATE(2152), 1, + aux_sym__literal_repeat1, + ACTIONS(4897), 5, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4161), 3, - sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(4153), 16, - anon_sym_LT_LT_LT, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(4895), 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, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -175870,54 +165571,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - ACTIONS(5856), 20, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + [107773] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1264), 15, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1266), 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_BQUOTE, - [115693] = 6, + 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, + [107822] = 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(4487), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 33, + ACTIONS(4485), 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, @@ -175927,7 +165652,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, @@ -175944,22 +165668,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [115748] = 6, + [107871] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, + ACTIONS(4835), 1, aux_sym_concatenation_token1, - ACTIONS(5579), 1, + ACTIONS(4837), 1, sym__concat, - STATE(2255), 1, + STATE(2088), 1, aux_sym_concatenation_repeat1, - ACTIONS(5136), 5, + ACTIONS(4483), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5134), 33, + ACTIONS(4481), 33, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -175993,22 +165717,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [115803] = 6, + [107926] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5581), 1, + ACTIONS(4835), 1, aux_sym_concatenation_token1, - ACTIONS(5583), 1, + ACTIONS(4837), 1, sym__concat, - STATE(2256), 1, + STATE(2089), 1, aux_sym_concatenation_repeat1, - ACTIONS(5186), 5, + ACTIONS(4487), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5184), 33, + ACTIONS(4485), 33, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -176025,6 +165749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -176040,24 +165765,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, - [115858] = 6, + [107981] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5581), 1, + ACTIONS(4818), 1, aux_sym_concatenation_token1, - ACTIONS(5583), 1, + ACTIONS(4820), 1, sym__concat, - STATE(2257), 1, + STATE(2090), 1, aux_sym_concatenation_repeat1, - ACTIONS(5190), 5, + ACTIONS(4393), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5188), 33, + ACTIONS(4391), 33, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -176091,22 +165815,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [115913] = 6, + [108036] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, + ACTIONS(4818), 1, aux_sym_concatenation_token1, - ACTIONS(5579), 1, + ACTIONS(4820), 1, sym__concat, - STATE(2255), 1, + STATE(2091), 1, aux_sym_concatenation_repeat1, - ACTIONS(2158), 5, + ACTIONS(4400), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 33, + ACTIONS(4398), 33, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -176123,7 +165847,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, @@ -176139,35 +165862,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, - [115968] = 6, - ACTIONS(3), 1, + [108091] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(5577), 1, - aux_sym_concatenation_token1, - ACTIONS(5579), 1, - sym__concat, - STATE(2254), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4282), 5, + 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), 26, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 33, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -176175,36 +165901,31 @@ 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, - [116023] = 6, + [108140] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, + ACTIONS(4835), 1, aux_sym_concatenation_token1, - ACTIONS(5579), 1, + ACTIONS(4837), 1, sym__concat, - STATE(2255), 1, + STATE(2088), 1, aux_sym_concatenation_repeat1, - ACTIONS(4439), 5, + ACTIONS(4125), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 33, + ACTIONS(4123), 33, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -176238,22 +165959,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [116078] = 6, + [108195] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, + ACTIONS(4835), 1, aux_sym_concatenation_token1, - ACTIONS(5579), 1, + ACTIONS(4837), 1, sym__concat, - STATE(2255), 1, + STATE(2089), 1, aux_sym_concatenation_repeat1, - ACTIONS(2162), 5, + ACTIONS(3915), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 33, + ACTIONS(3913), 33, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -176287,29 +166008,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [116133] = 6, + [108250] = 5, 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(5501), 1, + sym__special_character, + STATE(2152), 1, + aux_sym__literal_repeat1, + ACTIONS(1318), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 33, + ACTIONS(1316), 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, @@ -176319,11 +166041,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, @@ -176336,22 +166056,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [116188] = 6, + [108303] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, + ACTIONS(4835), 1, aux_sym_concatenation_token1, - ACTIONS(5579), 1, + ACTIONS(4837), 1, sym__concat, - STATE(2255), 1, + STATE(2088), 1, aux_sym_concatenation_repeat1, - ACTIONS(4313), 5, + ACTIONS(4491), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 33, + ACTIONS(4489), 33, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -176385,22 +166105,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [116243] = 6, + [108358] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, + ACTIONS(4835), 1, aux_sym_concatenation_token1, - ACTIONS(5579), 1, + ACTIONS(4837), 1, sym__concat, - STATE(2254), 1, + STATE(2089), 1, aux_sym_concatenation_repeat1, - ACTIONS(5266), 5, + ACTIONS(4495), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 33, + ACTIONS(4493), 33, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -176434,22 +166154,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [116298] = 6, + [108413] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, + ACTIONS(4835), 1, aux_sym_concatenation_token1, - ACTIONS(5579), 1, + ACTIONS(4837), 1, sym__concat, - STATE(2255), 1, + STATE(2088), 1, aux_sym_concatenation_repeat1, - ACTIONS(5270), 5, + ACTIONS(4006), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 33, + ACTIONS(4004), 33, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -176483,26 +166203,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [116353] = 3, + [108468] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 5, + ACTIONS(4835), 1, + aux_sym_concatenation_token1, + ACTIONS(4837), 1, + sym__concat, + STATE(2089), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4010), 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, - anon_sym_SEMI, + ACTIONS(4008), 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_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -176529,70 +166252,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [116402] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2421), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1113), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1223), 15, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - sym__special_character, - ACTIONS(1225), 23, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [116455] = 6, + [108523] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5581), 1, + ACTIONS(4835), 1, aux_sym_concatenation_token1, - ACTIONS(5583), 1, + ACTIONS(4837), 1, sym__concat, - STATE(2256), 1, + STATE(2088), 1, aux_sym_concatenation_repeat1, - ACTIONS(5266), 5, + ACTIONS(4449), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 33, + ACTIONS(4447), 33, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -176609,6 +166284,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, @@ -176624,24 +166300,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, - [116510] = 6, + [108578] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5581), 1, + ACTIONS(4835), 1, aux_sym_concatenation_token1, - ACTIONS(5583), 1, + ACTIONS(4837), 1, sym__concat, - STATE(2257), 1, + STATE(2089), 1, aux_sym_concatenation_repeat1, - ACTIONS(5270), 5, + ACTIONS(4453), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 33, + ACTIONS(4451), 33, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -176658,6 +166333,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, @@ -176673,37 +166349,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, - [116565] = 3, + [108633] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1284), 15, + STATE(2117), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5466), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4123), 14, anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1286), 26, + ACTIONS(4125), 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, @@ -176712,8 +166391,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, @@ -176721,29 +166398,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [116614] = 6, + [108686] = 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(4495), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 33, + ACTIONS(4493), 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, @@ -176753,7 +166428,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, @@ -176770,115 +166444,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [116669] = 6, - ACTIONS(3), 1, + [108735] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(5581), 1, - aux_sym_concatenation_token1, - ACTIONS(5583), 1, - sym__concat, - STATE(2256), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1225), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 33, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(1260), 15, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - 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, - [116724] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6344), 1, - anon_sym_DQUOTE, - ACTIONS(6348), 1, - sym_variable_name, - STATE(3422), 1, - sym_string, - ACTIONS(6346), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, + ACTIONS(1262), 26, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, 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, - anon_sym_LT, - anon_sym_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, 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, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [116783] = 5, + [108784] = 5, ACTIONS(71), 1, sym_comment, - STATE(2273), 1, + STATE(2118), 1, aux_sym_concatenation_repeat1, - ACTIONS(6327), 2, + ACTIONS(5466), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(4311), 14, + ACTIONS(3913), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -176893,7 +166513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(4313), 24, + ACTIONS(3915), 24, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -176918,69 +166538,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [116836] = 5, - ACTIONS(71), 1, + [108837] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(6362), 1, - sym__special_character, - STATE(2249), 1, - aux_sym__literal_repeat1, - ACTIONS(237), 14, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(276), 25, + ACTIONS(4818), 1, + aux_sym_concatenation_token1, + ACTIONS(4820), 1, + sym__concat, + STATE(2090), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4449), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4447), 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, 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, - [116889] = 6, + aux_sym__simple_variable_name_token1, + sym_word, + [108892] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5733), 1, + ACTIONS(4818), 1, aux_sym_concatenation_token1, - ACTIONS(5874), 1, + ACTIONS(4820), 1, sym__concat, - STATE(2310), 1, + STATE(2091), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 4, + ACTIONS(4453), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 33, + ACTIONS(4451), 33, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -177014,68 +166636,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [116943] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2330), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1085), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1235), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1332), 23, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [116995] = 6, + [108947] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5733), 1, + ACTIONS(4835), 1, aux_sym_concatenation_token1, - ACTIONS(6364), 1, + ACTIONS(4837), 1, sym__concat, - STATE(1488), 1, + STATE(2088), 1, aux_sym_concatenation_repeat1, - ACTIONS(1229), 4, + ACTIONS(1231), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 33, + ACTIONS(1229), 33, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -177092,6 +166668,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, @@ -177107,23 +166684,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, - [117049] = 6, + [109002] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5733), 1, + ACTIONS(4818), 1, aux_sym_concatenation_token1, - ACTIONS(6366), 1, + ACTIONS(4820), 1, sym__concat, - STATE(1488), 1, + STATE(2090), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 4, + ACTIONS(1231), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 33, + ACTIONS(1229), 33, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -177157,14 +166734,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [117103] = 5, + [109057] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6368), 1, - sym__special_character, - STATE(2409), 1, - aux_sym__literal_repeat1, - ACTIONS(239), 14, + ACTIONS(1288), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -177179,7 +166752,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(358), 24, + ACTIONS(1290), 27, + sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -177201,64 +166775,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [117155] = 3, - ACTIONS(71), 1, + aux_sym_concatenation_token1, + [109106] = 26, + 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), 26, + ACTIONS(5508), 1, + anon_sym_LPAREN, + ACTIONS(5510), 1, + anon_sym_esac, + ACTIONS(5512), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5514), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5516), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5518), 1, + anon_sym_DOLLAR, + ACTIONS(5520), 1, + sym__special_character, + ACTIONS(5522), 1, + anon_sym_DQUOTE, + ACTIONS(5524), 1, + aux_sym_number_token1, + ACTIONS(5526), 1, + aux_sym_number_token2, + ACTIONS(5528), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5530), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5532), 1, + anon_sym_BQUOTE, + ACTIONS(5534), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5538), 1, sym_test_operator, + ACTIONS(5540), 1, sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [117203] = 6, + ACTIONS(5542), 1, + sym__brace_start, + STATE(6008), 1, + aux_sym__literal_repeat1, + STATE(6572), 1, + sym_last_case_item, + ACTIONS(5536), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3169), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6265), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(5504), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(5506), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5926), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [109200] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(1113), 1, - aux_sym_concatenation_token1, - ACTIONS(6370), 1, + ACTIONS(1127), 1, + anon_sym_RBRACK, + ACTIONS(5544), 1, + sym__special_character, + ACTIONS(5546), 1, sym__concat, - STATE(2042), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1227), 14, + STATE(2236), 1, + aux_sym__literal_repeat1, + ACTIONS(239), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -177273,7 +166874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1229), 23, + ACTIONS(568), 22, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -177294,19 +166895,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [117257] = 6, + [109256] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1113), 1, + ACTIONS(1105), 1, aux_sym_concatenation_token1, - ACTIONS(6372), 1, + ACTIONS(5548), 1, sym__concat, - STATE(2042), 1, + STATE(1847), 1, aux_sym_concatenation_repeat1, - ACTIONS(1207), 14, + ACTIONS(1213), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -177321,7 +166921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1209), 23, + ACTIONS(1215), 23, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -177342,251 +166942,474 @@ 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, - [117311] = 3, - ACTIONS(71), 1, + [109310] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 14, + ACTIONS(5163), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5161), 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, - ACTIONS(1306), 26, + [109358] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4901), 4, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4899), 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, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_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, + [109406] = 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(5207), 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(5205), 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, - [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_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, - ACTIONS(1278), 26, + [109454] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5211), 4, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5209), 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, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_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, + sym_word, + [109502] = 26, + ACTIONS(3), 1, sym_comment, - ACTIONS(1288), 14, + ACTIONS(5508), 1, + anon_sym_LPAREN, + ACTIONS(5514), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5516), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5518), 1, + anon_sym_DOLLAR, + ACTIONS(5520), 1, + sym__special_character, + ACTIONS(5522), 1, + anon_sym_DQUOTE, + ACTIONS(5524), 1, + aux_sym_number_token1, + ACTIONS(5526), 1, + aux_sym_number_token2, + ACTIONS(5528), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5530), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5532), 1, + anon_sym_BQUOTE, + ACTIONS(5534), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5538), 1, + sym_test_operator, + ACTIONS(5540), 1, + sym_extglob_pattern, + ACTIONS(5542), 1, + sym__brace_start, + ACTIONS(5552), 1, + anon_sym_esac, + ACTIONS(5554), 1, + aux_sym_heredoc_redirect_token1, + STATE(6008), 1, + aux_sym__literal_repeat1, + STATE(6859), 1, + sym_last_case_item, + ACTIONS(5536), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3186), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6265), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(5504), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(5550), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5926), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [109596] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_LPAREN, + ACTIONS(5514), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5516), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5518), 1, + anon_sym_DOLLAR, + ACTIONS(5520), 1, + sym__special_character, + ACTIONS(5522), 1, + anon_sym_DQUOTE, + ACTIONS(5524), 1, + aux_sym_number_token1, + ACTIONS(5526), 1, + aux_sym_number_token2, + ACTIONS(5528), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5530), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5532), 1, + anon_sym_BQUOTE, + ACTIONS(5534), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5538), 1, + sym_test_operator, + ACTIONS(5540), 1, + sym_extglob_pattern, + ACTIONS(5542), 1, + sym__brace_start, + ACTIONS(5558), 1, + anon_sym_esac, + ACTIONS(5560), 1, + aux_sym_heredoc_redirect_token1, + STATE(6008), 1, + aux_sym__literal_repeat1, + STATE(6895), 1, + sym_last_case_item, + ACTIONS(5536), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3188), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6265), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(5504), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(5556), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5926), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [109690] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5215), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5213), 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, - ACTIONS(1290), 26, + [109738] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5215), 4, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5213), 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, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [117509] = 26, + sym_word, + [109786] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6380), 1, + ACTIONS(5508), 1, anon_sym_LPAREN, - ACTIONS(6382), 1, - anon_sym_esac, - ACTIONS(6384), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(6386), 1, + ACTIONS(5514), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6388), 1, + ACTIONS(5516), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6390), 1, + ACTIONS(5518), 1, anon_sym_DOLLAR, - ACTIONS(6392), 1, + ACTIONS(5520), 1, sym__special_character, - ACTIONS(6394), 1, + ACTIONS(5522), 1, anon_sym_DQUOTE, - ACTIONS(6396), 1, + ACTIONS(5524), 1, aux_sym_number_token1, - ACTIONS(6398), 1, + ACTIONS(5526), 1, aux_sym_number_token2, - ACTIONS(6400), 1, + ACTIONS(5528), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6402), 1, + ACTIONS(5530), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6404), 1, + ACTIONS(5532), 1, anon_sym_BQUOTE, - ACTIONS(6406), 1, + ACTIONS(5534), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6410), 1, + ACTIONS(5538), 1, sym_test_operator, - ACTIONS(6412), 1, + ACTIONS(5540), 1, sym_extglob_pattern, - ACTIONS(6414), 1, + ACTIONS(5542), 1, sym__brace_start, - STATE(6347), 1, + ACTIONS(5564), 1, + anon_sym_esac, + ACTIONS(5566), 1, + aux_sym_heredoc_redirect_token1, + STATE(6008), 1, aux_sym__literal_repeat1, - STATE(7162), 1, + STATE(6427), 1, sym_last_case_item, - ACTIONS(6408), 2, + ACTIONS(5536), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3320), 2, + STATE(3189), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(6599), 2, + STATE(6265), 2, sym_concatenation, sym__extglob_blob, - ACTIONS(6376), 3, + ACTIONS(5504), 3, sym_raw_string, sym_ansi_c_string, sym_word, - ACTIONS(6378), 3, + ACTIONS(5562), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - STATE(6223), 9, + STATE(5926), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -177596,112 +167419,112 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [117603] = 5, + [109880] = 5, ACTIONS(71), 1, sym_comment, - STATE(2420), 1, + STATE(2180), 1, aux_sym_concatenation_repeat1, - ACTIONS(6416), 2, + ACTIONS(5568), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(5188), 14, + ACTIONS(1219), 14, + 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(5190), 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(1221), 23, sym_test_operator, - sym__brace_start, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [117655] = 26, + 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, + [109932] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6380), 1, + ACTIONS(5508), 1, anon_sym_LPAREN, - ACTIONS(6386), 1, + ACTIONS(5514), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6388), 1, + ACTIONS(5516), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6390), 1, + ACTIONS(5518), 1, anon_sym_DOLLAR, - ACTIONS(6392), 1, + ACTIONS(5520), 1, sym__special_character, - ACTIONS(6394), 1, + ACTIONS(5522), 1, anon_sym_DQUOTE, - ACTIONS(6396), 1, + ACTIONS(5524), 1, aux_sym_number_token1, - ACTIONS(6398), 1, + ACTIONS(5526), 1, aux_sym_number_token2, - ACTIONS(6400), 1, + ACTIONS(5528), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6402), 1, + ACTIONS(5530), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6404), 1, + ACTIONS(5532), 1, anon_sym_BQUOTE, - ACTIONS(6406), 1, + ACTIONS(5534), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6410), 1, + ACTIONS(5538), 1, sym_test_operator, - ACTIONS(6412), 1, + ACTIONS(5540), 1, sym_extglob_pattern, - ACTIONS(6414), 1, + ACTIONS(5542), 1, sym__brace_start, - ACTIONS(6420), 1, + ACTIONS(5573), 1, anon_sym_esac, - ACTIONS(6422), 1, + ACTIONS(5575), 1, aux_sym_heredoc_redirect_token1, - STATE(6347), 1, + STATE(6008), 1, aux_sym__literal_repeat1, - STATE(6805), 1, + STATE(6444), 1, sym_last_case_item, - ACTIONS(6408), 2, + ACTIONS(5536), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3330), 2, + STATE(3192), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(6599), 2, + STATE(6265), 2, sym_concatenation, sym__extglob_blob, - ACTIONS(6376), 3, + ACTIONS(5504), 3, sym_raw_string, sym_ansi_c_string, sym_word, - ACTIONS(6418), 3, + ACTIONS(5571), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - STATE(6223), 9, + STATE(5926), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -177711,61 +167534,104 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [117749] = 5, - ACTIONS(71), 1, + [110026] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(6424), 1, - sym__special_character, - STATE(2349), 1, - aux_sym__literal_repeat1, - ACTIONS(4280), 14, + ACTIONS(5219), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5217), 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, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(4282), 24, + [110074] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5219), 4, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5217), 36, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [117801] = 6, + sym_word, + [110122] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1085), 1, + ACTIONS(1105), 1, aux_sym_concatenation_token1, - ACTIONS(6426), 1, + ACTIONS(5577), 1, sym__concat, - STATE(2332), 1, + STATE(1847), 1, aux_sym_concatenation_repeat1, ACTIONS(1207), 14, anon_sym_EQ, @@ -177803,17 +167669,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [117855] = 5, + [110176] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(6428), 1, - sym__special_character, - STATE(2325), 1, - aux_sym__literal_repeat1, - ACTIONS(1316), 14, + ACTIONS(1105), 1, + aux_sym_concatenation_token1, + ACTIONS(5579), 1, + sym__concat, + STATE(1847), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1213), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -177828,8 +167696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1318), 24, - sym__concat, + ACTIONS(1215), 23, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -177850,226 +167717,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_EQ_TILDE, anon_sym_QMARK, - [117907] = 26, + [110230] = 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(5187), 4, + sym_file_descriptor, sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, sym__brace_start, - ACTIONS(6433), 1, - anon_sym_esac, - ACTIONS(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, + ACTIONS(5185), 36, 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, - sym_comment, - ACTIONS(1095), 1, - anon_sym_RBRACK, - ACTIONS(6437), 1, - sym__special_character, - ACTIONS(6439), 1, - sym__concat, - STATE(2325), 1, - aux_sym__literal_repeat1, - ACTIONS(239), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(358), 22, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [118057] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1300), 14, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1302), 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_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_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, - [118105] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6424), 1, - sym__special_character, - STATE(2349), 1, - aux_sym__literal_repeat1, - ACTIONS(4307), 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_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(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, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [118157] = 6, + sym_word, + [110278] = 6, ACTIONS(71), 1, sym_comment, ACTIONS(1085), 1, aux_sym_concatenation_token1, - ACTIONS(6441), 1, + ACTIONS(5581), 1, sym__concat, - STATE(2332), 1, + STATE(2180), 1, aux_sym_concatenation_repeat1, ACTIONS(1207), 14, anon_sym_EQ, @@ -178110,82 +167813,15 @@ static const uint16_t ts_small_parse_table[] = { 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_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(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, + [110332] = 6, ACTIONS(71), 1, sym_comment, - STATE(2332), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6449), 2, - sym__concat, + ACTIONS(1085), 1, aux_sym_concatenation_token1, + ACTIONS(5583), 1, + sym__concat, + STATE(2180), 1, + aux_sym_concatenation_repeat1, ACTIONS(1213), 14, anon_sym_EQ, anon_sym_PIPE, @@ -178225,10 +167861,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [118357] = 3, + [110386] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1213), 14, + STATE(2296), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5585), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4481), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -178237,15 +167878,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1215), 26, + ACTIONS(4483), 24, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -178253,7 +167892,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, @@ -178262,7 +167900,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, @@ -178270,83 +167908,15 @@ static const uint16_t ts_small_parse_table[] = { 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, - 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, + [110438] = 5, ACTIONS(71), 1, sym_comment, - STATE(2364), 1, + STATE(2301), 1, aux_sym_concatenation_repeat1, - ACTIONS(6458), 2, + ACTIONS(5585), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(5134), 13, + ACTIONS(4485), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -178360,7 +167930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(5136), 24, + ACTIONS(4487), 24, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -178385,80 +167955,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [118551] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6380), 1, - anon_sym_LPAREN, - ACTIONS(6386), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6388), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6390), 1, - anon_sym_DOLLAR, - ACTIONS(6392), 1, - sym__special_character, - ACTIONS(6394), 1, - anon_sym_DQUOTE, - ACTIONS(6396), 1, - aux_sym_number_token1, - ACTIONS(6398), 1, - aux_sym_number_token2, - ACTIONS(6400), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6402), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6404), 1, - anon_sym_BQUOTE, - ACTIONS(6406), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6410), 1, - sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, - sym__brace_start, - ACTIONS(6462), 1, - anon_sym_esac, - ACTIONS(6464), 1, - aux_sym_heredoc_redirect_token1, - STATE(6347), 1, - aux_sym__literal_repeat1, - STATE(7340), 1, - sym_last_case_item, - ACTIONS(6408), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3299), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - ACTIONS(6376), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(6460), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [118645] = 4, + [110490] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6470), 1, - sym_extglob_pattern, - ACTIONS(6466), 14, + ACTIONS(1260), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -178473,8 +167973,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6468), 25, + ACTIONS(1262), 26, sym_test_operator, + sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -178499,10 +168000,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [118695] = 3, + [110538] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1312), 14, + STATE(2296), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5585), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4489), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -178511,15 +168017,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1314), 26, + ACTIONS(4491), 24, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -178527,7 +168031,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, @@ -178536,7 +168039,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, @@ -178544,10 +168047,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [118743] = 3, + [110590] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1280), 14, + STATE(2301), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5585), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4493), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -178556,15 +168064,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1282), 26, + ACTIONS(4495), 24, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -178572,7 +168078,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, @@ -178581,7 +168086,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, @@ -178589,10 +168094,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [118791] = 3, + [110642] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 14, + ACTIONS(1296), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -178607,7 +168112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1250), 26, + ACTIONS(1298), 26, sym_test_operator, sym_extglob_pattern, anon_sym_PLUS_PLUS, @@ -178634,63 +168139,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [118839] = 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, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1250), 26, - sym_file_descriptor, - 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, - [118887] = 7, + [110690] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1085), 1, - aux_sym_concatenation_token1, - ACTIONS(6472), 1, - anon_sym_RBRACK, - ACTIONS(6474), 1, - sym__concat, - STATE(2324), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1235), 14, + ACTIONS(1280), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -178705,8 +168157,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1332), 22, + ACTIONS(1282), 26, sym_test_operator, + sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -178726,61 +168179,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [118943] = 3, + anon_sym_COLON, + [110738] = 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, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1310), 26, - sym_file_descriptor, - 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, + ACTIONS(1085), 1, aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [118991] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2315), 1, + STATE(2233), 1, aux_sym_concatenation_repeat1, - ACTIONS(1113), 2, - sym__concat, - aux_sym_concatenation_token1, ACTIONS(1235), 14, anon_sym_EQ, anon_sym_PIPE, @@ -178796,7 +168206,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1332), 23, + ACTIONS(1329), 24, + sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -178817,19 +168228,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [119043] = 7, + [110790] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1077), 1, - anon_sym_RBRACK, - ACTIONS(6437), 1, + ACTIONS(5587), 1, sym__special_character, - ACTIONS(6476), 1, - sym__concat, - STATE(2325), 1, + STATE(2292), 1, aux_sym__literal_repeat1, ACTIONS(239), 14, anon_sym_EQ, @@ -178846,7 +168253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(358), 22, + ACTIONS(568), 24, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -178867,17 +168274,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_EQ_TILDE, anon_sym_QMARK, - [119099] = 5, + anon_sym_COLON, + [110842] = 5, ACTIONS(71), 1, sym_comment, - STATE(2364), 1, + STATE(2260), 1, aux_sym_concatenation_repeat1, - ACTIONS(6458), 2, + ACTIONS(5589), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(5268), 13, + ACTIONS(4391), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -178890,8 +168299,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(5270), 24, + ACTIONS(4393), 23, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -178905,7 +168315,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -178916,10 +168325,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119151] = 3, + [110894] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 14, + STATE(2263), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5589), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4398), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -178928,15 +168342,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1294), 26, + ACTIONS(4400), 23, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -178944,16 +168357,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -178961,10 +168372,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119199] = 3, + [110946] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 14, + ACTIONS(1105), 1, + aux_sym_concatenation_token1, + ACTIONS(5591), 1, + sym__concat, + STATE(1847), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1207), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -178979,9 +168396,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1258), 26, + 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_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [111000] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1105), 1, + aux_sym_concatenation_token1, + ACTIONS(5593), 1, + sym__concat, + STATE(1847), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1213), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1215), 23, sym_test_operator, - sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -179001,25 +168465,420 @@ 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, - [119247] = 5, + [111054] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1085), 1, + aux_sym_concatenation_token1, + ACTIONS(5595), 1, + anon_sym_RBRACK, + ACTIONS(5597), 1, + sym__concat, + STATE(2233), 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(1329), 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, + [111110] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1077), 1, + anon_sym_RBRACK, + ACTIONS(5544), 1, + sym__special_character, + ACTIONS(5599), 1, + sym__concat, + STATE(2236), 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(568), 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, + [111166] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_LPAREN, + ACTIONS(5514), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5516), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5518), 1, + anon_sym_DOLLAR, + ACTIONS(5520), 1, + sym__special_character, + ACTIONS(5522), 1, + anon_sym_DQUOTE, + ACTIONS(5524), 1, + aux_sym_number_token1, + ACTIONS(5526), 1, + aux_sym_number_token2, + ACTIONS(5528), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5530), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5532), 1, + anon_sym_BQUOTE, + ACTIONS(5534), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5538), 1, + sym_test_operator, + ACTIONS(5540), 1, + sym_extglob_pattern, + ACTIONS(5542), 1, + sym__brace_start, + ACTIONS(5603), 1, + anon_sym_esac, + ACTIONS(5605), 1, + aux_sym_heredoc_redirect_token1, + STATE(6008), 1, + aux_sym__literal_repeat1, + STATE(6445), 1, + sym_last_case_item, + ACTIONS(5536), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3211), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6265), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(5504), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(5601), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5926), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [111260] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_LPAREN, + ACTIONS(5514), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5516), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5518), 1, + anon_sym_DOLLAR, + ACTIONS(5520), 1, + sym__special_character, + ACTIONS(5522), 1, + anon_sym_DQUOTE, + ACTIONS(5524), 1, + aux_sym_number_token1, + ACTIONS(5526), 1, + aux_sym_number_token2, + ACTIONS(5528), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5530), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5532), 1, + anon_sym_BQUOTE, + ACTIONS(5534), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5538), 1, + sym_test_operator, + ACTIONS(5540), 1, + sym_extglob_pattern, + ACTIONS(5542), 1, + sym__brace_start, + ACTIONS(5609), 1, + anon_sym_esac, + ACTIONS(5611), 1, + aux_sym_heredoc_redirect_token1, + STATE(6008), 1, + aux_sym__literal_repeat1, + STATE(6450), 1, + sym_last_case_item, + ACTIONS(5536), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3212), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6265), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(5504), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(5607), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5926), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [111354] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4955), 1, + aux_sym_concatenation_token1, + ACTIONS(5613), 1, + sym__concat, + STATE(1445), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1207), 33, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + [111408] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4955), 1, + aux_sym_concatenation_token1, + ACTIONS(5615), 1, + sym__concat, + STATE(1445), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1213), 33, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + [111462] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_LPAREN, + ACTIONS(5514), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5516), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5518), 1, + anon_sym_DOLLAR, + ACTIONS(5520), 1, + sym__special_character, + ACTIONS(5522), 1, + anon_sym_DQUOTE, + ACTIONS(5524), 1, + aux_sym_number_token1, + ACTIONS(5526), 1, + aux_sym_number_token2, + ACTIONS(5528), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5530), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5532), 1, + anon_sym_BQUOTE, + ACTIONS(5534), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5538), 1, + sym_test_operator, + ACTIONS(5540), 1, + sym_extglob_pattern, + ACTIONS(5542), 1, + sym__brace_start, + ACTIONS(5619), 1, + anon_sym_esac, + ACTIONS(5621), 1, + aux_sym_heredoc_redirect_token1, + STATE(6008), 1, + aux_sym__literal_repeat1, + STATE(6464), 1, + sym_last_case_item, + ACTIONS(5536), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3214), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6265), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(5504), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(5617), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5926), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [111556] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6478), 1, - sym__special_character, - STATE(2349), 1, - aux_sym__literal_repeat1, - ACTIONS(1316), 14, + STATE(2296), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5585), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4123), 13, anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -179027,11 +168886,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(1318), 24, + ACTIONS(4125), 24, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -179045,23 +168905,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_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [111608] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_LPAREN, + ACTIONS(5514), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5516), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5518), 1, + anon_sym_DOLLAR, + ACTIONS(5520), 1, + sym__special_character, + ACTIONS(5522), 1, + anon_sym_DQUOTE, + ACTIONS(5524), 1, + aux_sym_number_token1, + ACTIONS(5526), 1, + aux_sym_number_token2, + ACTIONS(5528), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5530), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5532), 1, anon_sym_BQUOTE, + ACTIONS(5534), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(5538), 1, + sym_test_operator, + ACTIONS(5540), 1, + sym_extglob_pattern, + ACTIONS(5542), 1, + sym__brace_start, + ACTIONS(5625), 1, + anon_sym_esac, + ACTIONS(5627), 1, + aux_sym_heredoc_redirect_token1, + STATE(6008), 1, + aux_sym__literal_repeat1, + STATE(6466), 1, + sym_last_case_item, + ACTIONS(5536), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119299] = 5, + STATE(3155), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6265), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(5504), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(5623), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5926), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [111702] = 5, ACTIONS(71), 1, sym_comment, - STATE(2376), 1, + STATE(2301), 1, aux_sym_concatenation_repeat1, - ACTIONS(6481), 2, + ACTIONS(5585), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1223), 14, + ACTIONS(3913), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -179070,21 +168998,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1225), 23, + ACTIONS(3915), 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, @@ -179093,6 +169020,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, @@ -179100,16 +169028,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119351] = 3, + [111754] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 5, + ACTIONS(5187), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 35, + ACTIONS(5185), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -179119,6 +169046,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, @@ -179145,15 +169073,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [119399] = 3, + [111802] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 4, + ACTIONS(5191), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 36, + ACTIONS(5189), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -179190,10 +169118,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [119447] = 3, + [111850] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1268), 14, + STATE(2296), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5585), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4004), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -179202,15 +169135,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), 26, + ACTIONS(4006), 24, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -179218,7 +169149,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, @@ -179227,7 +169157,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, @@ -179235,15 +169165,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119495] = 5, + [111902] = 5, ACTIONS(71), 1, sym_comment, - STATE(2398), 1, + STATE(2301), 1, aux_sym_concatenation_repeat1, - ACTIONS(6416), 2, + ACTIONS(5585), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1223), 14, + ACTIONS(4008), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -179256,9 +169186,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1225), 23, + ACTIONS(4010), 24, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -179272,28 +169201,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_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [111954] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5183), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5181), 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, - [119547] = 7, + sym_word, + [112002] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1085), 1, - aux_sym_concatenation_token1, - ACTIONS(6483), 1, - anon_sym_RBRACK, - ACTIONS(6485), 1, - sym__concat, - STATE(2324), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1235), 14, + ACTIONS(1300), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -179308,8 +169275,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1332), 22, + ACTIONS(1302), 26, sym_test_operator, + sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -179329,22 +169297,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [119603] = 6, + anon_sym_COLON, + [112050] = 5, 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, + ACTIONS(5629), 1, + sym__special_character, + STATE(2314), 1, + aux_sym__literal_repeat1, + ACTIONS(4045), 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, @@ -179352,12 +169323,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(1229), 24, + ACTIONS(4047), 24, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -179371,24 +169341,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119657] = 7, + [112102] = 7, ACTIONS(71), 1, sym_comment, ACTIONS(1085), 1, aux_sym_concatenation_token1, - ACTIONS(6489), 1, + ACTIONS(5631), 1, anon_sym_RBRACK, - ACTIONS(6491), 1, + ACTIONS(5633), 1, sym__concat, - STATE(2324), 1, + STATE(2233), 1, aux_sym_concatenation_repeat1, ACTIONS(1235), 14, anon_sym_EQ, @@ -179405,7 +169375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1332), 22, + ACTIONS(1329), 22, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -179428,104 +169398,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [119713] = 3, - ACTIONS(71), 1, + [112158] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1256), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1258), 26, + ACTIONS(5167), 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(5165), 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, - [119761] = 7, + sym_word, + [112206] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1143), 1, - anon_sym_RBRACK, - ACTIONS(6437), 1, - sym__special_character, - ACTIONS(6493), 1, + STATE(2296), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5585), 2, 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, - [119817] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1296), 14, + aux_sym_concatenation_token1, + ACTIONS(4447), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -179534,15 +169460,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1298), 26, + ACTIONS(4449), 24, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -179550,7 +169474,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, @@ -179559,7 +169482,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, @@ -179567,15 +169490,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119865] = 5, + [112258] = 7, ACTIONS(71), 1, sym_comment, - STATE(2386), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1113), 2, + ACTIONS(1119), 1, + anon_sym_RBRACK, + ACTIONS(5544), 1, + sym__special_character, + ACTIONS(5635), 1, sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1235), 14, + STATE(2236), 1, + aux_sym__literal_repeat1, + ACTIONS(239), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -179590,7 +169516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1332), 23, + ACTIONS(568), 22, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -179611,21 +169537,18 @@ 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, - [119917] = 7, + [112314] = 6, ACTIONS(71), 1, sym_comment, ACTIONS(1085), 1, aux_sym_concatenation_token1, - ACTIONS(6495), 1, - anon_sym_RBRACK, - ACTIONS(6497), 1, + ACTIONS(5637), 1, sym__concat, - STATE(2324), 1, + STATE(2180), 1, aux_sym_concatenation_repeat1, - ACTIONS(1235), 14, + ACTIONS(1207), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -179640,7 +169563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1332), 22, + ACTIONS(1209), 23, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -179661,114 +169584,18 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__special_character, - ACTIONS(6499), 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, - [120029] = 6, - 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, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1209), 24, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [120083] = 5, + [112368] = 5, ACTIONS(71), 1, sym_comment, - STATE(2365), 1, + STATE(2301), 1, aux_sym_concatenation_repeat1, - ACTIONS(6503), 2, + ACTIONS(5585), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1213), 14, + ACTIONS(4451), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -179781,9 +169608,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1215), 23, + ACTIONS(4453), 24, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -179797,6 +169623,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, @@ -179807,18 +169634,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [120135] = 7, + [112420] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1103), 1, - anon_sym_RBRACK, - ACTIONS(6437), 1, - sym__special_character, - ACTIONS(6506), 1, - sym__concat, - STATE(2325), 1, - aux_sym__literal_repeat1, - ACTIONS(239), 14, + ACTIONS(1304), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -179833,8 +169652,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(358), 22, + ACTIONS(1306), 26, sym_test_operator, + sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -179854,298 +169674,65 @@ 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, - [120191] = 5, - 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, - 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(5266), 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, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [120243] = 5, - ACTIONS(71), 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, - 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, - [120295] = 5, + anon_sym_COLON, + [112468] = 3, ACTIONS(71), 1, sym_comment, - STATE(2356), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6458), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1223), 13, + 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_AMP_GT, - anon_sym_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, - 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, - [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_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1274), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, + 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__brace_start, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - 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, - [120395] = 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [112516] = 5, ACTIONS(71), 1, sym_comment, - STATE(2420), 1, + STATE(2170), 1, aux_sym_concatenation_repeat1, - ACTIONS(6416), 2, - sym__concat, - 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, - 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_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [120447] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1284), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1286), 26, - sym_file_descriptor, + ACTIONS(1105), 2, 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, - [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, + ACTIONS(1235), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -180160,7 +169747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(358), 22, + ACTIONS(1329), 23, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -180181,67 +169768,68 @@ 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, - [120551] = 26, + [112568] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6380), 1, + ACTIONS(5508), 1, anon_sym_LPAREN, - ACTIONS(6386), 1, + ACTIONS(5514), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6388), 1, + ACTIONS(5516), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6390), 1, + ACTIONS(5518), 1, anon_sym_DOLLAR, - ACTIONS(6392), 1, + ACTIONS(5520), 1, sym__special_character, - ACTIONS(6394), 1, + ACTIONS(5522), 1, anon_sym_DQUOTE, - ACTIONS(6396), 1, + ACTIONS(5524), 1, aux_sym_number_token1, - ACTIONS(6398), 1, + ACTIONS(5526), 1, aux_sym_number_token2, - ACTIONS(6400), 1, + ACTIONS(5528), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6402), 1, + ACTIONS(5530), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6404), 1, + ACTIONS(5532), 1, anon_sym_BQUOTE, - ACTIONS(6406), 1, + ACTIONS(5534), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6410), 1, + ACTIONS(5538), 1, sym_test_operator, - ACTIONS(6412), 1, + ACTIONS(5540), 1, sym_extglob_pattern, - ACTIONS(6414), 1, + ACTIONS(5542), 1, sym__brace_start, - ACTIONS(6515), 1, + ACTIONS(5641), 1, anon_sym_esac, - ACTIONS(6517), 1, + ACTIONS(5643), 1, aux_sym_heredoc_redirect_token1, - STATE(6347), 1, + STATE(6008), 1, aux_sym__literal_repeat1, - STATE(6789), 1, + STATE(6907), 1, sym_last_case_item, - ACTIONS(6408), 2, + ACTIONS(5536), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3327), 2, + STATE(3207), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(6599), 2, + STATE(6265), 2, sym_concatenation, sym__extglob_blob, - ACTIONS(6376), 3, + ACTIONS(5504), 3, sym_raw_string, sym_ansi_c_string, sym_word, - ACTIONS(6513), 3, + ACTIONS(5639), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - STATE(6223), 9, + STATE(5926), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -180251,107 +169839,37 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [120645] = 26, - ACTIONS(3), 1, + [112662] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(6380), 1, - anon_sym_LPAREN, - ACTIONS(6386), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6388), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6390), 1, - anon_sym_DOLLAR, - ACTIONS(6392), 1, + ACTIONS(5629), 1, sym__special_character, - ACTIONS(6394), 1, - anon_sym_DQUOTE, - ACTIONS(6396), 1, - aux_sym_number_token1, - ACTIONS(6398), 1, - aux_sym_number_token2, - ACTIONS(6400), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6402), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6404), 1, - anon_sym_BQUOTE, - ACTIONS(6406), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6410), 1, - sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, - sym__brace_start, - ACTIONS(6521), 1, - anon_sym_esac, - ACTIONS(6523), 1, - aux_sym_heredoc_redirect_token1, - STATE(6347), 1, + STATE(2314), 1, aux_sym__literal_repeat1, - STATE(7000), 1, - sym_last_case_item, - ACTIONS(6408), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3302), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - ACTIONS(6376), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(6519), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [120739] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6481), 1, - aux_sym_concatenation_token1, - ACTIONS(6525), 1, - sym__concat, - STATE(2406), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1227), 14, + ACTIONS(4123), 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(1229), 23, + ACTIONS(4125), 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, @@ -180364,269 +169882,71 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [120793] = 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(6529), 1, - anon_sym_esac, - ACTIONS(6531), 1, - aux_sym_heredoc_redirect_token1, - STATE(6347), 1, - aux_sym__literal_repeat1, - STATE(7003), 1, - sym_last_case_item, - ACTIONS(6408), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3303), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - ACTIONS(6376), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(6527), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [120887] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6380), 1, - anon_sym_LPAREN, - ACTIONS(6386), 1, - anon_sym_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(6535), 1, - anon_sym_esac, - ACTIONS(6537), 1, - aux_sym_heredoc_redirect_token1, - STATE(6347), 1, - aux_sym__literal_repeat1, - STATE(6792), 1, - sym_last_case_item, - ACTIONS(6408), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3328), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - ACTIONS(6376), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(6533), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [120981] = 26, - ACTIONS(3), 1, - 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(6541), 1, - anon_sym_esac, - ACTIONS(6543), 1, - aux_sym_heredoc_redirect_token1, - STATE(6347), 1, - aux_sym__literal_repeat1, - STATE(7366), 1, - sym_last_case_item, - ACTIONS(6408), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3336), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - ACTIONS(6376), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(6539), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [121075] = 5, + [112714] = 7, ACTIONS(71), 1, sym_comment, - STATE(2376), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6481), 2, - sym__concat, + ACTIONS(1085), 1, aux_sym_concatenation_token1, - ACTIONS(5130), 14, + ACTIONS(5645), 1, + anon_sym_RBRACK, + ACTIONS(5647), 1, + sym__concat, + STATE(2233), 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_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, - 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(1329), 22, sym_test_operator, - sym__brace_start, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_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, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [112770] = 7, ACTIONS(71), 1, sym_comment, - STATE(2400), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1113), 2, + ACTIONS(1123), 1, + anon_sym_RBRACK, + ACTIONS(5544), 1, + sym__special_character, + ACTIONS(5649), 1, sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1235), 14, + STATE(2236), 1, + aux_sym__literal_repeat1, + ACTIONS(239), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -180641,7 +169961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1332), 23, + ACTIONS(568), 22, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -180664,229 +169984,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [121179] = 5, - ACTIONS(71), 1, + [112826] = 3, + ACTIONS(3), 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_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(5136), 23, + ACTIONS(4487), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4485), 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, 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, - [121231] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6380), 1, - anon_sym_LPAREN, - ACTIONS(6386), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6388), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6390), 1, anon_sym_DOLLAR, - ACTIONS(6392), 1, sym__special_character, - ACTIONS(6394), 1, anon_sym_DQUOTE, - ACTIONS(6396), 1, + 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(6547), 1, - anon_sym_esac, - ACTIONS(6549), 1, - aux_sym_heredoc_redirect_token1, - STATE(6347), 1, - aux_sym__literal_repeat1, - STATE(7016), 1, - sym_last_case_item, - ACTIONS(6408), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3304), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - ACTIONS(6376), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - ACTIONS(6545), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [121325] = 6, + [112874] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(6481), 1, + ACTIONS(1085), 1, aux_sym_concatenation_token1, - ACTIONS(6551), 1, + ACTIONS(5651), 1, sym__concat, - STATE(2406), 1, + STATE(2180), 1, aux_sym_concatenation_repeat1, - ACTIONS(1207), 14, + ACTIONS(1213), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1209), 23, - sym_file_descriptor, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1215), 23, sym_test_operator, - sym__brace_start, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_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, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [112928] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6380), 1, + ACTIONS(5508), 1, anon_sym_LPAREN, - ACTIONS(6386), 1, + ACTIONS(5514), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6388), 1, + ACTIONS(5516), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6390), 1, + ACTIONS(5518), 1, anon_sym_DOLLAR, - ACTIONS(6392), 1, + ACTIONS(5520), 1, sym__special_character, - ACTIONS(6394), 1, + ACTIONS(5522), 1, anon_sym_DQUOTE, - ACTIONS(6396), 1, + ACTIONS(5524), 1, aux_sym_number_token1, - ACTIONS(6398), 1, + ACTIONS(5526), 1, aux_sym_number_token2, - ACTIONS(6400), 1, + ACTIONS(5528), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6402), 1, + ACTIONS(5530), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6404), 1, + ACTIONS(5532), 1, anon_sym_BQUOTE, - ACTIONS(6406), 1, + ACTIONS(5534), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6410), 1, + ACTIONS(5538), 1, sym_test_operator, - ACTIONS(6412), 1, + ACTIONS(5540), 1, sym_extglob_pattern, - ACTIONS(6414), 1, + ACTIONS(5542), 1, sym__brace_start, - ACTIONS(6555), 1, + ACTIONS(5655), 1, anon_sym_esac, - ACTIONS(6557), 1, + ACTIONS(5657), 1, aux_sym_heredoc_redirect_token1, - STATE(6347), 1, + STATE(6008), 1, aux_sym__literal_repeat1, - STATE(7019), 1, + STATE(6893), 1, sym_last_case_item, - ACTIONS(6408), 2, + ACTIONS(5536), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3306), 2, + STATE(3202), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(6599), 2, + STATE(6265), 2, sym_concatenation, sym__extglob_blob, - ACTIONS(6376), 3, + ACTIONS(5504), 3, sym_raw_string, sym_ansi_c_string, sym_word, - ACTIONS(6553), 3, + ACTIONS(5653), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - STATE(6223), 9, + STATE(5926), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -180896,16 +170145,18 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [121473] = 6, + [113022] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(1113), 1, + ACTIONS(1085), 1, aux_sym_concatenation_token1, - ACTIONS(6559), 1, + ACTIONS(5659), 1, + anon_sym_RBRACK, + ACTIONS(5661), 1, sym__concat, - STATE(2042), 1, + STATE(2233), 1, aux_sym_concatenation_repeat1, - ACTIONS(1207), 14, + ACTIONS(1235), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -180920,7 +170171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1209), 23, + ACTIONS(1329), 22, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -180941,229 +170192,386 @@ 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, - [121527] = 5, + [113078] = 5, ACTIONS(71), 1, sym_comment, - STATE(2356), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6458), 2, + ACTIONS(5663), 1, + sym__special_character, + STATE(2236), 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, - aux_sym_concatenation_token1, - ACTIONS(5264), 13, + 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, + [113130] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5171), 5, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5169), 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(5266), 24, + [113178] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5175), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5173), 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, + aux_sym_number_token1, + aux_sym_number_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, - ACTIONS(71), 1, + sym_word, + [113226] = 3, + ACTIONS(3), 1, sym_comment, - STATE(2356), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6458), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4280), 13, + ACTIONS(5179), 5, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5177), 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(4282), 24, + [113274] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5183), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5181), 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, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [121631] = 26, + sym_word, + [113322] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6380), 1, - anon_sym_LPAREN, - ACTIONS(6386), 1, + ACTIONS(5187), 5, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5185), 35, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(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(6563), 1, - anon_sym_esac, - ACTIONS(6565), 1, - aux_sym_heredoc_redirect_token1, - STATE(6347), 1, - aux_sym__literal_repeat1, - STATE(6763), 1, - sym_last_case_item, - ACTIONS(6408), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3319), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - ACTIONS(6376), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - ACTIONS(6561), 3, + [113370] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4495), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4493), 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, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [121725] = 3, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, + [113418] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 14, - anon_sym_EQ, + ACTIONS(5629), 1, + sym__special_character, + STATE(2314), 1, + aux_sym__literal_repeat1, + ACTIONS(4004), 14, 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(1294), 26, + 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(4006), 24, + sym_file_descriptor, sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__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_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [121773] = 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, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [113470] = 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, + ACTIONS(5629), 1, + sym__special_character, + STATE(2314), 1, + aux_sym__literal_repeat1, + ACTIONS(3954), 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, @@ -181171,12 +170579,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), 24, + ACTIONS(3956), 24, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -181190,36 +170597,34 @@ 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, - [121825] = 6, + [113522] = 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(5389), 4, + ACTIONS(5187), 5, sym_file_descriptor, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5387), 33, + ACTIONS(5185), 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, @@ -181244,30 +170649,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, - [121879] = 6, + [113570] = 3, 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(5191), 5, sym_file_descriptor, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5289), 33, + ACTIONS(5189), 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, @@ -181292,85 +170694,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [121933] = 26, + [113618] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6380), 1, - anon_sym_LPAREN, - ACTIONS(6386), 1, + ACTIONS(5191), 5, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5189), 35, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(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(6569), 1, - anon_sym_esac, - ACTIONS(6571), 1, - aux_sym_heredoc_redirect_token1, - STATE(6347), 1, - aux_sym__literal_repeat1, - STATE(7175), 1, - sym_last_case_item, - ACTIONS(6408), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3323), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - ACTIONS(6376), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - ACTIONS(6567), 3, + [113666] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5195), 5, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5193), 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, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [122027] = 5, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, + [113714] = 3, ACTIONS(71), 1, sym_comment, - STATE(2398), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6416), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5184), 14, + ACTIONS(1312), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -181379,14 +170797,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(5186), 23, + ACTIONS(1314), 26, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -181394,14 +170813,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -181409,83 +170830,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [122079] = 6, + [113762] = 3, 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, + ACTIONS(1233), 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(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, - 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, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1262), 26, + ACTIONS(1240), 26, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -181494,24 +170866,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, - [122181] = 6, + [113810] = 3, 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, + ACTIONS(1256), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -181520,14 +170887,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1229), 23, + ACTIONS(1258), 26, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -181535,14 +170903,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -181550,37 +170920,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [122235] = 5, + [113858] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6424), 1, - sym__special_character, - STATE(2349), 1, - aux_sym__literal_repeat1, - ACTIONS(4368), 14, + ACTIONS(1219), 14, anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(4370), 24, + ACTIONS(1221), 26, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -181589,66 +170957,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [122287] = 6, - ACTIONS(71), 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, - 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, - [122341] = 3, + [113906] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 14, + ACTIONS(1308), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -181663,7 +170983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1266), 26, + ACTIONS(1310), 26, sym_file_descriptor, sym__concat, sym_variable_name, @@ -181690,34 +171010,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [122389] = 3, + [113954] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1223), 14, + ACTIONS(1252), 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(1225), 26, + ACTIONS(1254), 26, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -181726,23 +171047,73 @@ 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, - [122437] = 5, + [114002] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(1085), 1, + ACTIONS(1131), 1, + anon_sym_RBRACK, + ACTIONS(5544), 1, + sym__special_character, + ACTIONS(5666), 1, + sym__concat, + STATE(2236), 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(568), 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, + [114058] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1105), 1, aux_sym_concatenation_token1, - STATE(2324), 1, + ACTIONS(5668), 1, + sym__concat, + STATE(1847), 1, aux_sym_concatenation_repeat1, - ACTIONS(1235), 14, + ACTIONS(1207), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -181757,8 +171128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1332), 24, - sym__concat, + ACTIONS(1209), 23, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -181779,13 +171149,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [122489] = 3, + [114112] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1252), 14, + ACTIONS(1268), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -181800,7 +171170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1254), 26, + ACTIONS(1270), 26, sym_file_descriptor, sym__concat, sym_variable_name, @@ -181827,62 +171197,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [122537] = 5, - ACTIONS(71), 1, + [114160] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(6424), 1, - sym__special_character, - STATE(2349), 1, - aux_sym__literal_repeat1, - ACTIONS(4517), 14, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4519), 24, + ACTIONS(5191), 4, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5189), 36, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_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, + sym_word, + [114208] = 3, ACTIONS(71), 1, sym_comment, - STATE(2406), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6579), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1213), 14, + ACTIONS(1272), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -181897,8 +171260,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1215), 23, + ACTIONS(1274), 26, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -181914,6 +171279,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_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -181921,62 +171287,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [122641] = 5, + [114256] = 6, ACTIONS(71), 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, + ACTIONS(5589), 1, + aux_sym_concatenation_token1, + ACTIONS(5670), 1, sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [122693] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2364), 1, + STATE(2264), 1, aux_sym_concatenation_repeat1, - ACTIONS(6458), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(2156), 13, + ACTIONS(1207), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -181989,8 +171309,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(2158), 24, + ACTIONS(1209), 23, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -182004,7 +171325,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -182015,14 +171335,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [122745] = 5, + [114310] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6582), 1, - sym__special_character, - STATE(2409), 1, - aux_sym__literal_repeat1, - ACTIONS(1316), 14, + ACTIONS(5676), 1, + sym_extglob_pattern, + ACTIONS(5672), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -182037,7 +171355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1318), 24, + ACTIONS(5674), 25, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -182059,18 +171377,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [122797] = 5, + [114360] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_LPAREN, + ACTIONS(5514), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5516), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5518), 1, + anon_sym_DOLLAR, + ACTIONS(5520), 1, + sym__special_character, + ACTIONS(5522), 1, + anon_sym_DQUOTE, + ACTIONS(5524), 1, + aux_sym_number_token1, + ACTIONS(5526), 1, + aux_sym_number_token2, + ACTIONS(5528), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5530), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5532), 1, + anon_sym_BQUOTE, + ACTIONS(5534), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5538), 1, + sym_test_operator, + ACTIONS(5540), 1, + sym_extglob_pattern, + ACTIONS(5542), 1, + sym__brace_start, + ACTIONS(5680), 1, + anon_sym_esac, + ACTIONS(5682), 1, + aux_sym_heredoc_redirect_token1, + STATE(6008), 1, + aux_sym__literal_repeat1, + STATE(6951), 1, + sym_last_case_item, + ACTIONS(5536), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3210), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6265), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(5504), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(5678), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5926), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [114454] = 6, ACTIONS(71), 1, sym_comment, - STATE(2356), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6458), 2, - sym__concat, + ACTIONS(5589), 1, aux_sym_concatenation_token1, - ACTIONS(4307), 13, + ACTIONS(5684), 1, + sym__concat, + STATE(2264), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1213), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -182083,8 +171471,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(4309), 24, + ACTIONS(1215), 23, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -182098,75 +171487,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_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, - [122849] = 6, - 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, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 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, - [122903] = 3, + [114508] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1233), 14, + STATE(2264), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5686), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1219), 14, anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -182174,23 +171517,23 @@ 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(1240), 26, + ACTIONS(1221), 23, 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, sym__special_character, @@ -182198,32 +171541,97 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [114560] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_LPAREN, + ACTIONS(5514), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5516), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5518), 1, + anon_sym_DOLLAR, + ACTIONS(5520), 1, + sym__special_character, + ACTIONS(5522), 1, + anon_sym_DQUOTE, + ACTIONS(5524), 1, + aux_sym_number_token1, + ACTIONS(5526), 1, + aux_sym_number_token2, + ACTIONS(5528), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5530), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5532), 1, anon_sym_BQUOTE, + ACTIONS(5534), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(5538), 1, + sym_test_operator, + ACTIONS(5540), 1, + sym_extglob_pattern, + ACTIONS(5542), 1, + sym__brace_start, + ACTIONS(5691), 1, + anon_sym_esac, + ACTIONS(5693), 1, + aux_sym_heredoc_redirect_token1, + STATE(6008), 1, + aux_sym__literal_repeat1, + STATE(7033), 1, + sym_last_case_item, + ACTIONS(5536), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [122951] = 6, + STATE(3167), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6265), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(5504), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(5689), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5926), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [114654] = 3, 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(4495), 5, sym_file_descriptor, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5134), 33, + ACTIONS(4493), 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, @@ -182233,7 +171641,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, @@ -182250,10 +171657,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [123005] = 3, + [114702] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 14, + STATE(2260), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5589), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1229), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -182262,15 +171674,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1302), 26, + ACTIONS(1231), 23, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -182278,16 +171689,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -182295,10 +171704,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [123053] = 3, + [114754] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 14, + STATE(2185), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1105), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1235), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -182313,9 +171727,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1306), 26, + ACTIONS(1329), 23, sym_test_operator, - sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -182336,32 +171749,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [123101] = 6, + [114806] = 3, 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(5199), 5, sym_file_descriptor, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 33, + ACTIONS(5197), 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, @@ -182371,7 +171780,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, @@ -182388,362 +171796,251 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [123155] = 6, - ACTIONS(71), 1, + [114854] = 3, + 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(5195), 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(5193), 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, - [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_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_GT_PIPE, + 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(2162), 24, + [114902] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5203), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5201), 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, - [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, + [114950] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5203), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5201), 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, - [123371] = 6, - ACTIONS(71), 1, + sym_word, + [114998] = 3, + 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(5207), 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(5205), 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_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_LT, - anon_sym_GT, - anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(4313), 24, + [115046] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5207), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5205), 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, + aux_sym_number_token1, + aux_sym_number_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, + [115094] = 3, 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(5211), 5, sym_file_descriptor, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 33, + ACTIONS(5209), 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, @@ -182753,7 +172050,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, @@ -182770,28 +172066,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [123583] = 6, + [115142] = 3, 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(5215), 5, sym_file_descriptor, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 33, + ACTIONS(5213), 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, @@ -182801,7 +172095,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, @@ -182818,353 +172111,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [123637] = 5, - ACTIONS(71), 1, + [115190] = 3, + 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(5215), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5213), 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, + aux_sym_number_token1, + aux_sym_number_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_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, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [123737] = 3, - ACTIONS(71), 1, + sym_word, + [115238] = 3, + ACTIONS(3), 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(5199), 4, + sym_file_descriptor, sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5197), 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, - [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, anon_sym_GT, anon_sym_LT_LT, 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_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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(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, - 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, - 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, - [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, + [115286] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1276), 13, + ACTIONS(1276), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -183173,6 +172213,7 @@ 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, @@ -183188,6 +172229,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, @@ -183197,7 +172239,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, @@ -183205,54 +172246,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [124077] = 3, - ACTIONS(71), 1, + [115334] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1288), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1290), 26, + ACTIONS(5203), 4, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5201), 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, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_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, + sym_word, + [115382] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 14, + ACTIONS(1264), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -183267,9 +172309,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1294), 25, + ACTIONS(1266), 26, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -183293,14 +172336,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [124171] = 5, + [115430] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6609), 1, - sym__special_character, - STATE(2481), 1, - aux_sym__literal_repeat1, - ACTIONS(4280), 12, + ACTIONS(1248), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -183309,12 +172348,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(4282), 25, + ACTIONS(1250), 26, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -183331,18 +172373,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [124222] = 3, + [115478] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 13, + STATE(2260), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5589), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4447), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -183355,10 +172402,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), 26, + ACTIONS(4449), 23, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -183371,10 +172418,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -183383,10 +172428,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [124269] = 3, + [115530] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 14, + STATE(2263), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5589), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4451), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -183401,9 +172451,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1258), 25, + ACTIONS(4453), 23, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -183418,7 +172467,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, @@ -183427,186 +172475,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [124316] = 3, - ACTIONS(71), 1, + [115582] = 3, + 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(5167), 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(5165), 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, - [124363] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1268), 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, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_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, + [115630] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5163), 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(5161), 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, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_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_word, + [115678] = 3, + ACTIONS(3), 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, + ACTIONS(5203), 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(5201), 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, - [124457] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6611), 14, - anon_sym_EQ, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6613), 25, + 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, + [115726] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4901), 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(4899), 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, - [124504] = 3, + anon_sym_AMP_AMP, + anon_sym_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, + [115774] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(1260), 14, + ACTIONS(1085), 1, + aux_sym_concatenation_token1, + ACTIONS(5695), 1, + anon_sym_RBRACK, + ACTIONS(5697), 1, + sym__concat, + STATE(2233), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1235), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -183621,8 +172681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1262), 25, - sym__concat, + ACTIONS(1329), 22, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -183643,14 +172702,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, - [124551] = 3, + [115830] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 14, + ACTIONS(1095), 1, + anon_sym_RBRACK, + ACTIONS(5544), 1, + sym__special_character, + ACTIONS(5699), 1, + sym__concat, + STATE(2236), 1, + aux_sym__literal_repeat1, + ACTIONS(239), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -183665,10 +172730,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1266), 25, - sym__concat, + ACTIONS(568), 22, sym_test_operator, - sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -183688,13 +172751,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, - [124598] = 3, + [115886] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1312), 14, + ACTIONS(1260), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -183703,13 +172765,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1314), 25, + ACTIONS(1262), 26, sym_file_descriptor, sym__concat, sym_variable_name, @@ -183719,15 +172781,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -183735,98 +172798,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [124645] = 3, + [115934] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1213), 14, + ACTIONS(5701), 1, + sym__special_character, + STATE(2292), 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_AMP_GT, - anon_sym_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(1215), 25, - sym_file_descriptor, - sym__concat, - sym_variable_name, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1318), 24, sym_test_operator, - sym__brace_start, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_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, + [115986] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_LPAREN, + ACTIONS(5514), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5516), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(5518), 1, + anon_sym_DOLLAR, + ACTIONS(5520), 1, sym__special_character, + ACTIONS(5522), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [124692] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1292), 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(5524), 1, aux_sym_number_token1, + ACTIONS(5526), 1, aux_sym_number_token2, + ACTIONS(5528), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5530), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(5532), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1294), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(5534), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5538), 1, sym_test_operator, + ACTIONS(5540), 1, + sym_extglob_pattern, + ACTIONS(5542), 1, sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(5706), 1, + anon_sym_esac, + ACTIONS(5708), 1, + aux_sym_heredoc_redirect_token1, + STATE(6008), 1, + aux_sym__literal_repeat1, + STATE(6729), 1, + sym_last_case_item, + ACTIONS(5536), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [124739] = 3, + STATE(3165), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6265), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(5504), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(5704), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5926), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [116080] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 14, + ACTIONS(1280), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -183841,9 +172931,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1298), 25, + ACTIONS(1282), 26, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -183867,54 +172958,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [124786] = 3, - ACTIONS(71), 1, + [116128] = 3, + ACTIONS(3), 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, + ACTIONS(5219), 5, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5217), 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, + aux_sym_number_token1, + aux_sym_number_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, + sym_word, + [116176] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1280), 13, + ACTIONS(5585), 1, + aux_sym_concatenation_token1, + ACTIONS(5710), 1, + sym__concat, + STATE(2304), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1207), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -183928,9 +173026,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1282), 26, + ACTIONS(1209), 24, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -183946,7 +173043,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -183955,14 +173051,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [124880] = 5, - ACTIONS(71), 1, + [116230] = 26, + ACTIONS(3), 1, sym_comment, - ACTIONS(6615), 1, + ACTIONS(5508), 1, + anon_sym_LPAREN, + ACTIONS(5514), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5516), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5518), 1, + anon_sym_DOLLAR, + ACTIONS(5520), 1, sym__special_character, - STATE(2533), 1, + ACTIONS(5522), 1, + anon_sym_DQUOTE, + ACTIONS(5524), 1, + aux_sym_number_token1, + ACTIONS(5526), 1, + aux_sym_number_token2, + ACTIONS(5528), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5530), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5532), 1, + anon_sym_BQUOTE, + ACTIONS(5534), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5538), 1, + sym_test_operator, + ACTIONS(5540), 1, + sym_extglob_pattern, + ACTIONS(5542), 1, + sym__brace_start, + ACTIONS(5714), 1, + anon_sym_esac, + ACTIONS(5716), 1, + aux_sym_heredoc_redirect_token1, + STATE(6008), 1, aux_sym__literal_repeat1, - ACTIONS(239), 14, + STATE(6404), 1, + sym_last_case_item, + ACTIONS(5536), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3166), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6265), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(5504), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(5712), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5926), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [116324] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(2201), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1105), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1235), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -183977,7 +173142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(358), 23, + ACTIONS(1329), 23, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -183998,17 +173163,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [124931] = 5, + anon_sym_COLON, + [116376] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6617), 1, + ACTIONS(5544), 1, sym__special_character, - STATE(2452), 1, + STATE(2236), 1, aux_sym__literal_repeat1, - ACTIONS(1316), 14, + ACTIONS(239), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -184023,7 +173188,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1318), 23, + ACTIONS(568), 24, + sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -184047,10 +173213,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [124982] = 3, + [116428] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5219), 5, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5217), 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, + [116476] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 13, + ACTIONS(5585), 1, + aux_sym_concatenation_token1, + ACTIONS(5718), 1, + sym__concat, + STATE(2304), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1213), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -184064,9 +173281,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1250), 26, + ACTIONS(1215), 24, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -184082,7 +173298,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -184091,142 +173306,243 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [125029] = 3, - ACTIONS(71), 1, + [116530] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 14, + ACTIONS(1231), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1229), 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, - ACTIONS(1274), 25, + [116578] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4487), 5, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(4485), 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, - [125076] = 3, + sym_word, + [116626] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1268), 14, - anon_sym_EQ, + STATE(2304), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5720), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1219), 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(1221), 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_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1270), 25, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + 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, + [116678] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4955), 1, + aux_sym_concatenation_token1, + ACTIONS(4957), 1, sym__concat, + STATE(2206), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4780), 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(4778), 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, - aux_sym_concatenation_token1, - [125123] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1252), 13, 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(1254), 26, - sym_file_descriptor, + [116732] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4955), 1, + aux_sym_concatenation_token1, + ACTIONS(4957), 1, sym__concat, - sym_variable_name, + STATE(2207), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4784), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4782), 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, - [125170] = 3, + aux_sym__simple_variable_name_token1, + sym_word, + [116786] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 14, + ACTIONS(1284), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -184241,9 +173557,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1266), 25, + ACTIONS(1286), 26, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -184267,14 +173584,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [125217] = 5, + [116834] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6609), 1, - sym__special_character, - STATE(2481), 1, - aux_sym__literal_repeat1, - ACTIONS(5687), 12, + ACTIONS(1288), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -184283,12 +173596,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(5689), 25, + ACTIONS(1290), 26, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -184305,18 +173621,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [125268] = 3, + [116882] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 14, + STATE(2188), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1085), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1235), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -184331,8 +173652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1306), 25, - sym__concat, + ACTIONS(1329), 23, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -184356,55 +173676,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, - [125315] = 3, - ACTIONS(71), 1, + [116934] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - 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(1231), 5, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1229), 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, - [125362] = 3, + sym_word, + [116982] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1276), 14, + ACTIONS(1292), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -184413,13 +173733,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1278), 25, + ACTIONS(1294), 26, sym_file_descriptor, sym__concat, sym_variable_name, @@ -184429,15 +173749,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -184445,10 +173766,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [125409] = 3, + [117030] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1252), 14, + STATE(2296), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5585), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1229), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -184461,11 +173787,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(1254), 25, + ACTIONS(1231), 24, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -184478,9 +173802,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, @@ -184489,34 +173813,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [125456] = 3, + [117082] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1280), 14, + ACTIONS(1264), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1266), 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, + [117130] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5723), 1, + sym__special_character, + STATE(2314), 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, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1282), 25, + ACTIONS(1318), 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, @@ -184525,18 +173897,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [125503] = 3, + [117182] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 14, + ACTIONS(1300), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -184551,9 +173923,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1306), 25, + ACTIONS(1302), 26, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -184577,15 +173950,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [125550] = 5, + [117230] = 3, ACTIONS(71), 1, sym_comment, - STATE(2474), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6620), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1223), 14, + ACTIONS(1304), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -184594,28 +173962,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(1225), 22, + ACTIONS(1306), 26, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -184623,10 +173995,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [125601] = 3, + [117278] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1284), 13, + ACTIONS(1300), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -184635,12 +174007,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(1286), 26, + ACTIONS(1302), 26, sym_file_descriptor, sym__concat, sym_variable_name, @@ -184650,6 +174023,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, @@ -184659,7 +174033,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, @@ -184667,7 +174040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [125648] = 3, + [117326] = 3, ACTIONS(71), 1, sym_comment, ACTIONS(1292), 14, @@ -184685,8 +174058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1294), 25, - sym__concat, + ACTIONS(1294), 26, sym_test_operator, sym_extglob_pattern, anon_sym_PLUS_PLUS, @@ -184708,13 +174080,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [125695] = 3, + anon_sym_COLON, + [117374] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1213), 13, + ACTIONS(1296), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -184723,12 +174097,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1215), 26, + ACTIONS(1298), 26, sym_file_descriptor, sym__concat, sym_variable_name, @@ -184738,6 +174113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -184747,7 +174123,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -184755,332 +174130,447 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [125742] = 3, - ACTIONS(71), 1, + [117422] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - 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(5207), 4, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5205), 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, - [125789] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1312), 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(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_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, - [125836] = 3, + sym_word, + [117470] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(1288), 14, + ACTIONS(1085), 1, + aux_sym_concatenation_token1, + ACTIONS(5726), 1, + anon_sym_RBRACK, + ACTIONS(5728), 1, + sym__concat, + STATE(2233), 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_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1290), 25, - sym_file_descriptor, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1329), 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, + [117526] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4955), 1, + aux_sym_concatenation_token1, + ACTIONS(4957), 1, sym__concat, - sym_variable_name, + STATE(2206), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1231), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1229), 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, - [125883] = 3, - ACTIONS(71), 1, + aux_sym__simple_variable_name_token1, + sym_word, + [117580] = 26, + ACTIONS(3), 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(5508), 1, + anon_sym_LPAREN, + ACTIONS(5514), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5516), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5518), 1, anon_sym_DOLLAR, + ACTIONS(5520), 1, + sym__special_character, + ACTIONS(5522), 1, + anon_sym_DQUOTE, + ACTIONS(5524), 1, aux_sym_number_token1, + ACTIONS(5526), 1, aux_sym_number_token2, + ACTIONS(5528), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5530), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(5532), 1, anon_sym_BQUOTE, + ACTIONS(5534), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5538), 1, + sym_test_operator, + ACTIONS(5540), 1, + sym_extglob_pattern, + ACTIONS(5542), 1, + sym__brace_start, + ACTIONS(5732), 1, + anon_sym_esac, + ACTIONS(5734), 1, + aux_sym_heredoc_redirect_token1, + STATE(6008), 1, + aux_sym__literal_repeat1, + STATE(6434), 1, + sym_last_case_item, + ACTIONS(5536), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3168), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6265), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(5504), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - ACTIONS(1310), 26, + ACTIONS(5730), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5926), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [117674] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5179), 4, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5177), 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, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_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, + sym_word, + [117722] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6622), 1, - aux_sym_concatenation_token1, - ACTIONS(6624), 1, - sym__concat, - STATE(2476), 1, + STATE(2371), 1, aux_sym_concatenation_repeat1, - ACTIONS(1227), 14, + ACTIONS(1105), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1229), 14, + 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, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1231), 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, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1229), 22, + [117774] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5171), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5169), 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, 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, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [125983] = 6, - 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, - 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(1229), 22, + [117822] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5175), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5173), 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, - [126036] = 6, + sym_word, + [117870] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6622), 1, - aux_sym_concatenation_token1, - ACTIONS(6628), 1, - sym__concat, - STATE(2476), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1207), 14, + ACTIONS(1229), 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(1209), 22, + ACTIONS(1231), 26, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, 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, - [126089] = 5, + [117918] = 3, ACTIONS(71), 1, sym_comment, - STATE(2476), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6630), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1213), 14, + ACTIONS(1276), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -185089,28 +174579,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(1215), 22, + ACTIONS(1278), 26, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_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, @@ -185118,10 +174611,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [126140] = 3, + [117965] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1260), 13, + ACTIONS(1248), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -185135,7 +174628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1262), 26, + ACTIONS(1250), 26, sym_file_descriptor, sym__concat, sym_variable_name, @@ -185162,10 +174655,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [126187] = 3, + [118012] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1268), 13, + ACTIONS(1252), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -185178,8 +174671,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(1270), 26, + ACTIONS(1254), 25, sym_file_descriptor, sym__concat, sym_variable_name, @@ -185194,7 +174688,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, @@ -185206,19 +174699,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [126234] = 5, + [118059] = 3, ACTIONS(71), 1, sym_comment, - STATE(2479), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6633), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1213), 14, + ACTIONS(3913), 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, @@ -185226,12 +174716,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(1215), 22, + ACTIONS(3915), 25, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -185242,6 +174731,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, @@ -185249,19 +174739,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, - [126285] = 3, + [118106] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(4303), 14, + ACTIONS(5736), 1, + aux_sym_concatenation_token1, + ACTIONS(5738), 1, + sym__concat, + STATE(2339), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1207), 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, @@ -185269,11 +174764,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(4305), 25, + ACTIONS(1209), 22, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -185284,7 +174780,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -185292,18 +174787,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, - [126332] = 5, + [118159] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(6636), 1, - sym__special_character, - STATE(2481), 1, - aux_sym__literal_repeat1, - ACTIONS(1316), 12, + ACTIONS(5736), 1, + aux_sym_concatenation_token1, + ACTIONS(5740), 1, + sym__concat, + STATE(2339), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1213), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -185315,37 +174811,36 @@ 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), 25, + ACTIONS(1215), 22, 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, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [126383] = 3, + [118212] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1272), 14, + ACTIONS(1308), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -185360,7 +174855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1274), 25, + ACTIONS(1310), 25, sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, @@ -185386,54 +174881,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, aux_sym_concatenation_token1, - [126430] = 3, + [118259] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1268), 14, + ACTIONS(1264), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1270), 25, - sym_file_descriptor, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1266), 25, sym__concat, sym_test_operator, - sym__brace_start, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [126477] = 3, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [118306] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 14, + ACTIONS(5742), 1, + sym__special_character, + STATE(2337), 1, + aux_sym__literal_repeat1, + ACTIONS(1316), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -185448,8 +174947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1294), 25, - sym__concat, + ACTIONS(1318), 23, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -185470,14 +174968,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, - [126524] = 3, + [118357] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 13, + ACTIONS(5749), 1, + sym__concat, + ACTIONS(5747), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(5745), 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, + [118406] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(2339), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5751), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1219), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -185490,11 +175037,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1258), 26, + ACTIONS(1221), 22, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -185506,10 +175052,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -185518,10 +175062,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [126571] = 3, + [118457] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 14, + ACTIONS(1268), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -185536,7 +175080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1302), 25, + ACTIONS(1270), 25, sym_file_descriptor, sym__concat, sym_variable_name, @@ -185562,12 +175106,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [126618] = 4, + [118504] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6643), 1, - sym__concat, - ACTIONS(6641), 14, + ACTIONS(1312), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -185582,9 +175124,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(1314), 25, + sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -185604,57 +175146,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, - anon_sym_COLON, - [126667] = 3, + aux_sym_concatenation_token1, + [118551] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5397), 14, + ACTIONS(1272), 14, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(5399), 25, - sym_file_descriptor, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1274), 25, + sym__concat, sym_test_operator, - sym__bare_dollar, - sym__brace_start, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [126714] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [118598] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 14, + ACTIONS(1276), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -185669,7 +175212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1302), 25, + ACTIONS(1278), 25, sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, @@ -185695,58 +175238,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, aux_sym_concatenation_token1, - [126761] = 5, + [118645] = 3, ACTIONS(71), 1, sym_comment, - STATE(2473), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6622), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1223), 14, + 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_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, + 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, - sym__brace_start, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [126812] = 4, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [118692] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6649), 1, - anon_sym_LBRACK, - ACTIONS(6647), 14, + ACTIONS(5754), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -185761,9 +175300,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6645), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(5756), 25, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -185783,57 +175321,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [126861] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1296), 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(1298), 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, - [126908] = 3, + [118739] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 14, + ACTIONS(1272), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -185848,7 +175344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1298), 25, + ACTIONS(1274), 25, sym_file_descriptor, sym__concat, sym_variable_name, @@ -185874,10 +175370,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [126955] = 3, + [118786] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1272), 14, + ACTIONS(1264), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -185890,9 +175386,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1274), 25, + ACTIONS(1266), 26, sym_file_descriptor, sym__concat, sym_variable_name, @@ -185907,6 +175402,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, @@ -185918,12 +175414,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [127002] = 4, + [118833] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6655), 1, - sym__concat, - ACTIONS(6653), 14, + ACTIONS(1300), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -185938,9 +175432,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(1302), 25, + sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -185960,17 +175454,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [127051] = 5, + aux_sym_concatenation_token1, + [118880] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6609), 1, - sym__special_character, - STATE(2481), 1, - aux_sym__literal_repeat1, - ACTIONS(5130), 12, + STATE(2333), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5736), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1229), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -185982,55 +175478,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(5132), 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, - [127102] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4437), 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, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(4439), 25, + ACTIONS(1231), 22, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -186041,7 +175494,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -186049,58 +175501,57 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [127149] = 3, + [118931] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1252), 14, + ACTIONS(1304), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_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), 25, - sym_file_descriptor, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1306), 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_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, 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, - [127196] = 3, + [118978] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 14, + ACTIONS(1300), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -186115,7 +175566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1298), 25, + ACTIONS(1302), 25, sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, @@ -186141,10 +175592,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, aux_sym_concatenation_token1, - [127243] = 3, + [119025] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1252), 14, + ACTIONS(5760), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5758), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -186159,11 +175613,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1254), 25, - sym__concat, + 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, @@ -186181,14 +175632,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, - [127290] = 3, + anon_sym_COLON, + [119074] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 14, + ACTIONS(1300), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -186203,7 +175655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1258), 25, + ACTIONS(1302), 25, sym__concat, sym_test_operator, sym_extglob_pattern, @@ -186229,10 +175681,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [127337] = 3, + [119121] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1223), 15, + ACTIONS(1304), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -186247,10 +175699,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - sym__special_character, - ACTIONS(1225), 24, + ACTIONS(1306), 25, sym__concat, sym_test_operator, + sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -186273,62 +175725,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [127384] = 6, + [119168] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6620), 1, - aux_sym_concatenation_token1, - ACTIONS(6657), 1, - sym__concat, - STATE(2479), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1207), 14, + ACTIONS(5764), 14, + 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(1209), 22, - sym_file_descriptor, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(5766), 25, sym_test_operator, - sym__brace_start, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [127437] = 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [119215] = 3, ACTIONS(71), 1, sym_comment, - STATE(2514), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6659), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5130), 13, + ACTIONS(1284), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -186342,8 +175786,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(5132), 23, + ACTIONS(1286), 26, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -186358,6 +175804,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, @@ -186366,98 +175813,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [127488] = 3, + [119262] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 14, + 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_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1250), 25, - sym_file_descriptor, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1302), 25, sym__concat, - sym_variable_name, sym_test_operator, - sym__brace_start, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_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, - [127535] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [119309] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 14, + ACTIONS(1229), 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_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1294), 25, - sym_file_descriptor, + 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(1231), 24, sym__concat, - sym_variable_name, sym_test_operator, - sym__brace_start, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_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, - [127582] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [119356] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 14, + STATE(2410), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5768), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4481), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -186466,22 +175918,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1266), 25, + ACTIONS(4483), 22, 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, @@ -186489,8 +175940,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, @@ -186498,10 +175947,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [127629] = 3, + [119407] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6661), 14, + ACTIONS(1256), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -186516,7 +175965,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6663), 25, + ACTIONS(1258), 25, + sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -186537,92 +175987,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [127676] = 3, + aux_sym_concatenation_token1, + [119454] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(4311), 14, + STATE(2411), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5768), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4485), 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(4313), 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, - [127723] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1272), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_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(4487), 22, 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, @@ -186630,54 +176037,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [127770] = 3, + [119505] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1280), 14, + ACTIONS(5774), 1, + sym__concat, + ACTIONS(5772), 14, + 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(1282), 25, - sym_file_descriptor, - sym__concat, - sym_variable_name, - 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(5770), 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_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_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, - [127817] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [119554] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6665), 14, + ACTIONS(5780), 1, + sym__concat, + ACTIONS(5778), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -186692,8 +176102,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6667), 25, - sym_test_operator, + ACTIONS(5776), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -186713,20 +176124,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_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [127864] = 5, + [119603] = 3, ACTIONS(71), 1, sym_comment, - STATE(2503), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6620), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5289), 14, + ACTIONS(1284), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -186741,8 +176145,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(5291), 22, + ACTIONS(1286), 25, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -186756,6 +176162,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, @@ -186764,16 +176171,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [127915] = 6, + [119650] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6659), 1, - aux_sym_concatenation_token1, - ACTIONS(6669), 1, - sym__concat, - STATE(2527), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1227), 13, + ACTIONS(1288), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -186787,8 +176188,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1229), 23, + ACTIONS(1290), 26, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -186803,6 +176206,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, @@ -186811,10 +176215,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [127968] = 3, + [119697] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1284), 14, + STATE(2410), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5768), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4489), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -186829,9 +176238,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1286), 25, + ACTIONS(4491), 22, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -186844,10 +176252,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -186855,54 +176261,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [128015] = 3, + [119748] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1284), 14, - anon_sym_EQ, + STATE(2411), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5768), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4493), 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(1286), 25, - 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(4495), 22, + sym_file_descriptor, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - [128062] = 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_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, + [119799] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1213), 14, + ACTIONS(1292), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -186917,9 +176325,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1215), 25, + ACTIONS(1294), 25, sym__concat, sym_test_operator, + sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -186942,61 +176351,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, - [128109] = 3, + [119846] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1235), 14, - anon_sym_EQ, + ACTIONS(1280), 14, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1332), 25, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1282), 25, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [128156] = 6, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_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, + [119893] = 3, 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, + ACTIONS(1292), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -187010,8 +176412,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1209), 23, + ACTIONS(1294), 26, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -187026,6 +176430,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, @@ -187034,12 +176439,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [128209] = 4, + [119940] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(6677), 1, + ACTIONS(1105), 1, + aux_sym_concatenation_token1, + ACTIONS(5782), 1, sym__concat, - ACTIONS(6675), 14, + STATE(1847), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1207), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -187054,9 +176463,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6673), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(1209), 22, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -187078,11 +176486,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [128258] = 3, + [119993] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1213), 14, + ACTIONS(1296), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -187091,22 +176498,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), 25, + ACTIONS(1298), 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, @@ -187116,6 +176522,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, @@ -187123,10 +176530,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [128305] = 3, + [120040] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1223), 14, + ACTIONS(1105), 1, + aux_sym_concatenation_token1, + ACTIONS(5784), 1, + sym__concat, + STATE(1847), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1213), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -187141,7 +176554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1225), 25, + ACTIONS(1215), 22, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -187162,12 +176575,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - sym__special_character, - [128352] = 3, + [120093] = 3, ACTIONS(71), 1, sym_comment, ACTIONS(1264), 14, @@ -187211,10 +176621,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, aux_sym_concatenation_token1, - [128399] = 3, + [120140] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1312), 14, + ACTIONS(1260), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -187229,9 +176639,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1314), 25, + ACTIONS(1262), 25, sym__concat, sym_test_operator, + sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -187254,11 +176665,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, + [120187] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(2410), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5768), 2, + sym__concat, aux_sym_concatenation_token1, - [128446] = 3, + ACTIONS(4895), 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(4897), 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, + [120238] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1280), 14, + ACTIONS(5786), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -187273,8 +176729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1282), 25, - sym__concat, + ACTIONS(5788), 25, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -187295,19 +176750,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, - [128493] = 5, + anon_sym_COLON, + [120285] = 3, ACTIONS(71), 1, sym_comment, - STATE(2474), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6620), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5387), 14, + ACTIONS(1288), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -187322,8 +176773,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(5389), 22, + ACTIONS(1290), 25, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -187337,6 +176790,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, @@ -187345,15 +176799,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [128544] = 5, + [120332] = 3, ACTIONS(71), 1, sym_comment, - STATE(2527), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6679), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1213), 13, + ACTIONS(1292), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -187366,9 +176815,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1215), 23, + ACTIONS(1294), 25, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -187380,9 +176832,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, @@ -187391,57 +176843,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [128595] = 6, + [120379] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1113), 1, - aux_sym_concatenation_token1, - ACTIONS(6682), 1, - sym__concat, - STATE(2042), 1, + STATE(2411), 1, aux_sym_concatenation_repeat1, - ACTIONS(1227), 14, - anon_sym_EQ, + ACTIONS(5768), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4899), 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(1229), 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(4901), 22, + sym_file_descriptor, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [128648] = 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_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, + [120430] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 14, + ACTIONS(1248), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -187456,7 +176907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1310), 25, + ACTIONS(1250), 25, sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, @@ -187482,103 +176933,14 @@ static const uint16_t ts_small_parse_table[] = { 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, + [120477] = 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_AMP_GT, - anon_sym_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), 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, + ACTIONS(5790), 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, - [128799] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1256), 14, + STATE(2420), 1, + aux_sym__literal_repeat1, + ACTIONS(4481), 12, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -187587,15 +176949,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(1258), 25, + ACTIONS(4483), 25, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -187611,22 +176971,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [128846] = 5, + [120528] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6686), 1, - sym__special_character, - STATE(2533), 1, - aux_sym__literal_repeat1, - ACTIONS(1316), 14, + ACTIONS(1229), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -187641,7 +176997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1318), 23, + ACTIONS(1231), 25, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -187662,13 +177018,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_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [128897] = 3, + anon_sym_COLON, + sym__special_character, + [120575] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 14, + ACTIONS(1296), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -187683,7 +177041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1302), 25, + ACTIONS(1298), 25, sym__concat, sym_test_operator, sym_extglob_pattern, @@ -187709,14 +177067,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [128944] = 3, + [120622] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 14, + ACTIONS(4008), 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, @@ -187724,14 +177084,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(1302), 25, + ACTIONS(4010), 25, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -187742,67 +177099,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, - 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, - [128991] = 5, + [120669] = 3, ACTIONS(71), 1, sym_comment, - STATE(2473), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6622), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5130), 14, + ACTIONS(4119), 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(5132), 22, + ACTIONS(4121), 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, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [129042] = 3, + [120716] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 14, + ACTIONS(1219), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -187817,10 +177173,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1306), 25, + ACTIONS(1221), 25, sym__concat, sym_test_operator, - sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -187843,45 +177198,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [129089] = 5, - ACTIONS(71), 1, + aux_sym_concatenation_token1, + [120763] = 6, + ACTIONS(3), 1, sym_comment, - STATE(2475), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6622), 2, - sym__concat, + ACTIONS(5062), 1, aux_sym_concatenation_token1, - ACTIONS(5134), 14, + ACTIONS(5792), 1, + sym__concat, + STATE(1669), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1207), 32, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [120816] = 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_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(5136), 22, + ACTIONS(1314), 26, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -187889,21 +177290,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [129140] = 6, + [120863] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5933), 1, + ACTIONS(5062), 1, aux_sym_concatenation_token1, - ACTIONS(6689), 1, + ACTIONS(5794), 1, sym__concat, - STATE(1759), 1, + STATE(1669), 1, aux_sym_concatenation_repeat1, - ACTIONS(1229), 4, + ACTIONS(1215), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 32, + ACTIONS(1213), 32, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -187936,15 +177337,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [129193] = 5, + [120916] = 3, ACTIONS(71), 1, sym_comment, - STATE(2519), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6659), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5134), 13, + ACTIONS(1300), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -187958,8 +177354,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(5136), 23, + ACTIONS(1302), 26, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -187974,6 +177372,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, @@ -187982,54 +177381,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [129244] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6611), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6613), 25, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [129291] = 3, + [120963] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1284), 14, + ACTIONS(1304), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -188042,9 +177397,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1286), 25, + ACTIONS(1306), 26, sym_file_descriptor, sym__concat, sym_variable_name, @@ -188059,6 +177413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -188070,12 +177425,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [129338] = 4, + [121010] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6691), 1, - sym_extglob_pattern, - ACTIONS(6466), 14, + ACTIONS(5800), 1, + anon_sym_LBRACK, + ACTIONS(5798), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -188090,9 +177445,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6468), 24, - sym__concat, - sym_test_operator, + ACTIONS(5796), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -188112,62 +177467,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [129387] = 5, - 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, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(5563), 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, - [129438] = 4, + anon_sym_COLON, + [121059] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6695), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6693), 14, + ACTIONS(1235), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -188182,8 +177488,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6697), 23, + ACTIONS(1329), 25, sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -188206,65 +177514,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [129487] = 3, - ACTIONS(71), 1, + [121106] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1312), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1314), 25, - sym_file_descriptor, + ACTIONS(5062), 1, + aux_sym_concatenation_token1, + ACTIONS(5064), 1, sym__concat, + STATE(2388), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4897), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4895), 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, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [129534] = 6, + sym_word, + [121159] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5933), 1, + ACTIONS(5062), 1, aux_sym_concatenation_token1, - ACTIONS(6699), 1, + ACTIONS(5064), 1, sym__concat, - STATE(1759), 1, + STATE(2390), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 4, + ACTIONS(4901), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 32, + ACTIONS(4899), 32, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -188297,14 +177608,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [129587] = 3, + [121212] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1260), 14, + ACTIONS(4115), 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, @@ -188312,14 +177625,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), 25, + ACTIONS(4117), 25, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -188330,23 +177640,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_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, - [129634] = 5, + [121259] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6701), 1, + ACTIONS(5802), 1, sym__special_character, - STATE(2452), 1, + STATE(2337), 1, aux_sym__literal_repeat1, ACTIONS(239), 14, anon_sym_EQ, @@ -188363,7 +177674,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(358), 23, + ACTIONS(568), 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, + [121310] = 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), 25, + sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -188387,34 +177741,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [129685] = 3, + aux_sym_concatenation_token1, + [121357] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 14, + ACTIONS(4645), 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(1310), 25, + ACTIONS(4647), 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_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -188423,18 +177777,63 @@ static const 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, - [129732] = 3, + [121404] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 13, + ACTIONS(1260), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1262), 25, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [121451] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1256), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -188448,7 +177847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1302), 26, + ACTIONS(1258), 26, sym_file_descriptor, sym__concat, sym_variable_name, @@ -188475,10 +177874,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [129779] = 3, + [121498] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1276), 14, + ACTIONS(1219), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -188487,22 +177886,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(1278), 25, + ACTIONS(1221), 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, @@ -188512,6 +177910,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, @@ -188519,10 +177918,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [129826] = 3, + [121545] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 13, + ACTIONS(5804), 1, + sym__special_character, + STATE(2404), 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, + [121596] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1308), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -188536,7 +177981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1306), 26, + ACTIONS(1310), 26, sym_file_descriptor, sym__concat, sym_variable_name, @@ -188563,10 +178008,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [129873] = 3, + [121643] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 14, + ACTIONS(1252), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -188579,9 +178024,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1306), 25, + ACTIONS(1254), 26, sym_file_descriptor, sym__concat, sym_variable_name, @@ -188596,6 +178040,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, @@ -188607,194 +178052,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [129920] = 6, - ACTIONS(3), 1, + [121690] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(5933), 1, - aux_sym_concatenation_token1, - ACTIONS(5957), 1, - sym__concat, - STATE(2539), 1, + STATE(2333), 1, aux_sym_concatenation_repeat1, - ACTIONS(5132), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 32, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(5736), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4778), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [129973] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5933), 1, - aux_sym_concatenation_token1, - ACTIONS(5957), 1, - sym__concat, - STATE(2547), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5136), 4, + ACTIONS(4780), 22, sym_file_descriptor, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5134), 32, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_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, - [130026] = 5, + [121741] = 5, ACTIONS(71), 1, sym_comment, - STATE(2530), 1, + STATE(2334), 1, aux_sym_concatenation_repeat1, - ACTIONS(1113), 2, + ACTIONS(5736), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1235), 14, - anon_sym_EQ, + ACTIONS(4782), 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, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(4784), 22, + sym_file_descriptor, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_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, - 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, + anon_sym_PIPE_AMP, + anon_sym_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, + [121792] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 14, + ACTIONS(1280), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -188809,7 +178162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1298), 25, + ACTIONS(1282), 25, sym__concat, sym_test_operator, sym_extglob_pattern, @@ -188835,10 +178188,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [130171] = 3, + [121839] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 14, + ACTIONS(5768), 1, + aux_sym_concatenation_token1, + ACTIONS(5807), 1, + sym__concat, + STATE(2416), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1207), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -188847,22 +178206,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1310), 25, + ACTIONS(1209), 22, 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, @@ -188870,8 +178228,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, @@ -188879,101 +178235,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [130218] = 6, - ACTIONS(3), 1, + [121892] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(5933), 1, + ACTIONS(5768), 1, aux_sym_concatenation_token1, - ACTIONS(5957), 1, + ACTIONS(5809), 1, sym__concat, - STATE(2539), 1, + STATE(2416), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 4, + ACTIONS(1213), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1215), 22, sym_file_descriptor, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(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_RBRACK, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [130271] = 3, - ACTIONS(71), 1, + [121945] = 6, + ACTIONS(3), 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, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1290), 25, - sym_file_descriptor, + ACTIONS(5062), 1, + aux_sym_concatenation_token1, + ACTIONS(5064), 1, sym__concat, + STATE(2388), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1231), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1229), 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, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [130318] = 3, + sym_word, + [121998] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 14, + ACTIONS(1280), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -188988,7 +178347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1250), 25, + ACTIONS(1282), 25, sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, @@ -189014,10 +178373,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, aux_sym_concatenation_token1, - [130365] = 3, + [122045] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1288), 14, + ACTIONS(5811), 1, + sym__special_character, + STATE(2404), 1, + aux_sym__literal_repeat1, + ACTIONS(239), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -189032,8 +178395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1290), 25, - sym__concat, + ACTIONS(568), 23, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -189057,56 +178419,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, - [130412] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6707), 1, - sym__concat, - ACTIONS(6705), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6703), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [130461] = 3, + [122096] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6709), 14, + ACTIONS(1284), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -189121,7 +178437,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6711), 25, + ACTIONS(1286), 25, + sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -189142,149 +178459,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_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [130508] = 3, + aux_sym_concatenation_token1, + [122143] = 5, 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, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1302), 26, - sym_file_descriptor, + STATE(2416), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5813), 2, 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, - [130555] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1223), 14, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1225), 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, - [130602] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6609), 1, - sym__special_character, - STATE(2481), 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, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4309), 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, - [130653] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1260), 14, + ACTIONS(1219), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -189299,9 +178486,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1262), 25, + ACTIONS(1221), 22, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -189314,10 +178500,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -189325,10 +178509,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [130700] = 3, + [122194] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 14, + ACTIONS(1288), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -189343,7 +178527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1258), 25, + ACTIONS(1290), 25, sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, @@ -189369,10 +178553,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, aux_sym_concatenation_token1, - [130747] = 3, + [122241] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 14, + ACTIONS(1268), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -189381,22 +178565,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1250), 25, + ACTIONS(1270), 26, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -189406,6 +178589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -189413,10 +178597,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [130794] = 3, + [122288] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 14, + ACTIONS(1272), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -189425,30 +178609,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1302), 24, + ACTIONS(1274), 26, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -189456,10 +178641,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [130840] = 3, + [122335] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 14, + ACTIONS(5816), 1, + sym__special_character, + STATE(2420), 1, + aux_sym__literal_repeat1, + ACTIONS(1316), 12, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -189468,15 +178657,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(1318), 25, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -189489,26 +178676,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, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [130886] = 6, + [122386] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6713), 1, - aux_sym_concatenation_token1, - ACTIONS(6715), 1, - sym__concat, - STATE(2577), 1, + STATE(2410), 1, aux_sym_concatenation_repeat1, - ACTIONS(1227), 13, + ACTIONS(5768), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1229), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -189517,12 +178704,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1229), 22, + ACTIONS(1231), 22, sym_file_descriptor, sym_test_operator, sym__brace_start, @@ -189530,6 +178718,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, @@ -189537,7 +178726,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, @@ -189545,16 +178733,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [130938] = 6, + [122437] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6713), 1, - aux_sym_concatenation_token1, - ACTIONS(6717), 1, - sym__concat, - STATE(2577), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1207), 13, + ACTIONS(1280), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -189568,8 +178750,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1209), 22, + ACTIONS(1282), 26, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -189581,8 +178765,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -189591,15 +178777,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [130990] = 5, + [122484] = 3, ACTIONS(71), 1, sym_comment, - STATE(2577), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6719), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1213), 13, + ACTIONS(1296), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -189612,9 +178793,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1215), 22, + ACTIONS(1298), 25, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -189628,6 +178812,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, @@ -189636,19 +178821,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [131040] = 5, + [122531] = 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(1229), 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, @@ -189656,11 +178838,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1225), 22, + ACTIONS(1231), 25, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -189671,6 +178853,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, @@ -189678,13 +178861,62 @@ 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, - [131090] = 3, + [122578] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1284), 13, + ACTIONS(5764), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(5766), 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, + [122625] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5790), 1, + sym__special_character, + STATE(2420), 1, + aux_sym__literal_repeat1, + ACTIONS(4004), 12, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -189696,17 +178928,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1286), 25, + ACTIONS(4006), 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, @@ -189715,19 +178947,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, - [131136] = 3, + [122676] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1213), 13, + ACTIONS(1260), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -189740,10 +178971,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1215), 25, + ACTIONS(1262), 25, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -189755,7 +178988,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, @@ -189767,10 +178999,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [131182] = 3, + [122723] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1252), 13, + ACTIONS(1260), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -189784,9 +179016,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1254), 25, + ACTIONS(1262), 26, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -189810,10 +179043,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [131228] = 3, + [122770] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1312), 13, + ACTIONS(1300), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -189826,10 +179059,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(1314), 25, + ACTIONS(1302), 25, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -189841,7 +179076,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, @@ -189853,10 +179087,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [131274] = 3, + [122817] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 13, + ACTIONS(1304), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -189869,10 +179103,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(1310), 25, + ACTIONS(1306), 25, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -189884,7 +179120,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, @@ -189896,10 +179131,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [131320] = 3, + [122864] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 14, + ACTIONS(1292), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -189914,9 +179149,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, + ACTIONS(1294), 25, + sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -189936,56 +179171,108 @@ 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, - [131366] = 3, - ACTIONS(71), 1, + aux_sym_concatenation_token1, + [122911] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1260), 13, + ACTIONS(5062), 1, + aux_sym_concatenation_token1, + ACTIONS(5064), 1, + sym__concat, + STATE(2388), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4483), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4481), 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, - ACTIONS(1262), 25, - sym_file_descriptor, + [122964] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5062), 1, + aux_sym_concatenation_token1, + ACTIONS(5064), 1, sym__concat, + STATE(2390), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4487), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4485), 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, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [131412] = 3, + sym_word, + [123017] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1268), 13, + ACTIONS(1264), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -189998,10 +179285,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(1270), 25, + ACTIONS(1266), 25, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -190013,7 +179302,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, @@ -190025,613 +179313,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [131458] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6653), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6651), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [131504] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6641), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6639), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [131550] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1264), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1266), 24, - sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [131596] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1292), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1294), 24, - sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [131642] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1248), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1250), 24, - sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [131688] = 3, - 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, - 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, - [131734] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1256), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1258), 24, - sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [131780] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6722), 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), 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, - [131828] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6726), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6724), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [131874] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6730), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6728), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [131920] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1300), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1302), 24, - sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [131966] = 3, - ACTIONS(71), 1, + [123064] = 6, + 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), 24, + ACTIONS(5062), 1, + aux_sym_concatenation_token1, + ACTIONS(5064), 1, + sym__concat, + STATE(2388), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4491), 4, + sym_file_descriptor, sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4489), 32, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [132012] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1300), 14, - anon_sym_EQ, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1302), 24, - sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [132058] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1272), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, + 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(1274), 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, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_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, + [123117] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1280), 13, + ACTIONS(1312), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -190644,42 +179376,103 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1282), 25, + ACTIONS(1314), 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, + [123164] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5062), 1, + aux_sym_concatenation_token1, + ACTIONS(5064), 1, + sym__concat, + STATE(2390), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4495), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4493), 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, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [132150] = 4, - ACTIONS(3), 1, + sym_word, + [123217] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(6734), 1, + ACTIONS(5823), 1, + sym__concat, + ACTIONS(5821), 14, anon_sym_EQ, - ACTIONS(6736), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(6732), 36, - anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(5819), 24, + anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -190695,18 +179488,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_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [123266] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5825), 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, @@ -190715,90 +179514,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - [132198] = 7, + ACTIONS(5827), 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, + [123313] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(5862), 2, + ACTIONS(5790), 1, + sym__special_character, + STATE(2420), 1, + aux_sym__literal_repeat1, + ACTIONS(4123), 12, anon_sym_PIPE, - anon_sym_LT_LT, - ACTIONS(5864), 5, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5867), 5, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_LT_LT_DASH, - ACTIONS(5860), 6, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(5869), 7, + ACTIONS(4125), 25, 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_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, - [132252] = 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_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(5867), 5, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_GT_GT, anon_sym_PIPE_AMP, anon_sym_RBRACK, - anon_sym_LT_LT_DASH, - ACTIONS(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_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, anon_sym_DQUOTE, @@ -190809,14 +179586,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [132306] = 5, + [123364] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6738), 1, - sym__special_character, - STATE(2737), 1, - aux_sym__literal_repeat1, - ACTIONS(5264), 13, + ACTIONS(1256), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -190828,10 +179601,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(5266), 23, + ACTIONS(1258), 25, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -190846,18 +179621,19 @@ 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, - [132356] = 3, + [123411] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1276), 13, + ACTIONS(1219), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -190870,10 +179646,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), 25, + ACTIONS(1221), 25, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -190885,7 +179663,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, @@ -190897,10 +179674,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [132402] = 3, + [123458] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1288), 13, + ACTIONS(1248), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -190913,10 +179690,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(1290), 25, + ACTIONS(1250), 25, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -190928,7 +179707,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, @@ -190940,9 +179718,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [132448] = 3, + [123505] = 5, ACTIONS(71), 1, sym_comment, + STATE(2373), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1105), 2, + sym__concat, + aux_sym_concatenation_token1, ACTIONS(1235), 14, anon_sym_EQ, anon_sym_PIPE, @@ -190958,7 +179741,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1332), 24, + ACTIONS(1329), 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, + [123556] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5829), 1, + sym_extglob_pattern, + ACTIONS(5672), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(5674), 24, sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, @@ -190983,59 +179809,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [132494] = 5, + [123605] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6740), 1, - sym__special_character, - STATE(2786), 1, - aux_sym__literal_repeat1, - ACTIONS(5687), 12, + 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_AMP_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), 24, - 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(1298), 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_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, - [132544] = 5, + 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, + [123652] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6738), 1, - sym__special_character, - STATE(2737), 1, - aux_sym__literal_repeat1, - ACTIONS(5184), 13, + ACTIONS(1276), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -191047,10 +179868,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(5186), 23, + ACTIONS(1278), 25, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -191065,22 +179888,19 @@ 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, - [132594] = 5, + [123699] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6740), 1, - sym__special_character, - STATE(2786), 1, - aux_sym__literal_repeat1, - ACTIONS(5561), 12, + ACTIONS(1308), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -191092,9 +179912,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(5563), 24, + ACTIONS(1310), 25, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -191107,21 +179930,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, - [132644] = 3, + [123746] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 13, + ACTIONS(1300), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -191134,10 +179957,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(1266), 25, + ACTIONS(1302), 25, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -191149,7 +179974,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, @@ -191161,10 +179985,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [132690] = 3, + [123793] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 13, + ACTIONS(5790), 1, + sym__special_character, + STATE(2420), 1, + aux_sym__literal_repeat1, + ACTIONS(4489), 12, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -191176,17 +180004,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1294), 25, + ACTIONS(4491), 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, @@ -191195,19 +180023,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, - [132736] = 3, + [123844] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 13, + ACTIONS(1300), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -191221,9 +180048,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1250), 25, + ACTIONS(1302), 26, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -191247,10 +180075,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [132782] = 3, + [123891] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 13, + ACTIONS(5831), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(5835), 1, + anon_sym_EQ, + ACTIONS(5841), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5843), 1, + anon_sym_AMP_AMP, + ACTIONS(5845), 1, + anon_sym_PIPE, + ACTIONS(5847), 1, + anon_sym_CARET, + ACTIONS(5849), 1, + anon_sym_AMP, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5865), 1, + anon_sym_EQ_TILDE, + ACTIONS(5867), 1, + anon_sym_QMARK, + STATE(6217), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5837), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5851), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5853), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5855), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5857), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5859), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5861), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5839), 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, + [123973] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5837), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5871), 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(5869), 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, + [124023] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1300), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -191263,8 +180197,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1298), 25, + ACTIONS(1302), 24, sym_file_descriptor, sym__concat, sym_test_operator, @@ -191278,7 +180213,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, @@ -191290,10 +180224,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [132828] = 3, + [124069] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 13, + ACTIONS(5837), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5871), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(5869), 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, + [124117] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5837), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5857), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5859), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5861), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5875), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5873), 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, + [124173] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1304), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -191306,8 +180332,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(1258), 25, + ACTIONS(1306), 24, sym_file_descriptor, sym__concat, sym_test_operator, @@ -191321,7 +180348,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, @@ -191333,34 +180359,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [132874] = 8, + [124219] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(5835), 1, + anon_sym_EQ, + ACTIONS(5841), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5843), 1, + anon_sym_AMP_AMP, + ACTIONS(5845), 1, + anon_sym_PIPE, + ACTIONS(5847), 1, + anon_sym_CARET, + ACTIONS(5849), 1, + anon_sym_AMP, + ACTIONS(5863), 1, anon_sym_STAR_STAR, - ACTIONS(6746), 2, + ACTIONS(5865), 1, + anon_sym_EQ_TILDE, + ACTIONS(5867), 1, + anon_sym_QMARK, + ACTIONS(5877), 1, + anon_sym_RPAREN_RPAREN, + STATE(6187), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5837), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, + ACTIONS(5851), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5853), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5855), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5857), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, + ACTIONS(5859), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6752), 3, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6744), 6, + ACTIONS(5839), 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, + [124301] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5595), 1, + anon_sym_RBRACK, + ACTIONS(5879), 1, + sym__concat, + ACTIONS(1235), 14, 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_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1329), 22, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -191380,15 +180465,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [132930] = 5, + [124351] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6740), 1, - sym__special_character, - STATE(2786), 1, - aux_sym__literal_repeat1, - ACTIONS(5264), 12, + ACTIONS(5659), 1, + anon_sym_RBRACK, + ACTIONS(5881), 1, + 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(1329), 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, + [124401] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1300), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -191400,10 +180525,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(5266), 24, + ACTIONS(1302), 24, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -191415,7 +180542,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_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, + [124447] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5022), 2, + anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(5024), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(5027), 5, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_LT_LT_DASH, + ACTIONS(5020), 6, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5029), 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(5032), 13, + sym_variable_name, + sym_test_operator, + sym__brace_start, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, @@ -191426,30 +180600,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [132980] = 4, + [124501] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6744), 14, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(5835), 1, anon_sym_EQ, + ACTIONS(5841), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5843), 1, + anon_sym_AMP_AMP, + ACTIONS(5845), 1, anon_sym_PIPE, + ACTIONS(5847), 1, anon_sym_CARET, + ACTIONS(5849), 1, anon_sym_AMP, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5865), 1, + anon_sym_EQ_TILDE, + ACTIONS(5867), 1, + anon_sym_QMARK, + ACTIONS(5883), 1, + anon_sym_RPAREN_RPAREN, + STATE(6215), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5837), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5851), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(5855), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5857), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(5859), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6742), 22, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -191461,19 +180661,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [133028] = 3, + [124583] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 13, + ACTIONS(1296), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -191486,8 +180677,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1302), 25, + ACTIONS(1298), 24, sym_file_descriptor, sym__concat, sym_test_operator, @@ -191501,7 +180693,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -191513,53 +180704,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [133074] = 3, + [124629] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 13, + ACTIONS(5022), 2, anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(5024), 5, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(5027), 5, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_LT_LT_DASH, + ACTIONS(5020), 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(1306), 25, + ACTIONS(5029), 7, 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(5032), 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, - [133120] = 3, + [124683] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 13, + ACTIONS(5631), 1, + anon_sym_RBRACK, + ACTIONS(5885), 1, + 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(1329), 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, + [124733] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1248), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -191572,8 +180812,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1302), 25, + ACTIONS(1250), 24, sym_file_descriptor, sym__concat, sym_test_operator, @@ -191587,7 +180828,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -191599,34 +180839,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [133166] = 8, + [124779] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(5835), 1, + anon_sym_EQ, + ACTIONS(5841), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5843), 1, + anon_sym_AMP_AMP, + ACTIONS(5845), 1, + anon_sym_PIPE, + ACTIONS(5847), 1, + anon_sym_CARET, + ACTIONS(5849), 1, + anon_sym_AMP, + ACTIONS(5863), 1, anon_sym_STAR_STAR, - ACTIONS(6746), 2, + ACTIONS(5865), 1, + anon_sym_EQ_TILDE, + ACTIONS(5867), 1, + anon_sym_QMARK, + ACTIONS(5887), 1, + anon_sym_RPAREN_RPAREN, + STATE(6227), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5837), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, + ACTIONS(5851), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5853), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5855), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5857), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, + ACTIONS(5859), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6752), 3, + ACTIONS(5861), 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, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -191638,44 +180900,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [124861] = 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, + 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, + 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, - [133222] = 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_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, + [124907] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6764), 1, - anon_sym_STAR_STAR, - ACTIONS(6766), 1, - sym_test_operator, - ACTIONS(6756), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6758), 2, + ACTIONS(5645), 1, + anon_sym_RBRACK, + ACTIONS(5889), 1, + 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, - 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_STAR_STAR, + ACTIONS(1329), 22, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -191693,37 +180986,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, - [133280] = 8, + [124957] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6764), 1, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(5835), 1, + anon_sym_EQ, + ACTIONS(5841), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5843), 1, + anon_sym_AMP_AMP, + ACTIONS(5845), 1, + anon_sym_PIPE, + ACTIONS(5847), 1, + anon_sym_CARET, + ACTIONS(5849), 1, + anon_sym_AMP, + ACTIONS(5863), 1, anon_sym_STAR_STAR, - ACTIONS(6756), 2, + ACTIONS(5865), 1, + anon_sym_EQ_TILDE, + ACTIONS(5867), 1, + anon_sym_QMARK, + ACTIONS(5891), 1, + anon_sym_RPAREN_RPAREN, + STATE(6234), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5837), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6758), 2, + ACTIONS(5851), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5853), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5855), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5857), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6760), 2, + ACTIONS(5859), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6762), 3, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6693), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6697), 22, - sym__concat, - sym_test_operator, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -191735,39 +181049,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, - [133336] = 4, + [125039] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6756), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6693), 14, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(5835), 1, anon_sym_EQ, + ACTIONS(5841), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5843), 1, + anon_sym_AMP_AMP, + ACTIONS(5845), 1, anon_sym_PIPE, + ACTIONS(5847), 1, anon_sym_CARET, + ACTIONS(5849), 1, anon_sym_AMP, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5865), 1, + anon_sym_EQ_TILDE, + ACTIONS(5867), 1, + anon_sym_QMARK, + ACTIONS(5893), 1, + anon_sym_RPAREN_RPAREN, + STATE(6244), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5837), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5851), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(5855), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5857), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(5859), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6697), 22, - sym__concat, - sym_test_operator, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -191779,43 +181110,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [125121] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(5835), 1, + anon_sym_EQ, + ACTIONS(5841), 1, anon_sym_PIPE_PIPE, + ACTIONS(5843), 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(5845), 1, + anon_sym_PIPE, + ACTIONS(5847), 1, + anon_sym_CARET, + ACTIONS(5849), 1, + anon_sym_AMP, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5865), 1, anon_sym_EQ_TILDE, + ACTIONS(5867), 1, anon_sym_QMARK, - [133384] = 8, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6764), 1, - anon_sym_STAR_STAR, - ACTIONS(6756), 2, + ACTIONS(5895), 1, + anon_sym_RPAREN_RPAREN, + STATE(6249), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5837), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6758), 2, + ACTIONS(5851), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5853), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5855), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5857), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6760), 2, + ACTIONS(5859), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6762), 3, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6693), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6697), 22, - sym__concat, - sym_test_operator, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -191827,38 +181171,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, - [133440] = 3, + [125203] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6709), 14, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(5835), 1, anon_sym_EQ, + ACTIONS(5841), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5843), 1, + anon_sym_AMP_AMP, + ACTIONS(5845), 1, anon_sym_PIPE, + ACTIONS(5847), 1, anon_sym_CARET, + ACTIONS(5849), 1, anon_sym_AMP, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5865), 1, + anon_sym_EQ_TILDE, + ACTIONS(5867), 1, + anon_sym_QMARK, + ACTIONS(5897), 1, + anon_sym_RPAREN_RPAREN, + STATE(6260), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5837), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5851), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(5855), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5857), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(5859), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6711), 24, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -191870,57 +181232,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, - [133486] = 16, + [125285] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6770), 1, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(5835), 1, anon_sym_EQ, - ACTIONS(6772), 1, + ACTIONS(5841), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(5843), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(5845), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(5847), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(5849), 1, anon_sym_AMP, - ACTIONS(6746), 2, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5865), 1, + anon_sym_EQ_TILDE, + ACTIONS(5867), 1, + anon_sym_QMARK, + ACTIONS(5899), 1, + anon_sym_RPAREN_RPAREN, + STATE(6272), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5837), 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(5851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(5855), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(5857), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5859), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6768), 16, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -191932,17 +181293,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [133558] = 5, + [125367] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6788), 1, - sym__special_character, - STATE(2793), 1, - aux_sym__literal_repeat1, - ACTIONS(5130), 12, + ACTIONS(1276), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -191954,55 +181308,84 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(5132), 24, + ACTIONS(1278), 24, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_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, - [133608] = 3, + [125413] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6792), 14, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(5835), 1, anon_sym_EQ, + ACTIONS(5841), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5843), 1, + anon_sym_AMP_AMP, + ACTIONS(5845), 1, anon_sym_PIPE, + ACTIONS(5847), 1, anon_sym_CARET, + ACTIONS(5849), 1, anon_sym_AMP, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5865), 1, + anon_sym_EQ_TILDE, + ACTIONS(5867), 1, + anon_sym_QMARK, + ACTIONS(5901), 1, + anon_sym_RPAREN_RPAREN, + STATE(6287), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5837), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5851), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(5855), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5857), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(5859), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5861), 3, 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, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -192014,23 +181397,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [125495] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(5835), 1, + anon_sym_EQ, + ACTIONS(5841), 1, anon_sym_PIPE_PIPE, + ACTIONS(5843), 1, anon_sym_AMP_AMP, + ACTIONS(5845), 1, + anon_sym_PIPE, + ACTIONS(5847), 1, + anon_sym_CARET, + ACTIONS(5849), 1, + anon_sym_AMP, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5865), 1, + anon_sym_EQ_TILDE, + ACTIONS(5867), 1, + anon_sym_QMARK, + ACTIONS(5903), 1, + anon_sym_RPAREN_RPAREN, + STATE(6294), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5837), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(5853), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5855), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [133654] = 5, + ACTIONS(5857), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5859), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5861), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5839), 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, + [125577] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6740), 1, - sym__special_character, - STATE(2786), 1, - aux_sym__literal_repeat1, - ACTIONS(4280), 12, + ACTIONS(1276), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -192039,88 +181470,102 @@ 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(1278), 24, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [133704] = 5, + [125623] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6740), 1, - sym__special_character, - STATE(2786), 1, - aux_sym__literal_repeat1, - ACTIONS(4307), 12, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(5835), 1, + anon_sym_EQ, + ACTIONS(5841), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5843), 1, + anon_sym_AMP_AMP, + ACTIONS(5845), 1, anon_sym_PIPE, + ACTIONS(5847), 1, + anon_sym_CARET, + ACTIONS(5849), 1, + anon_sym_AMP, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5865), 1, + anon_sym_EQ_TILDE, + ACTIONS(5867), 1, + anon_sym_QMARK, + ACTIONS(5905), 1, + anon_sym_RPAREN_RPAREN, + STATE(6297), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5837), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5851), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(5855), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5857), 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(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_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_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, - [133754] = 5, + ACTIONS(5859), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5861), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5839), 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, + [125705] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6740), 1, - sym__special_character, - STATE(2786), 1, - aux_sym__literal_repeat1, - ACTIONS(5130), 12, + ACTIONS(4008), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -192129,11 +181574,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(5132), 24, + ACTIONS(4010), 25, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -192142,6 +181588,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, @@ -192158,77 +181605,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [133804] = 3, + [125751] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6665), 14, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(5835), 1, anon_sym_EQ, + ACTIONS(5841), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5843), 1, + anon_sym_AMP_AMP, + ACTIONS(5845), 1, anon_sym_PIPE, + ACTIONS(5847), 1, anon_sym_CARET, + ACTIONS(5849), 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(5863), 1, anon_sym_STAR_STAR, - ACTIONS(6667), 24, - sym__concat, - sym_test_operator, + ACTIONS(5865), 1, + anon_sym_EQ_TILDE, + ACTIONS(5867), 1, + anon_sym_QMARK, + ACTIONS(5907), 1, + anon_sym_RPAREN_RPAREN, + STATE(6225), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5837), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(5851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(5853), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5855), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [133850] = 8, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6764), 1, - anon_sym_STAR_STAR, - ACTIONS(6756), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6758), 2, + ACTIONS(5857), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6760), 2, + ACTIONS(5859), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6762), 3, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6611), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6613), 22, - sym__concat, - sym_test_operator, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -192240,60 +181666,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, - [133906] = 18, + [125833] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6611), 1, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(5835), 1, anon_sym_EQ, - ACTIONS(6764), 1, - anon_sym_STAR_STAR, - ACTIONS(6766), 1, - sym_test_operator, - ACTIONS(6794), 1, + ACTIONS(5841), 1, anon_sym_PIPE_PIPE, - ACTIONS(6796), 1, + ACTIONS(5843), 1, anon_sym_AMP_AMP, - ACTIONS(6798), 1, + ACTIONS(5845), 1, anon_sym_PIPE, - ACTIONS(6800), 1, + ACTIONS(5847), 1, anon_sym_CARET, - ACTIONS(6802), 1, + ACTIONS(5849), 1, anon_sym_AMP, - ACTIONS(6810), 1, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5865), 1, + anon_sym_EQ_TILDE, + ACTIONS(5867), 1, anon_sym_QMARK, - ACTIONS(6756), 2, + ACTIONS(5909), 1, + anon_sym_RPAREN_RPAREN, + STATE(6226), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5837), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6758), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6760), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6804), 2, + ACTIONS(5851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6806), 2, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6808), 2, + ACTIONS(5855), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6762), 3, + ACTIONS(5857), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5859), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 14, - sym__concat, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -192305,55 +181727,99 @@ 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, - [133982] = 19, + [125915] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6764), 1, - anon_sym_STAR_STAR, - ACTIONS(6766), 1, + ACTIONS(1264), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1266), 24, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(6794), 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_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, + [125961] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(5835), 1, + anon_sym_EQ, + ACTIONS(5841), 1, anon_sym_PIPE_PIPE, - ACTIONS(6796), 1, + ACTIONS(5843), 1, anon_sym_AMP_AMP, - ACTIONS(6798), 1, + ACTIONS(5845), 1, anon_sym_PIPE, - ACTIONS(6800), 1, + ACTIONS(5847), 1, anon_sym_CARET, - ACTIONS(6802), 1, + ACTIONS(5849), 1, anon_sym_AMP, - ACTIONS(6810), 1, - anon_sym_QMARK, - ACTIONS(6812), 1, - anon_sym_EQ, - ACTIONS(6814), 1, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5865), 1, anon_sym_EQ_TILDE, - ACTIONS(6756), 2, + ACTIONS(5867), 1, + anon_sym_QMARK, + ACTIONS(5911), 1, + anon_sym_RPAREN_RPAREN, + STATE(6207), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5837), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6758), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6760), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6804), 2, + ACTIONS(5851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6806), 2, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6808), 2, + ACTIONS(5855), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6762), 3, + ACTIONS(5857), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5859), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 13, - sym__concat, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -192365,102 +181831,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_RBRACK, - [134060] = 16, + [126043] = 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(1248), 14, 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, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1250), 24, + sym_file_descriptor, sym__concat, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_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, 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, - [134132] = 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_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, + [126089] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6611), 1, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(5835), 1, anon_sym_EQ, - ACTIONS(6764), 1, - anon_sym_STAR_STAR, - ACTIONS(6766), 1, - sym_test_operator, - ACTIONS(6798), 1, + ACTIONS(5841), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5843), 1, + anon_sym_AMP_AMP, + ACTIONS(5845), 1, anon_sym_PIPE, - ACTIONS(6800), 1, + ACTIONS(5847), 1, anon_sym_CARET, - ACTIONS(6802), 1, + ACTIONS(5849), 1, anon_sym_AMP, - ACTIONS(6756), 2, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5865), 1, + anon_sym_EQ_TILDE, + ACTIONS(5867), 1, + anon_sym_QMARK, + ACTIONS(5913), 1, + anon_sym_RPAREN_RPAREN, + STATE(6288), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5837), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6758), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6760), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6804), 2, + ACTIONS(5851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6806), 2, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6808), 2, + ACTIONS(5855), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6762), 3, + ACTIONS(5857), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5859), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 17, - sym__concat, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -192472,102 +181935,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_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [134202] = 14, + [126171] = 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(1284), 14, 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, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1286), 24, + sym_file_descriptor, sym__concat, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_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, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [134270] = 13, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_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, + [126217] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6764), 1, - anon_sym_STAR_STAR, - ACTIONS(6766), 1, - sym_test_operator, - ACTIONS(6802), 1, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(5835), 1, + anon_sym_EQ, + ACTIONS(5841), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5843), 1, + anon_sym_AMP_AMP, + ACTIONS(5845), 1, + anon_sym_PIPE, + ACTIONS(5847), 1, + anon_sym_CARET, + ACTIONS(5849), 1, anon_sym_AMP, - ACTIONS(6756), 2, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5865), 1, + anon_sym_EQ_TILDE, + ACTIONS(5867), 1, + anon_sym_QMARK, + ACTIONS(5915), 1, + anon_sym_RPAREN_RPAREN, + STATE(6200), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5837), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6758), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6760), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6804), 2, + ACTIONS(5851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6806), 2, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6808), 2, + ACTIONS(5855), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6611), 3, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(6762), 3, + ACTIONS(5857), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5859), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 17, - sym__concat, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -192579,96 +182039,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [126299] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(5835), 1, + anon_sym_EQ, + ACTIONS(5841), 1, anon_sym_PIPE_PIPE, + ACTIONS(5843), 1, anon_sym_AMP_AMP, - anon_sym_RBRACK, + ACTIONS(5845), 1, + anon_sym_PIPE, + ACTIONS(5847), 1, + anon_sym_CARET, + ACTIONS(5849), 1, + anon_sym_AMP, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5865), 1, anon_sym_EQ_TILDE, + ACTIONS(5867), 1, 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, + ACTIONS(5917), 1, + anon_sym_RPAREN_RPAREN, + STATE(6231), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5837), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6758), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6760), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6804), 2, + ACTIONS(5851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6806), 2, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6808), 2, + ACTIONS(5855), 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, - 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, + ACTIONS(5857), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6760), 2, + ACTIONS(5859), 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, + ACTIONS(5861), 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, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -192680,85 +182100,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_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [134462] = 3, + [126381] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6611), 14, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(5835), 1, anon_sym_EQ, + ACTIONS(5841), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5843), 1, + anon_sym_AMP_AMP, + ACTIONS(5845), 1, anon_sym_PIPE, + ACTIONS(5847), 1, anon_sym_CARET, + ACTIONS(5849), 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(5863), 1, anon_sym_STAR_STAR, - ACTIONS(6613), 24, - sym__concat, - sym_test_operator, + ACTIONS(5865), 1, + anon_sym_EQ_TILDE, + ACTIONS(5867), 1, + anon_sym_QMARK, + ACTIONS(5919), 1, + anon_sym_RPAREN_RPAREN, + STATE(6130), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5837), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(5851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(5853), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5855), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [134508] = 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, + ACTIONS(5857), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6760), 2, + ACTIONS(5859), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6762), 3, + ACTIONS(5861), 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, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -192770,88 +182161,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, - [134566] = 7, + [126463] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6764), 1, - anon_sym_STAR_STAR, - ACTIONS(6756), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6760), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6762), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6611), 8, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(5835), 1, anon_sym_EQ, + ACTIONS(5841), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5843), 1, + anon_sym_AMP_AMP, + ACTIONS(5845), 1, anon_sym_PIPE, + ACTIONS(5847), 1, anon_sym_CARET, + ACTIONS(5849), 1, 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, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5865), 1, anon_sym_EQ_TILDE, + ACTIONS(5867), 1, anon_sym_QMARK, - [134620] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6764), 1, - anon_sym_STAR_STAR, - ACTIONS(6756), 2, + ACTIONS(5921), 1, + anon_sym_RPAREN_RPAREN, + STATE(6159), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5837), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6762), 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, + ACTIONS(5851), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(5855), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5857), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(5859), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6613), 22, - sym__concat, - sym_test_operator, + ACTIONS(5861), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -192863,40 +182222,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, - [134672] = 5, + [126545] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6764), 1, - anon_sym_STAR_STAR, - ACTIONS(6756), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6611), 13, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(5835), 1, anon_sym_EQ, + ACTIONS(5841), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5843), 1, + anon_sym_AMP_AMP, + ACTIONS(5845), 1, anon_sym_PIPE, + ACTIONS(5847), 1, anon_sym_CARET, + ACTIONS(5849), 1, anon_sym_AMP, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5865), 1, + anon_sym_EQ_TILDE, + ACTIONS(5867), 1, + anon_sym_QMARK, + ACTIONS(5923), 1, + anon_sym_RPAREN_RPAREN, + STATE(6197), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5837), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5851), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(5855), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5857), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(5859), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 22, - sym__concat, - sym_test_operator, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -192908,40 +182283,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, - [134722] = 5, + [126627] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6764), 1, - anon_sym_STAR_STAR, - ACTIONS(6756), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6611), 13, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(5835), 1, anon_sym_EQ, + ACTIONS(5841), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5843), 1, + anon_sym_AMP_AMP, + ACTIONS(5845), 1, anon_sym_PIPE, + ACTIONS(5847), 1, anon_sym_CARET, + ACTIONS(5849), 1, anon_sym_AMP, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5865), 1, + anon_sym_EQ_TILDE, + ACTIONS(5867), 1, + anon_sym_QMARK, + ACTIONS(5925), 1, + anon_sym_RPAREN_RPAREN, + STATE(6229), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5837), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5851), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(5855), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5857), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(5859), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 22, - sym__concat, - sym_test_operator, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -192953,38 +182344,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, - [134772] = 3, + [126709] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6611), 14, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(5835), 1, anon_sym_EQ, + ACTIONS(5841), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5843), 1, + anon_sym_AMP_AMP, + ACTIONS(5845), 1, anon_sym_PIPE, + ACTIONS(5847), 1, anon_sym_CARET, + ACTIONS(5849), 1, anon_sym_AMP, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5865), 1, + anon_sym_EQ_TILDE, + ACTIONS(5867), 1, + anon_sym_QMARK, + ACTIONS(5927), 1, + anon_sym_RPAREN_RPAREN, + STATE(6241), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5837), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5851), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(5855), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5857), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(5859), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6613), 24, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -192996,251 +182405,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, - [134818] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1197), 1, - sym_file_descriptor, - ACTIONS(2932), 1, - anon_sym_DQUOTE, - ACTIONS(6820), 1, - sym_variable_name, - STATE(4240), 1, - sym_string, - ACTIONS(6818), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(6816), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 24, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - [134874] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1191), 1, - sym_file_descriptor, - ACTIONS(2932), 1, - anon_sym_DQUOTE, - ACTIONS(6820), 1, - sym_variable_name, - STATE(4240), 1, - sym_string, - ACTIONS(6818), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(6816), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 24, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - [134930] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2575), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6713), 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), 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, - [134980] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2576), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6713), 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), 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, - [135030] = 21, + [126791] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(5835), 1, + anon_sym_EQ, + ACTIONS(5841), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(5843), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(5845), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(5847), 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, + ACTIONS(5849), 1, + anon_sym_AMP, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5865), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(5867), 1, anon_sym_QMARK, - STATE(6494), 1, + ACTIONS(5929), 1, + anon_sym_RPAREN_RPAREN, + STATE(6267), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(5837), 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(5851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(5855), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(5857), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5859), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -193252,32 +182466,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [135112] = 5, + [126873] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6472), 1, - anon_sym_RBRACK, - ACTIONS(6834), 1, - sym__concat, - ACTIONS(1235), 14, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(5835), 1, anon_sym_EQ, + ACTIONS(5841), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5843), 1, + anon_sym_AMP_AMP, + ACTIONS(5845), 1, anon_sym_PIPE, + ACTIONS(5847), 1, anon_sym_CARET, + ACTIONS(5849), 1, anon_sym_AMP, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5865), 1, + anon_sym_EQ_TILDE, + ACTIONS(5867), 1, + anon_sym_QMARK, + ACTIONS(5931), 1, + anon_sym_RPAREN_RPAREN, + STATE(6295), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5837), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5851), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(5855), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5857), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(5859), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5861), 3, 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, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -193289,37 +182527,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, - [135162] = 3, + [126955] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(1223), 15, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(5835), 1, anon_sym_EQ, + ACTIONS(5841), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5843), 1, + anon_sym_AMP_AMP, + ACTIONS(5845), 1, anon_sym_PIPE, + ACTIONS(5847), 1, anon_sym_CARET, + ACTIONS(5849), 1, anon_sym_AMP, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5865), 1, + anon_sym_EQ_TILDE, + ACTIONS(5867), 1, + anon_sym_QMARK, + ACTIONS(5933), 1, + anon_sym_RPAREN_RPAREN, + STATE(6134), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5837), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5851), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(5855), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5857), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(5859), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5861), 3, 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, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -193331,65 +182588,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, - [135208] = 21, + [127037] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(5835), 1, + anon_sym_EQ, + ACTIONS(5841), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(5843), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(5845), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(5847), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(5849), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5865), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(5867), 1, anon_sym_QMARK, - ACTIONS(6836), 1, + ACTIONS(5935), 1, anon_sym_RPAREN_RPAREN, - STATE(6531), 1, + STATE(6150), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(5837), 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(5851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(5855), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(5857), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5859), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -193401,32 +182649,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [135290] = 5, + [127119] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6605), 1, - anon_sym_RBRACK, - ACTIONS(6838), 1, - sym__concat, - ACTIONS(1235), 14, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(5835), 1, anon_sym_EQ, + ACTIONS(5841), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5843), 1, + anon_sym_AMP_AMP, + ACTIONS(5845), 1, anon_sym_PIPE, + ACTIONS(5847), 1, anon_sym_CARET, + ACTIONS(5849), 1, anon_sym_AMP, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5865), 1, + anon_sym_EQ_TILDE, + ACTIONS(5867), 1, + anon_sym_QMARK, + ACTIONS(5937), 1, + anon_sym_RPAREN_RPAREN, + STATE(6158), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5837), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5851), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(5855), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5857), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(5859), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5861), 3, 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, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -193438,126 +182710,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_EQ_TILDE, - anon_sym_QMARK, - [135340] = 3, + [127201] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(2156), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(2158), 25, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(5835), 1, + anon_sym_EQ, + ACTIONS(5841), 1, anon_sym_PIPE_PIPE, + ACTIONS(5843), 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, - [135386] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1300), 14, + ACTIONS(5845), 1, anon_sym_PIPE, + ACTIONS(5847), 1, + anon_sym_CARET, + ACTIONS(5849), 1, + anon_sym_AMP, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5865), 1, + anon_sym_EQ_TILDE, + ACTIONS(5867), 1, + anon_sym_QMARK, + ACTIONS(5939), 1, + anon_sym_RPAREN_RPAREN, + STATE(6172), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5837), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5851), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(5855), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5857), 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(1302), 24, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [135432] = 5, + ACTIONS(5859), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5861), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5839), 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, + [127283] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6495), 1, - anon_sym_RBRACK, - ACTIONS(6840), 1, - sym__concat, - ACTIONS(1235), 14, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(5835), 1, anon_sym_EQ, + ACTIONS(5841), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5843), 1, + anon_sym_AMP_AMP, + ACTIONS(5845), 1, anon_sym_PIPE, + ACTIONS(5847), 1, anon_sym_CARET, + ACTIONS(5849), 1, anon_sym_AMP, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5865), 1, + anon_sym_EQ_TILDE, + ACTIONS(5867), 1, + anon_sym_QMARK, + ACTIONS(5941), 1, + anon_sym_RPAREN_RPAREN, + STATE(6191), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5837), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5851), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(5855), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5857), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(5859), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5861), 3, 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, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -193569,37 +182832,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, - [135482] = 3, + [127365] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(1272), 14, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(5835), 1, anon_sym_EQ, + ACTIONS(5841), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5843), 1, + anon_sym_AMP_AMP, + ACTIONS(5845), 1, anon_sym_PIPE, + ACTIONS(5847), 1, anon_sym_CARET, + ACTIONS(5849), 1, anon_sym_AMP, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5865), 1, + anon_sym_EQ_TILDE, + ACTIONS(5867), 1, + anon_sym_QMARK, + ACTIONS(5943), 1, + anon_sym_RPAREN_RPAREN, + STATE(6202), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5837), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5851), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(5855), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5857), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(5859), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1274), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -193611,151 +182893,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_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [135528] = 3, + [127447] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(4437), 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(4439), 25, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(5835), 1, + anon_sym_EQ, + ACTIONS(5841), 1, anon_sym_PIPE_PIPE, + ACTIONS(5843), 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, - [135574] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1223), 13, + ACTIONS(5845), 1, anon_sym_PIPE, + ACTIONS(5847), 1, + anon_sym_CARET, + ACTIONS(5849), 1, + anon_sym_AMP, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5865), 1, + anon_sym_EQ_TILDE, + ACTIONS(5867), 1, + anon_sym_QMARK, + ACTIONS(5945), 1, + anon_sym_RPAREN_RPAREN, + STATE(6211), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5837), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5851), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(5855), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5857), 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), 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, - [135620] = 21, + ACTIONS(5859), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5861), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5839), 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, + [127529] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(5835), 1, + anon_sym_EQ, + ACTIONS(5841), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(5843), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(5845), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(5847), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(5849), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5865), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(5867), 1, anon_sym_QMARK, - ACTIONS(6842), 1, + ACTIONS(5947), 1, anon_sym_RPAREN_RPAREN, - STATE(6581), 1, + STATE(6222), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(5837), 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(5851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(5855), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(5857), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5859), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -193767,32 +183015,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [135702] = 5, + [127611] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6589), 1, - anon_sym_RBRACK, - ACTIONS(6844), 1, - sym__concat, - ACTIONS(1235), 14, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(5835), 1, anon_sym_EQ, + ACTIONS(5841), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5843), 1, + anon_sym_AMP_AMP, + ACTIONS(5845), 1, anon_sym_PIPE, + ACTIONS(5847), 1, anon_sym_CARET, + ACTIONS(5849), 1, anon_sym_AMP, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5865), 1, + anon_sym_EQ_TILDE, + ACTIONS(5867), 1, + anon_sym_QMARK, + ACTIONS(5949), 1, + anon_sym_RPAREN_RPAREN, + STATE(6228), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5837), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5851), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(5855), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5857), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(5859), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5861), 3, 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, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -193804,64 +183076,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, - [135752] = 21, + [127693] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(5835), 1, + anon_sym_EQ, + ACTIONS(5841), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(5843), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(5845), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(5847), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(5849), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5865), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(5867), 1, anon_sym_QMARK, - ACTIONS(6846), 1, + ACTIONS(5951), 1, anon_sym_RPAREN_RPAREN, - STATE(6600), 1, + STATE(6230), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(5837), 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(5851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(5855), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(5857), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5859), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -193873,32 +183137,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [135834] = 5, + [127775] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6483), 1, - anon_sym_RBRACK, - ACTIONS(6848), 1, - sym__concat, - ACTIONS(1235), 14, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(5835), 1, anon_sym_EQ, + ACTIONS(5841), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5843), 1, + anon_sym_AMP_AMP, + ACTIONS(5845), 1, anon_sym_PIPE, + ACTIONS(5847), 1, anon_sym_CARET, + ACTIONS(5849), 1, anon_sym_AMP, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5865), 1, + anon_sym_EQ_TILDE, + ACTIONS(5867), 1, + anon_sym_QMARK, + ACTIONS(5953), 1, + anon_sym_RPAREN_RPAREN, + STATE(6240), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5837), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5851), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(5855), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5857), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(5859), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5861), 3, 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, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -193910,64 +183198,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [127857] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1260), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1262), 24, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [135884] = 21, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [127903] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(5835), 1, + anon_sym_EQ, + ACTIONS(5841), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(5843), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(5845), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(5847), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(5849), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5865), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(5867), 1, anon_sym_QMARK, - ACTIONS(6850), 1, + ACTIONS(5955), 1, anon_sym_RPAREN_RPAREN, - STATE(6612), 1, + STATE(6245), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(5837), 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(5851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(5855), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(5857), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5859), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -193979,56 +183302,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [135966] = 21, + [127985] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(1312), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1314), 24, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_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, + [128031] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(5835), 1, + anon_sym_EQ, + ACTIONS(5841), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(5843), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(5845), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(5847), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(5849), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5865), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(5867), 1, anon_sym_QMARK, - ACTIONS(6852), 1, + ACTIONS(5957), 1, anon_sym_RPAREN_RPAREN, - STATE(6505), 1, + STATE(6254), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(5837), 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(5851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(5855), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(5857), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5859), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -194040,56 +183406,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [136048] = 21, + [128113] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(5835), 1, + anon_sym_EQ, + ACTIONS(5841), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(5843), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(5845), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(5847), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(5849), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5865), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(5867), 1, anon_sym_QMARK, - ACTIONS(6854), 1, + ACTIONS(5959), 1, anon_sym_RPAREN_RPAREN, - STATE(6544), 1, + STATE(6271), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(5837), 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(5851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(5855), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(5857), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5859), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -194101,56 +183467,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [136130] = 21, + [128195] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(5835), 1, + anon_sym_EQ, + ACTIONS(5841), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(5843), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(5845), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(5847), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(5849), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5865), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(5867), 1, anon_sym_QMARK, - ACTIONS(6856), 1, + ACTIONS(5961), 1, anon_sym_RPAREN_RPAREN, - STATE(6566), 1, + STATE(6284), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(5837), 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(5851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(5855), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(5857), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5859), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -194162,56 +183528,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [136212] = 21, + [128277] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(5835), 1, + anon_sym_EQ, + ACTIONS(5841), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(5843), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(5845), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(5847), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(5849), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5865), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(5867), 1, anon_sym_QMARK, - ACTIONS(6858), 1, + ACTIONS(5963), 1, anon_sym_RPAREN_RPAREN, - STATE(6540), 1, + STATE(6296), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(5837), 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(5851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(5855), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(5857), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5859), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -194223,56 +183589,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [136294] = 21, + [128359] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(5835), 1, + anon_sym_EQ, + ACTIONS(5841), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(5843), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(5845), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(5847), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(5849), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5865), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(5867), 1, anon_sym_QMARK, - ACTIONS(6860), 1, + ACTIONS(5965), 1, anon_sym_RPAREN_RPAREN, - STATE(6601), 1, + STATE(6131), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(5837), 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(5851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(5855), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(5857), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5859), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -194284,10 +183650,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [136376] = 3, + [128441] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(2160), 13, + ACTIONS(1280), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -194300,10 +183666,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(2162), 25, + ACTIONS(1282), 24, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -194316,67 +183683,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, + 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, - [136422] = 21, + [128487] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(5835), 1, + anon_sym_EQ, + ACTIONS(5841), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(5843), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(5845), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(5847), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(5849), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5865), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(5867), 1, anon_sym_QMARK, - ACTIONS(6862), 1, + ACTIONS(5967), 1, anon_sym_RPAREN_RPAREN, - STATE(6606), 1, + STATE(6136), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(5837), 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(5851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(5855), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(5857), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5859), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -194388,56 +183754,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [136504] = 21, + [128569] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(5835), 1, + anon_sym_EQ, + ACTIONS(5841), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(5843), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(5845), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(5847), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(5849), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5865), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(5867), 1, anon_sym_QMARK, - ACTIONS(6864), 1, + ACTIONS(5969), 1, anon_sym_RPAREN_RPAREN, - STATE(6450), 1, + STATE(6189), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(5837), 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(5851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(5855), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(5857), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5859), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -194449,56 +183815,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [136586] = 21, + [128651] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(5835), 1, + anon_sym_EQ, + ACTIONS(5841), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(5843), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(5845), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(5847), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(5849), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5865), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(5867), 1, anon_sym_QMARK, - ACTIONS(6866), 1, + ACTIONS(5971), 1, anon_sym_RPAREN_RPAREN, - STATE(6560), 1, + STATE(6143), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(5837), 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(5851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(5855), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(5857), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5859), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -194510,56 +183876,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [136668] = 21, + [128733] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(5835), 1, + anon_sym_EQ, + ACTIONS(5841), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(5843), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(5845), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(5847), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(5849), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5865), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(5867), 1, anon_sym_QMARK, - ACTIONS(6868), 1, + ACTIONS(5973), 1, anon_sym_RPAREN_RPAREN, - STATE(6616), 1, + STATE(6153), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(5837), 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(5851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(5855), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(5857), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5859), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -194571,56 +183937,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [136750] = 21, + [128815] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(5835), 1, + anon_sym_EQ, + ACTIONS(5841), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(5843), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(5845), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(5847), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(5849), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5865), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(5867), 1, anon_sym_QMARK, - ACTIONS(6870), 1, + ACTIONS(5975), 1, anon_sym_RPAREN_RPAREN, - STATE(6548), 1, + STATE(6155), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(5837), 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(5851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(5855), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(5857), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5859), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -194632,56 +183998,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [136832] = 21, + [128897] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(5835), 1, + anon_sym_EQ, + ACTIONS(5841), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(5843), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(5845), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(5847), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(5849), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5865), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(5867), 1, anon_sym_QMARK, - ACTIONS(6872), 1, + ACTIONS(5977), 1, anon_sym_RPAREN_RPAREN, - STATE(6459), 1, + STATE(6160), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(5837), 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(5851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(5855), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(5857), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5859), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -194693,117 +184059,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [136914] = 21, + [128979] = 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(1284), 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(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_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1286), 24, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_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, + [129025] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(5835), 1, + anon_sym_EQ, + ACTIONS(5841), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(5843), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(5845), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(5847), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(5849), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5865), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(5867), 1, anon_sym_QMARK, - ACTIONS(6876), 1, + ACTIONS(5979), 1, anon_sym_RPAREN_RPAREN, - STATE(6530), 1, + STATE(6167), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(5837), 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(5851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(5855), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(5857), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5859), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -194815,10 +184163,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [137078] = 3, + [129107] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4311), 13, + ACTIONS(1288), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -194831,10 +184179,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(1290), 24, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -194847,67 +184196,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, + 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, - [137124] = 21, + [129153] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(5835), 1, + anon_sym_EQ, + ACTIONS(5841), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(5843), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(5845), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(5847), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(5849), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5865), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(5867), 1, anon_sym_QMARK, - ACTIONS(6878), 1, + ACTIONS(5981), 1, anon_sym_RPAREN_RPAREN, - STATE(6553), 1, + STATE(6175), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(5837), 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(5851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(5855), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(5857), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5859), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -194919,56 +184267,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [137206] = 21, + [129235] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(5835), 1, + anon_sym_EQ, + ACTIONS(5841), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(5843), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(5845), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(5847), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(5849), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5865), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(5867), 1, anon_sym_QMARK, - ACTIONS(6880), 1, + ACTIONS(5983), 1, anon_sym_RPAREN_RPAREN, - STATE(6572), 1, + STATE(6185), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(5837), 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(5851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(5855), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(5857), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5859), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -194980,56 +184328,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [137288] = 21, + [129317] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(1292), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1294), 24, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_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, + [129363] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(5835), 1, + anon_sym_EQ, + ACTIONS(5841), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(5843), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(5845), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(5847), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(5849), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5865), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(5867), 1, anon_sym_QMARK, - ACTIONS(6882), 1, + ACTIONS(5985), 1, anon_sym_RPAREN_RPAREN, - STATE(6603), 1, + STATE(6194), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(5837), 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(5851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(5855), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(5857), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5859), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -195041,56 +184432,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [137370] = 21, + [129445] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(1288), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1290), 24, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [129491] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(5835), 1, + anon_sym_EQ, + ACTIONS(5841), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(5843), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(5845), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(5847), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(5849), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5865), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(5867), 1, anon_sym_QMARK, - ACTIONS(6884), 1, + ACTIONS(5987), 1, anon_sym_RPAREN_RPAREN, - STATE(6626), 1, + STATE(6201), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(5837), 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(5851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(5855), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(5857), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5859), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -195102,56 +184536,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [137452] = 21, + [129573] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + STATE(2546), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5989), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4895), 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(4897), 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, + [129623] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(5835), 1, + anon_sym_EQ, + ACTIONS(5841), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(5843), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(5845), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(5847), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(5849), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5865), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(5867), 1, anon_sym_QMARK, - ACTIONS(6886), 1, + ACTIONS(5991), 1, anon_sym_RPAREN_RPAREN, - STATE(6526), 1, + STATE(6205), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(5837), 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(5851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(5855), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(5857), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5859), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -195163,56 +184642,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [137534] = 21, + [129705] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + STATE(2547), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5989), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4899), 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(4901), 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, + [129755] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(5835), 1, + anon_sym_EQ, + ACTIONS(5841), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(5843), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(5845), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(5847), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(5849), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5865), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(5867), 1, anon_sym_QMARK, - ACTIONS(6888), 1, + ACTIONS(5993), 1, anon_sym_RPAREN_RPAREN, - STATE(6554), 1, + STATE(6210), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(5837), 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(5851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(5855), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(5857), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5859), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -195224,56 +184748,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [137616] = 21, + [129837] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + 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), 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, + [129883] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(5835), 1, + anon_sym_EQ, + ACTIONS(5841), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(5843), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(5845), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(5847), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(5849), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5865), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(5867), 1, anon_sym_QMARK, - ACTIONS(6890), 1, + ACTIONS(5995), 1, anon_sym_RPAREN_RPAREN, - STATE(6596), 1, + STATE(6216), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(5837), 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(5851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(5855), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(5857), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5859), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -195285,239 +184852,467 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [137698] = 21, + [129965] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(1256), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1258), 24, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [130011] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1219), 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(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_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(1221), 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(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_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, + [130057] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1300), 14, + 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, - [137780] = 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(1302), 24, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [130103] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(1304), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1306), 24, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [130149] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1300), 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(1302), 24, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - 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_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, + [130195] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1260), 14, + 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, - [137862] = 21, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1262), 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, + [130241] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(4493), 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(4495), 25, + 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_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_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, + [130287] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5989), 1, + aux_sym_concatenation_token1, + ACTIONS(5997), 1, + sym__concat, + STATE(2548), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1207), 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(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_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1209), 22, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_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, + [130339] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5989), 1, + aux_sym_concatenation_token1, + ACTIONS(5999), 1, + sym__concat, + STATE(2548), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1213), 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, - [137944] = 21, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1215), 22, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_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, + [130391] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + STATE(2548), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6001), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1219), 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(1221), 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, + [130441] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1260), 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(1262), 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, @@ -195529,117 +185324,38 @@ 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_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_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, - [138108] = 21, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [130487] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, - anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(1296), 14, + anon_sym_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(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, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6786), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6752), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + anon_sym_STAR_STAR, + ACTIONS(1298), 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, @@ -195650,57 +185366,39 @@ static const uint16_t ts_small_parse_table[] = { 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_EQ, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [130533] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1300), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6778), 1, anon_sym_CARET, - ACTIONS(6780), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, - anon_sym_EQ_TILDE, - ACTIONS(6832), 1, - anon_sym_QMARK, - ACTIONS(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, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6786), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6752), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + anon_sym_STAR_STAR, + ACTIONS(1302), 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, @@ -195712,56 +185410,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [138272] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [130579] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1304), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6778), 1, anon_sym_CARET, - ACTIONS(6780), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, - anon_sym_EQ_TILDE, - ACTIONS(6832), 1, - anon_sym_QMARK, - ACTIONS(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, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6786), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6752), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + anon_sym_STAR_STAR, + ACTIONS(1306), 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, @@ -195773,56 +185453,38 @@ static const uint16_t ts_small_parse_table[] = { 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_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [130625] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1300), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6778), 1, anon_sym_CARET, - ACTIONS(6780), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, - anon_sym_EQ_TILDE, - ACTIONS(6832), 1, - anon_sym_QMARK, - ACTIONS(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, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6786), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6752), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + anon_sym_STAR_STAR, + ACTIONS(1302), 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, @@ -195834,56 +185496,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [138436] = 21, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [130671] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(1308), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1310), 24, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [130717] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6004), 1, + sym__special_character, + STATE(2613), 1, + aux_sym__literal_repeat1, + ACTIONS(4481), 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(4483), 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, + [130767] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1235), 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(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, + 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(1329), 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, @@ -195895,56 +185627,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [138518] = 21, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [130813] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(6004), 1, + sym__special_character, + STATE(2613), 1, + aux_sym__literal_repeat1, + ACTIONS(4489), 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(4491), 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, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [130863] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1229), 15, + 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(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, + 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, + sym__special_character, + ACTIONS(1231), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -195956,56 +185715,41 @@ static const uint16_t ts_small_parse_table[] = { 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_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, 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, + [130909] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5837), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, + ACTIONS(5861), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5871), 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, - ACTIONS(6750), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6786), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6752), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(5869), 22, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -196017,56 +185761,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [138682] = 21, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [130961] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + 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, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1254), 24, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [131007] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(2546), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5989), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1229), 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(6916), 1, - anon_sym_RPAREN_RPAREN, - STATE(6597), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 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(1231), 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, + [131057] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5837), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, + ACTIONS(5875), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6786), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6752), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + anon_sym_STAR_STAR, + ACTIONS(5873), 22, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -196078,56 +185893,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [138764] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, - anon_sym_PIPE, - ACTIONS(6778), 1, - anon_sym_CARET, - ACTIONS(6780), 1, - anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, anon_sym_QMARK, - ACTIONS(6918), 1, - anon_sym_RPAREN_RPAREN, - STATE(6613), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + anon_sym_COLON, + [131105] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5837), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, + ACTIONS(5857), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, + ACTIONS(5859), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6786), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(5875), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5873), 22, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -196139,56 +185941,38 @@ static const uint16_t ts_small_parse_table[] = { 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_PIPE_PIPE, - ACTIONS(6774), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [131161] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6008), 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(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, + 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(6006), 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, @@ -196200,56 +185984,192 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [138928] = 21, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [131207] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(6004), 1, + sym__special_character, + STATE(2613), 1, + aux_sym__literal_repeat1, + ACTIONS(4123), 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(4125), 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, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [131257] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6004), 1, + sym__special_character, + STATE(2613), 1, + aux_sym__literal_repeat1, + ACTIONS(4004), 12, anon_sym_PIPE, - ACTIONS(6778), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(4006), 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, + [131307] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6004), 1, + sym__special_character, + STATE(2613), 1, + aux_sym__literal_repeat1, + ACTIONS(4447), 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(4449), 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, + [131357] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5841), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5843), 1, + anon_sym_AMP_AMP, + ACTIONS(5845), 1, + anon_sym_PIPE, + ACTIONS(5847), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(5849), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(6012), 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, + ACTIONS(5837), 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(5851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(5855), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(5857), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5859), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(6010), 16, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -196261,56 +186181,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [139010] = 21, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [131429] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, + ACTIONS(6022), 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(6924), 1, - anon_sym_RPAREN_RPAREN, - STATE(6483), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(6024), 1, + sym_test_operator, + ACTIONS(6014), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, + ACTIONS(6016), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, + ACTIONS(6018), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6786), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6020), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(5758), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5762), 21, + sym__concat, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -196322,56 +186224,43 @@ static const uint16_t ts_small_parse_table[] = { 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_PIPE_PIPE, - ACTIONS(6774), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, - anon_sym_PIPE, - ACTIONS(6778), 1, - anon_sym_CARET, - ACTIONS(6780), 1, - anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, 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, + [131487] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6022), 1, + anon_sym_STAR_STAR, + ACTIONS(6014), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, + ACTIONS(6016), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, + ACTIONS(6018), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6786), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6020), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(5758), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5762), 22, + sym__concat, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -196383,10 +186272,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [139174] = 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, + [131543] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6930), 14, + ACTIONS(6014), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5758), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -196401,11 +186302,9 @@ 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, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5762), 22, + sym__concat, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -196423,59 +186322,37 @@ 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, - [139220] = 21, + [131591] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, + ACTIONS(6022), 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(6932), 1, - anon_sym_RPAREN_RPAREN, - STATE(6547), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(6014), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, + ACTIONS(6016), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, + ACTIONS(6018), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6786), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6020), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(5758), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5762), 22, + sym__concat, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -196487,56 +186364,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [139302] = 21, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [131647] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + STATE(2546), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5989), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4481), 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(4483), 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, + [131697] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(2547), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5989), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4485), 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(4487), 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, + [131747] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5786), 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(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, + 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(5788), 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, @@ -196548,10 +186497,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [139384] = 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, + [131793] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(2546), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5989), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4489), 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(4491), 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, + [131843] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(2547), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5989), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4493), 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(4495), 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, + [131893] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6938), 14, + ACTIONS(5825), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -196566,9 +186614,9 @@ 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(5827), 24, + sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -196588,59 +186636,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [139430] = 21, + [131939] = 17, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, + ACTIONS(6022), 1, anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(6024), 1, + sym_test_operator, + ACTIONS(6026), 1, + anon_sym_EQ, + ACTIONS(6030), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(6032), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(6034), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(6036), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(6038), 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, + ACTIONS(6014), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, + ACTIONS(6016), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, + ACTIONS(6018), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, + ACTIONS(6040), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(6042), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(6044), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6020), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(6028), 15, + sym__concat, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -196652,56 +186693,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [139512] = 21, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [132013] = 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(1229), 15, + 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(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, + 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, + sym__special_character, + ACTIONS(1231), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -196713,56 +186730,38 @@ static const uint16_t ts_small_parse_table[] = { 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_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, + [132059] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5754), 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(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, + 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(5756), 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, @@ -196774,56 +186773,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [139676] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, - anon_sym_PIPE, - ACTIONS(6778), 1, - anon_sym_CARET, - ACTIONS(6780), 1, - anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, 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, + [132105] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6022), 1, + anon_sym_STAR_STAR, + ACTIONS(6014), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, + ACTIONS(6016), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, + ACTIONS(6018), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6786), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6020), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(5764), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5766), 22, + sym__concat, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -196835,56 +186821,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [139758] = 21, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [132161] = 18, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, + ACTIONS(5764), 1, + anon_sym_EQ, + ACTIONS(6022), 1, anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(6024), 1, + sym_test_operator, + ACTIONS(6030), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(6032), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(6034), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(6036), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(6038), 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, + ACTIONS(6046), 1, anon_sym_QMARK, - ACTIONS(6948), 1, - anon_sym_RPAREN_RPAREN, - STATE(6461), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(6014), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, + ACTIONS(6016), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, + ACTIONS(6018), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, + ACTIONS(6040), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(6042), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(6044), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6020), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(5766), 14, + sym__concat, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -196896,56 +186886,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [139840] = 21, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + [132237] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, + ACTIONS(6022), 1, anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(6024), 1, + sym_test_operator, + ACTIONS(6030), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(6032), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(6034), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(6036), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(6038), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, + ACTIONS(6046), 1, + anon_sym_QMARK, + ACTIONS(6048), 1, anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(6050), 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, + ACTIONS(6014), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, + ACTIONS(6016), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, + ACTIONS(6018), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, + ACTIONS(6040), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(6042), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(6044), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6020), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(5766), 13, + sym__concat, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -196957,56 +186946,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [139922] = 21, + anon_sym_RBRACK, + [132315] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, + ACTIONS(5764), 1, + anon_sym_EQ, + ACTIONS(6022), 1, anon_sym_STAR_STAR, - ACTIONS(6772), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(6024), 1, + sym_test_operator, + ACTIONS(6032), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(6034), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(6036), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(6038), 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, + ACTIONS(6014), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, + ACTIONS(6016), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, + ACTIONS(6018), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, + ACTIONS(6040), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(6042), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(6044), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6020), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(5766), 16, + sym__concat, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -197018,56 +186999,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [140004] = 21, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [132387] = 15, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, + ACTIONS(5764), 1, + anon_sym_EQ, + ACTIONS(6022), 1, anon_sym_STAR_STAR, - ACTIONS(6772), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, - anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(6024), 1, + sym_test_operator, + ACTIONS(6034), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(6036), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(6038), 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, + ACTIONS(6014), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, + ACTIONS(6016), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, + ACTIONS(6018), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, + ACTIONS(6040), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(6042), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(6044), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6020), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(5766), 17, + sym__concat, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -197079,56 +187053,49 @@ 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_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [132457] = 14, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, + ACTIONS(6022), 1, anon_sym_STAR_STAR, - ACTIONS(6772), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, - anon_sym_AMP_AMP, - ACTIONS(6776), 1, - anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(6024), 1, + sym_test_operator, + ACTIONS(6036), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(6038), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, + ACTIONS(5764), 2, 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_PIPE, + ACTIONS(6014), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, + ACTIONS(6016), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, + ACTIONS(6018), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, + ACTIONS(6040), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(6042), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(6044), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6020), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(5766), 17, + sym__concat, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -197140,56 +187107,48 @@ 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_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_RBRACK, 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, + [132525] = 13, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6022), 1, + anon_sym_STAR_STAR, + ACTIONS(6024), 1, + sym_test_operator, + ACTIONS(6038), 1, + anon_sym_AMP, + ACTIONS(6014), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, + ACTIONS(6016), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, + ACTIONS(6018), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, + ACTIONS(6040), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(6042), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(6044), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(5764), 3, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(6020), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(5766), 17, + sym__concat, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -197201,90 +187160,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [140250] = 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_RBRACK, 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, + [132591] = 12, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6022), 1, + anon_sym_STAR_STAR, + ACTIONS(6024), 1, + sym_test_operator, + ACTIONS(6014), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, + ACTIONS(6016), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, + ACTIONS(6018), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, + ACTIONS(6040), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(6042), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(6044), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6020), 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, - [140332] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6964), 14, + ACTIONS(5764), 4, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6962), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5766), 17, + sym__concat, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -197298,63 +187214,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [140378] = 21, + [132655] = 11, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, + ACTIONS(6022), 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(6966), 1, - anon_sym_RPAREN_RPAREN, - STATE(6519), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(6024), 1, + sym_test_operator, + ACTIONS(6014), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, + ACTIONS(6016), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, + ACTIONS(6018), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(6042), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(6044), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6020), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(5764), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(5766), 19, + sym__concat, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -197366,10 +187261,17 @@ 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_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [132717] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6964), 14, + ACTIONS(5764), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -197384,9 +187286,9 @@ 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(5766), 24, + sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -197406,181 +187308,38 @@ 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, - [140506] = 21, + [132763] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, + ACTIONS(6022), 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(6968), 1, - anon_sym_RPAREN_RPAREN, - STATE(6522), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(6024), 1, + sym_test_operator, + ACTIONS(6014), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, + ACTIONS(6016), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, + ACTIONS(6018), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6786), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6020), 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, - [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_PIPE, - ACTIONS(6778), 1, - anon_sym_CARET, - ACTIONS(6780), 1, - anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, + ACTIONS(5764), 6, 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_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, - [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_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_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6752), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(5766), 21, + sym__concat, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -197592,281 +187351,31 @@ 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_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_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, - [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_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_RBRACK, 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_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, - [140916] = 21, + [132821] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, + ACTIONS(6022), 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(6978), 1, - anon_sym_RPAREN_RPAREN, - STATE(6552), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(6014), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, + ACTIONS(6018), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6786), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6020), 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, - [140998] = 3, - 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, - 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(1254), 24, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [141044] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6980), 1, - sym__special_character, - STATE(2737), 1, - aux_sym__literal_repeat1, - ACTIONS(1316), 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(1318), 23, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [141094] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1276), 14, + ACTIONS(5764), 8, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -197875,17 +187384,9 @@ 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(1278), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5766), 22, + sym__concat, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -197903,99 +187404,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [141140] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1284), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1286), 24, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [141186] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1213), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - 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, - 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, - [141232] = 3, + [132875] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1288), 14, + ACTIONS(6022), 1, + anon_sym_STAR_STAR, + ACTIONS(6014), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6020), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5764), 10, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -198006,15 +187430,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1290), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5766), 22, + sym__concat, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -198032,13 +187450,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, + [132927] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 14, + ACTIONS(6022), 1, + anon_sym_STAR_STAR, + ACTIONS(6014), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5764), 13, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -198052,12 +187475,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1266), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5766), 22, + sym__concat, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -198075,13 +187495,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [141324] = 3, + [132977] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1312), 14, + ACTIONS(1229), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -198090,84 +187510,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1314), 24, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [141370] = 3, - ACTIONS(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, + ACTIONS(1231), 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, - [141416] = 3, + [133023] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1280), 14, + ACTIONS(6022), 1, + anon_sym_STAR_STAR, + ACTIONS(6014), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5764), 13, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -198181,12 +187563,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1282), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5766), 22, + sym__concat, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -198204,13 +187583,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [141462] = 3, + [133073] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 14, + ACTIONS(5764), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -198225,9 +187604,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1294), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(5766), 24, + sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -198247,116 +187626,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [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_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1262), 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, - [141554] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1268), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1270), 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, - [141600] = 3, - ACTIONS(71), 1, + [133119] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(6661), 14, + ACTIONS(6054), 1, anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - 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), 24, - sym__concat, - sym_test_operator, + ACTIONS(6056), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6052), 36, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -198371,57 +187653,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_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, - [141646] = 17, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + [133167] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6764), 1, - anon_sym_STAR_STAR, - ACTIONS(6766), 1, - sym_test_operator, - ACTIONS(6794), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6796), 1, - anon_sym_AMP_AMP, - ACTIONS(6798), 1, + ACTIONS(1280), 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, - sym__concat, + anon_sym_STAR_STAR, + ACTIONS(1282), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -198433,13 +187707,19 @@ 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_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, - [141720] = 3, + anon_sym_COLON, + [133213] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6989), 14, + ACTIONS(5772), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -198454,7 +187734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6987), 24, + ACTIONS(5770), 24, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -198479,50 +187759,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [141766] = 17, + [133259] = 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(5778), 14, + anon_sym_EQ, 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, + 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), 15, + anon_sym_STAR_STAR, + ACTIONS(5776), 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, @@ -198534,55 +187793,67 @@ 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, - [141840] = 3, - ACTIONS(71), 1, + [133305] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 14, + ACTIONS(1197), 1, + sym_file_descriptor, + ACTIONS(2573), 1, + anon_sym_DQUOTE, + ACTIONS(6062), 1, + sym_variable_name, + STATE(4097), 1, + sym_string, + ACTIONS(6060), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(6058), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 24, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1274), 24, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [141886] = 3, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + [133361] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 14, + ACTIONS(1312), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -198597,7 +187868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1266), 24, + ACTIONS(1314), 24, sym_file_descriptor, sym__concat, sym_test_operator, @@ -198622,53 +187893,62 @@ 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, + [133407] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1280), 14, + ACTIONS(1191), 1, + sym_file_descriptor, + ACTIONS(2573), 1, + anon_sym_DQUOTE, + ACTIONS(6062), 1, + sym_variable_name, + STATE(4097), 1, + sym_string, + ACTIONS(6060), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(6058), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 24, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_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, - sym__concat, - sym_test_operator, - sym__brace_start, - 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, - anon_sym_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, - [141978] = 3, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + [133463] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 14, + ACTIONS(6064), 1, + sym__special_character, + STATE(2606), 1, + aux_sym__literal_repeat1, + ACTIONS(1316), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -198680,12 +187960,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(1250), 24, + ACTIONS(1318), 23, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -198699,16 +187978,15 @@ 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, - [142024] = 3, + [133513] = 3, ACTIONS(71), 1, sym_comment, ACTIONS(1256), 14, @@ -198751,10 +188029,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [142070] = 3, + [133559] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1276), 14, + ACTIONS(1219), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -198769,7 +188047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1278), 24, + ACTIONS(1221), 24, sym_file_descriptor, sym__concat, sym_test_operator, @@ -198794,10 +188072,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [142116] = 3, + [133605] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1288), 14, + ACTIONS(1308), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -198812,7 +188090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1290), 24, + ACTIONS(1310), 24, sym_file_descriptor, sym__concat, sym_test_operator, @@ -198837,10 +188115,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [142162] = 3, + [133651] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 14, + ACTIONS(1252), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -198855,7 +188133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1294), 24, + ACTIONS(1254), 24, sym_file_descriptor, sym__concat, sym_test_operator, @@ -198880,10 +188158,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [142208] = 3, + [133697] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 14, + ACTIONS(6067), 1, + sym__special_character, + STATE(2606), 1, + aux_sym__literal_repeat1, + ACTIONS(4447), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -198895,12 +188177,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(1298), 24, + ACTIONS(4449), 23, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -198914,62 +188195,66 @@ 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, - [142254] = 3, + [133747] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 14, + ACTIONS(6069), 1, + sym_extglob_pattern, + ACTIONS(5672), 14, + 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(1302), 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(5674), 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, - 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, - [142300] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [133795] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 14, + ACTIONS(6071), 1, + sym__special_character, + STATE(2613), 1, + aux_sym__literal_repeat1, + ACTIONS(1316), 12, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -198981,12 +188266,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1306), 24, + ACTIONS(1318), 24, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -198998,21 +188281,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, - [142346] = 3, + [133845] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 14, + ACTIONS(1268), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -199021,13 +188304,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1302), 24, + ACTIONS(1270), 24, sym_file_descriptor, sym__concat, sym_test_operator, @@ -199036,6 +188319,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, @@ -199044,7 +188328,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, @@ -199052,104 +188335,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [142392] = 18, + [133891] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(5835), 1, + anon_sym_EQ, + ACTIONS(5841), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(5843), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(5845), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(5847), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(5849), 1, anon_sym_AMP, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5865), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(5867), 1, anon_sym_QMARK, - ACTIONS(6746), 2, + ACTIONS(6074), 1, + anon_sym_RPAREN_RPAREN, + STATE(6242), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5837), 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(5851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(5855), 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_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - 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_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, + ACTIONS(5857), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, + ACTIONS(5859), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6786), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6991), 17, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -199161,48 +188396,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [142538] = 14, + [133973] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6776), 1, + ACTIONS(6078), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6778), 1, anon_sym_CARET, - ACTIONS(6780), 1, anon_sym_AMP, - ACTIONS(6993), 1, - anon_sym_EQ, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6748), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6786), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6752), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6991), 18, + anon_sym_STAR_STAR, + ACTIONS(6076), 24, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -199216,46 +188432,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [142606] = 13, + [134019] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6778), 1, + ACTIONS(5695), 1, + anon_sym_RBRACK, + ACTIONS(6080), 1, + sym__concat, + ACTIONS(1235), 14, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_CARET, - ACTIONS(6780), 1, anon_sym_AMP, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6748), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6786), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6993), 2, - anon_sym_EQ, - anon_sym_PIPE, - ACTIONS(6752), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6991), 18, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + anon_sym_STAR_STAR, + ACTIONS(1329), 22, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -199269,144 +188478,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [142672] = 12, - ACTIONS(71), 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, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [142736] = 11, + [134069] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6748), 2, + ACTIONS(1268), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1270), 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(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_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, + [134115] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4485), 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(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_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(4487), 25, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [142798] = 10, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_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, + [134161] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6748), 2, + ACTIONS(6084), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6784), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6786), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6752), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6993), 4, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(6991), 20, + anon_sym_STAR_STAR, + ACTIONS(6082), 24, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -199422,37 +188608,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [142858] = 8, + [134207] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6748), 2, + ACTIONS(1284), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(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_STAR_STAR, + ACTIONS(1286), 24, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -199473,66 +188656,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [142914] = 7, + [134253] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6752), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6993), 8, - anon_sym_EQ, + ACTIONS(1272), 14, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - 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_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1274), 24, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_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, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_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, + [134299] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6752), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6993), 10, + ACTIONS(1288), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -199543,9 +188713,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6991), 22, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1290), 24, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -199566,15 +188742,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [143020] = 5, + [134345] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6993), 13, + ACTIONS(1264), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -199588,9 +188759,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6991), 22, + anon_sym_STAR_STAR, + ACTIONS(1266), 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, @@ -199611,13 +188785,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [143070] = 4, + [134391] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6993), 14, + ACTIONS(6088), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -199632,9 +188803,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6991), 22, + ACTIONS(6086), 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, @@ -199655,53 +188828,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [143118] = 3, - 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, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1254), 24, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_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, - [143164] = 3, + [134437] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 14, + ACTIONS(1264), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -199716,9 +188846,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1250), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(1266), 24, + sym_test_operator, + sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -199738,185 +188868,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [143210] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1284), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1286), 24, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_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, - [143256] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1213), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1215), 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, - [143302] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1312), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1314), 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, - [143348] = 3, - 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, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1310), 24, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_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, - [143394] = 3, + [134483] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 14, + ACTIONS(1292), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -199931,9 +188889,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1298), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(1294), 24, + sym_test_operator, + sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -199953,13 +188911,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [143440] = 3, + [134529] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 14, + ACTIONS(1248), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -199974,7 +188932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1302), 24, + ACTIONS(1250), 24, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -199999,10 +188957,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [143486] = 3, + [134575] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 14, + ACTIONS(1292), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -200017,7 +188975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1306), 24, + ACTIONS(1294), 24, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -200035,148 +188993,74 @@ 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, - [143532] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6995), 1, - sym__special_character, - STATE(2786), 1, - aux_sym__literal_repeat1, - ACTIONS(1316), 12, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1318), 24, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [143582] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1260), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1262), 24, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [143628] = 3, + 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, + [134621] = 17, ACTIONS(71), 1, sym_comment, - ACTIONS(1268), 14, + ACTIONS(5841), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5843), 1, + anon_sym_AMP_AMP, + ACTIONS(5845), 1, anon_sym_PIPE, + ACTIONS(5847), 1, + anon_sym_CARET, + ACTIONS(5849), 1, + anon_sym_AMP, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5867), 1, + anon_sym_QMARK, + ACTIONS(5871), 1, + anon_sym_EQ, + ACTIONS(5837), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5851), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(5855), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5857), 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(1270), 24, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [143674] = 3, + ACTIONS(5859), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5861), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5869), 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, + [134695] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 14, + ACTIONS(1260), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -200191,9 +189075,9 @@ 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, + ACTIONS(1262), 24, + sym_test_operator, + sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -200213,17 +189097,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [143720] = 5, + [134741] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6489), 1, - anon_sym_RBRACK, - ACTIONS(6998), 1, - sym__concat, - ACTIONS(1235), 14, + ACTIONS(1296), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -200238,8 +189118,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1332), 22, + ACTIONS(1298), 24, sym_test_operator, + sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -200259,58 +189140,107 @@ 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, + [134787] = 18, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(5835), 1, + anon_sym_EQ, + ACTIONS(5841), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(5843), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(5845), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(5847), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(5849), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5865), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(5867), 1, anon_sym_QMARK, - ACTIONS(7000), 1, - anon_sym_RPAREN_RPAREN, - STATE(6515), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, + ACTIONS(5837), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, + ACTIONS(5851), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5853), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5855), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5857), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, + ACTIONS(5859), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, + ACTIONS(5861), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5869), 14, + 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_COLON, + [134863] = 15, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5843), 1, + anon_sym_AMP_AMP, + ACTIONS(5845), 1, + anon_sym_PIPE, + ACTIONS(5847), 1, + anon_sym_CARET, + ACTIONS(5849), 1, + anon_sym_AMP, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5871), 1, + anon_sym_EQ, + ACTIONS(5837), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(5855), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(5857), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5859), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(5869), 17, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -200322,10 +189252,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [143852] = 3, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [134933] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1223), 15, + ACTIONS(1280), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -200340,9 +189274,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - sym__special_character, - ACTIONS(1225), 23, + ACTIONS(1282), 24, sym_test_operator, + sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -200362,55 +189296,64 @@ 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, - [143898] = 5, + [134979] = 14, ACTIONS(71), 1, sym_comment, - ACTIONS(7002), 1, - sym__special_character, - STATE(2793), 1, - aux_sym__literal_repeat1, - ACTIONS(1316), 12, + ACTIONS(5845), 1, anon_sym_PIPE, + ACTIONS(5847), 1, + anon_sym_CARET, + ACTIONS(5849), 1, + anon_sym_AMP, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5871), 1, + anon_sym_EQ, + ACTIONS(5837), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5851), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(5855), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5857), 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(1318), 24, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, + anon_sym_GT_GT, + ACTIONS(5859), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5861), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5869), 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_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_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, - [143948] = 3, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [135047] = 3, ACTIONS(71), 1, sym_comment, ACTIONS(1272), 14, @@ -200453,10 +189396,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [143994] = 3, + [135093] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 14, + ACTIONS(1292), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -200465,13 +189408,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1266), 24, + ACTIONS(1294), 24, sym_file_descriptor, sym__concat, sym_test_operator, @@ -200480,7 +189423,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -200489,6 +189431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -200496,139 +189439,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [144040] = 3, + [135139] = 13, ACTIONS(71), 1, sym_comment, - ACTIONS(1280), 14, - anon_sym_PIPE, + ACTIONS(5847), 1, + anon_sym_CARET, + ACTIONS(5849), 1, + anon_sym_AMP, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5837), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5851), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(5855), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5857), 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(1282), 24, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_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, - [144086] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1248), 14, + ACTIONS(5859), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5871), 2, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1250), 24, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, + ACTIONS(5861), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5869), 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_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_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, - [144132] = 3, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [135205] = 12, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 14, - anon_sym_PIPE, + ACTIONS(5849), 1, + anon_sym_AMP, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5837), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5851), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(5855), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5857), 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(1258), 24, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, + anon_sym_GT_GT, + ACTIONS(5859), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5861), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5871), 3, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(5869), 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_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_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, - [144178] = 3, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [135269] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1276), 14, + ACTIONS(1264), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -200637,13 +189556,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1278), 24, + ACTIONS(1266), 24, sym_file_descriptor, sym__concat, sym_test_operator, @@ -200652,7 +189571,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, @@ -200661,6 +189579,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, @@ -200668,96 +189587,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [144224] = 3, + [135315] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1288), 14, + 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_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1290), 24, - sym_file_descriptor, - sym__concat, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1302), 24, sym_test_operator, - sym__brace_start, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_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, - [144270] = 3, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [135361] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 14, + ACTIONS(1304), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1294), 24, - sym_file_descriptor, - sym__concat, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1306), 24, sym_test_operator, - sym__brace_start, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_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, - [144316] = 3, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [135407] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 14, + ACTIONS(3913), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -200770,11 +189689,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(1298), 24, + ACTIONS(3915), 25, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -200787,66 +189705,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_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, - [144362] = 21, + [135453] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, - anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(1300), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6778), 1, anon_sym_CARET, - ACTIONS(6780), 1, anon_sym_AMP, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, - anon_sym_EQ_TILDE, - ACTIONS(6832), 1, - anon_sym_QMARK, - ACTIONS(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_STAR_STAR, + ACTIONS(1302), 24, + sym_test_operator, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -200858,32 +189750,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [144444] = 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_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [135499] = 11, ACTIONS(71), 1, sym_comment, - ACTIONS(7011), 1, + ACTIONS(5863), 1, anon_sym_STAR_STAR, - ACTIONS(6695), 2, + ACTIONS(5837), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7007), 2, + ACTIONS(5851), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5853), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5855), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5857), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5859), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7009), 3, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6611), 8, + ACTIONS(5871), 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(6613), 21, - sym_test_operator, + ACTIONS(5869), 18, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -200897,61 +189807,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_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [144497] = 20, + anon_sym_COLON, + [135561] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(7013), 1, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(5835), 1, anon_sym_EQ, - ACTIONS(7019), 1, + ACTIONS(5841), 1, anon_sym_PIPE_PIPE, - ACTIONS(7021), 1, + ACTIONS(5843), 1, anon_sym_AMP_AMP, - ACTIONS(7023), 1, + ACTIONS(5845), 1, anon_sym_PIPE, - ACTIONS(7025), 1, + ACTIONS(5847), 1, anon_sym_CARET, - ACTIONS(7027), 1, + ACTIONS(5849), 1, anon_sym_AMP, - ACTIONS(7041), 1, + ACTIONS(5863), 1, anon_sym_STAR_STAR, - ACTIONS(7043), 1, - anon_sym_RBRACK, - ACTIONS(7045), 1, + ACTIONS(5865), 1, anon_sym_EQ_TILDE, - ACTIONS(7047), 1, + ACTIONS(5867), 1, anon_sym_QMARK, - ACTIONS(7049), 1, - sym_test_operator, - ACTIONS(7015), 2, + ACTIONS(6090), 1, + anon_sym_RPAREN_RPAREN, + STATE(6135), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5837), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7029), 2, + ACTIONS(5851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7031), 2, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7033), 2, + ACTIONS(5855), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7035), 2, + ACTIONS(5857), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7037), 2, + ACTIONS(5859), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7039), 3, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7017), 11, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -200963,54 +189871,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [144576] = 20, + [135643] = 10, ACTIONS(71), 1, sym_comment, - ACTIONS(7043), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(7051), 1, - anon_sym_EQ, - ACTIONS(7055), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7057), 1, - anon_sym_AMP_AMP, - ACTIONS(7059), 1, - anon_sym_PIPE, - ACTIONS(7061), 1, - anon_sym_CARET, - ACTIONS(7063), 1, - anon_sym_AMP, - ACTIONS(7077), 1, + ACTIONS(5863), 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, + ACTIONS(5837), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7065), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7067), 2, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7069), 2, + ACTIONS(5855), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7071), 2, + ACTIONS(5857), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7073), 2, + ACTIONS(5859), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7075), 3, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7053), 11, + ACTIONS(5871), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(5869), 20, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -201022,37 +189914,36 @@ 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_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [135703] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6094), 14, + anon_sym_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), 20, - anon_sym_SEMI, + anon_sym_STAR_STAR, + ACTIONS(6092), 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, @@ -201065,102 +189956,83 @@ 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, - [144714] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [135749] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 13, + ACTIONS(6098), 14, + 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(1250), 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, - [144759] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6754), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(6096), 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, - ACTIONS(6774), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [135795] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5726), 1, + anon_sym_RBRACK, + ACTIONS(6100), 1, + sym__concat, + ACTIONS(1235), 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(1329), 22, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -201172,54 +190044,42 @@ 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_EQ_TILDE, - ACTIONS(6832), 1, anon_sym_QMARK, - ACTIONS(7105), 1, - anon_sym_COMMA, - ACTIONS(6746), 2, + [135845] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5837), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, + ACTIONS(5857), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, + ACTIONS(5859), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6786), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(5871), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5869), 22, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -201231,54 +190091,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [144917] = 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, + [135901] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7013), 1, + ACTIONS(1276), 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(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, @@ -201290,54 +190134,81 @@ 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_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [135947] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7051), 1, + ACTIONS(6104), 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_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, 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, + ACTIONS(6102), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7065), 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(7067), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7069), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7071), 2, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [135993] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6104), 14, + anon_sym_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(7053), 11, + anon_sym_STAR_STAR, + ACTIONS(6102), 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, @@ -201349,52 +190220,70 @@ 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_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [136039] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 13, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5837), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5859), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5861), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5871), 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_AMP_GT, - anon_sym_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), 24, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, + anon_sym_GT_GT, + ACTIONS(5869), 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_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_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, - [145120] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [136093] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1284), 13, + ACTIONS(6067), 1, + sym__special_character, + STATE(2606), 1, + aux_sym__literal_repeat1, + ACTIONS(4391), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -201406,11 +190295,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(1286), 24, + ACTIONS(4393), 23, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -201424,19 +190313,20 @@ 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, - [145165] = 3, + [136143] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6709), 14, + ACTIONS(6106), 1, + sym__concat, + ACTIONS(5778), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -201451,8 +190341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6711), 23, - sym_test_operator, + ACTIONS(5776), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -201475,54 +190364,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [145210] = 20, + [136190] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, + ACTIONS(6110), 1, anon_sym_STAR_STAR, - ACTIONS(6772), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, - anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(6108), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5764), 13, + 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, + ACTIONS(5766), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -201534,54 +190399,63 @@ 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, + [136239] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(849), 1, + ACTIONS(851), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(5835), 1, + anon_sym_EQ, + ACTIONS(5841), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(5843), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(5845), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(5847), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(5849), 1, anon_sym_AMP, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5865), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(5867), 1, anon_sym_QMARK, - ACTIONS(7105), 1, + ACTIONS(6112), 1, anon_sym_COMMA, - ACTIONS(6746), 2, + ACTIONS(5837), 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(5851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(5855), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(5857), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5859), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -201593,54 +190467,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [145368] = 20, + [136318] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7013), 1, + ACTIONS(5764), 14, anon_sym_EQ, - ACTIONS(7019), 1, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(5766), 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, - ACTIONS(7021), 1, anon_sym_AMP_AMP, - ACTIONS(7023), 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, + [136363] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6114), 1, + anon_sym_EQ, + ACTIONS(6118), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6120), 1, + anon_sym_AMP_AMP, + ACTIONS(6122), 1, anon_sym_PIPE, - ACTIONS(7025), 1, + ACTIONS(6124), 1, anon_sym_CARET, - ACTIONS(7027), 1, + ACTIONS(6126), 1, anon_sym_AMP, - ACTIONS(7041), 1, + ACTIONS(6140), 1, anon_sym_STAR_STAR, - ACTIONS(7045), 1, + ACTIONS(6142), 1, anon_sym_EQ_TILDE, - ACTIONS(7047), 1, + ACTIONS(6144), 1, anon_sym_QMARK, - ACTIONS(7049), 1, + ACTIONS(6146), 1, + anon_sym_COLON, + ACTIONS(6148), 1, sym_test_operator, - ACTIONS(7111), 1, - anon_sym_RBRACK, - ACTIONS(7015), 2, + ACTIONS(5760), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7029), 2, + ACTIONS(6128), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7031), 2, + ACTIONS(6130), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7033), 2, + ACTIONS(6132), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7035), 2, + ACTIONS(6134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7037), 2, + ACTIONS(6136), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7039), 3, + ACTIONS(6138), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7017), 11, + ACTIONS(6116), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -201652,54 +190568,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [145447] = 20, + [136442] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7051), 1, + ACTIONS(5835), 1, anon_sym_EQ, - ACTIONS(7055), 1, + ACTIONS(5841), 1, anon_sym_PIPE_PIPE, - ACTIONS(7057), 1, + ACTIONS(5843), 1, anon_sym_AMP_AMP, - ACTIONS(7059), 1, + ACTIONS(5845), 1, anon_sym_PIPE, - ACTIONS(7061), 1, + ACTIONS(5847), 1, anon_sym_CARET, - ACTIONS(7063), 1, + ACTIONS(5849), 1, anon_sym_AMP, - ACTIONS(7077), 1, + ACTIONS(5863), 1, anon_sym_STAR_STAR, - ACTIONS(7079), 1, + ACTIONS(5865), 1, anon_sym_EQ_TILDE, - ACTIONS(7081), 1, + ACTIONS(5867), 1, anon_sym_QMARK, - ACTIONS(7083), 1, - sym_test_operator, - ACTIONS(7111), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(6695), 2, + ACTIONS(5837), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7065), 2, + ACTIONS(5851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7067), 2, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7069), 2, + ACTIONS(5855), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7071), 2, + ACTIONS(5857), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7073), 2, + ACTIONS(5859), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7075), 3, + ACTIONS(6150), 2, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7053), 11, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -201711,32 +190626,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [145526] = 9, + [136519] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7099), 1, + ACTIONS(6156), 1, anon_sym_STAR_STAR, - ACTIONS(7101), 1, + ACTIONS(6158), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(7087), 2, + ACTIONS(6154), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7093), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7095), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7097), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7091), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7085), 22, + ACTIONS(6152), 33, anon_sym_SEMI, anon_sym_COMMA, anon_sym_PLUS_EQ, @@ -201759,54 +190659,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [145583] = 20, + 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, + [136568] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, + ACTIONS(1296), 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(1298), 24, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_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, + [136613] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1252), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1254), 24, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [136658] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6110), 1, anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(6160), 1, + anon_sym_EQ, + ACTIONS(6164), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(6166), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(6168), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(6170), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(6172), 1, anon_sym_AMP, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(6186), 1, + anon_sym_RBRACK, + ACTIONS(6188), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(6190), 1, anon_sym_QMARK, - ACTIONS(7105), 1, - anon_sym_COMMA, - ACTIONS(7113), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6746), 2, + ACTIONS(6192), 1, + sym_test_operator, + ACTIONS(6108), 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(6174), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(6176), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(6178), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6180), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6182), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6184), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(6162), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -201818,29 +190813,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [145662] = 4, + [136737] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(7115), 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, + ACTIONS(6200), 1, + anon_sym_STAR_STAR, + ACTIONS(5760), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6194), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6196), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6198), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6645), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5764), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5766), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -201858,57 +190857,53 @@ 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, - [145709] = 20, + [136792] = 18, ACTIONS(71), 1, sym_comment, - ACTIONS(857), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6754), 1, + ACTIONS(5764), 1, + anon_sym_EQ, + ACTIONS(6200), 1, anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(6202), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(6204), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(6206), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(6208), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(6210), 1, anon_sym_AMP, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, - anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(6218), 1, anon_sym_QMARK, - ACTIONS(7105), 1, - anon_sym_COMMA, - ACTIONS(6746), 2, + ACTIONS(6220), 1, + sym_test_operator, + ACTIONS(5760), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, + ACTIONS(6194), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, + ACTIONS(6196), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, + ACTIONS(6212), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(6214), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(6216), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6198), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(5766), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -201920,54 +190915,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [145788] = 20, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + [136867] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7013), 1, - anon_sym_EQ, - ACTIONS(7019), 1, + ACTIONS(6200), 1, + anon_sym_STAR_STAR, + ACTIONS(6202), 1, anon_sym_PIPE_PIPE, - ACTIONS(7021), 1, + ACTIONS(6204), 1, anon_sym_AMP_AMP, - ACTIONS(7023), 1, + ACTIONS(6206), 1, anon_sym_PIPE, - ACTIONS(7025), 1, + ACTIONS(6208), 1, anon_sym_CARET, - ACTIONS(7027), 1, + ACTIONS(6210), 1, anon_sym_AMP, - ACTIONS(7041), 1, - anon_sym_STAR_STAR, - ACTIONS(7045), 1, - anon_sym_EQ_TILDE, - ACTIONS(7047), 1, + ACTIONS(6218), 1, anon_sym_QMARK, - ACTIONS(7049), 1, + ACTIONS(6220), 1, sym_test_operator, - ACTIONS(7117), 1, - anon_sym_RBRACK, - ACTIONS(7015), 2, + ACTIONS(6222), 1, + anon_sym_EQ, + ACTIONS(6224), 1, + anon_sym_EQ_TILDE, + ACTIONS(5760), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7029), 2, + ACTIONS(6194), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6196), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6212), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7031), 2, + ACTIONS(6214), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7033), 2, + ACTIONS(6216), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7035), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7037), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7039), 3, + ACTIONS(6198), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7017), 11, + ACTIONS(5766), 12, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -201979,54 +190974,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [145867] = 20, + anon_sym_RPAREN, + [136944] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(7051), 1, - anon_sym_EQ, - ACTIONS(7055), 1, + ACTIONS(6226), 1, + sym__special_character, + STATE(2798), 1, + aux_sym__literal_repeat1, + ACTIONS(4778), 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(4780), 22, + sym_file_descriptor, + 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, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [136993] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5764), 1, + anon_sym_EQ, + ACTIONS(6200), 1, + anon_sym_STAR_STAR, + ACTIONS(6204), 1, + anon_sym_AMP_AMP, + ACTIONS(6206), 1, anon_sym_PIPE, - ACTIONS(7061), 1, + ACTIONS(6208), 1, anon_sym_CARET, - ACTIONS(7063), 1, + ACTIONS(6210), 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, + ACTIONS(6220), 1, sym_test_operator, - ACTIONS(7117), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(6695), 2, + ACTIONS(5760), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7065), 2, + ACTIONS(6194), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6196), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6212), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7067), 2, + ACTIONS(6214), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7069), 2, + ACTIONS(6216), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7071), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7075), 3, + ACTIONS(6198), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7053), 11, + ACTIONS(5766), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -202038,27 +191070,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [145946] = 8, + anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [137064] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7099), 1, + ACTIONS(6156), 1, anon_sym_STAR_STAR, - ACTIONS(7101), 1, + ACTIONS(6158), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(7087), 2, + ACTIONS(6154), 2, 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, + ACTIONS(6152), 33, anon_sym_SEMI, anon_sym_COMMA, anon_sym_PLUS_EQ, @@ -202085,54 +191111,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - [146001] = 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [137113] = 11, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, + ACTIONS(6140), 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(7119), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6746), 2, + ACTIONS(6148), 1, + sym_test_operator, + ACTIONS(5760), 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, + ACTIONS(6130), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(6132), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6134), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6136), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6138), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(5764), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(5766), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -202144,54 +191161,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [146080] = 20, + 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, + [137174] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(865), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(6186), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(6228), 1, + anon_sym_EQ, + ACTIONS(6232), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(6234), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(6236), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(6238), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(6240), 1, anon_sym_AMP, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(6254), 1, + anon_sym_STAR_STAR, + ACTIONS(6256), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(6258), 1, anon_sym_QMARK, - ACTIONS(7105), 1, - anon_sym_COMMA, - ACTIONS(6746), 2, + ACTIONS(6260), 1, + sym_test_operator, + ACTIONS(5760), 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(6242), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(6244), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(6246), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6248), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6250), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6252), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(6230), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -202203,26 +191227,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [146159] = 7, - ACTIONS(3), 1, + [137253] = 9, + ACTIONS(71), 1, sym_comment, - ACTIONS(7099), 1, + ACTIONS(6140), 1, anon_sym_STAR_STAR, - ACTIONS(7101), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7087), 2, + ACTIONS(6148), 1, + sym_test_operator, + ACTIONS(5760), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7095), 2, + ACTIONS(6134), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6136), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7097), 3, + ACTIONS(6138), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7085), 28, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(5764), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5766), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -202235,68 +191267,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_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, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [137310] = 15, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, + ACTIONS(5764), 1, + anon_sym_EQ, + ACTIONS(6200), 1, anon_sym_STAR_STAR, - ACTIONS(6772), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, - anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(6206), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(6208), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(6210), 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, + ACTIONS(6220), 1, + sym_test_operator, + ACTIONS(5760), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, + ACTIONS(6194), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, + ACTIONS(6196), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, + ACTIONS(6212), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(6214), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(6216), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6198), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(5766), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -202308,54 +191324,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [146291] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7123), 1, - sym__special_character, - STATE(2921), 1, - aux_sym__literal_repeat1, - ACTIONS(5387), 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(5389), 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, - [146340] = 3, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [137379] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 13, + ACTIONS(1268), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -202369,7 +191346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1258), 24, + ACTIONS(1270), 24, sym_file_descriptor, sym__concat, sym_test_operator, @@ -202394,10 +191371,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [146385] = 3, + [137424] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(2160), 12, + ACTIONS(3913), 12, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -202410,7 +191387,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(2162), 25, + ACTIONS(3915), 25, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -202436,148 +191413,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [146430] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1213), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1215), 24, - sym_file_descriptor, - sym__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, - [146475] = 6, + [137469] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(7099), 1, + ACTIONS(6156), 1, anon_sym_STAR_STAR, - ACTIONS(7101), 1, + ACTIONS(6158), 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(6266), 1, anon_sym_PIPE, + ACTIONS(6268), 1, anon_sym_CARET, + ACTIONS(6270), 1, 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_STAR, - ACTIONS(7101), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7087), 2, + ACTIONS(6154), 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, + ACTIONS(6262), 2, anon_sym_PIPE_PIPE, anon_sym_DASHo, + ACTIONS(6264), 2, anon_sym_AMP_AMP, anon_sym_DASHa, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(6272), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(6276), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6278), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6280), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [146575] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7099), 1, - anon_sym_STAR_STAR, - ACTIONS(7101), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7087), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7085), 33, + ACTIONS(6274), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6152), 13, anon_sym_SEMI, anon_sym_COMMA, anon_sym_PLUS_EQ, @@ -202591,36 +191467,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [137538] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5835), 1, + anon_sym_EQ, + ACTIONS(5841), 1, anon_sym_PIPE_PIPE, - anon_sym_DASHo, + ACTIONS(5843), 1, anon_sym_AMP_AMP, - anon_sym_DASHa, + ACTIONS(5845), 1, anon_sym_PIPE, + ACTIONS(5847), 1, anon_sym_CARET, + ACTIONS(5849), 1, anon_sym_AMP, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5865), 1, + anon_sym_EQ_TILDE, + ACTIONS(5867), 1, + anon_sym_QMARK, + ACTIONS(6112), 1, + anon_sym_COMMA, + ACTIONS(6282), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5837), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(5855), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(5857), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(5859), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5861), 3, 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_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -202632,31 +191526,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_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, + [137617] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5886), 13, + ACTIONS(1272), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -202668,11 +191541,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, + anon_sym_BQUOTE, sym_word, - ACTIONS(5888), 24, + ACTIONS(1274), 24, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -202686,66 +191559,19 @@ 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, - [146714] = 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(6611), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6613), 21, - sym_test_operator, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [146769] = 3, + [137662] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5705), 13, + ACTIONS(4008), 12, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -202757,9 +191583,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(5707), 24, + ACTIONS(4010), 25, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -202773,6 +191598,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,10 +191610,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [146814] = 3, + [137707] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(6611), 14, + ACTIONS(6140), 1, + anon_sym_STAR_STAR, + ACTIONS(5760), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6136), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6138), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5764), 8, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -202796,16 +191634,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(6613), 23, + ACTIONS(5766), 21, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -202823,37 +191653,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, - [146859] = 9, + anon_sym_COLON, + [137760] = 14, ACTIONS(71), 1, sym_comment, - ACTIONS(7041), 1, + ACTIONS(6200), 1, anon_sym_STAR_STAR, - ACTIONS(7049), 1, + ACTIONS(6208), 1, + anon_sym_CARET, + ACTIONS(6210), 1, + anon_sym_AMP, + ACTIONS(6220), 1, sym_test_operator, - ACTIONS(7015), 2, + ACTIONS(5760), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7035), 2, + ACTIONS(5764), 2, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(6194), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7037), 2, + ACTIONS(6196), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7039), 3, + ACTIONS(6212), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6214), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6216), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6198), 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(5766), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -202867,39 +191706,96 @@ 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, + [137827] = 13, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6200), 1, + anon_sym_STAR_STAR, + ACTIONS(6210), 1, + anon_sym_AMP, + ACTIONS(6220), 1, + sym_test_operator, + ACTIONS(5760), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6194), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6196), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6212), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6214), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6216), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + ACTIONS(5764), 3, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(6198), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5766), 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, - [146916] = 7, + [137892] = 12, ACTIONS(71), 1, sym_comment, - ACTIONS(7041), 1, + ACTIONS(6200), 1, anon_sym_STAR_STAR, - ACTIONS(7015), 2, + ACTIONS(6220), 1, + sym_test_operator, + ACTIONS(5760), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7037), 2, + ACTIONS(6194), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6196), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7039), 3, + ACTIONS(6212), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6214), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6216), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6198), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6611), 8, + ACTIONS(5764), 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(6613), 21, - sym_test_operator, + ACTIONS(5766), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -202913,61 +191809,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [146969] = 20, + [137955] = 11, 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, + ACTIONS(6200), 1, anon_sym_STAR_STAR, - ACTIONS(7045), 1, - anon_sym_EQ_TILDE, - ACTIONS(7047), 1, - anon_sym_QMARK, - ACTIONS(7049), 1, + ACTIONS(6220), 1, sym_test_operator, - ACTIONS(7129), 1, - anon_sym_RBRACK, - ACTIONS(7015), 2, + ACTIONS(5760), 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, + ACTIONS(6194), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7037), 2, + ACTIONS(6196), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7039), 3, + ACTIONS(6214), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6216), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6198), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7017), 11, + ACTIONS(5764), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(5766), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -202979,58 +191855,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [147048] = 3, - ACTIONS(71), 1, + 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, + [138016] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 13, + ACTIONS(6286), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6284), 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_AMP_GT, - anon_sym_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), 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, - [147093] = 3, - ACTIONS(71), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + [138061] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1235), 14, - anon_sym_EQ, + ACTIONS(1278), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1276), 36, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -203039,10 +191946,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1332), 23, + [138106] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6200), 1, + anon_sym_STAR_STAR, + ACTIONS(6220), 1, sym_test_operator, + ACTIONS(5760), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6194), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6196), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6198), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5764), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5766), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -203060,101 +191991,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_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [147138] = 3, + [138163] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 13, + ACTIONS(6200), 1, + anon_sym_STAR_STAR, + ACTIONS(5760), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6196), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6198), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5764), 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_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1306), 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, - [147183] = 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, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1302), 24, - sym_file_descriptor, - sym__concat, + ACTIONS(5766), 21, sym_test_operator, - sym__brace_start, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_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, - 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, - [147228] = 5, + 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, + [138216] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7131), 1, - sym__special_character, - STATE(2850), 1, - aux_sym__literal_repeat1, - ACTIONS(1316), 12, + ACTIONS(4451), 12, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -203167,8 +192056,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(1318), 23, + ACTIONS(4453), 25, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -203183,6 +192073,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, @@ -203191,43 +192082,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [147277] = 14, - ACTIONS(71), 1, + [138261] = 3, + ACTIONS(3), 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, - anon_sym_PIPE, - ACTIONS(6695), 2, + 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, - 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, @@ -203240,65 +192104,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_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [147344] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5268), 12, + anon_sym_DASHa, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(5270), 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, - [147389] = 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + [138306] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(7041), 1, + ACTIONS(6200), 1, anon_sym_STAR_STAR, - ACTIONS(7015), 2, + ACTIONS(5760), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7039), 3, + ACTIONS(6198), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6611), 10, + ACTIONS(5764), 10, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -203309,7 +192147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6613), 21, + ACTIONS(5766), 21, sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -203328,45 +192166,75 @@ 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, - [147440] = 13, - ACTIONS(71), 1, + [138357] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7063), 1, - anon_sym_AMP, - ACTIONS(7077), 1, - anon_sym_STAR_STAR, - ACTIONS(7083), 1, - sym_test_operator, - ACTIONS(6695), 2, + ACTIONS(1250), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1248), 36, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7065), 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_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, - 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(6611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + [138402] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6200), 1, + anon_sym_STAR_STAR, + ACTIONS(5760), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5764), 13, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(7075), 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, + ACTIONS(5766), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -203380,18 +192248,22 @@ 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_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [147505] = 5, + [138451] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(7041), 1, + ACTIONS(6200), 1, anon_sym_STAR_STAR, - ACTIONS(7015), 2, + ACTIONS(5760), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6611), 13, + ACTIONS(5764), 13, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -203405,7 +192277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 21, + ACTIONS(5766), 21, sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -203424,86 +192296,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_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [147554] = 3, + [138500] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(1272), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1274), 24, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, + ACTIONS(5835), 1, + anon_sym_EQ, + ACTIONS(5841), 1, anon_sym_PIPE_PIPE, + ACTIONS(5843), 1, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [147599] = 12, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7077), 1, + ACTIONS(5845), 1, + anon_sym_PIPE, + ACTIONS(5847), 1, + anon_sym_CARET, + ACTIONS(5849), 1, + anon_sym_AMP, + ACTIONS(5863), 1, anon_sym_STAR_STAR, - ACTIONS(7083), 1, - sym_test_operator, - ACTIONS(6695), 2, + ACTIONS(5865), 1, + anon_sym_EQ_TILDE, + ACTIONS(5867), 1, + anon_sym_QMARK, + ACTIONS(6112), 1, + anon_sym_COMMA, + ACTIONS(6288), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5837), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7065), 2, + ACTIONS(5851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7067), 2, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7069), 2, + ACTIONS(5855), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7071), 2, + ACTIONS(5857), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7073), 2, + ACTIONS(5859), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7075), 3, + ACTIONS(5861), 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(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -203515,17 +192358,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [147662] = 4, + [138579] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(7134), 1, + ACTIONS(6140), 1, + anon_sym_STAR_STAR, + ACTIONS(5760), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6138), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5764), 10, anon_sym_EQ, - ACTIONS(6732), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -203535,15 +192381,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(6736), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5766), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -203556,131 +192395,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, - [147709] = 5, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [138630] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(7136), 1, - sym__special_character, - STATE(2999), 1, - aux_sym__literal_repeat1, - ACTIONS(5130), 12, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(5132), 23, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, + ACTIONS(6110), 1, + anon_sym_STAR_STAR, + ACTIONS(6160), 1, + anon_sym_EQ, + ACTIONS(6164), 1, anon_sym_PIPE_PIPE, + ACTIONS(6166), 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, - [147758] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1280), 13, + ACTIONS(6168), 1, anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1282), 24, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [147803] = 11, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7077), 1, - anon_sym_STAR_STAR, - ACTIONS(7083), 1, + ACTIONS(6170), 1, + anon_sym_CARET, + ACTIONS(6172), 1, + anon_sym_AMP, + ACTIONS(6188), 1, + anon_sym_EQ_TILDE, + ACTIONS(6190), 1, + anon_sym_QMARK, + ACTIONS(6192), 1, sym_test_operator, - ACTIONS(6695), 2, + ACTIONS(6290), 1, + anon_sym_RBRACK, + ACTIONS(6108), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7067), 2, + ACTIONS(6174), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6176), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7069), 2, + ACTIONS(6178), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7071), 2, + ACTIONS(6180), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7073), 2, + ACTIONS(6182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7075), 3, + ACTIONS(6184), 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(6162), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -203692,49 +192462,28 @@ 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_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [147864] = 13, + [138709] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7027), 1, + ACTIONS(1235), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, 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(6611), 3, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(7039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 16, + anon_sym_STAR_STAR, + ACTIONS(1329), 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 +192497,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [147929] = 20, + [138754] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(799), 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(6292), 1, + anon_sym_EQ, + ACTIONS(6052), 13, 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(6056), 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, @@ -203810,96 +192539,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [148008] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1252), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1254), 24, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [148053] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1312), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1314), 24, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [148098] = 3, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [138801] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7140), 1, + ACTIONS(1262), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(7138), 36, + ACTIONS(1260), 36, anon_sym_SEMI, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -203936,34 +192589,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - [148143] = 9, - ACTIONS(71), 1, + [138846] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7077), 1, - anon_sym_STAR_STAR, - ACTIONS(7083), 1, - sym_test_operator, - ACTIONS(6695), 2, + ACTIONS(1282), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1280), 36, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7071), 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_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(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_STAR_STAR, + [138891] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5754), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6613), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(5756), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -203981,18 +192670,18 @@ 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, + [138936] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(7041), 1, + ACTIONS(6140), 1, anon_sym_STAR_STAR, - ACTIONS(7015), 2, + ACTIONS(5760), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6611), 13, + ACTIONS(5764), 13, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -204006,7 +192695,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 21, + ACTIONS(5766), 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, + [138985] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6110), 1, + anon_sym_STAR_STAR, + ACTIONS(6108), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6180), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6182), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6184), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5764), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5766), 21, sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -204028,10 +192764,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [148249] = 3, + [139040] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 13, + ACTIONS(1280), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -204045,7 +192781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1310), 24, + ACTIONS(1282), 24, sym_file_descriptor, sym__concat, sym_test_operator, @@ -204070,50 +192806,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [148294] = 18, + [139085] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(6611), 1, + ACTIONS(869), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5835), 1, anon_sym_EQ, - ACTIONS(7055), 1, + ACTIONS(5841), 1, anon_sym_PIPE_PIPE, - ACTIONS(7057), 1, + ACTIONS(5843), 1, anon_sym_AMP_AMP, - ACTIONS(7059), 1, + ACTIONS(5845), 1, anon_sym_PIPE, - ACTIONS(7061), 1, + ACTIONS(5847), 1, anon_sym_CARET, - ACTIONS(7063), 1, + ACTIONS(5849), 1, anon_sym_AMP, - ACTIONS(7077), 1, + ACTIONS(5863), 1, anon_sym_STAR_STAR, - ACTIONS(7081), 1, + ACTIONS(5865), 1, + anon_sym_EQ_TILDE, + ACTIONS(5867), 1, anon_sym_QMARK, - ACTIONS(7083), 1, - sym_test_operator, - ACTIONS(6695), 2, + ACTIONS(6112), 1, + anon_sym_COMMA, + ACTIONS(5837), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7065), 2, + ACTIONS(5851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7067), 2, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7069), 2, + ACTIONS(5855), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7071), 2, + ACTIONS(5857), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7073), 2, + ACTIONS(5859), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7075), 3, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 13, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -204125,54 +192865,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - [148369] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4437), 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(4439), 25, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - 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, - [148414] = 3, + [139164] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6661), 14, + ACTIONS(6140), 1, + anon_sym_STAR_STAR, + ACTIONS(5760), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5764), 13, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -204186,11 +192887,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6663), 23, + ACTIONS(5766), 21, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -204208,51 +192906,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [148459] = 17, - ACTIONS(71), 1, + anon_sym_COLON, + [139213] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(6983), 1, - anon_sym_EQ, - ACTIONS(7019), 1, + ACTIONS(1286), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1284), 36, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - ACTIONS(7021), 1, + anon_sym_DASHo, anon_sym_AMP_AMP, - ACTIONS(7023), 1, + anon_sym_DASHa, anon_sym_PIPE, - ACTIONS(7025), 1, anon_sym_CARET, - ACTIONS(7027), 1, anon_sym_AMP, - ACTIONS(7041), 1, - anon_sym_STAR_STAR, - ACTIONS(7049), 1, - sym_test_operator, - ACTIONS(7015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7029), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7031), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7033), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7035), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6985), 14, + anon_sym_STAR_STAR, + [139258] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1290), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1288), 36, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -204264,93 +192972,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [148532] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4311), 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(4313), 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, - [148577] = 17, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6983), 1, - anon_sym_EQ, - ACTIONS(7055), 1, anon_sym_PIPE_PIPE, - ACTIONS(7057), 1, + anon_sym_DASHo, anon_sym_AMP_AMP, - ACTIONS(7059), 1, + anon_sym_DASHa, 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(6985), 14, + anon_sym_STAR_STAR, + [139303] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1294), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1292), 36, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -204362,63 +193014,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [148650] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5886), 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(5888), 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_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - 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, - [148695] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7142), 1, - sym__concat, - ACTIONS(6675), 14, - anon_sym_EQ, + 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, @@ -204427,9 +193035,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6673), 22, + [139348] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6254), 1, + anon_sym_STAR_STAR, + ACTIONS(6260), 1, + sym_test_operator, + ACTIONS(5760), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6248), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6250), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6252), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5758), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5762), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -204447,32 +193080,116 @@ 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, - [148742] = 4, + [139405] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(7144), 1, - sym__concat, - ACTIONS(6705), 14, + ACTIONS(6110), 1, + anon_sym_STAR_STAR, + ACTIONS(6160), 1, + anon_sym_EQ, + ACTIONS(6164), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6166), 1, + anon_sym_AMP_AMP, + ACTIONS(6168), 1, + anon_sym_PIPE, + ACTIONS(6170), 1, + anon_sym_CARET, + ACTIONS(6172), 1, + anon_sym_AMP, + ACTIONS(6188), 1, + anon_sym_EQ_TILDE, + ACTIONS(6190), 1, + anon_sym_QMARK, + ACTIONS(6192), 1, + sym_test_operator, + ACTIONS(6294), 1, + anon_sym_RBRACK, + ACTIONS(6108), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6174), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6176), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6178), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6180), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6182), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6184), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6162), 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, + [139484] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6228), 1, anon_sym_EQ, + ACTIONS(6232), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, anon_sym_PIPE, + ACTIONS(6238), 1, anon_sym_CARET, + ACTIONS(6240), 1, anon_sym_AMP, + ACTIONS(6254), 1, + anon_sym_STAR_STAR, + ACTIONS(6256), 1, + anon_sym_EQ_TILDE, + ACTIONS(6258), 1, + anon_sym_QMARK, + ACTIONS(6260), 1, + sym_test_operator, + ACTIONS(6294), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(5760), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6242), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6244), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6246), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6248), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6250), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6252), 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(6230), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -204484,21 +193201,12 @@ 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, - [148789] = 3, + [139563] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 1, + ACTIONS(1298), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 36, + ACTIONS(1296), 36, anon_sym_SEMI, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -204535,28 +193243,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - [148834] = 3, + [139608] = 8, 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, + ACTIONS(6140), 1, + anon_sym_STAR_STAR, + ACTIONS(5760), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6134), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6136), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6138), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6613), 23, + ACTIONS(5758), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5762), 21, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -204574,19 +193287,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [148879] = 3, - ACTIONS(3), 1, + anon_sym_COLON, + [139663] = 8, + ACTIONS(71), 1, sym_comment, - ACTIONS(1266), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 36, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(6254), 1, + anon_sym_STAR_STAR, + ACTIONS(5760), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6248), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6250), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6252), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5764), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5766), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -204599,36 +193329,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [139718] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6228), 1, + anon_sym_EQ, + ACTIONS(6232), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, anon_sym_PIPE, + ACTIONS(6238), 1, anon_sym_CARET, + ACTIONS(6240), 1, anon_sym_AMP, + ACTIONS(6254), 1, + anon_sym_STAR_STAR, + ACTIONS(6256), 1, + anon_sym_EQ_TILDE, + ACTIONS(6258), 1, + anon_sym_QMARK, + ACTIONS(6260), 1, + sym_test_operator, + ACTIONS(6290), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(5760), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6242), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6244), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6246), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(6248), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6250), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6252), 3, anon_sym_STAR, 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, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6230), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -204640,73 +193396,78 @@ 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, + [139797] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6296), 1, + sym__special_character, + STATE(2722), 1, + aux_sym__literal_repeat1, + ACTIONS(1316), 12, 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, + sym_word, + ACTIONS(1318), 23, + sym_file_descriptor, + 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, - [148969] = 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_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, + [139846] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(7055), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7057), 1, - anon_sym_AMP_AMP, - ACTIONS(7059), 1, - anon_sym_PIPE, - ACTIONS(7061), 1, - anon_sym_CARET, - ACTIONS(7063), 1, - anon_sym_AMP, - ACTIONS(7077), 1, + ACTIONS(6110), 1, anon_sym_STAR_STAR, - ACTIONS(7079), 1, - anon_sym_EQ_TILDE, - ACTIONS(7081), 1, - anon_sym_QMARK, - ACTIONS(7083), 1, + ACTIONS(6192), 1, sym_test_operator, - ACTIONS(7146), 1, - anon_sym_EQ, - ACTIONS(6695), 2, + ACTIONS(6108), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7065), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7067), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7069), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7071), 2, + ACTIONS(6180), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7073), 2, + ACTIONS(6182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7075), 3, + ACTIONS(6184), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 12, + ACTIONS(5758), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5762), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -204718,47 +193479,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_RBRACK_RBRACK, - [149046] = 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [139903] = 17, ACTIONS(71), 1, sym_comment, - ACTIONS(6611), 1, + ACTIONS(6026), 1, anon_sym_EQ, - ACTIONS(7057), 1, + ACTIONS(6110), 1, + anon_sym_STAR_STAR, + ACTIONS(6164), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6166), 1, anon_sym_AMP_AMP, - ACTIONS(7059), 1, + ACTIONS(6168), 1, anon_sym_PIPE, - ACTIONS(7061), 1, + ACTIONS(6170), 1, anon_sym_CARET, - ACTIONS(7063), 1, + ACTIONS(6172), 1, anon_sym_AMP, - ACTIONS(7077), 1, - anon_sym_STAR_STAR, - ACTIONS(7083), 1, + ACTIONS(6192), 1, sym_test_operator, - ACTIONS(6695), 2, + ACTIONS(6108), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7065), 2, + ACTIONS(6174), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7067), 2, + ACTIONS(6176), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7069), 2, + ACTIONS(6178), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7071), 2, + ACTIONS(6180), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7073), 2, + ACTIONS(6182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7075), 3, + ACTIONS(6184), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 15, + ACTIONS(6028), 14, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -204770,58 +193541,53 @@ 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_RBRACK, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [149117] = 20, + [139976] = 18, ACTIONS(71), 1, sym_comment, - ACTIONS(7051), 1, + ACTIONS(5764), 1, anon_sym_EQ, - ACTIONS(7055), 1, + ACTIONS(6232), 1, anon_sym_PIPE_PIPE, - ACTIONS(7057), 1, + ACTIONS(6234), 1, anon_sym_AMP_AMP, - ACTIONS(7059), 1, + ACTIONS(6236), 1, anon_sym_PIPE, - ACTIONS(7061), 1, + ACTIONS(6238), 1, anon_sym_CARET, - ACTIONS(7063), 1, + ACTIONS(6240), 1, anon_sym_AMP, - ACTIONS(7077), 1, + ACTIONS(6254), 1, anon_sym_STAR_STAR, - ACTIONS(7079), 1, - anon_sym_EQ_TILDE, - ACTIONS(7081), 1, + ACTIONS(6258), 1, anon_sym_QMARK, - ACTIONS(7083), 1, + ACTIONS(6260), 1, sym_test_operator, - ACTIONS(7129), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(6695), 2, + ACTIONS(5760), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7065), 2, + ACTIONS(6242), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7067), 2, + ACTIONS(6244), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7069), 2, + ACTIONS(6246), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7071), 2, + ACTIONS(6248), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7073), 2, + ACTIONS(6250), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7075), 3, + ACTIONS(6252), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7053), 11, + ACTIONS(5766), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -204833,31 +193599,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [149196] = 7, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + [140051] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(7077), 1, + ACTIONS(6254), 1, anon_sym_STAR_STAR, - ACTIONS(6695), 2, + ACTIONS(5760), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7073), 2, + ACTIONS(6248), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6250), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7075), 3, + ACTIONS(6252), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6611), 8, + ACTIONS(5758), 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(6613), 21, + ACTIONS(5762), 21, sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -204879,54 +193648,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [149249] = 20, + [140106] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7148), 1, - anon_sym_EQ, - ACTIONS(7152), 1, + ACTIONS(6232), 1, anon_sym_PIPE_PIPE, - ACTIONS(7154), 1, + ACTIONS(6234), 1, anon_sym_AMP_AMP, - ACTIONS(7156), 1, + ACTIONS(6236), 1, anon_sym_PIPE, - ACTIONS(7158), 1, + ACTIONS(6238), 1, anon_sym_CARET, - ACTIONS(7160), 1, + ACTIONS(6240), 1, anon_sym_AMP, - ACTIONS(7174), 1, + ACTIONS(6254), 1, anon_sym_STAR_STAR, - ACTIONS(7176), 1, + ACTIONS(6256), 1, anon_sym_EQ_TILDE, - ACTIONS(7178), 1, + ACTIONS(6258), 1, anon_sym_QMARK, - ACTIONS(7180), 1, - anon_sym_COLON, - ACTIONS(7182), 1, + ACTIONS(6260), 1, sym_test_operator, - ACTIONS(6695), 2, + ACTIONS(6299), 1, + anon_sym_EQ, + ACTIONS(5760), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7162), 2, + ACTIONS(6242), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7164), 2, + ACTIONS(6244), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7166), 2, + ACTIONS(6246), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7168), 2, + ACTIONS(6248), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7170), 2, + ACTIONS(6250), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7172), 3, + ACTIONS(6252), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7150), 11, + ACTIONS(5766), 12, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -204938,12 +193705,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [149328] = 3, + anon_sym_RBRACK_RBRACK, + [140183] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 1, + ACTIONS(1302), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 36, + ACTIONS(1300), 36, anon_sym_SEMI, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -204980,53 +193748,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - [149373] = 19, - ACTIONS(71), 1, + [140228] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(1306), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1304), 36, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + anon_sym_DASHo, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + anon_sym_DASHa, anon_sym_PIPE, - ACTIONS(6778), 1, anon_sym_CARET, - ACTIONS(6780), 1, anon_sym_AMP, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, - anon_sym_EQ_TILDE, - ACTIONS(6832), 1, - anon_sym_QMARK, - ACTIONS(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(7184), 2, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - ACTIONS(6752), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + anon_sym_STAR_STAR, + [140273] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1302), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1300), 36, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -205038,212 +193811,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [149450] = 3, - 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, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1262), 24, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_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, - [149495] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1276), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1278), 24, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [149540] = 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_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1290), 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_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_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, - [149585] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1268), 13, + anon_sym_DASHa, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1270), 24, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [149630] = 15, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + [140318] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(6611), 1, + ACTIONS(5764), 1, anon_sym_EQ, - ACTIONS(7023), 1, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, anon_sym_PIPE, - ACTIONS(7025), 1, + ACTIONS(6238), 1, anon_sym_CARET, - ACTIONS(7027), 1, + ACTIONS(6240), 1, anon_sym_AMP, - ACTIONS(7041), 1, + ACTIONS(6254), 1, anon_sym_STAR_STAR, - ACTIONS(7049), 1, + ACTIONS(6260), 1, sym_test_operator, - ACTIONS(7015), 2, + ACTIONS(5760), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7029), 2, + ACTIONS(6242), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7031), 2, + ACTIONS(6244), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7033), 2, + ACTIONS(6246), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7035), 2, + ACTIONS(6248), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7037), 2, + ACTIONS(6250), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7039), 3, + ACTIONS(6252), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 16, + ACTIONS(5766), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -205256,48 +193884,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [149699] = 15, + [140389] = 15, ACTIONS(71), 1, sym_comment, - ACTIONS(6611), 1, + ACTIONS(5764), 1, anon_sym_EQ, - ACTIONS(7059), 1, + ACTIONS(6236), 1, anon_sym_PIPE, - ACTIONS(7061), 1, + ACTIONS(6238), 1, anon_sym_CARET, - ACTIONS(7063), 1, + ACTIONS(6240), 1, anon_sym_AMP, - ACTIONS(7077), 1, + ACTIONS(6254), 1, anon_sym_STAR_STAR, - ACTIONS(7083), 1, + ACTIONS(6260), 1, sym_test_operator, - ACTIONS(6695), 2, + ACTIONS(5760), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7065), 2, + ACTIONS(6242), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7067), 2, + ACTIONS(6244), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7069), 2, + ACTIONS(6246), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7071), 2, + ACTIONS(6248), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7073), 2, + ACTIONS(6250), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7075), 3, + ACTIONS(6252), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 16, + ACTIONS(5766), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -205314,104 +193941,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [149768] = 8, - ACTIONS(3), 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, - 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, - [149823] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1191), 1, - sym_file_descriptor, - ACTIONS(3127), 1, - anon_sym_DQUOTE, - ACTIONS(7190), 1, - sym_variable_name, - STATE(4397), 1, - sym_string, - ACTIONS(7188), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7186), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 23, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [149878] = 3, + [140458] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1223), 13, + ACTIONS(6301), 1, + sym__special_character, + STATE(2722), 1, + aux_sym__literal_repeat1, + ACTIONS(4895), 12, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -205423,17 +193960,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1225), 24, + ACTIONS(4897), 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, @@ -205441,7 +193977,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, @@ -205450,85 +193985,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [149923] = 3, - ACTIONS(3), 1, + [140507] = 14, + ACTIONS(71), 1, sym_comment, - ACTIONS(1258), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 36, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6240), 1, + anon_sym_AMP, + ACTIONS(6254), 1, + anon_sym_STAR_STAR, + ACTIONS(6260), 1, + sym_test_operator, + ACTIONS(5760), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, + ACTIONS(5764), 2, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(6242), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6244), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6246), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(6248), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6250), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6252), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - [149968] = 14, + ACTIONS(5766), 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, + [140574] = 13, ACTIONS(71), 1, sym_comment, - ACTIONS(7025), 1, - anon_sym_CARET, - ACTIONS(7027), 1, + ACTIONS(6240), 1, anon_sym_AMP, - ACTIONS(7041), 1, + ACTIONS(6254), 1, anon_sym_STAR_STAR, - ACTIONS(7049), 1, + ACTIONS(6260), 1, sym_test_operator, - ACTIONS(6611), 2, - anon_sym_EQ, - anon_sym_PIPE, - ACTIONS(7015), 2, + ACTIONS(5760), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7029), 2, + ACTIONS(6242), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7031), 2, + ACTIONS(6244), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7033), 2, + ACTIONS(6246), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7035), 2, + ACTIONS(6248), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7037), 2, + ACTIONS(6250), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7039), 3, + ACTIONS(5764), 3, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(6252), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 16, + ACTIONS(5766), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -205542,95 +194087,44 @@ 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, - [150035] = 3, + [140639] = 12, ACTIONS(71), 1, sym_comment, - ACTIONS(5268), 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(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_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, - [150080] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7099), 1, + ACTIONS(6254), 1, anon_sym_STAR_STAR, - ACTIONS(7200), 1, - 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, + ACTIONS(6260), 1, + sym_test_operator, + ACTIONS(5760), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7089), 2, + ACTIONS(6242), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7093), 2, + ACTIONS(6244), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6246), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6248), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7095), 2, + ACTIONS(6250), 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, + ACTIONS(6252), 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, + ACTIONS(5764), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(5766), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -205642,31 +194136,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [150151] = 6, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [140702] = 11, ACTIONS(71), 1, sym_comment, - ACTIONS(7077), 1, + ACTIONS(6254), 1, anon_sym_STAR_STAR, - ACTIONS(6695), 2, + ACTIONS(6260), 1, + sym_test_operator, + ACTIONS(5760), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7075), 3, + ACTIONS(6244), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6246), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6248), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6250), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6252), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6611), 10, + ACTIONS(5764), 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(5766), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -205682,59 +194188,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_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [150202] = 20, + [140763] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(7148), 1, - anon_sym_EQ, - ACTIONS(7152), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7154), 1, - anon_sym_AMP_AMP, - ACTIONS(7156), 1, - anon_sym_PIPE, - ACTIONS(7158), 1, - anon_sym_CARET, - ACTIONS(7160), 1, - anon_sym_AMP, - ACTIONS(7174), 1, + ACTIONS(6254), 1, anon_sym_STAR_STAR, - ACTIONS(7176), 1, - anon_sym_EQ_TILDE, - ACTIONS(7178), 1, - anon_sym_QMARK, - ACTIONS(7182), 1, + ACTIONS(6260), 1, sym_test_operator, - ACTIONS(7208), 1, - anon_sym_COLON, - ACTIONS(6695), 2, + ACTIONS(5760), 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, + ACTIONS(6248), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7170), 2, + ACTIONS(6250), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7172), 3, + ACTIONS(6252), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7150), 11, + ACTIONS(5764), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5766), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -205746,16 +194230,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [150281] = 3, - ACTIONS(3), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_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, + [140820] = 7, + ACTIONS(71), 1, sym_comment, - ACTIONS(7127), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7125), 36, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(6254), 1, + anon_sym_STAR_STAR, + ACTIONS(5760), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6250), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6252), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5764), 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(5766), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -205768,18 +194277,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [140873] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4965), 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(4967), 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, + [140918] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6303), 1, + sym__concat, + ACTIONS(5747), 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, @@ -205788,14 +194347,7 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(5745), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -205810,18 +194362,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [140965] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6305), 1, + sym__concat, + ACTIONS(5821), 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, @@ -205830,14 +194390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - [150371] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7216), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7214), 36, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(5819), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -205852,32 +194405,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_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, - [150416] = 4, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [141012] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(7218), 1, - anon_sym_LBRACK, - ACTIONS(6647), 14, + ACTIONS(6307), 1, + sym__concat, + ACTIONS(5772), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -205892,7 +194433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6645), 22, + ACTIONS(5770), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -205915,32 +194456,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [150463] = 8, + [141059] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(7011), 1, + ACTIONS(6254), 1, anon_sym_STAR_STAR, - ACTIONS(6695), 2, + ACTIONS(5760), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7007), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7220), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7009), 3, + ACTIONS(6252), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6611), 6, + ACTIONS(5764), 10, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6613), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5766), 21, sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -205959,53 +194498,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [150518] = 18, + [141110] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(6611), 1, - anon_sym_EQ, - ACTIONS(7011), 1, + ACTIONS(6200), 1, anon_sym_STAR_STAR, - ACTIONS(7222), 1, + ACTIONS(6202), 1, anon_sym_PIPE_PIPE, - ACTIONS(7224), 1, + ACTIONS(6204), 1, anon_sym_AMP_AMP, - ACTIONS(7226), 1, + ACTIONS(6206), 1, anon_sym_PIPE, - ACTIONS(7228), 1, + ACTIONS(6208), 1, anon_sym_CARET, - ACTIONS(7230), 1, + ACTIONS(6210), 1, anon_sym_AMP, - ACTIONS(7238), 1, + ACTIONS(6218), 1, anon_sym_QMARK, - ACTIONS(7240), 1, + ACTIONS(6220), 1, sym_test_operator, - ACTIONS(6695), 2, + ACTIONS(6222), 1, + anon_sym_EQ, + ACTIONS(6224), 1, + anon_sym_EQ_TILDE, + ACTIONS(6311), 1, + anon_sym_RPAREN, + ACTIONS(5760), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7007), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7220), 2, + ACTIONS(6194), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7232), 2, + ACTIONS(6196), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6212), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7234), 2, + ACTIONS(6214), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7236), 2, + ACTIONS(6216), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7009), 3, + ACTIONS(6198), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 13, + ACTIONS(6309), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -206017,54 +194560,54 @@ 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, - [150593] = 19, + [141189] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(7011), 1, - anon_sym_STAR_STAR, - ACTIONS(7222), 1, + ACTIONS(5835), 1, + anon_sym_EQ, + ACTIONS(5841), 1, anon_sym_PIPE_PIPE, - ACTIONS(7224), 1, + ACTIONS(5843), 1, anon_sym_AMP_AMP, - ACTIONS(7226), 1, + ACTIONS(5845), 1, anon_sym_PIPE, - ACTIONS(7228), 1, + ACTIONS(5847), 1, anon_sym_CARET, - ACTIONS(7230), 1, + ACTIONS(5849), 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(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5865), 1, anon_sym_EQ_TILDE, - ACTIONS(6695), 2, + ACTIONS(5867), 1, + anon_sym_QMARK, + ACTIONS(6112), 1, + anon_sym_COMMA, + ACTIONS(6313), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5837), 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(5851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7234), 2, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7236), 2, + ACTIONS(5855), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7009), 3, + ACTIONS(5857), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5859), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 12, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -206076,100 +194619,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_RPAREN, - [150670] = 16, + [141268] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6611), 1, - anon_sym_EQ, - ACTIONS(7011), 1, + ACTIONS(6254), 1, anon_sym_STAR_STAR, - ACTIONS(7224), 1, - anon_sym_AMP_AMP, - ACTIONS(7226), 1, - anon_sym_PIPE, - ACTIONS(7228), 1, - anon_sym_CARET, - ACTIONS(7230), 1, - anon_sym_AMP, - ACTIONS(7240), 1, - sym_test_operator, - ACTIONS(6695), 2, + ACTIONS(5760), 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, + ACTIONS(5764), 13, 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_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7234), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7236), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7009), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 16, + ACTIONS(5766), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -206183,98 +194656,36 @@ 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, - [150810] = 14, - 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, - anon_sym_EQ, - anon_sym_PIPE, - 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), 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_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [150877] = 13, + [141317] = 4, 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7232), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7234), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7236), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6611), 3, + ACTIONS(6315), 1, + anon_sym_LBRACK, + ACTIONS(5798), 14, 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, + ACTIONS(5796), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -206288,44 +194699,37 @@ 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, - [150942] = 12, + [141364] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(7011), 1, + ACTIONS(6254), 1, anon_sym_STAR_STAR, - ACTIONS(7240), 1, - sym_test_operator, - ACTIONS(6695), 2, + ACTIONS(5760), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7007), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7220), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7232), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7234), 2, + ACTIONS(5764), 13, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, 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(6611), 4, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(6613), 16, + ACTIONS(5766), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -206339,41 +194743,36 @@ 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, - [151005] = 11, + [141413] = 4, 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(7234), 2, + ACTIONS(6317), 1, + sym__concat, + ACTIONS(5778), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, 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(6611), 4, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(6613), 18, + anon_sym_STAR_STAR, + ACTIONS(5776), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -206389,37 +194788,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [151066] = 9, + [141460] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(7011), 1, + ACTIONS(795), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5835), 1, + anon_sym_EQ, + ACTIONS(5841), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5843), 1, + anon_sym_AMP_AMP, + ACTIONS(5845), 1, + anon_sym_PIPE, + ACTIONS(5847), 1, + anon_sym_CARET, + ACTIONS(5849), 1, + anon_sym_AMP, + ACTIONS(5863), 1, anon_sym_STAR_STAR, - ACTIONS(7240), 1, - sym_test_operator, - ACTIONS(6695), 2, + ACTIONS(5865), 1, + anon_sym_EQ_TILDE, + ACTIONS(5867), 1, + anon_sym_QMARK, + ACTIONS(6112), 1, + anon_sym_COMMA, + ACTIONS(5837), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7007), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7220), 2, + ACTIONS(5851), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5853), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5855), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5857), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7009), 3, + ACTIONS(5859), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5861), 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(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -206431,46 +194852,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [151123] = 11, + [141539] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7099), 1, + ACTIONS(6156), 1, anon_sym_STAR_STAR, - ACTIONS(7101), 1, + ACTIONS(6158), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(7204), 1, + ACTIONS(6270), 1, anon_sym_AMP, - ACTIONS(7087), 2, + ACTIONS(6154), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7089), 2, + ACTIONS(6272), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7093), 2, + ACTIONS(6276), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7095), 2, + ACTIONS(6278), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7097), 3, + ACTIONS(6280), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7091), 4, + ACTIONS(6274), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7085), 19, + ACTIONS(6152), 19, anon_sym_SEMI, anon_sym_COMMA, anon_sym_PLUS_EQ, @@ -206490,32 +194902,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASHa, anon_sym_PIPE, anon_sym_CARET, - [151184] = 8, + [141600] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(7041), 1, + ACTIONS(6140), 1, anon_sym_STAR_STAR, - ACTIONS(7015), 2, + ACTIONS(5760), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7035), 2, + ACTIONS(6134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7037), 2, + ACTIONS(6136), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7039), 3, + ACTIONS(6138), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6693), 6, + ACTIONS(5758), 6, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6697), 21, + ACTIONS(5762), 21, sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -206534,76 +194946,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [151239] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7246), 1, - sym__special_character, - STATE(2921), 1, - aux_sym__literal_repeat1, - ACTIONS(1316), 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(1318), 22, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [151288] = 5, + anon_sym_COLON, + [141655] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(7011), 1, + ACTIONS(6254), 1, anon_sym_STAR_STAR, - ACTIONS(6695), 2, + ACTIONS(5760), 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(6248), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6250), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6252), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 21, + ACTIONS(5758), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5762), 21, sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -206622,33 +194993,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [151337] = 5, + [141710] = 20, 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(5835), 1, anon_sym_EQ, + ACTIONS(5841), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5843), 1, + anon_sym_AMP_AMP, + ACTIONS(5845), 1, anon_sym_PIPE, + ACTIONS(5847), 1, anon_sym_CARET, + ACTIONS(5849), 1, anon_sym_AMP, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5865), 1, + anon_sym_EQ_TILDE, + ACTIONS(5867), 1, + anon_sym_QMARK, + ACTIONS(6112), 1, + anon_sym_COMMA, + ACTIONS(6319), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5837), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5851), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(5855), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5857), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(5859), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 21, - sym_test_operator, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -206660,25 +195055,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [141789] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5835), 1, + anon_sym_EQ, + ACTIONS(5841), 1, anon_sym_PIPE_PIPE, + ACTIONS(5843), 1, anon_sym_AMP_AMP, + ACTIONS(5845), 1, + anon_sym_PIPE, + ACTIONS(5847), 1, + anon_sym_CARET, + ACTIONS(5849), 1, + anon_sym_AMP, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5865), 1, + anon_sym_EQ_TILDE, + ACTIONS(5867), 1, + anon_sym_QMARK, + ACTIONS(6112), 1, + anon_sym_COMMA, + ACTIONS(6321), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5837), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(5853), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5855), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [151386] = 3, + ACTIONS(5857), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5859), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5861), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5839), 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, + [141868] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 1, + ACTIONS(6156), 1, + anon_sym_STAR_STAR, + ACTIONS(6158), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 36, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(6266), 1, + anon_sym_PIPE, + ACTIONS(6268), 1, + anon_sym_CARET, + ACTIONS(6270), 1, + anon_sym_AMP, + ACTIONS(6154), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6264), 2, + anon_sym_AMP_AMP, + anon_sym_DASHa, + ACTIONS(6272), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6276), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6278), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6280), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6274), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6152), 15, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -206692,35 +195167,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, + [141935] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6156), 1, + anon_sym_STAR_STAR, + ACTIONS(6158), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6266), 1, anon_sym_PIPE, + ACTIONS(6268), 1, anon_sym_CARET, + ACTIONS(6270), 1, anon_sym_AMP, + ACTIONS(6154), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6272), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(6276), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6278), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6280), 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, + ACTIONS(6274), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6152), 17, 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, @@ -206736,29 +195219,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASHo, anon_sym_AMP_AMP, anon_sym_DASHa, + [142000] = 17, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6026), 1, + anon_sym_EQ, + ACTIONS(6118), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6120), 1, + anon_sym_AMP_AMP, + ACTIONS(6122), 1, anon_sym_PIPE, + ACTIONS(6124), 1, anon_sym_CARET, + ACTIONS(6126), 1, anon_sym_AMP, + ACTIONS(6140), 1, + anon_sym_STAR_STAR, + ACTIONS(6148), 1, + sym_test_operator, + ACTIONS(5760), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6128), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6130), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6132), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(6134), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6136), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6138), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - [151476] = 3, + ACTIONS(6028), 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_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [142073] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 1, + ACTIONS(6325), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 36, + ACTIONS(6323), 36, anon_sym_SEMI, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -206795,71 +195317,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - [151521] = 3, + [142118] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(5705), 12, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(5707), 25, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, + ACTIONS(6200), 1, + anon_sym_STAR_STAR, + ACTIONS(6202), 1, anon_sym_PIPE_PIPE, + ACTIONS(6204), 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, - [151566] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7249), 1, - sym__concat, - ACTIONS(6653), 14, - anon_sym_EQ, + ACTIONS(6206), 1, anon_sym_PIPE, + ACTIONS(6208), 1, anon_sym_CARET, + ACTIONS(6210), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(6218), 1, + anon_sym_QMARK, + ACTIONS(6220), 1, + sym_test_operator, + ACTIONS(6222), 1, + anon_sym_EQ, + ACTIONS(6224), 1, + anon_sym_EQ_TILDE, + ACTIONS(6327), 1, + anon_sym_RPAREN, + ACTIONS(5760), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6194), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6196), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6212), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6214), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6216), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6198), 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(6309), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -206871,96 +195376,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [151613] = 7, + [142197] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5862), 2, + ACTIONS(4969), 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, + aux_sym__simple_variable_name_token1, 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(4971), 24, sym_file_descriptor, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5872), 14, sym_variable_name, sym_test_operator, sym__brace_start, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [151666] = 7, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5862), 2, - anon_sym_PIPE, - anon_sym_LT_LT, - ACTIONS(5867), 4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5860), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(5864), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(5869), 7, - sym_file_descriptor, anon_sym_GT_GT, + anon_sym_PIPE_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, - ACTIONS(5872), 14, - sym_variable_name, - sym_test_operator, - sym__brace_start, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -206972,15 +195418,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [151719] = 4, + [142242] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(7253), 1, + ACTIONS(6156), 1, + anon_sym_STAR_STAR, + ACTIONS(6158), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(7087), 2, + ACTIONS(6268), 1, + anon_sym_CARET, + ACTIONS(6270), 1, + anon_sym_AMP, + ACTIONS(6154), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7251), 34, + ACTIONS(6272), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6276), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6278), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6280), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6274), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6152), 18, anon_sym_SEMI, anon_sym_COMMA, anon_sym_PLUS_EQ, @@ -206999,28 +195469,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_DASHa, anon_sym_PIPE, + [142305] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6114), 1, + anon_sym_EQ, + ACTIONS(6118), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6120), 1, + anon_sym_AMP_AMP, + ACTIONS(6122), 1, + anon_sym_PIPE, + ACTIONS(6124), 1, anon_sym_CARET, + ACTIONS(6126), 1, anon_sym_AMP, + ACTIONS(6140), 1, + anon_sym_STAR_STAR, + ACTIONS(6142), 1, + anon_sym_EQ_TILDE, + ACTIONS(6144), 1, + anon_sym_QMARK, + ACTIONS(6148), 1, + sym_test_operator, + ACTIONS(6329), 1, + anon_sym_COLON, + ACTIONS(5760), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6128), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6130), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6132), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(6134), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6136), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6138), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - [151766] = 3, + ACTIONS(6116), 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, + [142384] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7257), 1, + ACTIONS(6333), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(7255), 36, + ACTIONS(6331), 36, anon_sym_SEMI, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -207057,29 +195570,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - [151811] = 4, + [142429] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(7259), 1, - sym__concat, - ACTIONS(6641), 14, + ACTIONS(887), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5835), 1, anon_sym_EQ, + ACTIONS(5841), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5843), 1, + anon_sym_AMP_AMP, + ACTIONS(5845), 1, anon_sym_PIPE, + ACTIONS(5847), 1, anon_sym_CARET, + ACTIONS(5849), 1, anon_sym_AMP, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5865), 1, + anon_sym_EQ_TILDE, + ACTIONS(5867), 1, + anon_sym_QMARK, + ACTIONS(6112), 1, + anon_sym_COMMA, + ACTIONS(5837), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5851), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(5855), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5857), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(5859), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(5839), 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, + [142508] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6110), 1, anon_sym_STAR_STAR, - ACTIONS(6639), 22, + ACTIONS(6108), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6180), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6182), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6184), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5758), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5762), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -207100,16 +195676,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [151858] = 3, - ACTIONS(3), 1, + [142563] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1298), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 36, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(6108), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(5758), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + 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), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -207122,49 +195711,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [142610] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6110), 1, + anon_sym_STAR_STAR, + ACTIONS(6108), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6180), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6182), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6184), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - [151903] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7261), 1, + ACTIONS(5758), 6, anon_sym_EQ, - ACTIONS(6732), 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(6736), 23, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5762), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -207177,117 +195758,121 @@ 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, - [151950] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1197), 1, - sym_file_descriptor, - ACTIONS(7265), 1, - anon_sym_DQUOTE, - ACTIONS(7269), 1, - sym_variable_name, - STATE(4167), 1, - sym_string, - ACTIONS(7267), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7263), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 23, - anon_sym_SEMI, + [142665] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6110), 1, + anon_sym_STAR_STAR, + ACTIONS(6160), 1, + anon_sym_EQ, + ACTIONS(6164), 1, anon_sym_PIPE_PIPE, + ACTIONS(6166), 1, anon_sym_AMP_AMP, + ACTIONS(6168), 1, anon_sym_PIPE, + ACTIONS(6170), 1, + anon_sym_CARET, + ACTIONS(6172), 1, anon_sym_AMP, + ACTIONS(6188), 1, + anon_sym_EQ_TILDE, + ACTIONS(6190), 1, + anon_sym_QMARK, + ACTIONS(6192), 1, + sym_test_operator, + ACTIONS(6335), 1, + anon_sym_RBRACK, + ACTIONS(6108), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6174), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6176), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6178), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6180), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, + ACTIONS(6182), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6184), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6162), 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, + [142744] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4969), 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, - [152005] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1191), 1, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(4971), 25, 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, + 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, + 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, + [142789] = 4, 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(6337), 1, + sym__concat, + ACTIONS(5772), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -207301,8 +195886,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 21, - sym_test_operator, + anon_sym_STAR_STAR, + ACTIONS(5770), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -207320,33 +195907,26 @@ 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, - [152109] = 5, - ACTIONS(71), 1, + [142836] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(7077), 1, + ACTIONS(6156), 1, anon_sym_STAR_STAR, - ACTIONS(6695), 2, + ACTIONS(6158), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6154), 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, + ACTIONS(6280), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 21, - sym_test_operator, + ACTIONS(6152), 30, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -207359,29 +195939,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_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_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [152158] = 8, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + [142887] = 3, + 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, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1310), 24, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_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, + [142932] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1197), 1, sym_file_descriptor, - ACTIONS(3348), 1, + ACTIONS(3053), 1, anon_sym_DQUOTE, - ACTIONS(7275), 1, + ACTIONS(6343), 1, sym_variable_name, - STATE(4355), 1, + STATE(4150), 1, sym_string, - ACTIONS(7273), 2, + ACTIONS(6341), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7271), 8, + ACTIONS(6339), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -207400,6 +196030,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, @@ -207413,22 +196044,21 @@ 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, - [152213] = 8, + [142987] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1191), 1, sym_file_descriptor, - ACTIONS(3348), 1, + ACTIONS(3053), 1, anon_sym_DQUOTE, - ACTIONS(7275), 1, + ACTIONS(6343), 1, sym_variable_name, - STATE(4355), 1, + STATE(4150), 1, sym_string, - ACTIONS(7273), 2, + ACTIONS(6341), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7271), 8, + ACTIONS(6339), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -207447,6 +196077,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, @@ -207460,327 +196091,98 @@ 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, - [152268] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(807), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, - anon_sym_AMP_AMP, - ACTIONS(6776), 1, - anon_sym_PIPE, - ACTIONS(6778), 1, - anon_sym_CARET, - ACTIONS(6780), 1, - anon_sym_AMP, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, - anon_sym_EQ_TILDE, - ACTIONS(6832), 1, - anon_sym_QMARK, - ACTIONS(7105), 1, - anon_sym_COMMA, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6748), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6786), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6752), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6828), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [152347] = 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(7277), 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, - [152426] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7051), 1, - anon_sym_EQ, - ACTIONS(7055), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7057), 1, - anon_sym_AMP_AMP, - ACTIONS(7059), 1, - anon_sym_PIPE, - ACTIONS(7061), 1, - anon_sym_CARET, - ACTIONS(7063), 1, - anon_sym_AMP, - ACTIONS(7077), 1, - anon_sym_STAR_STAR, - ACTIONS(7079), 1, - anon_sym_EQ_TILDE, - ACTIONS(7081), 1, - anon_sym_QMARK, - ACTIONS(7083), 1, - sym_test_operator, - ACTIONS(7277), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(6695), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7065), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7067), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7069), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7071), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7075), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7053), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [152505] = 5, + [143042] = 5, 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, + ACTIONS(6301), 1, + sym__special_character, + STATE(2722), 1, + aux_sym__literal_repeat1, + ACTIONS(4481), 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(5858), 10, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - ACTIONS(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, - 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(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_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(4483), 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_EQ_TILDE, - anon_sym_QMARK, - [152617] = 20, + anon_sym_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, + [143091] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(6228), 1, + anon_sym_EQ, + ACTIONS(6232), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(6234), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(6236), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(6238), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(6240), 1, anon_sym_AMP, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(6254), 1, + anon_sym_STAR_STAR, + ACTIONS(6256), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(6258), 1, anon_sym_QMARK, - ACTIONS(7105), 1, - anon_sym_COMMA, - ACTIONS(7279), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6746), 2, + ACTIONS(6260), 1, + sym_test_operator, + ACTIONS(6335), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(5760), 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(6242), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(6244), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(6246), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6248), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6250), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6252), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(6230), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -207792,54 +196194,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [152696] = 20, + [143170] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(7011), 1, + ACTIONS(6200), 1, anon_sym_STAR_STAR, - ACTIONS(7222), 1, + ACTIONS(6202), 1, anon_sym_PIPE_PIPE, - ACTIONS(7224), 1, + ACTIONS(6204), 1, anon_sym_AMP_AMP, - ACTIONS(7226), 1, + ACTIONS(6206), 1, anon_sym_PIPE, - ACTIONS(7228), 1, + ACTIONS(6208), 1, anon_sym_CARET, - ACTIONS(7230), 1, + ACTIONS(6210), 1, anon_sym_AMP, - ACTIONS(7238), 1, + ACTIONS(6218), 1, anon_sym_QMARK, - ACTIONS(7240), 1, + ACTIONS(6220), 1, sym_test_operator, - ACTIONS(7242), 1, + ACTIONS(6222), 1, anon_sym_EQ, - ACTIONS(7244), 1, + ACTIONS(6224), 1, anon_sym_EQ_TILDE, - ACTIONS(7283), 1, + ACTIONS(6345), 1, anon_sym_RPAREN, - ACTIONS(6695), 2, + ACTIONS(5760), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7007), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7220), 2, + ACTIONS(6194), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7232), 2, + ACTIONS(6196), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6212), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7234), 2, + ACTIONS(6214), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7236), 2, + ACTIONS(6216), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7009), 3, + ACTIONS(6198), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7281), 11, + ACTIONS(6309), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -207851,12 +196253,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [152775] = 3, + [143249] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 1, + ACTIONS(6333), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 36, + ACTIONS(6331), 36, anon_sym_SEMI, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -207893,123 +196295,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - [152820] = 3, - ACTIONS(3), 1, + [143294] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(1306), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 36, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_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(825), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5835), 1, + anon_sym_EQ, + ACTIONS(5841), 1, anon_sym_PIPE_PIPE, - anon_sym_DASHo, + ACTIONS(5843), 1, anon_sym_AMP_AMP, - anon_sym_DASHa, + ACTIONS(5845), 1, anon_sym_PIPE, + ACTIONS(5847), 1, anon_sym_CARET, + ACTIONS(5849), 1, 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, - [152865] = 9, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7077), 1, + ACTIONS(5863), 1, anon_sym_STAR_STAR, - ACTIONS(7083), 1, - sym_test_operator, - ACTIONS(6695), 2, + ACTIONS(5865), 1, + anon_sym_EQ_TILDE, + ACTIONS(5867), 1, + anon_sym_QMARK, + ACTIONS(6112), 1, + anon_sym_COMMA, + ACTIONS(5837), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7071), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7073), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7075), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6693), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6697), 20, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_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(5851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(5853), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5855), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [152922] = 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, + ACTIONS(5857), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7073), 2, + ACTIONS(5859), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7075), 3, + ACTIONS(5861), 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(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -208021,21 +196354,12 @@ 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, + [143373] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 1, + ACTIONS(6349), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 36, + ACTIONS(6347), 36, anon_sym_SEMI, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -208072,140 +196396,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - [153022] = 8, + [143418] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7077), 1, - anon_sym_STAR_STAR, - ACTIONS(6695), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7071), 2, + ACTIONS(4965), 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(4967), 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(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_AMP, + anon_sym_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, + [143463] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1229), 13, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6697), 21, + 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(1231), 24, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [153077] = 20, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_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, + [143508] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(7148), 1, + ACTIONS(6351), 1, + sym__concat, + ACTIONS(5747), 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(7285), 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, - [153156] = 9, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7011), 1, anon_sym_STAR_STAR, - ACTIONS(7240), 1, - sym_test_operator, - ACTIONS(6695), 2, + ACTIONS(5745), 22, 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), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -208226,33 +196523,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [153213] = 8, + [143555] = 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(6693), 6, + ACTIONS(5786), 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(5788), 23, sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -208270,36 +196562,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [153268] = 8, + [143600] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(7011), 1, + ACTIONS(5835), 1, + anon_sym_EQ, + ACTIONS(5841), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5843), 1, + anon_sym_AMP_AMP, + ACTIONS(5845), 1, + anon_sym_PIPE, + ACTIONS(5847), 1, + anon_sym_CARET, + ACTIONS(5849), 1, + anon_sym_AMP, + ACTIONS(5863), 1, anon_sym_STAR_STAR, - ACTIONS(6695), 2, + ACTIONS(5865), 1, + anon_sym_EQ_TILDE, + ACTIONS(5867), 1, + anon_sym_QMARK, + ACTIONS(6112), 1, + anon_sym_COMMA, + ACTIONS(6353), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5837), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7007), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7220), 2, + ACTIONS(5851), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5853), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5855), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5857), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7009), 3, + ACTIONS(5859), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5861), 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(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -208311,21 +196624,12 @@ 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, + [143679] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(7287), 1, + ACTIONS(6355), 1, sym__concat, - ACTIONS(6675), 14, + ACTIONS(5821), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -208340,7 +196644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6673), 22, + ACTIONS(5819), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -208363,13 +196667,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [153370] = 4, + [143726] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1197), 1, + sym_file_descriptor, + ACTIONS(6359), 1, + anon_sym_DQUOTE, + ACTIONS(6363), 1, + sym_variable_name, + STATE(4133), 1, + sym_string, + ACTIONS(6361), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(6357), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + 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, + [143781] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1191), 1, + sym_file_descriptor, + ACTIONS(6359), 1, + anon_sym_DQUOTE, + ACTIONS(6363), 1, + sym_variable_name, + STATE(4133), 1, + sym_string, + ACTIONS(6361), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(6357), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_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, + [143836] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(7289), 1, - sym__concat, - ACTIONS(6705), 14, + ACTIONS(6365), 1, anon_sym_EQ, + ACTIONS(6052), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -208383,7 +196780,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6703), 22, + ACTIONS(6056), 23, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -208398,40 +196796,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_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, + [143883] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6301), 1, + sym__special_character, + STATE(2722), 1, + aux_sym__literal_repeat1, + ACTIONS(4489), 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(4491), 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, + [143932] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(7174), 1, + ACTIONS(6140), 1, anon_sym_STAR_STAR, - ACTIONS(6695), 2, + ACTIONS(5760), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7168), 2, + ACTIONS(6134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7170), 2, + ACTIONS(6136), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7172), 3, + ACTIONS(6138), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6611), 6, + ACTIONS(5764), 6, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6613), 21, + ACTIONS(5766), 21, sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -208453,50 +196895,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [153472] = 18, + [143987] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6611), 1, + ACTIONS(4451), 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(4453), 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, + [144032] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(841), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5835), 1, anon_sym_EQ, - ACTIONS(7152), 1, + ACTIONS(5841), 1, anon_sym_PIPE_PIPE, - ACTIONS(7154), 1, + ACTIONS(5843), 1, anon_sym_AMP_AMP, - ACTIONS(7156), 1, + ACTIONS(5845), 1, anon_sym_PIPE, - ACTIONS(7158), 1, + ACTIONS(5847), 1, anon_sym_CARET, - ACTIONS(7160), 1, + ACTIONS(5849), 1, anon_sym_AMP, - ACTIONS(7174), 1, + ACTIONS(5863), 1, anon_sym_STAR_STAR, - ACTIONS(7178), 1, + ACTIONS(5865), 1, + anon_sym_EQ_TILDE, + ACTIONS(5867), 1, anon_sym_QMARK, - ACTIONS(7182), 1, - sym_test_operator, - ACTIONS(6695), 2, + ACTIONS(6112), 1, + anon_sym_COMMA, + ACTIONS(5837), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7162), 2, + ACTIONS(5851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7164), 2, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7166), 2, + ACTIONS(5855), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7168), 2, + ACTIONS(5857), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7170), 2, + ACTIONS(5859), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7172), 3, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 13, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -208508,106 +196996,192 @@ 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, - ACTIONS(71), 1, + [144111] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(7148), 1, - anon_sym_EQ, - ACTIONS(7152), 1, + ACTIONS(1197), 1, + sym_file_descriptor, + ACTIONS(3087), 1, + anon_sym_DQUOTE, + ACTIONS(6371), 1, + sym_variable_name, + STATE(4321), 1, + sym_string, + ACTIONS(6369), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(6367), 8, + 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, - 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(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_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_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, + [144166] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1191), 1, + sym_file_descriptor, + ACTIONS(3087), 1, + anon_sym_DQUOTE, + ACTIONS(6371), 1, + sym_variable_name, + STATE(4321), 1, + sym_string, + ACTIONS(6369), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(6367), 8, anon_sym_DASH, - ACTIONS(7172), 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_COLON, - [153624] = 16, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + [144221] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6611), 1, + ACTIONS(6373), 1, + sym__special_character, + STATE(2798), 1, + aux_sym__literal_repeat1, + ACTIONS(1316), 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(1318), 22, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [144270] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(809), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5835), 1, anon_sym_EQ, - ACTIONS(7154), 1, + ACTIONS(5841), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5843), 1, anon_sym_AMP_AMP, - ACTIONS(7156), 1, + ACTIONS(5845), 1, anon_sym_PIPE, - ACTIONS(7158), 1, + ACTIONS(5847), 1, anon_sym_CARET, - ACTIONS(7160), 1, + ACTIONS(5849), 1, anon_sym_AMP, - ACTIONS(7174), 1, + ACTIONS(5863), 1, anon_sym_STAR_STAR, - ACTIONS(7182), 1, - sym_test_operator, - ACTIONS(6695), 2, + ACTIONS(5865), 1, + anon_sym_EQ_TILDE, + ACTIONS(5867), 1, + anon_sym_QMARK, + ACTIONS(6112), 1, + anon_sym_COMMA, + ACTIONS(5837), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7162), 2, + ACTIONS(5851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7164), 2, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7166), 2, + ACTIONS(5855), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7168), 2, + ACTIONS(5857), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7170), 2, + ACTIONS(5859), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7172), 3, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 15, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -208619,48 +197193,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_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [153695] = 15, + [144349] = 18, ACTIONS(71), 1, sym_comment, - ACTIONS(6611), 1, + ACTIONS(5764), 1, anon_sym_EQ, - ACTIONS(7156), 1, + ACTIONS(6118), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6120), 1, + anon_sym_AMP_AMP, + ACTIONS(6122), 1, anon_sym_PIPE, - ACTIONS(7158), 1, + ACTIONS(6124), 1, anon_sym_CARET, - ACTIONS(7160), 1, + ACTIONS(6126), 1, anon_sym_AMP, - ACTIONS(7174), 1, + ACTIONS(6140), 1, anon_sym_STAR_STAR, - ACTIONS(7182), 1, + ACTIONS(6144), 1, + anon_sym_QMARK, + ACTIONS(6148), 1, sym_test_operator, - ACTIONS(6695), 2, + ACTIONS(5760), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7162), 2, + ACTIONS(6128), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7164), 2, + ACTIONS(6130), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7166), 2, + ACTIONS(6132), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7168), 2, + ACTIONS(6134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7170), 2, + ACTIONS(6136), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7172), 3, + ACTIONS(6138), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 16, + ACTIONS(5766), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -208672,151 +197248,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_EQ_TILDE, - anon_sym_QMARK, anon_sym_COLON, - [153764] = 14, + [144424] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7158), 1, - anon_sym_CARET, - ACTIONS(7160), 1, - anon_sym_AMP, - ACTIONS(7174), 1, - anon_sym_STAR_STAR, - ACTIONS(7182), 1, - sym_test_operator, - ACTIONS(6611), 2, - anon_sym_EQ, + ACTIONS(1229), 12, anon_sym_PIPE, - ACTIONS(6695), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7162), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7164), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7166), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7168), 2, anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7170), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7172), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6613), 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, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1231), 25, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [153831] = 13, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + 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, + [144469] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7160), 1, - anon_sym_AMP, - ACTIONS(7174), 1, - anon_sym_STAR_STAR, - ACTIONS(7182), 1, - sym_test_operator, - ACTIONS(6695), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7162), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7164), 2, + ACTIONS(1300), 13, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - ACTIONS(7166), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7168), 2, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1302), 24, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - ACTIONS(7170), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6611), 3, - anon_sym_EQ, + anon_sym_PIPE_AMP, + anon_sym_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, + [144514] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1304), 13, anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(7172), 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_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(1306), 24, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [153896] = 12, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_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, + [144559] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(7174), 1, + ACTIONS(6110), 1, anon_sym_STAR_STAR, - ACTIONS(7182), 1, + ACTIONS(6160), 1, + anon_sym_EQ, + ACTIONS(6164), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6166), 1, + anon_sym_AMP_AMP, + ACTIONS(6168), 1, + anon_sym_PIPE, + ACTIONS(6170), 1, + anon_sym_CARET, + ACTIONS(6172), 1, + anon_sym_AMP, + ACTIONS(6188), 1, + anon_sym_EQ_TILDE, + ACTIONS(6190), 1, + anon_sym_QMARK, + ACTIONS(6192), 1, sym_test_operator, - ACTIONS(6695), 2, + ACTIONS(6376), 1, + anon_sym_RBRACK, + ACTIONS(6108), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7162), 2, + ACTIONS(6174), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7164), 2, + ACTIONS(6176), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7166), 2, + ACTIONS(6178), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7168), 2, + ACTIONS(6180), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7170), 2, + ACTIONS(6182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7172), 3, + ACTIONS(6184), 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(6162), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -208828,43 +197435,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [144638] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6228), 1, + anon_sym_EQ, + ACTIONS(6232), 1, anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6240), 1, + anon_sym_AMP, + ACTIONS(6254), 1, + anon_sym_STAR_STAR, + ACTIONS(6256), 1, anon_sym_EQ_TILDE, + ACTIONS(6258), 1, anon_sym_QMARK, - anon_sym_COLON, - [153959] = 11, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7174), 1, - anon_sym_STAR_STAR, - ACTIONS(7182), 1, + ACTIONS(6260), 1, sym_test_operator, - ACTIONS(6695), 2, + ACTIONS(6376), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(5760), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7164), 2, + ACTIONS(6242), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6244), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7166), 2, + ACTIONS(6246), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7168), 2, + ACTIONS(6248), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7170), 2, + ACTIONS(6250), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7172), 3, + ACTIONS(6252), 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(6230), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -208876,87 +197494,59 @@ 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_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [154020] = 9, + [144717] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7174), 1, - anon_sym_STAR_STAR, - ACTIONS(7182), 1, - sym_test_operator, - ACTIONS(6695), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7168), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7170), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7172), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6611), 6, - anon_sym_EQ, + ACTIONS(1300), 13, 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_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1302), 24, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [154077] = 7, - ACTIONS(71), 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, + [144762] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(7174), 1, - anon_sym_STAR_STAR, - ACTIONS(6695), 2, + ACTIONS(6380), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6154), 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, - anon_sym_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_DASH_DASH, + ACTIONS(6378), 34, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -208969,83 +197559,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_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, - 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, - anon_sym_EQ, + 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, - 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_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [154181] = 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + [144809] = 17, 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(6026), 1, anon_sym_EQ, + ACTIONS(6200), 1, + anon_sym_STAR_STAR, + ACTIONS(6202), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6204), 1, + anon_sym_AMP_AMP, + ACTIONS(6206), 1, anon_sym_PIPE, + ACTIONS(6208), 1, anon_sym_CARET, + ACTIONS(6210), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(6220), 1, + sym_test_operator, + ACTIONS(5760), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6194), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6196), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6212), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6214), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6216), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6198), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 21, - sym_test_operator, + ACTIONS(6028), 14, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -209057,39 +197632,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_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [154230] = 5, + [144882] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(7174), 1, - anon_sym_STAR_STAR, - ACTIONS(6695), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6611), 13, + ACTIONS(6114), 1, anon_sym_EQ, + ACTIONS(6118), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6120), 1, + anon_sym_AMP_AMP, + ACTIONS(6122), 1, anon_sym_PIPE, + ACTIONS(6124), 1, anon_sym_CARET, + ACTIONS(6126), 1, anon_sym_AMP, + ACTIONS(6140), 1, + anon_sym_STAR_STAR, + ACTIONS(6142), 1, + anon_sym_EQ_TILDE, + ACTIONS(6144), 1, + anon_sym_QMARK, + ACTIONS(6148), 1, + sym_test_operator, + ACTIONS(6382), 1, + anon_sym_COLON, + ACTIONS(5760), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6128), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6130), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6132), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6134), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6136), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6138), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 21, - sym_test_operator, + ACTIONS(6116), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -209101,23 +197694,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [154279] = 5, + [144961] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7291), 1, - sym__special_character, - STATE(2850), 1, - aux_sym__literal_repeat1, - ACTIONS(5130), 12, + ACTIONS(1264), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -209129,9 +197709,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(5132), 23, + ACTIONS(1266), 24, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -209143,38 +197725,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, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [154328] = 4, - ACTIONS(71), 1, + [145006] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7293), 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), 22, + ACTIONS(6386), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6384), 36, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -209189,26 +197758,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_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, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7295), 1, - sym__concat, - ACTIONS(6641), 14, - anon_sym_EQ, + 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, @@ -209217,72 +197778,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6639), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_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, + [145051] = 18, + ACTIONS(71), 1, sym_comment, - ACTIONS(7099), 1, + ACTIONS(5764), 1, + anon_sym_EQ, + ACTIONS(6110), 1, anon_sym_STAR_STAR, - ACTIONS(7101), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7200), 1, + ACTIONS(6164), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6166), 1, + anon_sym_AMP_AMP, + ACTIONS(6168), 1, anon_sym_PIPE, - ACTIONS(7202), 1, + ACTIONS(6170), 1, anon_sym_CARET, - ACTIONS(7204), 1, + ACTIONS(6172), 1, anon_sym_AMP, - ACTIONS(7087), 2, + ACTIONS(6190), 1, + anon_sym_QMARK, + ACTIONS(6192), 1, + sym_test_operator, + ACTIONS(6108), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7089), 2, + ACTIONS(6174), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7093), 2, + ACTIONS(6176), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6178), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6180), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7095), 2, + ACTIONS(6182), 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(6184), 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(5766), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -209294,48 +197833,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [154491] = 17, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + [145126] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(6983), 1, + ACTIONS(5835), 1, anon_sym_EQ, - ACTIONS(7152), 1, + ACTIONS(5841), 1, anon_sym_PIPE_PIPE, - ACTIONS(7154), 1, + ACTIONS(5843), 1, anon_sym_AMP_AMP, - ACTIONS(7156), 1, + ACTIONS(5845), 1, anon_sym_PIPE, - ACTIONS(7158), 1, + ACTIONS(5847), 1, anon_sym_CARET, - ACTIONS(7160), 1, + ACTIONS(5849), 1, anon_sym_AMP, - ACTIONS(7174), 1, + ACTIONS(5863), 1, anon_sym_STAR_STAR, - ACTIONS(7182), 1, - sym_test_operator, - ACTIONS(6695), 2, + ACTIONS(5865), 1, + anon_sym_EQ_TILDE, + ACTIONS(5867), 1, + anon_sym_QMARK, + ACTIONS(6112), 1, + anon_sym_COMMA, + ACTIONS(6388), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5837), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7162), 2, + ACTIONS(5851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7164), 2, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7166), 2, + ACTIONS(5855), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7168), 2, + ACTIONS(5857), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7170), 2, + ACTIONS(5859), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7172), 3, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6985), 14, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -209347,57 +197894,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [154564] = 20, - ACTIONS(71), 1, + [145205] = 10, + ACTIONS(3), 1, sym_comment, - ACTIONS(815), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6754), 1, + ACTIONS(6156), 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(6158), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6154), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, + ACTIONS(6272), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6276), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, + ACTIONS(6278), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(6280), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6274), 4, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(6152), 20, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -209409,54 +197936,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [154643] = 20, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + [145264] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(6114), 1, + anon_sym_EQ, + ACTIONS(6118), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(6120), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(6122), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(6124), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(6126), 1, anon_sym_AMP, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(6140), 1, + anon_sym_STAR_STAR, + ACTIONS(6142), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(6144), 1, anon_sym_QMARK, - ACTIONS(7105), 1, - anon_sym_COMMA, - ACTIONS(7297), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6746), 2, + ACTIONS(6148), 1, + sym_test_operator, + ACTIONS(5760), 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(6128), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(6130), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(6132), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6134), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6136), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6138), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(5766), 12, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -209468,54 +198000,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [154722] = 20, + anon_sym_COLON, + [145341] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(7013), 1, + ACTIONS(5764), 1, anon_sym_EQ, - ACTIONS(7019), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7021), 1, + ACTIONS(6120), 1, anon_sym_AMP_AMP, - ACTIONS(7023), 1, + ACTIONS(6122), 1, anon_sym_PIPE, - ACTIONS(7025), 1, + ACTIONS(6124), 1, anon_sym_CARET, - ACTIONS(7027), 1, + ACTIONS(6126), 1, anon_sym_AMP, - ACTIONS(7041), 1, + ACTIONS(6140), 1, anon_sym_STAR_STAR, - ACTIONS(7045), 1, - anon_sym_EQ_TILDE, - ACTIONS(7047), 1, - anon_sym_QMARK, - ACTIONS(7049), 1, + ACTIONS(6148), 1, sym_test_operator, - ACTIONS(7299), 1, - anon_sym_RBRACK, - ACTIONS(7015), 2, + ACTIONS(5760), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7029), 2, + ACTIONS(6128), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7031), 2, + ACTIONS(6130), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7033), 2, + ACTIONS(6132), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7035), 2, + ACTIONS(6134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7037), 2, + ACTIONS(6136), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7039), 3, + ACTIONS(6138), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7017), 11, + ACTIONS(5766), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -209527,54 +198052,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [154801] = 20, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [145412] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(7051), 1, + ACTIONS(6110), 1, + anon_sym_STAR_STAR, + ACTIONS(6160), 1, anon_sym_EQ, - ACTIONS(7055), 1, + ACTIONS(6164), 1, anon_sym_PIPE_PIPE, - ACTIONS(7057), 1, + ACTIONS(6166), 1, anon_sym_AMP_AMP, - ACTIONS(7059), 1, + ACTIONS(6168), 1, anon_sym_PIPE, - ACTIONS(7061), 1, + ACTIONS(6170), 1, anon_sym_CARET, - ACTIONS(7063), 1, + ACTIONS(6172), 1, anon_sym_AMP, - ACTIONS(7077), 1, - anon_sym_STAR_STAR, - ACTIONS(7079), 1, + ACTIONS(6188), 1, anon_sym_EQ_TILDE, - ACTIONS(7081), 1, + ACTIONS(6190), 1, anon_sym_QMARK, - ACTIONS(7083), 1, + ACTIONS(6192), 1, sym_test_operator, - ACTIONS(7299), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(6695), 2, + ACTIONS(6390), 1, + anon_sym_RBRACK, + ACTIONS(6108), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7065), 2, + ACTIONS(6174), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7067), 2, + ACTIONS(6176), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7069), 2, + ACTIONS(6178), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7071), 2, + ACTIONS(6180), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7073), 2, + ACTIONS(6182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7075), 3, + ACTIONS(6184), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7053), 11, + ACTIONS(6162), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -209586,46 +198115,54 @@ 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, + [145491] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(7099), 1, + ACTIONS(6200), 1, anon_sym_STAR_STAR, - ACTIONS(7101), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7200), 1, + ACTIONS(6202), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6204), 1, + anon_sym_AMP_AMP, + ACTIONS(6206), 1, anon_sym_PIPE, - ACTIONS(7202), 1, + ACTIONS(6208), 1, anon_sym_CARET, - ACTIONS(7204), 1, + ACTIONS(6210), 1, anon_sym_AMP, - ACTIONS(7087), 2, + ACTIONS(6218), 1, + anon_sym_QMARK, + ACTIONS(6220), 1, + sym_test_operator, + ACTIONS(6222), 1, + anon_sym_EQ, + ACTIONS(6224), 1, + anon_sym_EQ_TILDE, + ACTIONS(6392), 1, + anon_sym_RPAREN, + ACTIONS(5760), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7089), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7093), 2, + ACTIONS(6194), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7095), 2, + ACTIONS(6196), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7198), 2, - anon_sym_AMP_AMP, - anon_sym_DASHa, - ACTIONS(7097), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7091), 4, + ACTIONS(6212), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6214), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6216), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7085), 15, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(6198), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6309), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -209637,45 +198174,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [145570] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1256), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1258), 24, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, anon_sym_PIPE_PIPE, - anon_sym_DASHo, - [154947] = 13, - ACTIONS(3), 1, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [145615] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(7099), 1, - anon_sym_STAR_STAR, - ACTIONS(7101), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7200), 1, + ACTIONS(6114), 1, + anon_sym_EQ, + ACTIONS(6118), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6120), 1, + anon_sym_AMP_AMP, + ACTIONS(6122), 1, anon_sym_PIPE, - ACTIONS(7202), 1, + ACTIONS(6124), 1, anon_sym_CARET, - ACTIONS(7204), 1, + ACTIONS(6126), 1, anon_sym_AMP, - ACTIONS(7087), 2, + ACTIONS(6140), 1, + anon_sym_STAR_STAR, + ACTIONS(6142), 1, + anon_sym_EQ_TILDE, + ACTIONS(6144), 1, + anon_sym_QMARK, + ACTIONS(6148), 1, + sym_test_operator, + ACTIONS(6394), 1, + anon_sym_COLON, + ACTIONS(5760), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7089), 2, + ACTIONS(6128), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7093), 2, + ACTIONS(6130), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6132), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7095), 2, + ACTIONS(6136), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7097), 3, + ACTIONS(6138), 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(6116), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -209687,58 +198275,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [145694] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5022), 2, + anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(5027), 4, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - [155012] = 20, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5020), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5024), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(5029), 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(5032), 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, + [145747] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, + ACTIONS(1276), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1278), 24, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [145792] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5022), 2, + anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(5027), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5020), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5024), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(5029), 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(5032), 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, + [145845] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6110), 1, anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(6160), 1, + anon_sym_EQ, + ACTIONS(6164), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(6166), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(6168), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(6170), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(6172), 1, anon_sym_AMP, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(6188), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(6190), 1, anon_sym_QMARK, - ACTIONS(7105), 1, - anon_sym_COMMA, - ACTIONS(7301), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6746), 2, + ACTIONS(6192), 1, + sym_test_operator, + ACTIONS(6108), 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(6174), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(6176), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(6178), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6180), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6182), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6184), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(5766), 12, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -209750,54 +198466,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [155091] = 20, + anon_sym_RBRACK, + [145922] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(7011), 1, + ACTIONS(5764), 1, + anon_sym_EQ, + ACTIONS(6110), 1, anon_sym_STAR_STAR, - ACTIONS(7222), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7224), 1, + ACTIONS(6166), 1, anon_sym_AMP_AMP, - ACTIONS(7226), 1, + ACTIONS(6168), 1, anon_sym_PIPE, - ACTIONS(7228), 1, + ACTIONS(6170), 1, anon_sym_CARET, - ACTIONS(7230), 1, + ACTIONS(6172), 1, anon_sym_AMP, - ACTIONS(7238), 1, - anon_sym_QMARK, - ACTIONS(7240), 1, + ACTIONS(6192), 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, + ACTIONS(6108), 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(6174), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7234), 2, + ACTIONS(6176), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7236), 2, + ACTIONS(6178), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7009), 3, + ACTIONS(6180), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6182), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6184), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7281), 11, + ACTIONS(5766), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -209809,54 +198518,58 @@ 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_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [145993] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(7148), 1, + ACTIONS(6114), 1, anon_sym_EQ, - ACTIONS(7152), 1, + ACTIONS(6118), 1, anon_sym_PIPE_PIPE, - ACTIONS(7154), 1, + ACTIONS(6120), 1, anon_sym_AMP_AMP, - ACTIONS(7156), 1, + ACTIONS(6122), 1, anon_sym_PIPE, - ACTIONS(7158), 1, + ACTIONS(6124), 1, anon_sym_CARET, - ACTIONS(7160), 1, + ACTIONS(6126), 1, anon_sym_AMP, - ACTIONS(7174), 1, + ACTIONS(6140), 1, anon_sym_STAR_STAR, - ACTIONS(7176), 1, + ACTIONS(6142), 1, anon_sym_EQ_TILDE, - ACTIONS(7178), 1, + ACTIONS(6144), 1, anon_sym_QMARK, - ACTIONS(7182), 1, + ACTIONS(6148), 1, sym_test_operator, - ACTIONS(7305), 1, + ACTIONS(6396), 1, anon_sym_COLON, - ACTIONS(6695), 2, + ACTIONS(5760), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7162), 2, + ACTIONS(6128), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7164), 2, + ACTIONS(6130), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7166), 2, + ACTIONS(6132), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7168), 2, + ACTIONS(6134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7170), 2, + ACTIONS(6136), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7172), 3, + ACTIONS(6138), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7150), 11, + ACTIONS(6116), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -209868,34 +198581,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [155249] = 9, + [146072] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7174), 1, - anon_sym_STAR_STAR, - ACTIONS(7182), 1, + ACTIONS(1248), 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(1250), 24, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(6695), 2, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [146117] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6156), 1, + anon_sym_STAR_STAR, + ACTIONS(6158), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6154), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7168), 2, + ACTIONS(6276), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7170), 2, + ACTIONS(6278), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7172), 3, + ACTIONS(6280), 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(6274), 4, anon_sym_LT, anon_sym_GT, - ACTIONS(6697), 20, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6152), 22, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -209908,41 +198663,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [155306] = 8, + [146174] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(7174), 1, - anon_sym_STAR_STAR, - ACTIONS(6695), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7168), 2, + ACTIONS(6398), 1, + anon_sym_LBRACK, + ACTIONS(5798), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7170), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7172), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6693), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6697), 21, - sym_test_operator, + anon_sym_STAR_STAR, + ACTIONS(5796), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -209960,13 +198711,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_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [155361] = 3, + [146221] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1223), 12, + ACTIONS(1219), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -209978,10 +198729,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(1225), 25, + ACTIONS(1221), 24, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -209993,45 +198745,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_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, - [155406] = 8, + [146266] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7174), 1, - anon_sym_STAR_STAR, - ACTIONS(6695), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7168), 2, + ACTIONS(1292), 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(1294), 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(7170), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7172), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6693), 6, + anon_sym_PIPE_AMP, + anon_sym_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, + [146311] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5825), 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(5827), 23, sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -210049,57 +198837,51 @@ 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, - [155461] = 20, + [146356] = 17, ACTIONS(71), 1, sym_comment, - ACTIONS(823), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(6026), 1, + anon_sym_EQ, + ACTIONS(6232), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(6234), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(6236), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(6238), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(6240), 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(6254), 1, + anon_sym_STAR_STAR, + ACTIONS(6260), 1, + sym_test_operator, + ACTIONS(5760), 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(6242), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(6244), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(6246), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6248), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6250), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6252), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(6028), 14, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -210111,34 +198893,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [155540] = 9, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [146429] = 15, ACTIONS(71), 1, sym_comment, - ACTIONS(7041), 1, + ACTIONS(5764), 1, + anon_sym_EQ, + ACTIONS(6110), 1, anon_sym_STAR_STAR, - ACTIONS(7049), 1, + ACTIONS(6168), 1, + anon_sym_PIPE, + ACTIONS(6170), 1, + anon_sym_CARET, + ACTIONS(6172), 1, + anon_sym_AMP, + ACTIONS(6192), 1, sym_test_operator, - ACTIONS(7015), 2, + ACTIONS(6108), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7035), 2, + ACTIONS(6174), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6176), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6178), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6180), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7037), 2, + ACTIONS(6182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7039), 3, + ACTIONS(6184), 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(5766), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -210152,61 +198947,46 @@ 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, - [155597] = 20, + [146498] = 14, ACTIONS(71), 1, sym_comment, - ACTIONS(7011), 1, + ACTIONS(6110), 1, anon_sym_STAR_STAR, - ACTIONS(7222), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7224), 1, - anon_sym_AMP_AMP, - ACTIONS(7226), 1, - anon_sym_PIPE, - ACTIONS(7228), 1, + ACTIONS(6170), 1, anon_sym_CARET, - ACTIONS(7230), 1, + ACTIONS(6172), 1, anon_sym_AMP, - ACTIONS(7238), 1, - anon_sym_QMARK, - ACTIONS(7240), 1, + ACTIONS(6192), 1, sym_test_operator, - ACTIONS(7242), 1, + ACTIONS(5764), 2, anon_sym_EQ, - ACTIONS(7244), 1, - anon_sym_EQ_TILDE, - ACTIONS(7307), 1, - anon_sym_RPAREN, - ACTIONS(6695), 2, + anon_sym_PIPE, + ACTIONS(6108), 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(6174), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7234), 2, + ACTIONS(6176), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7236), 2, + ACTIONS(6178), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7009), 3, + ACTIONS(6180), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6182), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6184), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7281), 11, + ACTIONS(5766), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -210218,41 +198998,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [155676] = 12, - ACTIONS(3), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [146565] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(7099), 1, - anon_sym_STAR_STAR, - ACTIONS(7101), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7202), 1, + ACTIONS(6114), 1, + anon_sym_EQ, + ACTIONS(6118), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6120), 1, + anon_sym_AMP_AMP, + ACTIONS(6122), 1, + anon_sym_PIPE, + ACTIONS(6124), 1, anon_sym_CARET, - ACTIONS(7204), 1, + ACTIONS(6126), 1, anon_sym_AMP, - ACTIONS(7087), 2, + ACTIONS(6140), 1, + anon_sym_STAR_STAR, + ACTIONS(6142), 1, + anon_sym_EQ_TILDE, + ACTIONS(6144), 1, + anon_sym_QMARK, + ACTIONS(6148), 1, + sym_test_operator, + ACTIONS(6400), 1, + anon_sym_COLON, + ACTIONS(5760), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7089), 2, + ACTIONS(6128), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7093), 2, + ACTIONS(6130), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6132), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7095), 2, + ACTIONS(6136), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7097), 3, + ACTIONS(6138), 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(6116), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -210264,53 +199062,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_PIPE, - [155739] = 17, + [146644] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(6983), 1, + ACTIONS(6228), 1, anon_sym_EQ, - ACTIONS(7011), 1, - anon_sym_STAR_STAR, - ACTIONS(7222), 1, + ACTIONS(6232), 1, anon_sym_PIPE_PIPE, - ACTIONS(7224), 1, + ACTIONS(6234), 1, anon_sym_AMP_AMP, - ACTIONS(7226), 1, + ACTIONS(6236), 1, anon_sym_PIPE, - ACTIONS(7228), 1, + ACTIONS(6238), 1, anon_sym_CARET, - ACTIONS(7230), 1, + ACTIONS(6240), 1, anon_sym_AMP, - ACTIONS(7240), 1, + ACTIONS(6254), 1, + anon_sym_STAR_STAR, + ACTIONS(6256), 1, + anon_sym_EQ_TILDE, + ACTIONS(6258), 1, + anon_sym_QMARK, + ACTIONS(6260), 1, sym_test_operator, - ACTIONS(6695), 2, + ACTIONS(6390), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(5760), 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(6242), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7234), 2, + ACTIONS(6244), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7236), 2, + ACTIONS(6246), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7009), 3, + ACTIONS(6248), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6250), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6252), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6985), 14, + ACTIONS(6230), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -210322,57 +199121,44 @@ 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, + [146723] = 15, ACTIONS(71), 1, sym_comment, - ACTIONS(7013), 1, + ACTIONS(5764), 1, anon_sym_EQ, - ACTIONS(7019), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7021), 1, - anon_sym_AMP_AMP, - ACTIONS(7023), 1, + ACTIONS(6122), 1, anon_sym_PIPE, - ACTIONS(7025), 1, + ACTIONS(6124), 1, anon_sym_CARET, - ACTIONS(7027), 1, + ACTIONS(6126), 1, anon_sym_AMP, - ACTIONS(7041), 1, + ACTIONS(6140), 1, anon_sym_STAR_STAR, - ACTIONS(7045), 1, - anon_sym_EQ_TILDE, - ACTIONS(7047), 1, - anon_sym_QMARK, - ACTIONS(7049), 1, + ACTIONS(6148), 1, sym_test_operator, - ACTIONS(7309), 1, - anon_sym_RBRACK, - ACTIONS(7015), 2, + ACTIONS(5760), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7029), 2, + ACTIONS(6128), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7031), 2, + ACTIONS(6130), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7033), 2, + ACTIONS(6132), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7035), 2, + ACTIONS(6134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7037), 2, + ACTIONS(6136), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7039), 3, + ACTIONS(6138), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7017), 11, + ACTIONS(5766), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -210384,72 +199170,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [155891] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7311), 1, - sym__special_character, - STATE(2999), 1, - aux_sym__literal_repeat1, - ACTIONS(1316), 12, - anon_sym_PIPE, - anon_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, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_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, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [146792] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(6665), 14, + ACTIONS(6200), 1, + anon_sym_STAR_STAR, + ACTIONS(6220), 1, + sym_test_operator, + ACTIONS(5760), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6194), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6196), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6198), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5758), 6, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, + ACTIONS(5762), 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, + [146849] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6200), 1, + anon_sym_STAR_STAR, + ACTIONS(5760), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6194), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6196), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6198), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6667), 23, + ACTIONS(5758), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5762), 21, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -210467,35 +199267,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [155985] = 8, + [146904] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(7041), 1, + ACTIONS(6200), 1, anon_sym_STAR_STAR, - ACTIONS(7015), 2, + ACTIONS(5760), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7035), 2, + ACTIONS(6194), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7037), 2, + ACTIONS(6196), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7039), 3, + ACTIONS(6198), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6611), 6, + ACTIONS(5758), 6, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6613), 21, + ACTIONS(5762), 21, sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -210514,112 +199314,105 @@ 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, - [156040] = 18, + [146959] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(6611), 1, + ACTIONS(6110), 1, + anon_sym_STAR_STAR, + ACTIONS(6160), 1, anon_sym_EQ, - ACTIONS(7019), 1, + ACTIONS(6164), 1, anon_sym_PIPE_PIPE, - ACTIONS(7021), 1, + ACTIONS(6166), 1, anon_sym_AMP_AMP, - ACTIONS(7023), 1, + ACTIONS(6168), 1, anon_sym_PIPE, - ACTIONS(7025), 1, + ACTIONS(6170), 1, anon_sym_CARET, - ACTIONS(7027), 1, + ACTIONS(6172), 1, anon_sym_AMP, - ACTIONS(7041), 1, - anon_sym_STAR_STAR, - ACTIONS(7047), 1, + ACTIONS(6188), 1, + anon_sym_EQ_TILDE, + ACTIONS(6190), 1, anon_sym_QMARK, - ACTIONS(7049), 1, + ACTIONS(6192), 1, sym_test_operator, - ACTIONS(7015), 2, + ACTIONS(6402), 1, + anon_sym_RBRACK, + ACTIONS(6108), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7029), 2, + ACTIONS(6174), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7031), 2, + ACTIONS(6176), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7033), 2, + ACTIONS(6178), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7035), 2, + ACTIONS(6180), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7037), 2, + ACTIONS(6182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7039), 3, + ACTIONS(6184), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 13, + ACTIONS(6162), 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, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - [156115] = 19, - 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_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [147038] = 14, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6124), 1, anon_sym_CARET, - ACTIONS(7027), 1, + ACTIONS(6126), 1, anon_sym_AMP, - ACTIONS(7041), 1, + ACTIONS(6140), 1, anon_sym_STAR_STAR, - ACTIONS(7045), 1, - anon_sym_EQ_TILDE, - ACTIONS(7047), 1, - anon_sym_QMARK, - ACTIONS(7049), 1, + ACTIONS(6148), 1, sym_test_operator, - ACTIONS(7015), 2, + ACTIONS(5760), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7029), 2, + ACTIONS(5764), 2, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(6128), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7031), 2, + ACTIONS(6130), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7033), 2, + ACTIONS(6132), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7035), 2, + ACTIONS(6134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7037), 2, + ACTIONS(6136), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7039), 3, + ACTIONS(6138), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 12, + ACTIONS(5766), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -210631,55 +199424,59 @@ 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, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [147105] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(7148), 1, + ACTIONS(6228), 1, anon_sym_EQ, - ACTIONS(7152), 1, + ACTIONS(6232), 1, anon_sym_PIPE_PIPE, - ACTIONS(7154), 1, + ACTIONS(6234), 1, anon_sym_AMP_AMP, - ACTIONS(7156), 1, + ACTIONS(6236), 1, anon_sym_PIPE, - ACTIONS(7158), 1, + ACTIONS(6238), 1, anon_sym_CARET, - ACTIONS(7160), 1, + ACTIONS(6240), 1, anon_sym_AMP, - ACTIONS(7174), 1, + ACTIONS(6254), 1, anon_sym_STAR_STAR, - ACTIONS(7176), 1, + ACTIONS(6256), 1, anon_sym_EQ_TILDE, - ACTIONS(7178), 1, + ACTIONS(6258), 1, anon_sym_QMARK, - ACTIONS(7182), 1, + ACTIONS(6260), 1, sym_test_operator, - ACTIONS(7314), 1, - anon_sym_COLON, - ACTIONS(6695), 2, + ACTIONS(6402), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(5760), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7162), 2, + ACTIONS(6242), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7164), 2, + ACTIONS(6244), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7166), 2, + ACTIONS(6246), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7168), 2, + ACTIONS(6248), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7170), 2, + ACTIONS(6250), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7172), 3, + ACTIONS(6252), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7150), 11, + ACTIONS(6230), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -210691,46 +199488,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [156271] = 16, + [147184] = 13, ACTIONS(71), 1, sym_comment, - ACTIONS(6611), 1, - anon_sym_EQ, - ACTIONS(7021), 1, - anon_sym_AMP_AMP, - ACTIONS(7023), 1, - anon_sym_PIPE, - ACTIONS(7025), 1, - anon_sym_CARET, - ACTIONS(7027), 1, - anon_sym_AMP, - ACTIONS(7041), 1, + ACTIONS(6110), 1, anon_sym_STAR_STAR, - ACTIONS(7049), 1, + ACTIONS(6172), 1, + anon_sym_AMP, + ACTIONS(6192), 1, sym_test_operator, - ACTIONS(7015), 2, + ACTIONS(6108), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7029), 2, + ACTIONS(6174), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7031), 2, + ACTIONS(6176), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7033), 2, + ACTIONS(6178), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7035), 2, + ACTIONS(6180), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7037), 2, + ACTIONS(6182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7039), 3, + ACTIONS(5764), 3, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(6184), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 15, + ACTIONS(5766), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -210743,57 +199536,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [156342] = 20, + [147249] = 12, ACTIONS(71), 1, sym_comment, - ACTIONS(7051), 1, - anon_sym_EQ, - ACTIONS(7055), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7057), 1, - anon_sym_AMP_AMP, - ACTIONS(7059), 1, - anon_sym_PIPE, - ACTIONS(7061), 1, - anon_sym_CARET, - ACTIONS(7063), 1, - anon_sym_AMP, - ACTIONS(7077), 1, + ACTIONS(6110), 1, anon_sym_STAR_STAR, - ACTIONS(7079), 1, - anon_sym_EQ_TILDE, - ACTIONS(7081), 1, - anon_sym_QMARK, - ACTIONS(7083), 1, + ACTIONS(6192), 1, sym_test_operator, - ACTIONS(7309), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(6695), 2, + ACTIONS(6108), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7065), 2, + ACTIONS(6174), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7067), 2, + ACTIONS(6176), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7069), 2, + ACTIONS(6178), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7071), 2, + ACTIONS(6180), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7073), 2, + ACTIONS(6182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7075), 3, + ACTIONS(6184), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7053), 11, + ACTIONS(5764), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(5766), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -210805,180 +199586,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [156421] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1223), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1225), 24, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [156466] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(2156), 12, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(2158), 25, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [156511] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1264), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1266), 24, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [156556] = 20, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [147312] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(801), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5835), 1, + anon_sym_EQ, + ACTIONS(5841), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(5843), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(5845), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(5847), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(5849), 1, anon_sym_AMP, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + ACTIONS(5865), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(5867), 1, anon_sym_QMARK, - ACTIONS(7105), 1, + ACTIONS(6112), 1, anon_sym_COMMA, - ACTIONS(7316), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6746), 2, + ACTIONS(5837), 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(5851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(5855), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(5857), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5859), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -210990,38 +199650,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [156635] = 11, + [147391] = 11, ACTIONS(71), 1, sym_comment, - ACTIONS(7041), 1, + ACTIONS(6110), 1, anon_sym_STAR_STAR, - ACTIONS(7049), 1, + ACTIONS(6192), 1, sym_test_operator, - ACTIONS(7015), 2, + ACTIONS(6108), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7031), 2, + ACTIONS(6176), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7033), 2, + ACTIONS(6178), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7035), 2, + ACTIONS(6180), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7037), 2, + ACTIONS(6182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7039), 3, + ACTIONS(6184), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6611), 4, + ACTIONS(5764), 4, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - ACTIONS(6613), 18, + ACTIONS(5766), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -211040,92 +199700,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [156696] = 20, + [147452] = 13, 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, - anon_sym_PIPE, - ACTIONS(7228), 1, - anon_sym_CARET, - ACTIONS(7230), 1, + ACTIONS(6126), 1, anon_sym_AMP, - ACTIONS(7238), 1, - anon_sym_QMARK, - ACTIONS(7240), 1, + ACTIONS(6140), 1, + anon_sym_STAR_STAR, + ACTIONS(6148), 1, sym_test_operator, - ACTIONS(7242), 1, - anon_sym_EQ, - ACTIONS(7244), 1, - anon_sym_EQ_TILDE, - ACTIONS(7318), 1, - anon_sym_RPAREN, - ACTIONS(6695), 2, + ACTIONS(5760), 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(6128), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7234), 2, + ACTIONS(6130), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7236), 2, + ACTIONS(6132), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7009), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7281), 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, - [156775] = 8, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7041), 1, - anon_sym_STAR_STAR, - ACTIONS(7015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7035), 2, + ACTIONS(6134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7037), 2, + ACTIONS(6136), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7039), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6693), 6, + ACTIONS(5764), 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(6138), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5766), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -211139,17 +199749,13 @@ 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, - [156830] = 3, + anon_sym_COLON, + [147517] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 13, + ACTIONS(4485), 12, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -211161,11 +199767,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(1294), 24, + ACTIONS(4487), 25, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -211177,65 +199782,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, - 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, - [156875] = 20, + [147562] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(7148), 1, + ACTIONS(817), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5835), 1, anon_sym_EQ, - ACTIONS(7152), 1, + ACTIONS(5841), 1, anon_sym_PIPE_PIPE, - ACTIONS(7154), 1, + ACTIONS(5843), 1, anon_sym_AMP_AMP, - ACTIONS(7156), 1, + ACTIONS(5845), 1, anon_sym_PIPE, - ACTIONS(7158), 1, + ACTIONS(5847), 1, anon_sym_CARET, - ACTIONS(7160), 1, + ACTIONS(5849), 1, anon_sym_AMP, - ACTIONS(7174), 1, + ACTIONS(5863), 1, anon_sym_STAR_STAR, - ACTIONS(7176), 1, + ACTIONS(5865), 1, anon_sym_EQ_TILDE, - ACTIONS(7178), 1, + ACTIONS(5867), 1, anon_sym_QMARK, - ACTIONS(7182), 1, - sym_test_operator, - ACTIONS(7320), 1, - anon_sym_COLON, - ACTIONS(6695), 2, + ACTIONS(6112), 1, + anon_sym_COMMA, + ACTIONS(5837), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7162), 2, + ACTIONS(5851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7164), 2, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7166), 2, + ACTIONS(5855), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7168), 2, + ACTIONS(5857), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7170), 2, + ACTIONS(5859), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7172), 3, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7150), 11, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -211247,29 +199853,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [156954] = 4, + [147641] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(7015), 2, + ACTIONS(6140), 1, + anon_sym_STAR_STAR, + ACTIONS(6148), 1, + sym_test_operator, + ACTIONS(5760), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6693), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(6134), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6136), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6138), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6697), 21, - sym_test_operator, + ACTIONS(5758), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5762), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -211287,57 +199898,76 @@ 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, + [147698] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(833), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(3935), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(4933), 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(4935), 10, + sym_file_descriptor, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, - anon_sym_PIPE, - ACTIONS(6778), 1, - anon_sym_CARET, - ACTIONS(6780), 1, - anon_sym_AMP, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, - anon_sym_EQ_TILDE, - ACTIONS(6832), 1, - anon_sym_QMARK, - ACTIONS(7105), 1, - anon_sym_COMMA, - ACTIONS(6746), 2, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + 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(3944), 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, + [147747] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6156), 1, + anon_sym_STAR_STAR, + ACTIONS(6158), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6154), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, + ACTIONS(6276), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, + ACTIONS(6278), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6786), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6280), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(6152), 26, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -211349,79 +199979,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [157080] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7011), 1, - anon_sym_STAR_STAR, - ACTIONS(6695), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7009), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6611), 10, - anon_sym_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_PLUS, - anon_sym_DASH, - 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, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [157131] = 9, + [147802] = 12, ACTIONS(71), 1, sym_comment, - ACTIONS(7328), 1, + ACTIONS(6140), 1, anon_sym_STAR_STAR, - ACTIONS(7330), 1, + ACTIONS(6148), 1, sym_test_operator, - ACTIONS(6695), 2, + ACTIONS(5760), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7322), 2, + ACTIONS(6128), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6130), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6132), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6134), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7324), 2, + ACTIONS(6136), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7326), 3, + ACTIONS(6138), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6611), 6, + ACTIONS(5764), 4, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6613), 19, + ACTIONS(5766), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -211435,58 +200040,57 @@ 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, - [157187] = 19, + anon_sym_COLON, + [147865] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(6854), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(6110), 1, + anon_sym_STAR_STAR, + ACTIONS(6160), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(6164), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(6166), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(6168), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(6170), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(6172), 1, anon_sym_AMP, - ACTIONS(7360), 1, - anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(6188), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(6190), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(6192), 1, + sym_test_operator, + ACTIONS(6404), 1, + anon_sym_RBRACK, + ACTIONS(6108), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(6174), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(6176), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(6178), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(6180), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(6182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(6184), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(6162), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -211498,44 +200102,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [157263] = 15, + [147944] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(6993), 1, + ACTIONS(6228), 1, anon_sym_EQ, - ACTIONS(7368), 1, + ACTIONS(6232), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, anon_sym_AMP_AMP, - ACTIONS(7370), 1, + ACTIONS(6236), 1, anon_sym_PIPE, - ACTIONS(7372), 1, + ACTIONS(6238), 1, anon_sym_CARET, - ACTIONS(7374), 1, + ACTIONS(6240), 1, anon_sym_AMP, - ACTIONS(7388), 1, + ACTIONS(6254), 1, anon_sym_STAR_STAR, - ACTIONS(7366), 2, + ACTIONS(6256), 1, + anon_sym_EQ_TILDE, + ACTIONS(6258), 1, + anon_sym_QMARK, + ACTIONS(6260), 1, + sym_test_operator, + ACTIONS(6404), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(5760), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7376), 2, + ACTIONS(6242), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7378), 2, + ACTIONS(6244), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7380), 2, + ACTIONS(6246), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7382), 2, + ACTIONS(6248), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7384), 2, + ACTIONS(6250), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7386), 3, + ACTIONS(6252), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6991), 15, + ACTIONS(6230), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -211547,46 +200161,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [157331] = 14, + [148023] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6993), 1, + ACTIONS(5764), 14, 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_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(7366), 2, + ACTIONS(5766), 23, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7376), 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(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_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [148068] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6156), 1, + anon_sym_STAR_STAR, + ACTIONS(6158), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6154), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6278), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7386), 3, + ACTIONS(6280), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6991), 16, + ACTIONS(6152), 28, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -211599,56 +200235,236 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [157397] = 19, + 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, + [148121] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6856), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(1284), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1286), 24, + sym_file_descriptor, + sym__concat, + sym_test_operator, + 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, + [148166] = 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_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1314), 24, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [148211] = 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_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1290), 24, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [148256] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4493), 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(4495), 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, + [148301] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5835), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(5841), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(5843), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(5845), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(5847), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(5849), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(5863), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(5865), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(5867), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(6112), 1, + anon_sym_COMMA, + ACTIONS(6406), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5837), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(5851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(5855), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(5857), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(5859), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -211660,27 +200476,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [157473] = 3, + [148380] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(6930), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(6110), 1, + anon_sym_STAR_STAR, + ACTIONS(6192), 1, + sym_test_operator, + ACTIONS(6108), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6180), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6182), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6184), 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(5764), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5766), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -211701,41 +200524,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [157517] = 13, + [148437] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(7372), 1, - anon_sym_CARET, - ACTIONS(7374), 1, - anon_sym_AMP, - ACTIONS(7388), 1, + ACTIONS(6110), 1, anon_sym_STAR_STAR, - ACTIONS(6993), 2, - anon_sym_EQ, - anon_sym_PIPE, - ACTIONS(7366), 2, + ACTIONS(6108), 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, + ACTIONS(6182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7386), 3, + ACTIONS(6184), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6991), 16, + ACTIONS(5764), 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(5766), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -211749,55 +200563,38 @@ 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, - [157581] = 19, + [148490] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(6858), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(6110), 1, + anon_sym_STAR_STAR, + ACTIONS(6108), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6184), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5764), 10, 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(5766), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -211809,10 +200606,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [157657] = 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, + [148541] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6938), 14, + ACTIONS(6110), 1, + anon_sym_STAR_STAR, + ACTIONS(6108), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5764), 13, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -211826,10 +200637,8 @@ static const uint16_t ts_small_parse_table[] = { 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(5766), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -211850,52 +200659,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [157701] = 19, + [148590] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(6860), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(5835), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(5841), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(5843), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(5845), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(5847), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(5849), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(5863), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(5865), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(5867), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(6112), 1, + anon_sym_COMMA, + ACTIONS(6408), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5837), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(5851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(5855), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(5857), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(5859), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -211907,102 +200718,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [157777] = 12, + [148669] = 3, ACTIONS(71), 1, sym_comment, - 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, + ACTIONS(1260), 13, + anon_sym_PIPE, 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_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - 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(1262), 24, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [157839] = 19, - ACTIONS(71), 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, + [148714] = 16, + ACTIONS(3), 1, sym_comment, - ACTIONS(6862), 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(6156), 1, + anon_sym_STAR_STAR, + ACTIONS(6266), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(6268), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(6270), 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(6414), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6154), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(6262), 2, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + ACTIONS(6264), 2, + anon_sym_AMP_AMP, + anon_sym_DASHa, + ACTIONS(6272), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7352), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(6276), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(6278), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(6410), 2, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(6280), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(6274), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6412), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212014,10 +200815,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [157915] = 3, + [148785] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6964), 14, + ACTIONS(1280), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -212032,7 +200833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6962), 22, + ACTIONS(1282), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -212052,42 +200853,55 @@ 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, - [157959] = 11, + [148829] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7388), 1, + ACTIONS(5883), 1, + anon_sym_RBRACK, + ACTIONS(6416), 1, + anon_sym_EQ, + ACTIONS(6422), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6424), 1, + anon_sym_AMP_AMP, + ACTIONS(6426), 1, + anon_sym_PIPE, + ACTIONS(6428), 1, + anon_sym_CARET, + ACTIONS(6430), 1, + anon_sym_AMP, + ACTIONS(6444), 1, anon_sym_STAR_STAR, - ACTIONS(7366), 2, + ACTIONS(6446), 1, + anon_sym_EQ_TILDE, + ACTIONS(6448), 1, + anon_sym_QMARK, + ACTIONS(6418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7376), 2, + ACTIONS(6432), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7378), 2, + ACTIONS(6434), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7380), 2, + ACTIONS(6436), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7382), 2, + ACTIONS(6438), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7384), 2, + ACTIONS(6440), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7386), 3, + ACTIONS(6442), 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(6420), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212099,57 +200913,113 @@ 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, - [158019] = 19, + [148905] = 25, ACTIONS(71), 1, sym_comment, - ACTIONS(6864), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(5504), 1, + sym_word, + ACTIONS(5518), 1, + anon_sym_DOLLAR, + ACTIONS(5524), 1, + aux_sym_number_token1, + ACTIONS(5526), 1, + aux_sym_number_token2, + ACTIONS(5530), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5538), 1, + sym_test_operator, + ACTIONS(5540), 1, + sym_extglob_pattern, + ACTIONS(5542), 1, + sym__brace_start, + ACTIONS(6450), 1, + anon_sym_LPAREN, + ACTIONS(6452), 1, + anon_sym_esac, + ACTIONS(6454), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6456), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6458), 1, + sym__special_character, + ACTIONS(6460), 1, + anon_sym_DQUOTE, + ACTIONS(6464), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6466), 1, + anon_sym_BQUOTE, + ACTIONS(6468), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6008), 1, + aux_sym__literal_repeat1, + STATE(6420), 1, + sym_last_case_item, + ACTIONS(6462), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(6470), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3206), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6265), 2, + sym_concatenation, + sym__extglob_blob, + STATE(5926), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [148993] = 18, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6416), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(6422), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(6424), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(6426), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(6428), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(6430), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(6444), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(6446), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(6448), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(6418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(6432), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(6434), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(6436), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(6438), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(6440), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(6442), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(5869), 12, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212161,77 +201031,108 @@ 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, + [149067] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5504), 1, + sym_word, + ACTIONS(5518), 1, + anon_sym_DOLLAR, + ACTIONS(5524), 1, + aux_sym_number_token1, + ACTIONS(5526), 1, + aux_sym_number_token2, + ACTIONS(5530), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5538), 1, + sym_test_operator, + ACTIONS(5540), 1, + sym_extglob_pattern, + ACTIONS(5542), 1, + sym__brace_start, + ACTIONS(6450), 1, + anon_sym_LPAREN, + ACTIONS(6454), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6456), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6458), 1, + sym__special_character, + ACTIONS(6460), 1, + anon_sym_DQUOTE, + ACTIONS(6464), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6466), 1, + anon_sym_BQUOTE, + ACTIONS(6468), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6472), 1, + anon_sym_esac, + STATE(6008), 1, + aux_sym__literal_repeat1, + STATE(6654), 1, + sym_last_case_item, + ACTIONS(6462), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(6470), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3208), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6265), 2, + sym_concatenation, + sym__extglob_blob, + STATE(5926), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [149155] = 15, ACTIONS(71), 1, sym_comment, - ACTIONS(6964), 14, + ACTIONS(5871), 1, anon_sym_EQ, + ACTIONS(6424), 1, + anon_sym_AMP_AMP, + ACTIONS(6426), 1, anon_sym_PIPE, + ACTIONS(6428), 1, anon_sym_CARET, + ACTIONS(6430), 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(6444), 1, anon_sym_STAR_STAR, - ACTIONS(6962), 22, + ACTIONS(6418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(6432), 2, 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, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7388), 1, - anon_sym_STAR_STAR, - ACTIONS(7366), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7378), 2, + ACTIONS(6434), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7380), 2, + ACTIONS(6436), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7382), 2, + ACTIONS(6438), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7384), 2, + ACTIONS(6440), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7386), 3, + ACTIONS(6442), 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(5869), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212244,58 +201145,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [158197] = 19, + [149223] = 14, ACTIONS(71), 1, sym_comment, - ACTIONS(6866), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(5871), 1, anon_sym_EQ, - ACTIONS(7338), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, - anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(6426), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(6428), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(6430), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(6444), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, - anon_sym_EQ_TILDE, - ACTIONS(7364), 1, - anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(6418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(6432), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(6434), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(6436), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(6438), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(6440), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(6442), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(5869), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212307,32 +201195,46 @@ 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, + [149289] = 13, ACTIONS(71), 1, sym_comment, - ACTIONS(7388), 1, + ACTIONS(6428), 1, + anon_sym_CARET, + ACTIONS(6430), 1, + anon_sym_AMP, + ACTIONS(6444), 1, anon_sym_STAR_STAR, - ACTIONS(7366), 2, + ACTIONS(5871), 2, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(6418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7382), 2, + ACTIONS(6432), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6434), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6436), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6438), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7384), 2, + ACTIONS(6440), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7386), 3, + ACTIONS(6442), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6993), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6991), 20, + ACTIONS(5869), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212346,59 +201248,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [158327] = 19, + [149353] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6868), 1, + ACTIONS(5957), 1, anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(6416), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(6422), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(6424), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(6426), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(6428), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(6430), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(6444), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(6446), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(6448), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(6418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(6432), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(6434), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(6436), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(6438), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(6440), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(6442), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(6420), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212410,23 +201308,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [158403] = 7, + [149429] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7388), 1, - anon_sym_STAR_STAR, - ACTIONS(7366), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7384), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7386), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6993), 8, - anon_sym_EQ, + ACTIONS(1304), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -212434,7 +201319,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6991), 20, + anon_sym_PLUS, + anon_sym_DASH, + 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, @@ -212447,60 +201341,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [158455] = 19, + [149473] = 12, ACTIONS(71), 1, sym_comment, - ACTIONS(6870), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, - anon_sym_EQ, - ACTIONS(7338), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, - anon_sym_AMP_AMP, - ACTIONS(7342), 1, - anon_sym_PIPE, - ACTIONS(7344), 1, - anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(6430), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(6444), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, - anon_sym_EQ_TILDE, - ACTIONS(7364), 1, - anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(6418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(6432), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(6434), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(6436), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(6438), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(6440), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(5871), 3, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(6442), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(5869), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212512,30 +201394,57 @@ 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_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [149535] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7388), 1, - anon_sym_STAR_STAR, - ACTIONS(7366), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7386), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6993), 10, + ACTIONS(5897), 1, + anon_sym_RBRACK, + ACTIONS(6416), 1, anon_sym_EQ, + ACTIONS(6422), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6424), 1, + anon_sym_AMP_AMP, + ACTIONS(6426), 1, anon_sym_PIPE, + ACTIONS(6428), 1, anon_sym_CARET, + ACTIONS(6430), 1, anon_sym_AMP, + ACTIONS(6444), 1, + anon_sym_STAR_STAR, + ACTIONS(6446), 1, + anon_sym_EQ_TILDE, + ACTIONS(6448), 1, + anon_sym_QMARK, + ACTIONS(6418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6432), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6434), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6436), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6438), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6440), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6991), 20, + ACTIONS(6442), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6420), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212547,61 +201456,28 @@ 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, - [158581] = 19, + [149611] = 3, 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, + ACTIONS(1284), 13, anon_sym_PIPE, - ACTIONS(7344), 1, anon_sym_CARET, - ACTIONS(7346), 1, anon_sym_AMP, - ACTIONS(7360), 1, - anon_sym_STAR_STAR, - ACTIONS(7362), 1, - anon_sym_EQ_TILDE, - ACTIONS(7364), 1, - anon_sym_QMARK, - ACTIONS(7334), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7348), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7350), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7354), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + anon_sym_STAR_STAR, + ACTIONS(1286), 23, + anon_sym_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, @@ -212613,16 +201489,18 @@ 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_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [149655] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7388), 1, - anon_sym_STAR_STAR, - ACTIONS(7366), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6993), 13, - anon_sym_EQ, + ACTIONS(1288), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -212635,7 +201513,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6991), 20, + anon_sym_STAR_STAR, + ACTIONS(1290), 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, @@ -212648,60 +201531,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [158705] = 19, + [149699] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6874), 1, + ACTIONS(5959), 1, anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(6416), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(6422), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(6424), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(6426), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(6428), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(6430), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(6444), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(6446), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(6448), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(6418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(6432), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(6434), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(6436), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(6438), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(6440), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(6442), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(6420), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212713,13 +201595,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [158781] = 4, + [149775] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7366), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6993), 14, + ACTIONS(5772), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -212734,7 +201613,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6991), 20, + ACTIONS(5770), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212755,52 +201636,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [158827] = 19, + [149819] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6474), 1, + sym__special_character, + STATE(2888), 1, + aux_sym__literal_repeat1, + ACTIONS(1316), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1318), 22, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [149867] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6876), 1, + ACTIONS(5961), 1, anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(6416), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(6422), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(6424), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(6426), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(6428), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(6430), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(6444), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(6446), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(6448), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(6418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(6432), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(6434), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(6436), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(6438), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(6440), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(6442), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(6420), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212812,47 +201736,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [158903] = 15, + [149943] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7396), 1, + ACTIONS(5877), 1, + anon_sym_RBRACK, + ACTIONS(6416), 1, + anon_sym_EQ, + ACTIONS(6422), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6424), 1, + anon_sym_AMP_AMP, + ACTIONS(6426), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(6428), 1, anon_sym_CARET, - ACTIONS(7400), 1, + ACTIONS(6430), 1, anon_sym_AMP, - ACTIONS(7414), 1, + ACTIONS(6444), 1, anon_sym_STAR_STAR, - ACTIONS(7390), 2, + ACTIONS(6446), 1, + anon_sym_EQ_TILDE, + ACTIONS(6448), 1, + anon_sym_QMARK, + ACTIONS(6418), 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(6432), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7404), 2, + ACTIONS(6434), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7406), 2, + ACTIONS(6436), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7408), 2, + ACTIONS(6438), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7410), 2, + ACTIONS(6440), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7412), 3, + ACTIONS(6442), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7101), 13, - anon_sym_COMMA, + ACTIONS(6420), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212864,53 +201793,52 @@ 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, + [150019] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6878), 1, + ACTIONS(5963), 1, anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(6416), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(6422), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(6424), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(6426), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(6428), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(6430), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(6444), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(6446), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(6448), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(6418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(6432), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(6434), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(6436), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(6438), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(6440), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(6442), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(6420), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212922,44 +201850,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [159047] = 14, + [150095] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7396), 1, + ACTIONS(5778), 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(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_STAR_STAR, + ACTIONS(5776), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212972,54 +201883,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_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_RPAREN, - [159113] = 19, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [150139] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6880), 1, + ACTIONS(5899), 1, anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(6416), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(6422), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(6424), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(6426), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(6428), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(6430), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(6444), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(6446), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(6448), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(6418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(6432), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(6434), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(6436), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(6438), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(6440), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(6442), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(6420), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213031,41 +201948,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [159189] = 13, + [150215] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7396), 1, + ACTIONS(5965), 1, + anon_sym_RBRACK, + ACTIONS(6416), 1, + anon_sym_EQ, + ACTIONS(6422), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6424), 1, + anon_sym_AMP_AMP, + ACTIONS(6426), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(6428), 1, anon_sym_CARET, - ACTIONS(7400), 1, + ACTIONS(6430), 1, anon_sym_AMP, - ACTIONS(7414), 1, + ACTIONS(6444), 1, anon_sym_STAR_STAR, - ACTIONS(7390), 2, + ACTIONS(6446), 1, + anon_sym_EQ_TILDE, + ACTIONS(6448), 1, + anon_sym_QMARK, + ACTIONS(6418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7402), 2, + ACTIONS(6432), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7404), 2, + ACTIONS(6434), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7406), 2, + ACTIONS(6436), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7408), 2, + ACTIONS(6438), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7410), 2, + ACTIONS(6440), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7412), 3, + ACTIONS(6442), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7101), 17, - anon_sym_COMMA, + ACTIONS(6420), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213077,57 +202005,115 @@ 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_RPAREN, - [159253] = 19, + [150291] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5504), 1, + sym_word, + ACTIONS(5518), 1, + anon_sym_DOLLAR, + ACTIONS(5524), 1, + aux_sym_number_token1, + ACTIONS(5526), 1, + aux_sym_number_token2, + ACTIONS(5530), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5538), 1, + sym_test_operator, + ACTIONS(5540), 1, + sym_extglob_pattern, + ACTIONS(5542), 1, + sym__brace_start, + ACTIONS(5691), 1, + anon_sym_esac, + ACTIONS(6450), 1, + anon_sym_LPAREN, + ACTIONS(6454), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6456), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6458), 1, + sym__special_character, + ACTIONS(6460), 1, + anon_sym_DQUOTE, + ACTIONS(6464), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6466), 1, + anon_sym_BQUOTE, + ACTIONS(6468), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6008), 1, + aux_sym__literal_repeat1, + STATE(7033), 1, + sym_last_case_item, + ACTIONS(6462), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(6470), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3167), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6265), 2, + sym_concatenation, + sym__extglob_blob, + STATE(5926), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [150379] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6882), 1, + ACTIONS(5967), 1, anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(6416), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(6422), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(6424), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(6426), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(6428), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(6430), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(6444), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(6446), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(6448), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(6418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(6432), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(6434), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(6436), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(6438), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(6440), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(6442), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(6420), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213139,41 +202125,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [159329] = 13, + [150455] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3307), 1, + anon_sym_DQUOTE, + ACTIONS(6481), 1, + sym_variable_name, + STATE(4065), 1, + sym_string, + ACTIONS(1191), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(6479), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(6477), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + [150509] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7085), 1, + ACTIONS(5901), 1, + anon_sym_RBRACK, + ACTIONS(6416), 1, + anon_sym_EQ, + ACTIONS(6422), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6424), 1, + anon_sym_AMP_AMP, + ACTIONS(6426), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(6428), 1, anon_sym_CARET, - ACTIONS(7400), 1, + ACTIONS(6430), 1, anon_sym_AMP, - ACTIONS(7414), 1, + ACTIONS(6444), 1, anon_sym_STAR_STAR, - ACTIONS(7390), 2, + ACTIONS(6446), 1, + anon_sym_EQ_TILDE, + ACTIONS(6448), 1, + anon_sym_QMARK, + ACTIONS(6418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7402), 2, + ACTIONS(6432), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7404), 2, + ACTIONS(6434), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7406), 2, + ACTIONS(6436), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7408), 2, + ACTIONS(6438), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7410), 2, + ACTIONS(6440), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7412), 3, + ACTIONS(6442), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7101), 17, - anon_sym_COMMA, + ACTIONS(6420), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213185,57 +202228,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_RPAREN, - [159393] = 19, + [150585] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6884), 1, + ACTIONS(5971), 1, anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(6416), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(6422), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(6424), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(6426), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(6428), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(6430), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(6444), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(6446), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(6448), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(6418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(6432), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(6434), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(6436), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(6438), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(6440), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(6442), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(6420), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213247,52 +202285,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [159469] = 19, + [150661] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6886), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(6078), 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(6076), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213304,40 +202317,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [159545] = 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_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [150705] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(7400), 1, - anon_sym_AMP, - ACTIONS(7414), 1, - anon_sym_STAR_STAR, - ACTIONS(7085), 2, + ACTIONS(6491), 1, anon_sym_PIPE, + ACTIONS(6493), 1, anon_sym_CARET, - ACTIONS(7390), 2, + ACTIONS(6495), 1, + anon_sym_AMP, + ACTIONS(6509), 1, + anon_sym_STAR_STAR, + ACTIONS(6414), 2, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + ACTIONS(6483), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7402), 2, + ACTIONS(6487), 2, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + ACTIONS(6489), 2, + anon_sym_AMP_AMP, + anon_sym_DASHa, + ACTIONS(6497), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7404), 2, + ACTIONS(6499), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7406), 2, + ACTIONS(6501), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7408), 2, + ACTIONS(6503), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7410), 2, + ACTIONS(6505), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7412), 3, + ACTIONS(6507), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7101), 17, - anon_sym_COMMA, + ACTIONS(6485), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213349,57 +202380,28 @@ 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_RPAREN, - [159607] = 19, + [150775] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6888), 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(6331), 13, anon_sym_PIPE, - ACTIONS(7344), 1, anon_sym_CARET, - ACTIONS(7346), 1, anon_sym_AMP, - ACTIONS(7360), 1, - anon_sym_STAR_STAR, - ACTIONS(7362), 1, - anon_sym_EQ_TILDE, - ACTIONS(7364), 1, - anon_sym_QMARK, - ACTIONS(7334), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7348), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7350), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7354), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + anon_sym_STAR_STAR, + ACTIONS(6333), 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, @@ -213411,52 +202413,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [159683] = 19, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [150819] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6890), 1, + ACTIONS(5973), 1, anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(6416), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(6422), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(6424), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(6426), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(6428), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(6430), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(6444), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(6446), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(6448), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(6418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(6432), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(6434), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(6436), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(6438), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(6440), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(6442), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(6420), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213468,39 +202478,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [159759] = 11, + [150895] = 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(1264), 13, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(7406), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7408), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7410), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(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_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, @@ -213516,53 +202515,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASHo, anon_sym_AMP_AMP, anon_sym_DASHa, - anon_sym_RPAREN, - [159819] = 19, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [150939] = 3, 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, + ACTIONS(6323), 13, anon_sym_PIPE, - ACTIONS(7344), 1, anon_sym_CARET, - ACTIONS(7346), 1, anon_sym_AMP, - ACTIONS(7360), 1, - anon_sym_STAR_STAR, - ACTIONS(7362), 1, - anon_sym_EQ_TILDE, - ACTIONS(7364), 1, - anon_sym_QMARK, - ACTIONS(7334), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7348), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7350), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7354), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + anon_sym_STAR_STAR, + ACTIONS(6325), 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, @@ -213574,52 +202552,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [159895] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6894), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, - anon_sym_EQ, - ACTIONS(7338), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + anon_sym_DASHo, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [150983] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6331), 13, anon_sym_PIPE, - ACTIONS(7344), 1, anon_sym_CARET, - ACTIONS(7346), 1, anon_sym_AMP, - ACTIONS(7360), 1, - anon_sym_STAR_STAR, - ACTIONS(7362), 1, - anon_sym_EQ_TILDE, - ACTIONS(7364), 1, - anon_sym_QMARK, - ACTIONS(7334), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7348), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7350), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7354), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + anon_sym_STAR_STAR, + ACTIONS(6333), 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, @@ -213631,98 +202593,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [159971] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1191), 1, - sym_file_descriptor, - ACTIONS(3512), 1, - anon_sym_DQUOTE, - ACTIONS(7420), 1, - sym_variable_name, - STATE(4218), 1, - sym_string, - ACTIONS(7418), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7416), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 22, - anon_sym_SEMI, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_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, - [160025] = 19, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [151027] = 8, 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, - anon_sym_PIPE, - ACTIONS(7344), 1, - anon_sym_CARET, - ACTIONS(7346), 1, - anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(6519), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, - anon_sym_EQ_TILDE, - ACTIONS(7364), 1, - anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(6511), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7350), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7352), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(6513), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(6515), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(6517), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(5875), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5873), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213734,36 +202638,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [160101] = 10, + anon_sym_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, + [151081] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(7414), 1, - anon_sym_STAR_STAR, - ACTIONS(7390), 2, + ACTIONS(6511), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7404), 2, + ACTIONS(5875), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(7406), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7408), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7410), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(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), 19, - anon_sym_COMMA, + anon_sym_STAR_STAR, + ACTIONS(5873), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213776,58 +202681,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_RPAREN, - [160159] = 19, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [151127] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(6898), 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(6519), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, - anon_sym_EQ_TILDE, - ACTIONS(7364), 1, - anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(6511), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7350), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7352), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(6513), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(6515), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(6517), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(5875), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5873), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213839,32 +202726,36 @@ 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_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [151181] = 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(7408), 2, + ACTIONS(6008), 14, + anon_sym_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(7410), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7412), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7085), 5, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7101), 21, - anon_sym_COMMA, + anon_sym_STAR_STAR, + ACTIONS(6006), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213877,60 +202768,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_RPAREN, - [160289] = 19, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [151225] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6900), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(6084), 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(6082), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213942,22 +202808,19 @@ 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_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [151269] = 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(1292), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -213965,8 +202828,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7101), 21, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1294), 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, @@ -213986,53 +202858,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - [160417] = 19, + [151313] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6902), 1, + ACTIONS(5975), 1, anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(6416), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(6422), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(6424), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(6426), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(6428), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(6430), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(6444), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(6446), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(6448), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(6418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(6432), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(6434), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(6436), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(6438), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(6440), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(6442), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(6420), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214044,19 +202915,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [160493] = 6, + [151389] = 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(7412), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7085), 9, + ACTIONS(1276), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -214066,8 +202929,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7101), 21, - anon_sym_COMMA, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1278), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214080,60 +202948,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_RPAREN, - [160543] = 19, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [151433] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6904), 1, + ACTIONS(5903), 1, anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(6416), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(6422), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(6424), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(6426), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(6428), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(6430), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(6444), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(6446), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(6448), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(6418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(6432), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(6434), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(6436), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(6438), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(6440), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(6442), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(6420), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214145,52 +203013,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [160619] = 19, + [151509] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6906), 1, + ACTIONS(5977), 1, anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(6416), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(6422), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(6424), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(6426), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(6428), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(6430), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(6444), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(6446), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(6448), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(6418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(6432), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(6434), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(6436), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(6438), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(6440), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(6442), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(6420), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214202,96 +203070,52 @@ static const uint16_t ts_small_parse_table[] = { 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, - 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, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_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, + [151585] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6908), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(5835), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(5841), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(5843), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(5845), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(5847), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(5849), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(5863), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(5865), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(5867), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(6521), 1, + anon_sym_COLON, + ACTIONS(5837), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(5851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(5855), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(5857), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(5859), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214303,93 +203127,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [160821] = 3, + [151661] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1272), 14, - anon_sym_EQ, + ACTIONS(6523), 1, + sym__special_character, + STATE(2888), 1, + aux_sym__literal_repeat1, + ACTIONS(4481), 12, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1274), 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, + sym_word, + ACTIONS(4483), 22, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [160865] = 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, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [151709] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6910), 1, + ACTIONS(5979), 1, anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(6416), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(6422), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(6424), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(6426), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(6428), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(6430), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(6444), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(6446), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(6448), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(6418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(6432), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(6434), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(6436), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(6438), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(6440), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(6442), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(6420), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214401,15 +203227,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [160941] = 5, + [151785] = 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(1284), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -214422,8 +203243,11 @@ 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(1286), 23, anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214444,15 +203268,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_RPAREN, - [160989] = 5, + [151829] = 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(1264), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -214465,8 +203285,10 @@ 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(1266), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214479,60 +203301,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_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, + [151873] = 11, 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, - anon_sym_PIPE, - ACTIONS(7344), 1, - anon_sym_CARET, - ACTIONS(7346), 1, - anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(6444), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, - anon_sym_EQ_TILDE, - ACTIONS(7364), 1, - anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(6418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(6432), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(6434), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(6436), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(6438), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(6440), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(6442), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(5871), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(5869), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214544,96 +203353,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [161113] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7422), 1, - aux_sym_concatenation_token1, - ACTIONS(7424), 1, - sym__concat, - STATE(3279), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5132), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 29, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [161163] = 19, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [151933] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6914), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(1248), 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(1250), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214645,96 +203390,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [161239] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7422), 1, - aux_sym_concatenation_token1, - ACTIONS(7424), 1, - sym__concat, - STATE(3281), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5136), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5134), 29, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [161289] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6916), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, - anon_sym_EQ, - ACTIONS(7338), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, - 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_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [151977] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6098), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7354), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + anon_sym_STAR_STAR, + ACTIONS(6096), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214746,52 +203431,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [161365] = 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, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [152021] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6918), 1, + ACTIONS(5905), 1, anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(6416), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(6422), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(6424), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(6426), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(6428), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(6430), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(6444), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(6446), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(6448), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(6418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(6432), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(6434), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(6436), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(6438), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(6440), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(6442), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(6420), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214803,52 +203497,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [161441] = 19, + [152097] = 10, ACTIONS(71), 1, sym_comment, - ACTIONS(6920), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, - anon_sym_EQ, - ACTIONS(7338), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, - anon_sym_AMP_AMP, - ACTIONS(7342), 1, - anon_sym_PIPE, - ACTIONS(7344), 1, - anon_sym_CARET, - ACTIONS(7346), 1, - anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(6444), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, - anon_sym_EQ_TILDE, - ACTIONS(7364), 1, - anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(6418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(6434), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(6436), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(6438), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(6440), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(6442), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(5871), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(5869), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214860,52 +203538,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [161517] = 19, + 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, + [152155] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6922), 1, + ACTIONS(5981), 1, anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(6416), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(6422), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(6424), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(6426), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(6428), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(6430), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(6444), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(6446), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(6448), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(6418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(6432), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(6434), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(6436), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(6438), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(6440), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(6442), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(6420), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214917,7 +203602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [161593] = 3, + [152231] = 3, ACTIONS(71), 1, sym_comment, ACTIONS(1264), 13, @@ -214935,7 +203620,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -214958,52 +203642,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [161637] = 19, + anon_sym_RPAREN, + [152275] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6924), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, - anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(6523), 1, + sym__special_character, + STATE(2888), 1, + aux_sym__literal_repeat1, + ACTIONS(4489), 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(4491), 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, + [152323] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1288), 13, anon_sym_PIPE, - ACTIONS(7344), 1, anon_sym_CARET, - ACTIONS(7346), 1, anon_sym_AMP, - ACTIONS(7360), 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(7362), 1, - anon_sym_EQ_TILDE, - ACTIONS(7364), 1, - anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(1290), 23, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 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_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7352), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + anon_sym_RPAREN, + [152367] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6444), 1, + anon_sym_STAR_STAR, + ACTIONS(6418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6438), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(6440), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(6442), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(5871), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5869), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215015,13 +203764,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [161713] = 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [152421] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(7334), 2, + ACTIONS(6444), 1, + anon_sym_STAR_STAR, + ACTIONS(6418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6993), 14, + ACTIONS(6440), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6442), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5871), 8, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -215030,13 +203797,51 @@ 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, + ACTIONS(5869), 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, + [152473] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6444), 1, + anon_sym_STAR_STAR, + ACTIONS(6418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6442), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6991), 20, + ACTIONS(5871), 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(5869), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215057,52 +203862,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [161759] = 19, + [152523] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6926), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(6444), 1, + anon_sym_STAR_STAR, + ACTIONS(6418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5871), 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_LT, + anon_sym_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(5869), 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, - ACTIONS(7364), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + [152571] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(5871), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7354), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + anon_sym_STAR_STAR, + ACTIONS(5869), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215114,11 +203938,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [161835] = 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [152617] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 14, - anon_sym_EQ, + ACTIONS(1292), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -215132,7 +203964,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1266), 22, + ACTIONS(1294), 23, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -215147,18 +203980,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, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [161879] = 3, + [152661] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1280), 14, + ACTIONS(1260), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -215173,7 +204006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1282), 22, + ACTIONS(1262), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -215196,52 +204029,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [161923] = 19, + [152705] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6932), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, - anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(6022), 1, + anon_sym_STAR_STAR, + ACTIONS(6024), 1, + sym_test_operator, + ACTIONS(6030), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(6032), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(6034), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(6036), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(6038), 1, anon_sym_AMP, - ACTIONS(7360), 1, - anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(6048), 1, + anon_sym_EQ, + ACTIONS(6050), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(6527), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(5760), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(6016), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6018), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6040), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(6042), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(6044), 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(6020), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(6525), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215253,52 +204086,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [161999] = 19, + [152781] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6934), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, - anon_sym_EQ, - ACTIONS(7338), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, - anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(1260), 13, anon_sym_PIPE, - ACTIONS(7344), 1, anon_sym_CARET, - ACTIONS(7346), 1, anon_sym_AMP, - ACTIONS(7360), 1, - anon_sym_STAR_STAR, - ACTIONS(7362), 1, - anon_sym_EQ_TILDE, - ACTIONS(7364), 1, - anon_sym_QMARK, - ACTIONS(7334), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7348), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7350), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7354), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + anon_sym_STAR_STAR, + ACTIONS(1262), 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, @@ -215310,10 +204119,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [162075] = 3, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [152825] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 13, + ACTIONS(1296), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -215327,7 +204144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1294), 23, + ACTIONS(1298), 23, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -215351,52 +204168,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [162119] = 19, + [152869] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6940), 1, + ACTIONS(5983), 1, anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(6416), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(6422), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(6424), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(6426), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(6428), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(6430), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(6444), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(6446), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(6448), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(6418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(6432), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(6434), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(6436), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(6438), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(6440), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(6442), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(6420), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215408,27 +204225,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [162195] = 3, + [152945] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1197), 1, + sym_file_descriptor, + ACTIONS(3307), 1, + anon_sym_DQUOTE, + ACTIONS(6481), 1, + sym_variable_name, + STATE(4065), 1, + sym_string, + ACTIONS(6479), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(6477), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [152999] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(6653), 14, - anon_sym_EQ, + ACTIONS(6537), 1, anon_sym_PIPE, + ACTIONS(6539), 1, anon_sym_CARET, + ACTIONS(6541), 1, anon_sym_AMP, + ACTIONS(6555), 1, + anon_sym_STAR_STAR, + ACTIONS(6414), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(6529), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6533), 2, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + ACTIONS(6535), 2, + anon_sym_AMP_AMP, + anon_sym_DASHa, + ACTIONS(6543), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6545), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6547), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6549), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6551), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6553), 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(6531), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215440,61 +204325,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [153069] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5985), 1, + anon_sym_RBRACK, + ACTIONS(6416), 1, + anon_sym_EQ, + ACTIONS(6422), 1, anon_sym_PIPE_PIPE, + ACTIONS(6424), 1, anon_sym_AMP_AMP, + ACTIONS(6426), 1, + anon_sym_PIPE, + ACTIONS(6428), 1, + anon_sym_CARET, + ACTIONS(6430), 1, + anon_sym_AMP, + ACTIONS(6444), 1, + anon_sym_STAR_STAR, + ACTIONS(6446), 1, + anon_sym_EQ_TILDE, + ACTIONS(6448), 1, + anon_sym_QMARK, + ACTIONS(6418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6432), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6434), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6436), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [162239] = 19, + ACTIONS(6438), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6440), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6442), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6420), 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, + [153145] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6942), 1, + ACTIONS(5907), 1, anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(6416), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(6422), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(6424), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(6426), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(6428), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(6430), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(6444), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(6446), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(6448), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(6418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(6432), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(6434), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(6436), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(6438), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(6440), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(6442), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(6420), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215506,10 +204439,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [162315] = 3, + [153221] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1272), 13, + ACTIONS(1276), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -215523,8 +204456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1274), 23, - anon_sym_RPAREN_RPAREN, + ACTIONS(1278), 23, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -215547,52 +204479,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [162359] = 19, + anon_sym_RPAREN, + [153265] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6944), 1, + ACTIONS(5987), 1, anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(6416), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(6422), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(6424), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(6426), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(6428), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(6430), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(6444), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(6446), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(6448), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(6418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(6432), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(6434), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(6436), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(6438), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(6440), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(6442), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(6420), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215604,10 +204537,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [162435] = 3, + [153341] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6641), 14, + ACTIONS(1284), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -215622,7 +204555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6639), 22, + ACTIONS(1286), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -215642,55 +204575,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [162479] = 19, + [153385] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6946), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(1288), 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(1290), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215702,10 +204610,19 @@ 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_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [153429] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7214), 13, + ACTIONS(1280), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -215719,7 +204636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(7216), 23, + ACTIONS(1282), 23, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -215743,52 +204660,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [162599] = 19, + [153473] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6948), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(1292), 14, anon_sym_EQ, - ACTIONS(7338), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, - anon_sym_AMP_AMP, - ACTIONS(7342), 1, anon_sym_PIPE, - ACTIONS(7344), 1, anon_sym_CARET, - ACTIONS(7346), 1, anon_sym_AMP, - ACTIONS(7360), 1, - anon_sym_STAR_STAR, - ACTIONS(7362), 1, - anon_sym_EQ_TILDE, - ACTIONS(7364), 1, - anon_sym_QMARK, - ACTIONS(7334), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7348), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7350), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7354), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + anon_sym_STAR_STAR, + ACTIONS(1294), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215800,48 +204692,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [162675] = 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_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [153517] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1191), 1, + sym_file_descriptor, + ACTIONS(3307), 1, + anon_sym_DQUOTE, + ACTIONS(6481), 1, + sym_variable_name, + STATE(4065), 1, + sym_string, + ACTIONS(6479), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(6477), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_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, + [153571] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7432), 1, + ACTIONS(6331), 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_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(7426), 2, + ACTIONS(6333), 23, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7428), 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_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_RPAREN, + [153615] = 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, - 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_STAR_STAR, + ACTIONS(1298), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215853,52 +204820,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [162743] = 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_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [153659] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6950), 1, + ACTIONS(5991), 1, anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(6416), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(6422), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(6424), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(6426), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(6428), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(6430), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(6444), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(6446), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(6448), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(6418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(6432), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(6434), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(6436), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(6438), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(6440), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(6442), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(6420), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215910,45 +204886,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [162819] = 14, + [153735] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7432), 1, + ACTIONS(5909), 1, + anon_sym_RBRACK, + ACTIONS(6416), 1, + anon_sym_EQ, + ACTIONS(6422), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6424), 1, + anon_sym_AMP_AMP, + ACTIONS(6426), 1, anon_sym_PIPE, - ACTIONS(7434), 1, + ACTIONS(6428), 1, anon_sym_CARET, - ACTIONS(7436), 1, + ACTIONS(6430), 1, anon_sym_AMP, - ACTIONS(7450), 1, + ACTIONS(6444), 1, anon_sym_STAR_STAR, - ACTIONS(7426), 2, + ACTIONS(6446), 1, + anon_sym_EQ_TILDE, + ACTIONS(6448), 1, + anon_sym_QMARK, + ACTIONS(6418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7430), 2, - anon_sym_AMP_AMP, - anon_sym_DASHa, - ACTIONS(7438), 2, + ACTIONS(6432), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7440), 2, + ACTIONS(6434), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7442), 2, + ACTIONS(6436), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7444), 2, + ACTIONS(6438), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7446), 2, + ACTIONS(6440), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7448), 3, + ACTIONS(6442), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7101), 15, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(6420), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215960,54 +204943,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, - [162885] = 19, + [153811] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6952), 1, + ACTIONS(5993), 1, anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(6416), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(6422), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(6424), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(6426), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(6428), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(6430), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(6444), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(6446), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(6448), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(6418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(6432), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(6434), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(6436), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(6438), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(6440), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(6442), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(6420), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216019,27 +205000,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [162961] = 3, + [153887] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 14, + ACTIONS(5161), 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(5163), 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, + [153931] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4899), 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(4901), 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, + [153975] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6519), 1, + anon_sym_STAR_STAR, + ACTIONS(6557), 1, anon_sym_EQ, + ACTIONS(6561), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6563), 1, + anon_sym_AMP_AMP, + ACTIONS(6565), 1, anon_sym_PIPE, + ACTIONS(6567), 1, anon_sym_CARET, + ACTIONS(6569), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(6577), 1, + anon_sym_RPAREN, + ACTIONS(6579), 1, + anon_sym_EQ_TILDE, + ACTIONS(6581), 1, + anon_sym_QMARK, + ACTIONS(6511), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6513), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6515), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6571), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6573), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6575), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6517), 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(6559), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216051,61 +205139,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [163005] = 19, + [154051] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6954), 1, + ACTIONS(5995), 1, anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(6416), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(6422), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(6424), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(6426), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(6428), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(6430), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(6444), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(6446), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(6448), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(6418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(6432), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(6434), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(6436), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(6438), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(6440), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(6442), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(6420), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216117,10 +205196,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [163081] = 3, + [154127] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7138), 13, + ACTIONS(1248), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -216134,7 +205213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(7140), 23, + ACTIONS(1250), 23, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -216158,52 +205237,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_RPAREN, - [163125] = 19, + [154171] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6956), 1, + ACTIONS(5911), 1, anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(6416), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(6422), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(6424), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(6426), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(6428), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(6430), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(6444), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(6446), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(6448), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(6418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(6432), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(6434), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(6436), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(6438), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(6440), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(6442), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(6420), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216215,46 +205294,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [163201] = 16, + [154247] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6770), 1, + ACTIONS(5969), 1, + anon_sym_RBRACK, + ACTIONS(6416), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(6422), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(6424), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(6426), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(6428), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(6430), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(6444), 1, anon_sym_STAR_STAR, - ACTIONS(7334), 2, + ACTIONS(6446), 1, + anon_sym_EQ_TILDE, + ACTIONS(6448), 1, + anon_sym_QMARK, + ACTIONS(6418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(6432), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(6434), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(6436), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(6438), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(6440), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(6442), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6768), 14, + ACTIONS(6420), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216266,45 +205351,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [163271] = 13, + [154323] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7432), 1, + ACTIONS(5835), 1, + anon_sym_EQ, + ACTIONS(5841), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5843), 1, + anon_sym_AMP_AMP, + ACTIONS(5845), 1, anon_sym_PIPE, - ACTIONS(7434), 1, + ACTIONS(5847), 1, anon_sym_CARET, - ACTIONS(7436), 1, + ACTIONS(5849), 1, anon_sym_AMP, - ACTIONS(7450), 1, + ACTIONS(5863), 1, anon_sym_STAR_STAR, - ACTIONS(7426), 2, + ACTIONS(5865), 1, + anon_sym_EQ_TILDE, + ACTIONS(5867), 1, + anon_sym_QMARK, + ACTIONS(6583), 1, + anon_sym_COLON, + ACTIONS(5837), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7438), 2, + ACTIONS(5851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7440), 2, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7442), 2, + ACTIONS(5855), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7444), 2, + ACTIONS(5857), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7446), 2, + ACTIONS(5859), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7448), 3, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7101), 17, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216316,56 +205408,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - [163335] = 19, + [154399] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6958), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, - anon_sym_EQ, - ACTIONS(7338), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, - anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(6483), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6378), 13, anon_sym_PIPE, - ACTIONS(7344), 1, anon_sym_CARET, - ACTIONS(7346), 1, anon_sym_AMP, - ACTIONS(7360), 1, - anon_sym_STAR_STAR, - ACTIONS(7362), 1, - anon_sym_EQ_TILDE, - ACTIONS(7364), 1, - anon_sym_QMARK, - ACTIONS(7334), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7348), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7350), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7354), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + anon_sym_STAR_STAR, + ACTIONS(6380), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216377,60 +205442,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [163411] = 12, - 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, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(7466), 13, - sym_test_operator, - sym__brace_start, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [163473] = 3, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [154445] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1280), 13, + ACTIONS(6384), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -216444,7 +205467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1282), 23, + ACTIONS(6386), 23, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -216468,52 +205491,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [163517] = 19, + [154489] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6960), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(6088), 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(6086), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216525,42 +205523,57 @@ 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_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [154533] = 17, ACTIONS(71), 1, sym_comment, - ACTIONS(7085), 1, + ACTIONS(5871), 1, + anon_sym_EQ, + ACTIONS(6519), 1, + anon_sym_STAR_STAR, + ACTIONS(6561), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6563), 1, + anon_sym_AMP_AMP, + ACTIONS(6565), 1, anon_sym_PIPE, - ACTIONS(7434), 1, + ACTIONS(6567), 1, anon_sym_CARET, - ACTIONS(7436), 1, + ACTIONS(6569), 1, anon_sym_AMP, - ACTIONS(7450), 1, - anon_sym_STAR_STAR, - ACTIONS(7426), 2, + ACTIONS(6581), 1, + anon_sym_QMARK, + ACTIONS(6511), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7438), 2, + ACTIONS(6513), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6515), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6571), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7440), 2, + ACTIONS(6573), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7442), 2, + ACTIONS(6575), 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(6517), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7101), 17, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(5869), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216572,45 +205585,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - [163657] = 12, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + [154605] = 18, ACTIONS(71), 1, sym_comment, - ACTIONS(7436), 1, - anon_sym_AMP, - ACTIONS(7450), 1, + ACTIONS(6519), 1, anon_sym_STAR_STAR, - ACTIONS(7085), 2, + ACTIONS(6557), 1, + anon_sym_EQ, + ACTIONS(6561), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6563), 1, + anon_sym_AMP_AMP, + ACTIONS(6565), 1, anon_sym_PIPE, + ACTIONS(6567), 1, anon_sym_CARET, - ACTIONS(7426), 2, + ACTIONS(6569), 1, + anon_sym_AMP, + ACTIONS(6579), 1, + anon_sym_EQ_TILDE, + ACTIONS(6581), 1, + anon_sym_QMARK, + ACTIONS(6511), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7438), 2, + ACTIONS(6513), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6515), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6571), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7440), 2, + ACTIONS(6573), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7442), 2, + ACTIONS(6575), 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(6517), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7101), 17, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(5869), 12, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216622,56 +205642,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - [163719] = 19, + anon_sym_RPAREN, + [154679] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6966), 1, + ACTIONS(5913), 1, anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(6416), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(6422), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(6424), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(6426), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(6428), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(6430), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(6444), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(6446), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(6448), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(6418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(6432), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(6434), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(6436), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(6438), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(6440), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(6442), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(6420), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216683,40 +205700,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [163795] = 11, + [154755] = 15, ACTIONS(71), 1, sym_comment, - ACTIONS(7450), 1, + ACTIONS(5871), 1, + anon_sym_EQ, + ACTIONS(6519), 1, anon_sym_STAR_STAR, - ACTIONS(7426), 2, + ACTIONS(6563), 1, + anon_sym_AMP_AMP, + ACTIONS(6565), 1, + anon_sym_PIPE, + ACTIONS(6567), 1, + anon_sym_CARET, + ACTIONS(6569), 1, + anon_sym_AMP, + ACTIONS(6511), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7438), 2, + ACTIONS(6513), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6515), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6571), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7440), 2, + ACTIONS(6573), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7442), 2, + ACTIONS(6575), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7444), 2, + ACTIONS(6517), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5869), 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, + [154823] = 14, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5871), 1, + anon_sym_EQ, + ACTIONS(6519), 1, + anon_sym_STAR_STAR, + ACTIONS(6565), 1, + anon_sym_PIPE, + ACTIONS(6567), 1, + anon_sym_CARET, + ACTIONS(6569), 1, + anon_sym_AMP, + ACTIONS(6511), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6513), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7446), 2, + ACTIONS(6515), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7085), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(7448), 3, + ACTIONS(6571), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6573), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6575), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6517), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7101), 17, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(5869), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216729,40 +205801,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - [163855] = 10, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [154889] = 13, ACTIONS(71), 1, sym_comment, - ACTIONS(7450), 1, + ACTIONS(6519), 1, anon_sym_STAR_STAR, - ACTIONS(7426), 2, + ACTIONS(6567), 1, + anon_sym_CARET, + ACTIONS(6569), 1, + anon_sym_AMP, + ACTIONS(5871), 2, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(6511), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7440), 2, + ACTIONS(6513), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6515), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6571), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6573), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7442), 2, + ACTIONS(6575), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7444), 2, + ACTIONS(6517), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5869), 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, + [154953] = 12, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6519), 1, + anon_sym_STAR_STAR, + ACTIONS(6569), 1, + anon_sym_AMP, + ACTIONS(6511), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6513), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7446), 2, + ACTIONS(6515), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7085), 3, + ACTIONS(6571), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6573), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6575), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5871), 3, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, - anon_sym_AMP, - ACTIONS(7448), 3, + ACTIONS(6517), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7101), 19, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(5869), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216775,57 +205902,43 @@ 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_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [155015] = 11, ACTIONS(71), 1, sym_comment, - ACTIONS(6968), 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(6519), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, - anon_sym_EQ_TILDE, - ACTIONS(7364), 1, - anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(6511), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(6513), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6515), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6571), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(6573), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(6575), 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(6517), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(5871), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(5869), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216837,33 +205950,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [163989] = 8, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [155075] = 10, ACTIONS(71), 1, sym_comment, - ACTIONS(7450), 1, + ACTIONS(6519), 1, anon_sym_STAR_STAR, - ACTIONS(7426), 2, + ACTIONS(6511), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7444), 2, + ACTIONS(6513), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7446), 2, + ACTIONS(6515), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7448), 3, + ACTIONS(6573), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6575), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6517), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7085), 5, + ACTIONS(5871), 4, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7101), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(5869), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216876,59 +205997,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [164043] = 19, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [155133] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(6970), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, - anon_sym_EQ, - ACTIONS(7338), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, - anon_sym_AMP_AMP, - ACTIONS(7342), 1, - anon_sym_PIPE, - ACTIONS(7344), 1, - anon_sym_CARET, - ACTIONS(7346), 1, - anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(6519), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, - anon_sym_EQ_TILDE, - ACTIONS(7364), 1, - anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(6511), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7350), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7352), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(6513), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(6515), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(6517), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(5871), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5869), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216940,22 +206040,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [164119] = 7, + anon_sym_PIPE_PIPE, + anon_sym_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, + [155187] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(7450), 1, + ACTIONS(6519), 1, anon_sym_STAR_STAR, - ACTIONS(7426), 2, + ACTIONS(6511), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7446), 2, + ACTIONS(6515), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7448), 3, + ACTIONS(6517), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7085), 7, + ACTIONS(5871), 8, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -216963,9 +206073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7101), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(5869), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216978,59 +206086,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [164171] = 19, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [155239] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(6972), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(6519), 1, + anon_sym_STAR_STAR, + ACTIONS(6511), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6517), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5871), 10, 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(5869), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217042,10 +206129,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [164247] = 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [155289] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 14, + ACTIONS(6519), 1, + anon_sym_STAR_STAR, + ACTIONS(6511), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5871), 13, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -217059,10 +206160,7 @@ 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(5869), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217083,88 +206181,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [164291] = 19, + [155337] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6974), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(1300), 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, - [164367] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7450), 1, anon_sym_STAR_STAR, - ACTIONS(7426), 2, + ACTIONS(1302), 22, 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, @@ -217177,59 +206214,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [164417] = 19, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [155381] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6976), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(1304), 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(1306), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217241,15 +206254,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [164493] = 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, + [155425] = 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(7085), 12, + ACTIONS(1300), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -217262,9 +206280,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7101), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + anon_sym_STAR_STAR, + ACTIONS(1302), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217277,59 +206296,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [164541] = 19, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [155469] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6978), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(5835), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(5841), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(5843), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(5845), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(5847), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(5849), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(5863), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(5865), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(5867), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(6112), 1, + anon_sym_COMMA, + ACTIONS(5837), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(5851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(5855), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(5857), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(5859), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217341,96 +206361,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [164617] = 5, + [155545] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(7450), 1, - anon_sym_STAR_STAR, - ACTIONS(7426), 2, + ACTIONS(6511), 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, - 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, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_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, - [164665] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7474), 1, - sym__special_character, - STATE(3239), 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), 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, - [164713] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1276), 14, + ACTIONS(5871), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -217445,9 +206382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1278), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5869), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217468,21 +206403,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [164757] = 8, + [155591] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1197), 1, sym_file_descriptor, - ACTIONS(3482), 1, + ACTIONS(3307), 1, anon_sym_DQUOTE, - ACTIONS(7480), 1, + ACTIONS(6481), 1, sym_variable_name, - STATE(4595), 1, + STATE(4065), 1, sym_string, - ACTIONS(7478), 2, + ACTIONS(6479), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7476), 8, + ACTIONS(6477), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -217501,9 +206436,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, @@ -217514,73 +206448,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, - [164811] = 8, - ACTIONS(3), 1, + anon_sym_LT_LT_LT, + [155645] = 5, + ACTIONS(71), 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, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(6523), 1, + sym__special_character, + STATE(2888), 1, + aux_sym__literal_repeat1, + ACTIONS(4895), 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_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(4897), 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, - [164865] = 3, + 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, + [155693] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(1288), 14, + ACTIONS(5915), 1, + anon_sym_RBRACK, + ACTIONS(6416), 1, anon_sym_EQ, + ACTIONS(6422), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6424), 1, + anon_sym_AMP_AMP, + ACTIONS(6426), 1, anon_sym_PIPE, + ACTIONS(6428), 1, anon_sym_CARET, + ACTIONS(6430), 1, anon_sym_AMP, + ACTIONS(6444), 1, + anon_sym_STAR_STAR, + ACTIONS(6446), 1, + anon_sym_EQ_TILDE, + ACTIONS(6448), 1, + anon_sym_QMARK, + ACTIONS(6418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6432), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6434), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6436), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6438), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6440), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6442), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1290), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6420), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217592,36 +206549,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [164909] = 3, + [155769] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(1272), 14, + ACTIONS(5887), 1, + anon_sym_RBRACK, + ACTIONS(6416), 1, anon_sym_EQ, + ACTIONS(6422), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6424), 1, + anon_sym_AMP_AMP, + ACTIONS(6426), 1, anon_sym_PIPE, + ACTIONS(6428), 1, anon_sym_CARET, + ACTIONS(6430), 1, anon_sym_AMP, + ACTIONS(6444), 1, + anon_sym_STAR_STAR, + ACTIONS(6446), 1, + anon_sym_EQ_TILDE, + ACTIONS(6448), 1, + anon_sym_QMARK, + ACTIONS(6418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6432), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6434), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6436), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6438), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6440), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6442), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1274), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6420), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217633,76 +206606,22 @@ 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, - [164953] = 8, + [155845] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1197), 1, - sym_file_descriptor, - ACTIONS(7484), 1, + ACTIONS(3307), 1, anon_sym_DQUOTE, - ACTIONS(7488), 1, + ACTIONS(6481), 1, sym_variable_name, - STATE(4380), 1, + STATE(4065), 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, - anon_sym_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, - [165007] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1191), 1, + ACTIONS(1197), 2, sym_file_descriptor, - ACTIONS(7484), 1, - anon_sym_DQUOTE, - ACTIONS(7488), 1, - sym_variable_name, - STATE(4380), 1, - sym_string, - ACTIONS(7486), 2, + ts_builtin_sym_end, + ACTIONS(6479), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7482), 8, + ACTIONS(6477), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -217711,7 +206630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1183), 22, + ACTIONS(1195), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -217722,8 +206641,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -217734,28 +206651,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, - [165061] = 3, + anon_sym_LT_LT_LT, + [155899] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 13, + ACTIONS(5917), 1, + anon_sym_RBRACK, + ACTIONS(6416), 1, + anon_sym_EQ, + ACTIONS(6422), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6424), 1, + anon_sym_AMP_AMP, + ACTIONS(6426), 1, anon_sym_PIPE, + ACTIONS(6428), 1, anon_sym_CARET, + ACTIONS(6430), 1, anon_sym_AMP, + ACTIONS(6444), 1, + anon_sym_STAR_STAR, + ACTIONS(6446), 1, + anon_sym_EQ_TILDE, + ACTIONS(6448), 1, + anon_sym_QMARK, + ACTIONS(6418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6432), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6434), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6436), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6438), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6440), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6442), 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(6420), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217767,19 +206709,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_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, + [155975] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 14, - anon_sym_EQ, + ACTIONS(1260), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -217793,7 +206726,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1294), 22, + ACTIONS(1262), 23, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -217808,18 +206742,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, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [165149] = 3, + [156019] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 13, + ACTIONS(1284), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -217833,9 +206768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1298), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(1286), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -217850,74 +206783,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, - [165193] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6822), 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, - [165269] = 3, + [156063] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 13, + ACTIONS(6323), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -217931,8 +206808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1258), 23, - anon_sym_RPAREN_RPAREN, + ACTIONS(6325), 23, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -217955,109 +206831,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [165313] = 19, + anon_sym_RPAREN, + [156107] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7368), 1, - anon_sym_AMP_AMP, - ACTIONS(7370), 1, + ACTIONS(1260), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(7372), 1, anon_sym_CARET, - ACTIONS(7374), 1, anon_sym_AMP, - ACTIONS(7388), 1, - anon_sym_STAR_STAR, - ACTIONS(7490), 1, - anon_sym_EQ, - ACTIONS(7494), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7496), 1, - anon_sym_RPAREN, - ACTIONS(7498), 1, - anon_sym_EQ_TILDE, - ACTIONS(7500), 1, - anon_sym_QMARK, - ACTIONS(7366), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7376), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7378), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7380), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7382), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7384), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7386), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7492), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [165389] = 19, - 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, 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(7502), 1, - anon_sym_RPAREN, - ACTIONS(7366), 2, + ACTIONS(1262), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7376), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7378), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7380), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7382), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7384), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7386), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7492), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218069,51 +206864,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [165465] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1223), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1225), 23, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [165509] = 3, + 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, + [156151] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6726), 14, + ACTIONS(1296), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -218128,7 +206891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6724), 22, + ACTIONS(1298), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -218151,10 +206914,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [165553] = 3, + [156195] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6730), 14, + ACTIONS(1300), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -218169,7 +206932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6728), 22, + ACTIONS(1302), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -218192,10 +206955,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [165597] = 3, + [156239] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 14, + ACTIONS(1304), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -218210,7 +206973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1298), 22, + ACTIONS(1306), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -218230,55 +206993,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [165641] = 19, + [156283] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7000), 1, + ACTIONS(5919), 1, anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(6416), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(6422), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(6424), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(6426), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(6428), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(6430), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(6444), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(6446), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(6448), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(6418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(6432), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(6434), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(6436), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(6438), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(6440), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(6442), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(6420), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218290,66 +207053,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [165717] = 18, + [156359] = 3, 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, - anon_sym_STAR_STAR, - ACTIONS(7490), 1, + ACTIONS(1300), 14, 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, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7138), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -218363,9 +207071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(7140), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(1302), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -218380,254 +207086,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, - [165835] = 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_EQ_TILDE, - ACTIONS(6832), 1, - anon_sym_QMARK, - ACTIONS(7504), 1, - anon_sym_COLON, - 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, - [165911] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6770), 1, - anon_sym_EQ, - ACTIONS(7368), 1, anon_sym_AMP_AMP, - ACTIONS(7370), 1, - anon_sym_PIPE, - ACTIONS(7372), 1, - anon_sym_CARET, - ACTIONS(7374), 1, - anon_sym_AMP, - ACTIONS(7388), 1, - anon_sym_STAR_STAR, - ACTIONS(7494), 1, - anon_sym_PIPE_PIPE, - 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(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_RPAREN, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [165981] = 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(6420), 1, - anon_sym_esac, - ACTIONS(7506), 1, - anon_sym_LPAREN, - ACTIONS(7508), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, - 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(3330), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [166069] = 25, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6376), 1, - sym_word, - ACTIONS(6390), 1, - 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(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, - 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, + [156403] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1276), 14, + ACTIONS(6104), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -218642,7 +207112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1278), 22, + ACTIONS(6102), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -218665,127 +207135,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [166201] = 25, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6376), 1, - sym_word, - ACTIONS(6390), 1, - anon_sym_DOLLAR, - ACTIONS(6396), 1, - aux_sym_number_token1, - ACTIONS(6398), 1, - aux_sym_number_token2, - ACTIONS(6402), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, - sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, - sym__brace_start, - ACTIONS(7506), 1, - anon_sym_LPAREN, - ACTIONS(7508), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, - sym__special_character, - ACTIONS(7514), 1, - anon_sym_DQUOTE, - ACTIONS(7518), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, - anon_sym_BQUOTE, - ACTIONS(7522), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7526), 1, - anon_sym_esac, - STATE(6347), 1, - aux_sym__literal_repeat1, - STATE(6821), 1, - sym_last_case_item, - ACTIONS(7516), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7524), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3332), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [166289] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7396), 1, - anon_sym_PIPE, - ACTIONS(7398), 1, - anon_sym_CARET, - ACTIONS(7400), 1, - anon_sym_AMP, - ACTIONS(7414), 1, - anon_sym_STAR_STAR, - ACTIONS(7206), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - 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(7528), 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, - [166359] = 3, + [156447] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7125), 13, + ACTIONS(6331), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -218799,7 +207152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(7127), 23, + ACTIONS(6333), 23, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -218823,90 +207176,52 @@ static const uint16_t ts_small_parse_table[] = { 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, + [156491] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(1288), 14, + ACTIONS(5921), 1, + anon_sym_RBRACK, + ACTIONS(6416), 1, anon_sym_EQ, + ACTIONS(6422), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6424), 1, + anon_sym_AMP_AMP, + ACTIONS(6426), 1, anon_sym_PIPE, + ACTIONS(6428), 1, anon_sym_CARET, + ACTIONS(6430), 1, anon_sym_AMP, + ACTIONS(6444), 1, + anon_sym_STAR_STAR, + ACTIONS(6446), 1, + anon_sym_EQ_TILDE, + ACTIONS(6448), 1, + anon_sym_QMARK, + ACTIONS(6418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6432), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6434), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6436), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6438), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6440), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6442), 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_SLASH, + anon_sym_PERCENT, + ACTIONS(6420), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218918,69 +207233,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [166535] = 25, + [156567] = 25, ACTIONS(71), 1, sym_comment, - ACTIONS(6376), 1, + ACTIONS(5504), 1, sym_word, - ACTIONS(6390), 1, + ACTIONS(5518), 1, anon_sym_DOLLAR, - ACTIONS(6396), 1, + ACTIONS(5524), 1, aux_sym_number_token1, - ACTIONS(6398), 1, + ACTIONS(5526), 1, aux_sym_number_token2, - ACTIONS(6402), 1, + ACTIONS(5530), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, + ACTIONS(5538), 1, sym_test_operator, - ACTIONS(6412), 1, + ACTIONS(5540), 1, sym_extglob_pattern, - ACTIONS(6414), 1, + ACTIONS(5542), 1, sym__brace_start, - ACTIONS(7506), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(7508), 1, + ACTIONS(6454), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, + ACTIONS(6456), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, + ACTIONS(6458), 1, sym__special_character, - ACTIONS(7514), 1, + ACTIONS(6460), 1, anon_sym_DQUOTE, - ACTIONS(7518), 1, + ACTIONS(6464), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, + ACTIONS(6466), 1, anon_sym_BQUOTE, - ACTIONS(7522), 1, + ACTIONS(6468), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7532), 1, + ACTIONS(6585), 1, anon_sym_esac, - STATE(6347), 1, + STATE(6008), 1, aux_sym__literal_repeat1, - STATE(6880), 1, + STATE(6488), 1, sym_last_case_item, - ACTIONS(7516), 2, + ACTIONS(6462), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7524), 2, + ACTIONS(6470), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3347), 2, + STATE(3193), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(6599), 2, + STATE(6265), 2, sym_concatenation, sym__extglob_blob, - STATE(6223), 9, + STATE(5926), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -218990,10 +207296,10 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [166623] = 3, + [156655] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 14, + ACTIONS(5772), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -219008,7 +207314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1266), 22, + ACTIONS(5770), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -219031,10 +207337,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [166667] = 3, + [156699] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7210), 13, + ACTIONS(5778), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -219048,8 +207355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(7212), 23, - anon_sym_COMMA, + ACTIONS(5776), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -219064,18 +207370,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, - [166711] = 3, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [156743] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7125), 13, + ACTIONS(6347), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -219089,7 +207395,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(7127), 23, + ACTIONS(6349), 23, + anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -219112,33 +207419,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - [166755] = 8, + [156787] = 15, ACTIONS(71), 1, sym_comment, - ACTIONS(7360), 1, + ACTIONS(6491), 1, + anon_sym_PIPE, + ACTIONS(6493), 1, + anon_sym_CARET, + ACTIONS(6495), 1, + anon_sym_AMP, + ACTIONS(6509), 1, anon_sym_STAR_STAR, - ACTIONS(7334), 2, + ACTIONS(6483), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7354), 2, + ACTIONS(6487), 2, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + ACTIONS(6489), 2, + anon_sym_AMP_AMP, + anon_sym_DASHa, + ACTIONS(6497), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6499), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6501), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6503), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(6505), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(6507), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6744), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6742), 20, + ACTIONS(6158), 13, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219150,37 +207472,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [166809] = 4, + [156855] = 14, ACTIONS(71), 1, sym_comment, - ACTIONS(7334), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6744), 14, - anon_sym_EQ, + ACTIONS(6491), 1, anon_sym_PIPE, + ACTIONS(6493), 1, anon_sym_CARET, + ACTIONS(6495), 1, anon_sym_AMP, + ACTIONS(6509), 1, + anon_sym_STAR_STAR, + ACTIONS(6483), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6489), 2, + anon_sym_AMP_AMP, + anon_sym_DASHa, + ACTIONS(6497), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6499), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6501), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6503), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6505), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6507), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6742), 20, + ACTIONS(6158), 15, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219193,56 +207523,43 @@ 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, - [166855] = 17, + anon_sym_DASHo, + [156921] = 13, ACTIONS(71), 1, sym_comment, - ACTIONS(6983), 1, - 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, + ACTIONS(6491), 1, anon_sym_PIPE, - ACTIONS(7540), 1, + ACTIONS(6493), 1, anon_sym_CARET, - ACTIONS(7542), 1, + ACTIONS(6495), 1, anon_sym_AMP, - ACTIONS(6695), 2, + ACTIONS(6509), 1, + anon_sym_STAR_STAR, + ACTIONS(6483), 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(6497), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7546), 2, + ACTIONS(6499), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7548), 2, + ACTIONS(6501), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7326), 3, + ACTIONS(6503), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6505), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6507), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6985), 13, + ACTIONS(6158), 17, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219254,34 +207571,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [166927] = 8, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + [156985] = 13, ACTIONS(71), 1, sym_comment, - ACTIONS(7360), 1, + ACTIONS(6152), 1, + anon_sym_PIPE, + ACTIONS(6493), 1, + anon_sym_CARET, + ACTIONS(6495), 1, + anon_sym_AMP, + ACTIONS(6509), 1, anon_sym_STAR_STAR, - ACTIONS(7334), 2, + ACTIONS(6483), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7354), 2, + ACTIONS(6497), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6499), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6501), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6503), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(6505), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(6507), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6744), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6742), 20, + ACTIONS(6158), 17, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219294,35 +207623,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_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, + anon_sym_DASHa, + [157049] = 12, ACTIONS(71), 1, sym_comment, - ACTIONS(6792), 14, - anon_sym_EQ, + ACTIONS(6495), 1, + anon_sym_AMP, + ACTIONS(6509), 1, + anon_sym_STAR_STAR, + ACTIONS(6152), 2, anon_sym_PIPE, anon_sym_CARET, - anon_sym_AMP, + ACTIONS(6483), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6497), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6499), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6501), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6503), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6505), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6507), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6790), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6158), 17, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219335,35 +207673,89 @@ 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, + [157111] = 11, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6509), 1, + anon_sym_STAR_STAR, + ACTIONS(6483), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6497), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6499), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6501), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [167025] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1280), 14, - anon_sym_EQ, + ACTIONS(6503), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6505), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6152), 3, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, + ACTIONS(6507), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6158), 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, + [157171] = 10, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6509), 1, + anon_sym_STAR_STAR, + ACTIONS(6483), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6499), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6501), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6503), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6505), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6152), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(6507), 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(6158), 19, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219376,35 +207768,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [167069] = 3, + [157229] = 8, 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, + ACTIONS(6509), 1, + anon_sym_STAR_STAR, + ACTIONS(6483), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6503), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6505), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6507), 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(6152), 5, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6158), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219417,60 +207812,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [167113] = 19, + [157283] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(6836), 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(6509), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, - anon_sym_EQ_TILDE, - ACTIONS(7364), 1, - anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(6483), 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(6505), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(6507), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(6152), 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(6158), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219482,52 +207856,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [167189] = 19, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [157335] = 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(6509), 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(7550), 1, - anon_sym_RPAREN, - ACTIONS(7366), 2, + ACTIONS(6483), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7376), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7378), 2, + ACTIONS(6507), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6152), 9, + 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(6158), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219539,52 +207900,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [167265] = 19, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [157385] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, + ACTIONS(6509), 1, anon_sym_STAR_STAR, - ACTIONS(6772), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, - anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(6483), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6152), 12, 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(7552), 1, - anon_sym_COLON, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6748), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6750), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6784), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6786), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6752), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(6158), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219596,11 +207943,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [167341] = 3, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [157433] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 14, - anon_sym_EQ, + ACTIONS(6509), 1, + anon_sym_STAR_STAR, + ACTIONS(6483), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6152), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -219613,10 +207972,9 @@ static const uint16_t ts_small_parse_table[] = { 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(6158), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219629,82 +207987,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [167385] = 25, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6376), 1, - sym_word, - ACTIONS(6390), 1, - anon_sym_DOLLAR, - ACTIONS(6396), 1, - aux_sym_number_token1, - ACTIONS(6398), 1, - aux_sym_number_token2, - ACTIONS(6402), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, - sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, - sym__brace_start, - ACTIONS(6547), 1, - anon_sym_esac, - ACTIONS(7506), 1, - anon_sym_LPAREN, - ACTIONS(7508), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, - sym__special_character, - ACTIONS(7514), 1, - anon_sym_DQUOTE, - ACTIONS(7518), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, - anon_sym_BQUOTE, - ACTIONS(7522), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6347), 1, - aux_sym__literal_repeat1, - STATE(7016), 1, - sym_last_case_item, - ACTIONS(7516), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7524), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3304), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6223), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [167473] = 3, + [157481] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 14, - anon_sym_EQ, + ACTIONS(1300), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -219718,7 +208011,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1306), 22, + ACTIONS(1302), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -219733,81 +208028,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [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, + [157525] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 14, + ACTIONS(1288), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -219822,7 +208053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1302), 22, + ACTIONS(1290), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -219842,139 +208073,96 @@ 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, + [157569] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6376), 1, - sym_word, - ACTIONS(6390), 1, + ACTIONS(4485), 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, + sym__special_character, aux_sym_number_token1, - ACTIONS(6398), 1, aux_sym_number_token2, - ACTIONS(6402), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, + sym_word, + ACTIONS(4487), 23, + sym_file_descriptor, sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, sym__brace_start, - ACTIONS(7506), 1, - anon_sym_LPAREN, - ACTIONS(7508), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, - sym__special_character, - ACTIONS(7514), 1, anon_sym_DQUOTE, - ACTIONS(7518), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, anon_sym_BQUOTE, - ACTIONS(7522), 1, anon_sym_DOLLAR_BQUOTE, - 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, + [157613] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6376), 1, - sym_word, - ACTIONS(6390), 1, + ACTIONS(5165), 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, + sym__special_character, aux_sym_number_token1, - ACTIONS(6398), 1, aux_sym_number_token2, - ACTIONS(6402), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, + sym_word, + ACTIONS(5167), 23, + sym_file_descriptor, sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, sym__brace_start, - ACTIONS(7506), 1, - anon_sym_LPAREN, - ACTIONS(7508), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, - sym__special_character, - ACTIONS(7514), 1, anon_sym_DQUOTE, - ACTIONS(7518), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, anon_sym_BQUOTE, - ACTIONS(7522), 1, anon_sym_DOLLAR_BQUOTE, - 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, + [157657] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1276), 13, + ACTIONS(6078), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -219988,9 +208176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1278), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(6076), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -220005,17 +208191,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, - [167869] = 3, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [157701] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 14, + ACTIONS(6084), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -220030,7 +208217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1250), 22, + ACTIONS(6082), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -220053,11 +208240,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [167913] = 3, + [157745] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 14, - anon_sym_EQ, + ACTIONS(6284), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -220071,7 +208257,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1298), 22, + ACTIONS(6286), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -220086,18 +208274,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_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + [157789] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5955), 1, anon_sym_RBRACK, + ACTIONS(6416), 1, + anon_sym_EQ, + ACTIONS(6422), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6424), 1, + anon_sym_AMP_AMP, + ACTIONS(6426), 1, + anon_sym_PIPE, + ACTIONS(6428), 1, + anon_sym_CARET, + ACTIONS(6430), 1, + anon_sym_AMP, + ACTIONS(6444), 1, + anon_sym_STAR_STAR, + ACTIONS(6446), 1, anon_sym_EQ_TILDE, + ACTIONS(6448), 1, anon_sym_QMARK, - [167957] = 3, + ACTIONS(6418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6432), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6434), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6436), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6438), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6440), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6442), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6420), 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, + [157865] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 14, + ACTIONS(1280), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -220112,7 +208356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1302), 22, + ACTIONS(1282), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -220135,27 +208379,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [168001] = 3, + [157909] = 17, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 14, + ACTIONS(6026), 1, anon_sym_EQ, + ACTIONS(6587), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6589), 1, + anon_sym_AMP_AMP, + ACTIONS(6591), 1, anon_sym_PIPE, + ACTIONS(6593), 1, anon_sym_CARET, + ACTIONS(6595), 1, anon_sym_AMP, + ACTIONS(6609), 1, + anon_sym_STAR_STAR, + ACTIONS(6611), 1, + sym_test_operator, + ACTIONS(5760), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6597), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6599), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6601), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6603), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6605), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6607), 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(6028), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220167,20 +208432,110 @@ 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, + [157981] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5169), 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(5171), 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, + [158025] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5923), 1, + anon_sym_RBRACK, + ACTIONS(6416), 1, + anon_sym_EQ, + ACTIONS(6422), 1, anon_sym_PIPE_PIPE, + ACTIONS(6424), 1, anon_sym_AMP_AMP, + ACTIONS(6426), 1, + anon_sym_PIPE, + ACTIONS(6428), 1, + anon_sym_CARET, + ACTIONS(6430), 1, + anon_sym_AMP, + ACTIONS(6444), 1, + anon_sym_STAR_STAR, + ACTIONS(6446), 1, + anon_sym_EQ_TILDE, + ACTIONS(6448), 1, + anon_sym_QMARK, + ACTIONS(6418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6432), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6434), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6436), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [168045] = 3, + ACTIONS(6438), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6440), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6442), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6420), 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, + [158101] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 14, - anon_sym_EQ, + ACTIONS(1304), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -220194,9 +208549,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1302), 22, + ACTIONS(1306), 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, + [158145] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6444), 1, + anon_sym_STAR_STAR, + ACTIONS(6418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6438), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6440), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6442), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5875), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5873), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220217,64 +208619,256 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [168089] = 16, + [158199] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7432), 1, + ACTIONS(5173), 13, anon_sym_PIPE, - ACTIONS(7434), 1, - anon_sym_CARET, - ACTIONS(7436), 1, - anon_sym_AMP, - ACTIONS(7450), 1, - anon_sym_STAR_STAR, - ACTIONS(7206), 2, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - ACTIONS(7426), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7428), 2, + anon_sym_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(5175), 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, + [158243] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5177), 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(5179), 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, + [158287] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5181), 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(5183), 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, + [158331] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5185), 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(5187), 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, + [158375] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5185), 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(5187), 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, + [158419] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5189), 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(5191), 23, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, anon_sym_PIPE_PIPE, - anon_sym_DASHo, - ACTIONS(7430), 2, anon_sym_AMP_AMP, - anon_sym_DASHa, - ACTIONS(7438), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7440), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7442), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7444), 2, - anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7446), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7448), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7558), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [168159] = 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_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [158463] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7125), 13, + ACTIONS(1300), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -220288,7 +208882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(7127), 23, + ACTIONS(1302), 23, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -220312,67 +208906,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [168203] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7005), 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, - [168279] = 3, + [158507] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 14, + ACTIONS(6094), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -220387,7 +208924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1258), 22, + ACTIONS(6092), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -220407,54 +208944,95 @@ 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, - [168323] = 3, + [158551] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7210), 13, + ACTIONS(5189), 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, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5191), 23, + sym_file_descriptor, + 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, - ACTIONS(7212), 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_AMP, + anon_sym_RBRACK, + anon_sym_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, + [158595] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5193), 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(5195), 23, + 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_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [168367] = 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_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, + [158639] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6653), 14, + ACTIONS(1264), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -220469,7 +209047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6651), 22, + ACTIONS(1266), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -220489,13 +209067,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, - [168411] = 3, + [158683] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7125), 13, + ACTIONS(6347), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -220509,8 +209087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(7127), 23, - anon_sym_RPAREN_RPAREN, + ACTIONS(6349), 23, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -220533,10 +209110,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [168455] = 3, + anon_sym_RPAREN, + [158727] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5197), 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(5199), 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, + [158771] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6641), 14, + ACTIONS(6098), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -220551,7 +209170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6639), 22, + ACTIONS(6096), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -220574,32 +209193,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [168499] = 8, + [158815] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5201), 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(5203), 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, + [158859] = 15, ACTIONS(71), 1, sym_comment, - ACTIONS(7388), 1, + ACTIONS(6537), 1, + anon_sym_PIPE, + ACTIONS(6539), 1, + anon_sym_CARET, + ACTIONS(6541), 1, + anon_sym_AMP, + ACTIONS(6555), 1, anon_sym_STAR_STAR, - ACTIONS(7366), 2, + ACTIONS(6529), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7382), 2, + ACTIONS(6533), 2, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + ACTIONS(6535), 2, + anon_sym_AMP_AMP, + anon_sym_DASHa, + ACTIONS(6543), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6545), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6547), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6549), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7384), 2, + ACTIONS(6551), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7386), 3, + ACTIONS(6553), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6744), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6742), 20, + ACTIONS(6158), 13, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220611,111 +209286,257 @@ 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, - [168553] = 8, - ACTIONS(3), 1, + [158927] = 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, + ACTIONS(5201), 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, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 21, - anon_sym_SEMI, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5203), 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, + [158971] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5205), 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, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5207), 23, + 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_AMP_GT, + anon_sym_RBRACK, anon_sym_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, + [159015] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5205), 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(5207), 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - [168607] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3512), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, 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, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [159059] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5209), 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, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 21, - anon_sym_SEMI, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5211), 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, + [159103] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5213), 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, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5215), 23, + 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_AMP_GT, + anon_sym_RBRACK, anon_sym_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, + [159147] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5213), 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(5215), 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - [168661] = 3, + 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, + [159191] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6726), 14, + ACTIONS(6104), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -220730,7 +209551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6724), 22, + ACTIONS(6102), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -220753,10 +209574,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [168705] = 3, + [159235] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6730), 14, + ACTIONS(6104), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -220771,7 +209592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6728), 22, + ACTIONS(6102), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -220794,13 +209615,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [168749] = 4, + [159279] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5217), 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(5219), 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, + [159323] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5831), 1, + anon_sym_RBRACK, + ACTIONS(6416), 1, + anon_sym_EQ, + ACTIONS(6422), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6424), 1, + anon_sym_AMP_AMP, + ACTIONS(6426), 1, + anon_sym_PIPE, + ACTIONS(6428), 1, + anon_sym_CARET, + ACTIONS(6430), 1, + anon_sym_AMP, + ACTIONS(6444), 1, + anon_sym_STAR_STAR, + ACTIONS(6446), 1, + anon_sym_EQ_TILDE, + ACTIONS(6448), 1, + anon_sym_QMARK, + ACTIONS(6418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6432), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6434), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6436), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6438), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6440), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6442), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6420), 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, + [159399] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(7366), 2, + ACTIONS(6418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6744), 14, + ACTIONS(5875), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -220815,7 +209734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6742), 20, + ACTIONS(5873), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220833,98 +209752,88 @@ 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, - [168795] = 25, + [159445] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6376), 1, - sym_word, - ACTIONS(6390), 1, + ACTIONS(5217), 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, + sym__special_character, aux_sym_number_token1, - ACTIONS(6398), 1, aux_sym_number_token2, - ACTIONS(6402), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, + sym_word, + ACTIONS(5219), 23, + sym_file_descriptor, 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_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, - sym__special_character, - ACTIONS(7514), 1, anon_sym_DQUOTE, - ACTIONS(7518), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, anon_sym_BQUOTE, - ACTIONS(7522), 1, anon_sym_DOLLAR_BQUOTE, - STATE(6347), 1, - aux_sym__literal_repeat1, - STATE(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, + [159489] = 14, ACTIONS(71), 1, sym_comment, - ACTIONS(7388), 1, + ACTIONS(6537), 1, + anon_sym_PIPE, + ACTIONS(6539), 1, + anon_sym_CARET, + ACTIONS(6541), 1, + anon_sym_AMP, + ACTIONS(6555), 1, anon_sym_STAR_STAR, - ACTIONS(7366), 2, + ACTIONS(6529), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7382), 2, + ACTIONS(6535), 2, + anon_sym_AMP_AMP, + anon_sym_DASHa, + ACTIONS(6543), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6545), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6547), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6549), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7384), 2, + ACTIONS(6551), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7386), 3, + ACTIONS(6553), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6744), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6742), 20, + ACTIONS(6158), 15, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220937,35 +209846,43 @@ 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_DASHo, anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [168937] = 3, + [159555] = 13, ACTIONS(71), 1, sym_comment, - ACTIONS(1272), 13, + ACTIONS(6537), 1, anon_sym_PIPE, + ACTIONS(6539), 1, anon_sym_CARET, + ACTIONS(6541), 1, anon_sym_AMP, + ACTIONS(6555), 1, + anon_sym_STAR_STAR, + ACTIONS(6529), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6543), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6545), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6547), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6549), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6551), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6553), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1274), 23, + ACTIONS(6158), 17, anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220981,57 +209898,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASHo, anon_sym_AMP_AMP, anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_RPAREN, - [168981] = 19, + [159619] = 13, 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(6152), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(6539), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(6541), 1, anon_sym_AMP, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, - anon_sym_EQ_TILDE, - ACTIONS(6832), 1, - anon_sym_QMARK, - ACTIONS(7560), 1, - anon_sym_COLON, - ACTIONS(6746), 2, + ACTIONS(6555), 1, + anon_sym_STAR_STAR, + ACTIONS(6529), 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(6543), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(6545), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(6547), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(6549), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6551), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6553), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(6158), 17, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221043,27 +209945,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [169057] = 3, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_RPAREN, + [159683] = 12, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 13, + ACTIONS(6541), 1, + anon_sym_AMP, + ACTIONS(6555), 1, + anon_sym_STAR_STAR, + ACTIONS(6152), 2, anon_sym_PIPE, anon_sym_CARET, - anon_sym_AMP, + ACTIONS(6529), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6543), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6545), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6547), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6549), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6551), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6553), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1266), 23, + ACTIONS(6158), 17, anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221079,89 +209999,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASHo, anon_sym_AMP_AMP, anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_RPAREN, - [169101] = 19, + [159745] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(5925), 1, + anon_sym_RBRACK, + ACTIONS(6416), 1, + anon_sym_EQ, + ACTIONS(6422), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(6424), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(6426), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(6428), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(6430), 1, anon_sym_AMP, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(6444), 1, + anon_sym_STAR_STAR, + ACTIONS(6446), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(6448), 1, anon_sym_QMARK, - ACTIONS(7105), 1, - anon_sym_COMMA, - ACTIONS(6746), 2, + ACTIONS(6418), 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(6432), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(6434), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(6436), 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, - [169177] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1280), 13, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(6438), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6440), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6442), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1282), 23, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6420), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221173,19 +210057,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_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, + [159821] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 13, + ACTIONS(1248), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -221199,8 +210075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1250), 23, - anon_sym_COMMA, + ACTIONS(1250), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -221215,92 +210090,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - [169265] = 19, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [159865] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6764), 1, - anon_sym_STAR_STAR, - ACTIONS(6766), 1, - sym_test_operator, - ACTIONS(6794), 1, + ACTIONS(5927), 1, + anon_sym_RBRACK, + ACTIONS(6416), 1, + anon_sym_EQ, + ACTIONS(6422), 1, anon_sym_PIPE_PIPE, - ACTIONS(6796), 1, + ACTIONS(6424), 1, anon_sym_AMP_AMP, - ACTIONS(6798), 1, + ACTIONS(6426), 1, anon_sym_PIPE, - ACTIONS(6800), 1, + ACTIONS(6428), 1, anon_sym_CARET, - ACTIONS(6802), 1, + ACTIONS(6430), 1, anon_sym_AMP, - ACTIONS(6812), 1, - anon_sym_EQ, - ACTIONS(6814), 1, + ACTIONS(6444), 1, + anon_sym_STAR_STAR, + ACTIONS(6446), 1, anon_sym_EQ_TILDE, - ACTIONS(7564), 1, + ACTIONS(6448), 1, anon_sym_QMARK, - ACTIONS(6695), 2, + ACTIONS(6418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6758), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6760), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6804), 2, + ACTIONS(6432), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6806), 2, + ACTIONS(6434), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6808), 2, + ACTIONS(6436), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6762), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7562), 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, - [169341] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1256), 13, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(6438), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6440), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6442), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1258), 23, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6420), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221312,69 +210155,60 @@ 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, - [169385] = 25, + [159941] = 25, ACTIONS(71), 1, sym_comment, - ACTIONS(6376), 1, + ACTIONS(5504), 1, sym_word, - ACTIONS(6390), 1, + ACTIONS(5518), 1, anon_sym_DOLLAR, - ACTIONS(6396), 1, + ACTIONS(5524), 1, aux_sym_number_token1, - ACTIONS(6398), 1, + ACTIONS(5526), 1, aux_sym_number_token2, - ACTIONS(6402), 1, + ACTIONS(5530), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, + ACTIONS(5538), 1, sym_test_operator, - ACTIONS(6412), 1, + ACTIONS(5540), 1, sym_extglob_pattern, - ACTIONS(6414), 1, + ACTIONS(5542), 1, sym__brace_start, - ACTIONS(6541), 1, - anon_sym_esac, - ACTIONS(7506), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(7508), 1, + ACTIONS(6454), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, + ACTIONS(6456), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, + ACTIONS(6458), 1, sym__special_character, - ACTIONS(7514), 1, + ACTIONS(6460), 1, anon_sym_DQUOTE, - ACTIONS(7518), 1, + ACTIONS(6464), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, + ACTIONS(6466), 1, anon_sym_BQUOTE, - ACTIONS(7522), 1, + ACTIONS(6468), 1, anon_sym_DOLLAR_BQUOTE, - STATE(6347), 1, + ACTIONS(6613), 1, + anon_sym_esac, + STATE(6008), 1, aux_sym__literal_repeat1, - STATE(7366), 1, + STATE(6495), 1, sym_last_case_item, - ACTIONS(7516), 2, + ACTIONS(6462), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7524), 2, + ACTIONS(6470), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3336), 2, + STATE(3194), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(6599), 2, + STATE(6265), 2, sym_concatenation, sym__extglob_blob, - STATE(6223), 9, + STATE(5926), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -221384,27 +210218,170 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [169473] = 3, + [160029] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1276), 13, + ACTIONS(4493), 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(4495), 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, + [160073] = 11, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6555), 1, + anon_sym_STAR_STAR, + ACTIONS(6529), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6543), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6545), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6547), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6549), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6551), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6152), 3, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, + ACTIONS(6553), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6158), 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, + [160133] = 10, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6555), 1, + anon_sym_STAR_STAR, + ACTIONS(6529), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6545), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6547), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6549), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6551), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6152), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(6553), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6158), 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, + [160191] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6555), 1, + anon_sym_STAR_STAR, + ACTIONS(6529), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6549), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6551), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6553), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1278), 23, + ACTIONS(6152), 5, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6158), 21, anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221425,10 +210402,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_RPAREN, - [169517] = 3, + [160245] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(1288), 13, + ACTIONS(6555), 1, + anon_sym_STAR_STAR, + ACTIONS(6529), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6551), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6553), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6152), 7, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -221436,16 +210425,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(1290), 23, + ACTIONS(6158), 21, anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221466,60 +210447,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_RPAREN, - [169561] = 25, + [160297] = 25, ACTIONS(71), 1, sym_comment, - ACTIONS(6376), 1, + ACTIONS(5504), 1, sym_word, - ACTIONS(6390), 1, + ACTIONS(5518), 1, anon_sym_DOLLAR, - ACTIONS(6396), 1, + ACTIONS(5524), 1, aux_sym_number_token1, - ACTIONS(6398), 1, + ACTIONS(5526), 1, aux_sym_number_token2, - ACTIONS(6402), 1, + ACTIONS(5530), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, + ACTIONS(5538), 1, sym_test_operator, - ACTIONS(6412), 1, + ACTIONS(5540), 1, sym_extglob_pattern, - ACTIONS(6414), 1, + ACTIONS(5542), 1, sym__brace_start, - ACTIONS(6601), 1, + ACTIONS(5619), 1, anon_sym_esac, - ACTIONS(7506), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(7508), 1, + ACTIONS(6454), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, + ACTIONS(6456), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, + ACTIONS(6458), 1, sym__special_character, - ACTIONS(7514), 1, + ACTIONS(6460), 1, anon_sym_DQUOTE, - ACTIONS(7518), 1, + ACTIONS(6464), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, + ACTIONS(6466), 1, anon_sym_BQUOTE, - ACTIONS(7522), 1, + ACTIONS(6468), 1, anon_sym_DOLLAR_BQUOTE, - STATE(6347), 1, + STATE(6008), 1, aux_sym__literal_repeat1, - STATE(7177), 1, + STATE(6464), 1, sym_last_case_item, - ACTIONS(7516), 2, + ACTIONS(6462), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7524), 2, + ACTIONS(6470), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3324), 2, + STATE(3214), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(6599), 2, + STATE(6265), 2, sym_concatenation, sym__extglob_blob, - STATE(6223), 9, + STATE(5926), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -221529,27 +210510,52 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [169649] = 3, + [160385] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6792), 14, + ACTIONS(5929), 1, + anon_sym_RBRACK, + ACTIONS(6416), 1, anon_sym_EQ, + ACTIONS(6422), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6424), 1, + anon_sym_AMP_AMP, + ACTIONS(6426), 1, anon_sym_PIPE, + ACTIONS(6428), 1, anon_sym_CARET, + ACTIONS(6430), 1, anon_sym_AMP, + ACTIONS(6444), 1, + anon_sym_STAR_STAR, + ACTIONS(6446), 1, + anon_sym_EQ_TILDE, + ACTIONS(6448), 1, + anon_sym_QMARK, + ACTIONS(6418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6432), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6434), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6436), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6438), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6440), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6442), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6790), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6420), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221561,203 +210567,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [160461] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1197), 1, + sym_file_descriptor, + ACTIONS(3341), 1, + anon_sym_DQUOTE, + ACTIONS(6619), 1, + sym_variable_name, + STATE(4342), 1, + sym_string, + ACTIONS(6617), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(6615), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 22, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [169693] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1292), 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(1294), 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, - [169737] = 25, - ACTIONS(71), 1, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_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, + [160515] = 8, + 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, + ACTIONS(1191), 1, + sym_file_descriptor, + ACTIONS(3341), 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, + ACTIONS(6619), 1, + sym_variable_name, + STATE(4342), 1, 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, + ACTIONS(6617), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(6615), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, 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, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [160569] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 13, + ACTIONS(5891), 1, + anon_sym_RBRACK, + ACTIONS(6416), 1, + anon_sym_EQ, + ACTIONS(6422), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6424), 1, + anon_sym_AMP_AMP, + ACTIONS(6426), 1, anon_sym_PIPE, + ACTIONS(6428), 1, anon_sym_CARET, + ACTIONS(6430), 1, anon_sym_AMP, + ACTIONS(6444), 1, + anon_sym_STAR_STAR, + ACTIONS(6446), 1, + anon_sym_EQ_TILDE, + ACTIONS(6448), 1, + anon_sym_QMARK, + ACTIONS(6418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6432), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6434), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6436), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6438), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6440), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6442), 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(6420), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221769,30 +210716,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_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, + [160645] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1197), 1, sym_file_descriptor, - ACTIONS(3512), 1, + ACTIONS(6623), 1, anon_sym_DQUOTE, - ACTIONS(7420), 1, + ACTIONS(6627), 1, sym_variable_name, - STATE(4218), 1, + STATE(4161), 1, sym_string, - ACTIONS(7418), 2, + ACTIONS(6625), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7416), 8, + ACTIONS(6621), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -221811,8 +210749,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, @@ -221823,22 +210762,21 @@ 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, - [170011] = 8, + [160699] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1191), 1, sym_file_descriptor, - ACTIONS(3512), 1, + ACTIONS(6623), 1, anon_sym_DQUOTE, - ACTIONS(7420), 1, + ACTIONS(6627), 1, sym_variable_name, - STATE(4218), 1, + STATE(4161), 1, sym_string, - ACTIONS(7418), 2, + ACTIONS(6625), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7416), 8, + ACTIONS(6621), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -221857,8 +210795,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, @@ -221869,11 +210808,10 @@ 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, - [170065] = 3, + [160753] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1223), 12, + ACTIONS(1229), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -221885,8 +210823,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1225), 24, + ACTIONS(1231), 23, sym_file_descriptor, sym_test_operator, sym__brace_start, @@ -221899,7 +210838,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -221911,10 +210849,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [170109] = 3, + [160797] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1288), 13, + ACTIONS(6555), 1, + anon_sym_STAR_STAR, + ACTIONS(6529), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6553), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6152), 9, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -221924,15 +210871,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(1290), 23, - anon_sym_RPAREN_RPAREN, + ACTIONS(6158), 21, anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221952,10 +210892,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [170153] = 3, + anon_sym_RPAREN, + [160847] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 13, + ACTIONS(6555), 1, + anon_sym_STAR_STAR, + ACTIONS(6529), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6152), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -221968,12 +210914,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1302), 23, - anon_sym_RPAREN_RPAREN, + ACTIONS(6158), 21, anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221993,28 +210935,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [170197] = 3, + anon_sym_RPAREN, + [160895] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 13, + ACTIONS(5931), 1, + anon_sym_RBRACK, + ACTIONS(6416), 1, + anon_sym_EQ, + ACTIONS(6422), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6424), 1, + anon_sym_AMP_AMP, + ACTIONS(6426), 1, anon_sym_PIPE, + ACTIONS(6428), 1, anon_sym_CARET, + ACTIONS(6430), 1, anon_sym_AMP, + ACTIONS(6444), 1, + anon_sym_STAR_STAR, + ACTIONS(6446), 1, + anon_sym_EQ_TILDE, + ACTIONS(6448), 1, + anon_sym_QMARK, + ACTIONS(6418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6432), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6434), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6436), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6438), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6440), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6442), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(6420), 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, + [160971] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6555), 1, anon_sym_STAR_STAR, - ACTIONS(1306), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(6529), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6152), 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(6158), 21, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222034,28 +211035,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [170241] = 3, + anon_sym_RPAREN, + [161019] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 13, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(6444), 1, + anon_sym_STAR_STAR, + ACTIONS(6418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6438), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6440), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6442), 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(5875), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5873), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222068,59 +211074,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, - [170285] = 19, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [161073] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5504), 1, + sym_word, + ACTIONS(5518), 1, + anon_sym_DOLLAR, + ACTIONS(5524), 1, + aux_sym_number_token1, + ACTIONS(5526), 1, + aux_sym_number_token2, + ACTIONS(5530), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5538), 1, + sym_test_operator, + ACTIONS(5540), 1, + sym_extglob_pattern, + ACTIONS(5542), 1, + sym__brace_start, + ACTIONS(5625), 1, + anon_sym_esac, + ACTIONS(6450), 1, + anon_sym_LPAREN, + ACTIONS(6454), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6456), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6458), 1, + sym__special_character, + ACTIONS(6460), 1, + anon_sym_DQUOTE, + ACTIONS(6464), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6466), 1, + anon_sym_BQUOTE, + ACTIONS(6468), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6008), 1, + aux_sym__literal_repeat1, + STATE(6466), 1, + sym_last_case_item, + ACTIONS(6462), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(6470), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3155), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6265), 2, + sym_concatenation, + sym__extglob_blob, + STATE(5926), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [161161] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6842), 1, + ACTIONS(5933), 1, anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(6416), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(6422), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(6424), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(6426), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(6428), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(6430), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(6444), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(6446), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(6448), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(6418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(6432), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(6434), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(6436), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(6438), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(6440), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(6442), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(6420), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222132,10 +211202,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [170361] = 3, + [161237] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 13, + ACTIONS(1292), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -222149,8 +211220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1302), 23, - anon_sym_COMMA, + ACTIONS(1294), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -222165,18 +211235,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - [170405] = 3, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [161281] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 13, + ACTIONS(6008), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -222190,8 +211261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1306), 23, - anon_sym_COMMA, + ACTIONS(6006), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -222206,35 +211276,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - [170449] = 3, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [161325] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 13, + ACTIONS(6074), 1, + anon_sym_RBRACK, + ACTIONS(6416), 1, + anon_sym_EQ, + ACTIONS(6422), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6424), 1, + anon_sym_AMP_AMP, + ACTIONS(6426), 1, anon_sym_PIPE, + ACTIONS(6428), 1, anon_sym_CARET, + ACTIONS(6430), 1, anon_sym_AMP, + ACTIONS(6444), 1, + anon_sym_STAR_STAR, + ACTIONS(6446), 1, + anon_sym_EQ_TILDE, + ACTIONS(6448), 1, + anon_sym_QMARK, + ACTIONS(6418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6432), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6434), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6436), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6438), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6440), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6442), 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(6420), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222246,193 +211341,89 @@ 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, - [170493] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7570), 1, - sym__special_character, - STATE(3239), 1, - aux_sym__literal_repeat1, - ACTIONS(1316), 12, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1318), 22, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [170541] = 25, + [161401] = 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(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, + ACTIONS(5935), 1, + anon_sym_RBRACK, + ACTIONS(6416), 1, + anon_sym_EQ, + ACTIONS(6422), 1, anon_sym_PIPE_PIPE, + ACTIONS(6424), 1, anon_sym_AMP_AMP, + ACTIONS(6426), 1, anon_sym_PIPE, + ACTIONS(6428), 1, + anon_sym_CARET, + ACTIONS(6430), 1, anon_sym_AMP, + ACTIONS(6444), 1, + anon_sym_STAR_STAR, + ACTIONS(6446), 1, + anon_sym_EQ_TILDE, + ACTIONS(6448), 1, + anon_sym_QMARK, + ACTIONS(6418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6432), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6434), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6436), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6438), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [170683] = 8, + ACTIONS(6440), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6442), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6420), 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, + [161477] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(7328), 1, + ACTIONS(6609), 1, anon_sym_STAR_STAR, - ACTIONS(6695), 2, + ACTIONS(5760), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7322), 2, + ACTIONS(6603), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7324), 2, + ACTIONS(6605), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7326), 3, + ACTIONS(6607), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6611), 6, + ACTIONS(5764), 6, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6613), 20, + ACTIONS(5766), 20, sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -222453,50 +211444,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [170737] = 18, + [161531] = 18, ACTIONS(71), 1, sym_comment, - ACTIONS(6611), 1, + ACTIONS(5764), 1, anon_sym_EQ, - ACTIONS(7328), 1, - anon_sym_STAR_STAR, - ACTIONS(7330), 1, - sym_test_operator, - ACTIONS(7534), 1, + ACTIONS(6527), 1, + anon_sym_QMARK, + ACTIONS(6587), 1, anon_sym_PIPE_PIPE, - ACTIONS(7536), 1, + ACTIONS(6589), 1, anon_sym_AMP_AMP, - ACTIONS(7538), 1, + ACTIONS(6591), 1, anon_sym_PIPE, - ACTIONS(7540), 1, + ACTIONS(6593), 1, anon_sym_CARET, - ACTIONS(7542), 1, + ACTIONS(6595), 1, anon_sym_AMP, - ACTIONS(7564), 1, - anon_sym_QMARK, - ACTIONS(6695), 2, + ACTIONS(6609), 1, + anon_sym_STAR_STAR, + ACTIONS(6611), 1, + sym_test_operator, + ACTIONS(5760), 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(6597), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7546), 2, + ACTIONS(6599), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7548), 2, + ACTIONS(6601), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7326), 3, + ACTIONS(6603), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6605), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6607), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 12, + ACTIONS(5766), 12, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222509,52 +211500,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_EQ_TILDE, - [170811] = 19, + [161605] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7328), 1, - anon_sym_STAR_STAR, - ACTIONS(7330), 1, - sym_test_operator, - ACTIONS(7534), 1, + ACTIONS(6527), 1, + anon_sym_QMARK, + ACTIONS(6587), 1, anon_sym_PIPE_PIPE, - ACTIONS(7536), 1, + ACTIONS(6589), 1, anon_sym_AMP_AMP, - ACTIONS(7538), 1, + ACTIONS(6591), 1, anon_sym_PIPE, - ACTIONS(7540), 1, + ACTIONS(6593), 1, anon_sym_CARET, - ACTIONS(7542), 1, + ACTIONS(6595), 1, anon_sym_AMP, - ACTIONS(7564), 1, - anon_sym_QMARK, - ACTIONS(7573), 1, + ACTIONS(6609), 1, + anon_sym_STAR_STAR, + ACTIONS(6611), 1, + sym_test_operator, + ACTIONS(6629), 1, anon_sym_EQ, - ACTIONS(7575), 1, + ACTIONS(6631), 1, anon_sym_EQ_TILDE, - ACTIONS(6695), 2, + ACTIONS(5760), 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(6597), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7546), 2, + ACTIONS(6599), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7548), 2, + ACTIONS(6601), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7326), 3, + ACTIONS(6603), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6605), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6607), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 11, + ACTIONS(5766), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222566,46 +211557,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [170887] = 16, + [161681] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(6611), 1, + ACTIONS(5764), 1, anon_sym_EQ, - ACTIONS(7328), 1, - anon_sym_STAR_STAR, - ACTIONS(7330), 1, - sym_test_operator, - ACTIONS(7536), 1, + ACTIONS(6589), 1, anon_sym_AMP_AMP, - ACTIONS(7538), 1, + ACTIONS(6591), 1, anon_sym_PIPE, - ACTIONS(7540), 1, + ACTIONS(6593), 1, anon_sym_CARET, - ACTIONS(7542), 1, + ACTIONS(6595), 1, anon_sym_AMP, - ACTIONS(6695), 2, + ACTIONS(6609), 1, + anon_sym_STAR_STAR, + ACTIONS(6611), 1, + sym_test_operator, + ACTIONS(5760), 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(6597), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7546), 2, + ACTIONS(6599), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7548), 2, + ACTIONS(6601), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7326), 3, + ACTIONS(6603), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6605), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6607), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 14, + ACTIONS(5766), 14, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222620,44 +211611,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_EQ_TILDE, anon_sym_QMARK, - [170957] = 15, + [161751] = 15, ACTIONS(71), 1, sym_comment, - ACTIONS(6611), 1, + ACTIONS(5764), 1, anon_sym_EQ, - ACTIONS(7328), 1, - anon_sym_STAR_STAR, - ACTIONS(7330), 1, - sym_test_operator, - ACTIONS(7538), 1, + ACTIONS(6591), 1, anon_sym_PIPE, - ACTIONS(7540), 1, + ACTIONS(6593), 1, anon_sym_CARET, - ACTIONS(7542), 1, + ACTIONS(6595), 1, anon_sym_AMP, - ACTIONS(6695), 2, + ACTIONS(6609), 1, + anon_sym_STAR_STAR, + ACTIONS(6611), 1, + sym_test_operator, + ACTIONS(5760), 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(6597), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7546), 2, + ACTIONS(6599), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7548), 2, + ACTIONS(6601), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7326), 3, + ACTIONS(6603), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6605), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6607), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 15, + ACTIONS(5766), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222673,43 +211664,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_TILDE, anon_sym_QMARK, - [171025] = 14, + [161819] = 14, ACTIONS(71), 1, sym_comment, - ACTIONS(7328), 1, - anon_sym_STAR_STAR, - ACTIONS(7330), 1, - sym_test_operator, - ACTIONS(7540), 1, + ACTIONS(6593), 1, anon_sym_CARET, - ACTIONS(7542), 1, + ACTIONS(6595), 1, anon_sym_AMP, - ACTIONS(6611), 2, - anon_sym_EQ, - anon_sym_PIPE, - ACTIONS(6695), 2, + ACTIONS(6609), 1, + anon_sym_STAR_STAR, + ACTIONS(6611), 1, + sym_test_operator, + ACTIONS(5760), 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(5764), 2, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(6597), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7546), 2, + ACTIONS(6599), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7548), 2, + ACTIONS(6601), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7326), 3, + ACTIONS(6603), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6605), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6607), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 15, + ACTIONS(5766), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222725,42 +211716,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_TILDE, anon_sym_QMARK, - [171091] = 13, + [161885] = 13, ACTIONS(71), 1, sym_comment, - ACTIONS(7328), 1, + ACTIONS(6595), 1, + anon_sym_AMP, + ACTIONS(6609), 1, anon_sym_STAR_STAR, - ACTIONS(7330), 1, + ACTIONS(6611), 1, sym_test_operator, - ACTIONS(7542), 1, - anon_sym_AMP, - ACTIONS(6695), 2, + ACTIONS(5760), 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(6597), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7546), 2, + ACTIONS(6599), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7548), 2, + ACTIONS(6601), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6611), 3, + ACTIONS(6603), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6605), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5764), 3, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(7326), 3, + ACTIONS(6607), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 15, + ACTIONS(5766), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222776,41 +211767,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_TILDE, anon_sym_QMARK, - [171155] = 12, + [161949] = 12, ACTIONS(71), 1, sym_comment, - ACTIONS(7328), 1, + ACTIONS(6609), 1, anon_sym_STAR_STAR, - ACTIONS(7330), 1, + ACTIONS(6611), 1, sym_test_operator, - ACTIONS(6695), 2, + ACTIONS(5760), 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(6597), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7546), 2, + ACTIONS(6599), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7548), 2, + ACTIONS(6601), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7326), 3, + ACTIONS(6603), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6605), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6607), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6611), 4, + ACTIONS(5764), 4, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - ACTIONS(6613), 15, + ACTIONS(5766), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222826,38 +211817,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_TILDE, anon_sym_QMARK, - [171217] = 11, + [162011] = 11, ACTIONS(71), 1, sym_comment, - ACTIONS(7328), 1, + ACTIONS(6609), 1, anon_sym_STAR_STAR, - ACTIONS(7330), 1, + ACTIONS(6611), 1, sym_test_operator, - ACTIONS(6695), 2, + ACTIONS(5760), 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(7546), 2, + ACTIONS(6599), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7548), 2, + ACTIONS(6601), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7326), 3, + ACTIONS(6603), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6605), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6607), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6611), 4, + ACTIONS(5764), 4, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - ACTIONS(6613), 17, + ACTIONS(5766), 17, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222875,29 +211866,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [171277] = 5, + [162071] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(7360), 1, + ACTIONS(6609), 1, anon_sym_STAR_STAR, - ACTIONS(7334), 2, + ACTIONS(6611), 1, + sym_test_operator, + ACTIONS(5760), 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, + ACTIONS(6603), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6605), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6607), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6991), 20, + ACTIONS(5764), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5766), 19, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222915,25 +211911,24 @@ 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, - [171325] = 7, + [162127] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(7328), 1, + ACTIONS(6609), 1, anon_sym_STAR_STAR, - ACTIONS(6695), 2, + ACTIONS(5760), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7324), 2, + ACTIONS(6605), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7326), 3, + ACTIONS(6607), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6611), 8, + ACTIONS(5764), 8, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -222942,7 +211937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6613), 20, + ACTIONS(5766), 20, sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -222963,19 +211958,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [171377] = 6, + [162179] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(7328), 1, + ACTIONS(6609), 1, anon_sym_STAR_STAR, - ACTIONS(6695), 2, + ACTIONS(5760), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7326), 3, + ACTIONS(6607), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6611), 10, + ACTIONS(5764), 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(5766), 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, + [162229] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6609), 1, + anon_sym_STAR_STAR, + ACTIONS(5760), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5764), 13, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -222986,7 +212021,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6613), 20, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5766), 20, sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -223007,15 +212045,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [171427] = 5, + [162277] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(7328), 1, + ACTIONS(6609), 1, anon_sym_STAR_STAR, - ACTIONS(6695), 2, + ACTIONS(5760), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6611), 13, + ACTIONS(5764), 13, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -223029,8 +212067,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 20, - sym_test_operator, + ACTIONS(5766), 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, + [162325] = 3, + ACTIONS(71), 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_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, + [162369] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5504), 1, + sym_word, + ACTIONS(5518), 1, + anon_sym_DOLLAR, + ACTIONS(5524), 1, + aux_sym_number_token1, + ACTIONS(5526), 1, + aux_sym_number_token2, + ACTIONS(5530), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5538), 1, + sym_test_operator, + ACTIONS(5540), 1, + sym_extglob_pattern, + ACTIONS(5542), 1, + sym__brace_start, + ACTIONS(5564), 1, + anon_sym_esac, + ACTIONS(6450), 1, + anon_sym_LPAREN, + ACTIONS(6454), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6456), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6458), 1, + sym__special_character, + ACTIONS(6460), 1, + anon_sym_DQUOTE, + ACTIONS(6464), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6466), 1, + anon_sym_BQUOTE, + ACTIONS(6468), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6008), 1, + aux_sym__literal_repeat1, + STATE(6427), 1, + sym_last_case_item, + ACTIONS(6462), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(6470), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3189), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6265), 2, + sym_concatenation, + sym__extglob_blob, + STATE(5926), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [162457] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6519), 1, + anon_sym_STAR_STAR, + ACTIONS(6557), 1, + anon_sym_EQ, + ACTIONS(6561), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6563), 1, + anon_sym_AMP_AMP, + ACTIONS(6565), 1, + anon_sym_PIPE, + ACTIONS(6567), 1, + anon_sym_CARET, + ACTIONS(6569), 1, + anon_sym_AMP, + ACTIONS(6579), 1, + anon_sym_EQ_TILDE, + ACTIONS(6581), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_RPAREN, + ACTIONS(6511), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6513), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6515), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6571), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6573), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6575), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6517), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6559), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223042,24 +212249,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [171475] = 5, + [162533] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7328), 1, - anon_sym_STAR_STAR, - ACTIONS(6695), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6611), 13, - anon_sym_EQ, + ACTIONS(1280), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -223072,8 +212265,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 20, - sym_test_operator, + anon_sym_STAR_STAR, + ACTIONS(1282), 23, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223086,100 +212282,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [171523] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1223), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1225), 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, + anon_sym_RPAREN, + [162577] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6846), 1, + ACTIONS(5937), 1, anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(6416), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(6422), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(6424), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(6426), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(6428), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(6430), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(6444), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(6446), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(6448), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(6418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(6432), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(6434), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(6436), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(6438), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(6440), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(6442), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(6420), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223191,34 +212347,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [171643] = 9, + [162653] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7328), 1, - anon_sym_STAR_STAR, - ACTIONS(7330), 1, - sym_test_operator, - ACTIONS(6695), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7322), 2, + ACTIONS(6284), 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(7324), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7326), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6693), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6697), 19, + anon_sym_STAR_STAR, + ACTIONS(6286), 23, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223231,40 +212380,105 @@ 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_EQ_TILDE, - anon_sym_QMARK, - [171699] = 8, + anon_sym_RPAREN, + [162697] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5504), 1, + sym_word, + ACTIONS(5518), 1, + anon_sym_DOLLAR, + ACTIONS(5524), 1, + aux_sym_number_token1, + ACTIONS(5526), 1, + aux_sym_number_token2, + ACTIONS(5530), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5538), 1, + sym_test_operator, + ACTIONS(5540), 1, + sym_extglob_pattern, + ACTIONS(5542), 1, + sym__brace_start, + ACTIONS(6450), 1, + anon_sym_LPAREN, + ACTIONS(6454), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6456), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6458), 1, + sym__special_character, + ACTIONS(6460), 1, + anon_sym_DQUOTE, + ACTIONS(6464), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6466), 1, + anon_sym_BQUOTE, + ACTIONS(6468), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6635), 1, + anon_sym_esac, + STATE(6008), 1, + aux_sym__literal_repeat1, + STATE(6479), 1, + sym_last_case_item, + ACTIONS(6462), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(6470), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3215), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6265), 2, + sym_concatenation, + sym__extglob_blob, + STATE(5926), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [162785] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(7328), 1, + ACTIONS(6609), 1, anon_sym_STAR_STAR, - ACTIONS(6695), 2, + ACTIONS(6611), 1, + sym_test_operator, + ACTIONS(5760), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7322), 2, + ACTIONS(6603), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7324), 2, + ACTIONS(6605), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7326), 3, + ACTIONS(6607), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6693), 6, + ACTIONS(5758), 6, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6697), 20, - sym_test_operator, + ACTIONS(5762), 19, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223284,32 +212498,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [171753] = 8, + [162841] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(7328), 1, + ACTIONS(6609), 1, anon_sym_STAR_STAR, - ACTIONS(6695), 2, + ACTIONS(5760), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7322), 2, + ACTIONS(6603), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7324), 2, + ACTIONS(6605), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7326), 3, + ACTIONS(6607), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6693), 6, + ACTIONS(5758), 6, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6697), 20, + ACTIONS(5762), 20, sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -223330,27 +212544,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [171807] = 3, + [162895] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(7214), 13, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(6609), 1, + anon_sym_STAR_STAR, + ACTIONS(5760), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6603), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6605), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6607), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(7216), 23, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5758), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5762), 20, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223363,35 +212583,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - [171851] = 3, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [162949] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6930), 14, + ACTIONS(5939), 1, + anon_sym_RBRACK, + ACTIONS(6416), 1, anon_sym_EQ, + ACTIONS(6422), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6424), 1, + anon_sym_AMP_AMP, + ACTIONS(6426), 1, anon_sym_PIPE, + ACTIONS(6428), 1, anon_sym_CARET, + ACTIONS(6430), 1, anon_sym_AMP, + ACTIONS(6444), 1, + anon_sym_STAR_STAR, + ACTIONS(6446), 1, + anon_sym_EQ_TILDE, + ACTIONS(6448), 1, + anon_sym_QMARK, + ACTIONS(6418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6432), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6434), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6436), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6438), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6440), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6442), 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(6420), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223403,22 +212647,73 @@ 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, + [163025] = 25, ACTIONS(71), 1, sym_comment, - ACTIONS(7390), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7251), 13, + ACTIONS(5504), 1, + sym_word, + ACTIONS(5518), 1, + anon_sym_DOLLAR, + ACTIONS(5524), 1, + aux_sym_number_token1, + ACTIONS(5526), 1, + aux_sym_number_token2, + ACTIONS(5530), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5538), 1, + sym_test_operator, + ACTIONS(5540), 1, + sym_extglob_pattern, + ACTIONS(5542), 1, + sym__brace_start, + ACTIONS(6450), 1, + anon_sym_LPAREN, + ACTIONS(6454), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6456), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6458), 1, + sym__special_character, + ACTIONS(6460), 1, + anon_sym_DQUOTE, + ACTIONS(6464), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6466), 1, + anon_sym_BQUOTE, + ACTIONS(6468), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6637), 1, + anon_sym_esac, + STATE(6008), 1, + aux_sym__literal_repeat1, + STATE(6480), 1, + sym_last_case_item, + ACTIONS(6462), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(6470), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3216), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6265), 2, + sym_concatenation, + sym__extglob_blob, + STATE(5926), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [163113] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1300), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -223432,8 +212727,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(7253), 21, + ACTIONS(1302), 23, anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223454,27 +212751,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_RPAREN, - [171941] = 3, + [163157] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(7255), 13, + ACTIONS(6012), 1, + anon_sym_EQ, + ACTIONS(6422), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6424), 1, + anon_sym_AMP_AMP, + ACTIONS(6426), 1, anon_sym_PIPE, + ACTIONS(6428), 1, anon_sym_CARET, + ACTIONS(6430), 1, anon_sym_AMP, + ACTIONS(6444), 1, + anon_sym_STAR_STAR, + ACTIONS(6418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6432), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6434), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6436), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6438), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6440), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6442), 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(6010), 14, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223486,36 +212802,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_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, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [163227] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6989), 14, + ACTIONS(5941), 1, + anon_sym_RBRACK, + ACTIONS(6416), 1, anon_sym_EQ, + ACTIONS(6422), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6424), 1, + anon_sym_AMP_AMP, + ACTIONS(6426), 1, anon_sym_PIPE, + ACTIONS(6428), 1, anon_sym_CARET, + ACTIONS(6430), 1, anon_sym_AMP, + ACTIONS(6444), 1, + anon_sym_STAR_STAR, + ACTIONS(6446), 1, + anon_sym_EQ_TILDE, + ACTIONS(6448), 1, + anon_sym_QMARK, + ACTIONS(6418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6432), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6434), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6436), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6438), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6440), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6442), 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(6420), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223527,57 +212862,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [172029] = 17, + [163303] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6993), 1, + ACTIONS(5943), 1, + anon_sym_RBRACK, + ACTIONS(6416), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(6422), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(6424), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(6426), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(6428), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(6430), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(6444), 1, anon_sym_STAR_STAR, - ACTIONS(7364), 1, + ACTIONS(6446), 1, + anon_sym_EQ_TILDE, + ACTIONS(6448), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(6418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(6432), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(6434), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(6436), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(6438), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(6440), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(6442), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6991), 13, + ACTIONS(6420), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223589,29 +212919,52 @@ 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, + [163379] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6938), 14, + ACTIONS(5893), 1, + anon_sym_RBRACK, + ACTIONS(6416), 1, anon_sym_EQ, + ACTIONS(6422), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6424), 1, + anon_sym_AMP_AMP, + ACTIONS(6426), 1, anon_sym_PIPE, + ACTIONS(6428), 1, anon_sym_CARET, + ACTIONS(6430), 1, anon_sym_AMP, + ACTIONS(6444), 1, + anon_sym_STAR_STAR, + ACTIONS(6446), 1, + anon_sym_EQ_TILDE, + ACTIONS(6448), 1, + anon_sym_QMARK, + ACTIONS(6418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6432), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6434), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6436), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6438), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6440), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6442), 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(6420), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223623,61 +212976,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [163455] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1191), 1, + sym_file_descriptor, + ACTIONS(3307), 1, + anon_sym_DQUOTE, + ACTIONS(6481), 1, + sym_variable_name, + STATE(4065), 1, + sym_string, + ACTIONS(6479), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(6477), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 22, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + 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_EQ_TILDE, - anon_sym_QMARK, - [172145] = 19, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_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, + [163509] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6850), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(5835), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(5841), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(5843), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(5845), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(5847), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(5849), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(5863), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(5865), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(5867), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(6639), 1, + anon_sym_COLON, + ACTIONS(5837), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(5851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(5853), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(5855), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(5857), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(5859), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(5861), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(5839), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223689,50 +213079,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [172221] = 18, + [163585] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7332), 1, + ACTIONS(5945), 1, + anon_sym_RBRACK, + ACTIONS(6416), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(6422), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(6424), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(6426), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(6428), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(6430), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(6444), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(6446), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(6448), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(6418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(6432), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(6434), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(6436), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(6438), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(6440), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(6442), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6991), 12, + ACTIONS(6420), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223744,45 +213136,279 @@ 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, + [163661] = 25, ACTIONS(71), 1, sym_comment, - ACTIONS(6993), 1, + ACTIONS(5504), 1, + sym_word, + ACTIONS(5518), 1, + anon_sym_DOLLAR, + ACTIONS(5524), 1, + aux_sym_number_token1, + ACTIONS(5526), 1, + aux_sym_number_token2, + ACTIONS(5530), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5538), 1, + sym_test_operator, + ACTIONS(5540), 1, + sym_extglob_pattern, + ACTIONS(5542), 1, + sym__brace_start, + ACTIONS(5732), 1, + anon_sym_esac, + ACTIONS(6450), 1, + anon_sym_LPAREN, + ACTIONS(6454), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6456), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6458), 1, + sym__special_character, + ACTIONS(6460), 1, + anon_sym_DQUOTE, + ACTIONS(6464), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6466), 1, + anon_sym_BQUOTE, + ACTIONS(6468), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6008), 1, + aux_sym__literal_repeat1, + STATE(6434), 1, + sym_last_case_item, + ACTIONS(6462), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(6470), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3168), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6265), 2, + sym_concatenation, + sym__extglob_blob, + STATE(5926), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [163749] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5504), 1, + sym_word, + ACTIONS(5510), 1, + anon_sym_esac, + ACTIONS(5518), 1, + anon_sym_DOLLAR, + ACTIONS(5524), 1, + aux_sym_number_token1, + ACTIONS(5526), 1, + aux_sym_number_token2, + ACTIONS(5530), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5538), 1, + sym_test_operator, + ACTIONS(5540), 1, + sym_extglob_pattern, + ACTIONS(5542), 1, + sym__brace_start, + ACTIONS(6450), 1, + anon_sym_LPAREN, + ACTIONS(6454), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6456), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6458), 1, + sym__special_character, + ACTIONS(6460), 1, + anon_sym_DQUOTE, + ACTIONS(6464), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6466), 1, + anon_sym_BQUOTE, + ACTIONS(6468), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6008), 1, + aux_sym__literal_repeat1, + STATE(6572), 1, + sym_last_case_item, + ACTIONS(6462), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(6470), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3169), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6265), 2, + sym_concatenation, + sym__extglob_blob, + STATE(5926), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [163837] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5504), 1, + sym_word, + ACTIONS(5518), 1, + anon_sym_DOLLAR, + ACTIONS(5524), 1, + aux_sym_number_token1, + ACTIONS(5526), 1, + aux_sym_number_token2, + ACTIONS(5530), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5538), 1, + sym_test_operator, + ACTIONS(5540), 1, + sym_extglob_pattern, + ACTIONS(5542), 1, + sym__brace_start, + ACTIONS(6450), 1, + anon_sym_LPAREN, + ACTIONS(6454), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6456), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6458), 1, + sym__special_character, + ACTIONS(6460), 1, + anon_sym_DQUOTE, + ACTIONS(6464), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6466), 1, + anon_sym_BQUOTE, + ACTIONS(6468), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6641), 1, + anon_sym_esac, + STATE(6008), 1, + aux_sym__literal_repeat1, + STATE(6379), 1, + sym_last_case_item, + ACTIONS(6462), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(6470), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3170), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6265), 2, + sym_concatenation, + sym__extglob_blob, + STATE(5926), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [163925] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5504), 1, + sym_word, + ACTIONS(5518), 1, + anon_sym_DOLLAR, + ACTIONS(5524), 1, + aux_sym_number_token1, + ACTIONS(5526), 1, + aux_sym_number_token2, + ACTIONS(5530), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5538), 1, + sym_test_operator, + ACTIONS(5540), 1, + sym_extglob_pattern, + ACTIONS(5542), 1, + sym__brace_start, + ACTIONS(6450), 1, + anon_sym_LPAREN, + ACTIONS(6454), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6456), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6458), 1, + sym__special_character, + ACTIONS(6460), 1, + anon_sym_DQUOTE, + ACTIONS(6464), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6466), 1, + anon_sym_BQUOTE, + ACTIONS(6468), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6643), 1, + anon_sym_esac, + STATE(6008), 1, + aux_sym__literal_repeat1, + STATE(6393), 1, + sym_last_case_item, + ACTIONS(6462), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(6470), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3171), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6265), 2, + sym_concatenation, + sym__extglob_blob, + STATE(5926), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [164013] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1276), 14, anon_sym_EQ, - 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(6991), 15, + anon_sym_STAR_STAR, + ACTIONS(1278), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223795,45 +213421,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [172363] = 14, + [164057] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6993), 1, + ACTIONS(6104), 14, anon_sym_EQ, - 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(6991), 16, + anon_sym_STAR_STAR, + ACTIONS(6102), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223847,14 +213463,17 @@ 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, - [172429] = 3, + [164101] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6964), 14, - anon_sym_EQ, + ACTIONS(1276), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -223868,7 +213487,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6962), 22, + ACTIONS(1278), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -223883,49 +213504,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [172473] = 13, + [164145] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7344), 1, + ACTIONS(5947), 1, + anon_sym_RBRACK, + ACTIONS(6416), 1, + anon_sym_EQ, + ACTIONS(6422), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6424), 1, + anon_sym_AMP_AMP, + ACTIONS(6426), 1, + anon_sym_PIPE, + ACTIONS(6428), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(6430), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(6444), 1, anon_sym_STAR_STAR, - ACTIONS(6993), 2, - anon_sym_EQ, - anon_sym_PIPE, - ACTIONS(7334), 2, + ACTIONS(6446), 1, + anon_sym_EQ_TILDE, + ACTIONS(6448), 1, + anon_sym_QMARK, + ACTIONS(6418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(6432), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(6434), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(6436), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(6438), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(6440), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(6442), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6991), 16, + ACTIONS(6420), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223937,16 +213568,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [172537] = 3, + [164221] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6964), 14, - anon_sym_EQ, + ACTIONS(1248), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -223960,7 +213585,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6962), 22, + ACTIONS(1250), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -223975,37 +213602,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [172581] = 4, + [164265] = 25, ACTIONS(71), 1, sym_comment, - ACTIONS(7426), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7251), 13, + ACTIONS(5504), 1, + sym_word, + ACTIONS(5518), 1, + anon_sym_DOLLAR, + ACTIONS(5524), 1, + aux_sym_number_token1, + ACTIONS(5526), 1, + aux_sym_number_token2, + ACTIONS(5530), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5538), 1, + sym_test_operator, + ACTIONS(5540), 1, + sym_extglob_pattern, + ACTIONS(5542), 1, + sym__brace_start, + ACTIONS(5680), 1, + anon_sym_esac, + ACTIONS(6450), 1, + anon_sym_LPAREN, + ACTIONS(6454), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6456), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6458), 1, + sym__special_character, + ACTIONS(6460), 1, + anon_sym_DQUOTE, + ACTIONS(6464), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6466), 1, + anon_sym_BQUOTE, + ACTIONS(6468), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6008), 1, + aux_sym__literal_repeat1, + STATE(6951), 1, + sym_last_case_item, + ACTIONS(6462), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(6470), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3210), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6265), 2, + sym_concatenation, + sym__extglob_blob, + STATE(5926), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [164353] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5949), 1, + anon_sym_RBRACK, + ACTIONS(6416), 1, + anon_sym_EQ, + ACTIONS(6422), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6424), 1, + anon_sym_AMP_AMP, + ACTIONS(6426), 1, anon_sym_PIPE, + ACTIONS(6428), 1, anon_sym_CARET, + ACTIONS(6430), 1, anon_sym_AMP, + ACTIONS(6444), 1, + anon_sym_STAR_STAR, + ACTIONS(6446), 1, + anon_sym_EQ_TILDE, + ACTIONS(6448), 1, + anon_sym_QMARK, + ACTIONS(6418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6432), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6434), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6436), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6438), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6440), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6442), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(7253), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(6420), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224017,48 +213729,198 @@ 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, - [172627] = 12, + [164429] = 12, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6656), 1, + anon_sym_LT_LT_LT, + ACTIONS(6661), 1, + sym_file_descriptor, + ACTIONS(6664), 1, + sym_variable_name, + STATE(6343), 1, + sym_subscript, + ACTIONS(6653), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3140), 2, + sym_variable_assignment, + aux_sym_command_repeat1, + STATE(3382), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(6650), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(6645), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(6647), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(6659), 13, + sym_test_operator, + sym__brace_start, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [164491] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7346), 1, + ACTIONS(5951), 1, + anon_sym_RBRACK, + ACTIONS(6416), 1, + anon_sym_EQ, + ACTIONS(6422), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6424), 1, + anon_sym_AMP_AMP, + ACTIONS(6426), 1, + anon_sym_PIPE, + ACTIONS(6428), 1, + anon_sym_CARET, + ACTIONS(6430), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(6444), 1, anon_sym_STAR_STAR, - ACTIONS(7334), 2, + ACTIONS(6446), 1, + anon_sym_EQ_TILDE, + ACTIONS(6448), 1, + anon_sym_QMARK, + ACTIONS(6418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(6432), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(6434), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(6436), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(6438), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(6440), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6993), 3, - anon_sym_EQ, + ACTIONS(6442), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6420), 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, + [164567] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5504), 1, + sym_word, + ACTIONS(5518), 1, + anon_sym_DOLLAR, + ACTIONS(5524), 1, + aux_sym_number_token1, + ACTIONS(5526), 1, + aux_sym_number_token2, + ACTIONS(5530), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5538), 1, + sym_test_operator, + ACTIONS(5540), 1, + sym_extglob_pattern, + ACTIONS(5542), 1, + sym__brace_start, + ACTIONS(5573), 1, + anon_sym_esac, + ACTIONS(6450), 1, + anon_sym_LPAREN, + ACTIONS(6454), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6456), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6458), 1, + sym__special_character, + ACTIONS(6460), 1, + anon_sym_DQUOTE, + ACTIONS(6464), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6466), 1, + anon_sym_BQUOTE, + ACTIONS(6468), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6008), 1, + aux_sym__literal_repeat1, + STATE(6444), 1, + sym_last_case_item, + ACTIONS(6462), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(6470), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3192), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6265), 2, + sym_concatenation, + sym__extglob_blob, + STATE(5926), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [164655] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6529), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6378), 13, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(7358), 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(6991), 16, + anon_sym_STAR_STAR, + ACTIONS(6380), 21, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224071,14 +213933,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_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [172689] = 3, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [164701] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7255), 13, + ACTIONS(1300), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -224092,8 +213958,7 @@ 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, + ACTIONS(1302), 23, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -224116,39 +213981,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [172733] = 11, + anon_sym_RPAREN, + [164745] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7360), 1, - anon_sym_STAR_STAR, - ACTIONS(7334), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7348), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(6094), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7354), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6993), 4, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(6991), 16, + anon_sym_STAR_STAR, + ACTIONS(6092), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224162,99 +214016,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [172793] = 6, - ACTIONS(3), 1, + [164789] = 3, + ACTIONS(71), 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, + ACTIONS(1229), 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(1231), 23, 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_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, - anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_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, + [164833] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6852), 1, + ACTIONS(5953), 1, anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(6416), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(6422), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(6424), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(6426), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(6428), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(6430), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(6444), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(6446), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(6448), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(6418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(6432), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(6434), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(6436), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(6438), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(6440), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(6442), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(6420), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224266,54 +214121,108 @@ 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, + [164909] = 3, + ACTIONS(71), 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, + ACTIONS(6384), 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(6386), 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, + [164953] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6090), 1, + anon_sym_RBRACK, + ACTIONS(6416), 1, + anon_sym_EQ, + ACTIONS(6422), 1, anon_sym_PIPE_PIPE, + ACTIONS(6424), 1, anon_sym_AMP_AMP, + ACTIONS(6426), 1, + anon_sym_PIPE, + ACTIONS(6428), 1, + anon_sym_CARET, + ACTIONS(6430), 1, + anon_sym_AMP, + ACTIONS(6444), 1, + anon_sym_STAR_STAR, + ACTIONS(6446), 1, + anon_sym_EQ_TILDE, + ACTIONS(6448), 1, + anon_sym_QMARK, + ACTIONS(6418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6432), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6434), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6436), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6438), 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, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_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, + ACTIONS(6440), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6442), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6420), 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, + [165029] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6989), 14, + ACTIONS(6088), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -224328,7 +214237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6987), 22, + ACTIONS(6086), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -224348,95 +214257,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [173013] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7581), 1, - aux_sym_concatenation_token1, - ACTIONS(7584), 1, - sym__concat, - STATE(3283), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 29, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [173063] = 17, + [165073] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6993), 1, + ACTIONS(5895), 1, + anon_sym_RBRACK, + ACTIONS(6416), 1, anon_sym_EQ, - ACTIONS(7368), 1, + ACTIONS(6422), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6424), 1, anon_sym_AMP_AMP, - ACTIONS(7370), 1, + ACTIONS(6426), 1, anon_sym_PIPE, - ACTIONS(7372), 1, + ACTIONS(6428), 1, anon_sym_CARET, - ACTIONS(7374), 1, + ACTIONS(6430), 1, anon_sym_AMP, - ACTIONS(7388), 1, + ACTIONS(6444), 1, anon_sym_STAR_STAR, - ACTIONS(7494), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7500), 1, + ACTIONS(6446), 1, + anon_sym_EQ_TILDE, + ACTIONS(6448), 1, anon_sym_QMARK, - ACTIONS(7366), 2, + ACTIONS(6418), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7376), 2, + ACTIONS(6432), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7378), 2, + ACTIONS(6434), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7380), 2, + ACTIONS(6436), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7382), 2, + ACTIONS(6438), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7384), 2, + ACTIONS(6440), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7386), 3, + ACTIONS(6442), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6991), 13, + ACTIONS(6420), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224448,82 +214317,52 @@ 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, - [173135] = 10, + [165149] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7360), 1, + ACTIONS(6519), 1, anon_sym_STAR_STAR, - ACTIONS(7334), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - 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(6993), 4, + ACTIONS(6557), 1, anon_sym_EQ, + ACTIONS(6561), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6563), 1, + anon_sym_AMP_AMP, + ACTIONS(6565), 1, anon_sym_PIPE, + ACTIONS(6567), 1, anon_sym_CARET, + ACTIONS(6569), 1, anon_sym_AMP, - ACTIONS(6991), 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, + ACTIONS(6579), 1, anon_sym_EQ_TILDE, + ACTIONS(6581), 1, anon_sym_QMARK, - [173193] = 8, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7360), 1, - anon_sym_STAR_STAR, - ACTIONS(7334), 2, + ACTIONS(6667), 1, + anon_sym_RPAREN, + ACTIONS(6511), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7354), 2, + ACTIONS(6513), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(6515), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(6571), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6573), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6575), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6517), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6993), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6991), 20, + ACTIONS(6559), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224535,40 +214374,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [165225] = 17, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5871), 1, + anon_sym_EQ, + ACTIONS(6422), 1, anon_sym_PIPE_PIPE, + ACTIONS(6424), 1, anon_sym_AMP_AMP, + ACTIONS(6426), 1, + anon_sym_PIPE, + ACTIONS(6428), 1, + anon_sym_CARET, + ACTIONS(6430), 1, + anon_sym_AMP, + ACTIONS(6444), 1, + anon_sym_STAR_STAR, + ACTIONS(6448), 1, + anon_sym_QMARK, + ACTIONS(6418), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6432), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6434), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6436), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [173247] = 7, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7360), 1, - anon_sym_STAR_STAR, - ACTIONS(7334), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7356), 2, + ACTIONS(6438), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6440), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(6442), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6993), 8, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6991), 20, + ACTIONS(5869), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224580,39 +214427,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_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, - [173299] = 6, + [165297] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(7360), 1, - anon_sym_STAR_STAR, - ACTIONS(7334), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7358), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6993), 10, + ACTIONS(6012), 1, anon_sym_EQ, + ACTIONS(6519), 1, + anon_sym_STAR_STAR, + ACTIONS(6561), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6563), 1, + anon_sym_AMP_AMP, + ACTIONS(6565), 1, anon_sym_PIPE, + ACTIONS(6567), 1, anon_sym_CARET, + ACTIONS(6569), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(6511), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6513), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6515), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6991), 20, + ACTIONS(6571), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6573), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6575), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6517), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6010), 14, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224624,69 +214480,61 @@ 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, - [173349] = 25, + [165367] = 24, ACTIONS(71), 1, sym_comment, - ACTIONS(6376), 1, + ACTIONS(5504), 1, sym_word, - ACTIONS(6390), 1, + ACTIONS(5518), 1, anon_sym_DOLLAR, - ACTIONS(6396), 1, + ACTIONS(5524), 1, aux_sym_number_token1, - ACTIONS(6398), 1, + ACTIONS(5526), 1, aux_sym_number_token2, - ACTIONS(6402), 1, + ACTIONS(5530), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, + ACTIONS(5538), 1, sym_test_operator, - ACTIONS(6412), 1, + ACTIONS(5540), 1, sym_extglob_pattern, - ACTIONS(6414), 1, + ACTIONS(5542), 1, sym__brace_start, - ACTIONS(7506), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(7508), 1, + ACTIONS(6454), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, + ACTIONS(6456), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, + ACTIONS(6458), 1, sym__special_character, - ACTIONS(7514), 1, + ACTIONS(6460), 1, anon_sym_DQUOTE, - ACTIONS(7518), 1, + ACTIONS(6464), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, + ACTIONS(6466), 1, anon_sym_BQUOTE, - ACTIONS(7522), 1, + ACTIONS(6468), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7587), 1, - anon_sym_esac, - STATE(6347), 1, + STATE(6008), 1, aux_sym__literal_repeat1, - STATE(6769), 1, + STATE(6480), 1, sym_last_case_item, - ACTIONS(7516), 2, + ACTIONS(6462), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7524), 2, + ACTIONS(6470), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3314), 2, + STATE(3233), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(6599), 2, + STATE(6265), 2, sym_concatenation, sym__extglob_blob, - STATE(6223), 9, + STATE(5926), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -224696,345 +214544,250 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [173437] = 8, - ACTIONS(3), 1, + [165452] = 3, + ACTIONS(71), 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), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(5205), 12, 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, - [173490] = 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, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 20, - anon_sym_SEMI, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5207), 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_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7591), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, 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, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 20, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [165495] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5209), 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_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_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, - sym_comment, - ACTIONS(1298), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5211), 23, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 30, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, + anon_sym_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, - [173639] = 3, - ACTIONS(3), 1, + [165538] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1258), 5, + ACTIONS(5213), 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(5215), 23, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 30, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, + anon_sym_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, - [173682] = 3, - ACTIONS(3), 1, + [165581] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1262), 5, + ACTIONS(5213), 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(5215), 23, 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, - ACTIONS(3), 1, + [165624] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1314), 5, + ACTIONS(5217), 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(5219), 23, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 30, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, + anon_sym_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, - [173768] = 3, - ACTIONS(3), 1, + [165667] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1270), 5, + ACTIONS(5217), 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(5219), 23, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 30, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, + anon_sym_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, - [173811] = 3, + [165710] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1223), 12, + ACTIONS(5201), 12, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -225047,7 +214800,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(1225), 23, + ACTIONS(5203), 23, sym_file_descriptor, sym_test_operator, sym__brace_start, @@ -225071,58 +214824,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [173854] = 24, + [165753] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1197), 1, + sym_file_descriptor, + ACTIONS(3642), 1, + anon_sym_DQUOTE, + ACTIONS(6673), 1, + sym_variable_name, + STATE(4172), 1, + sym_string, + ACTIONS(6671), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(6669), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_BQUOTE, + [165806] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1191), 1, + sym_file_descriptor, + ACTIONS(3642), 1, + anon_sym_DQUOTE, + ACTIONS(6673), 1, + sym_variable_name, + STATE(4172), 1, + sym_string, + ACTIONS(6671), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(6669), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_BQUOTE, + [165859] = 24, ACTIONS(71), 1, sym_comment, - ACTIONS(6376), 1, + ACTIONS(5504), 1, sym_word, - ACTIONS(6390), 1, + ACTIONS(5518), 1, anon_sym_DOLLAR, - ACTIONS(6396), 1, + ACTIONS(5524), 1, aux_sym_number_token1, - ACTIONS(6398), 1, + ACTIONS(5526), 1, aux_sym_number_token2, - ACTIONS(6402), 1, + ACTIONS(5530), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, + ACTIONS(5538), 1, sym_test_operator, - ACTIONS(6412), 1, + ACTIONS(5540), 1, sym_extglob_pattern, - ACTIONS(6414), 1, + ACTIONS(5542), 1, sym__brace_start, - ACTIONS(7506), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(7508), 1, + ACTIONS(6454), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, + ACTIONS(6456), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, + ACTIONS(6458), 1, sym__special_character, - ACTIONS(7514), 1, + ACTIONS(6460), 1, anon_sym_DQUOTE, - ACTIONS(7518), 1, + ACTIONS(6464), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, + ACTIONS(6466), 1, anon_sym_BQUOTE, - ACTIONS(7522), 1, + ACTIONS(6468), 1, anon_sym_DOLLAR_BQUOTE, - STATE(6347), 1, + STATE(6008), 1, aux_sym__literal_repeat1, - STATE(7366), 1, + STATE(6434), 1, sym_last_case_item, - ACTIONS(7516), 2, + ACTIONS(6462), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7524), 2, + ACTIONS(6470), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3357), 2, + STATE(3233), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(6599), 2, + STATE(6265), 2, sym_concatenation, sym__extglob_blob, - STATE(6223), 9, + STATE(5926), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -225132,58 +214975,58 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [173939] = 24, + [165944] = 24, ACTIONS(71), 1, sym_comment, - ACTIONS(6376), 1, + ACTIONS(5504), 1, sym_word, - ACTIONS(6390), 1, + ACTIONS(5518), 1, anon_sym_DOLLAR, - ACTIONS(6396), 1, + ACTIONS(5524), 1, aux_sym_number_token1, - ACTIONS(6398), 1, + ACTIONS(5526), 1, aux_sym_number_token2, - ACTIONS(6402), 1, + ACTIONS(5530), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, + ACTIONS(5538), 1, sym_test_operator, - ACTIONS(6412), 1, + ACTIONS(5540), 1, sym_extglob_pattern, - ACTIONS(6414), 1, + ACTIONS(5542), 1, sym__brace_start, - ACTIONS(7506), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(7508), 1, + ACTIONS(6454), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, + ACTIONS(6456), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, + ACTIONS(6458), 1, sym__special_character, - ACTIONS(7514), 1, + ACTIONS(6460), 1, anon_sym_DQUOTE, - ACTIONS(7518), 1, + ACTIONS(6464), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, + ACTIONS(6466), 1, anon_sym_BQUOTE, - ACTIONS(7522), 1, + ACTIONS(6468), 1, anon_sym_DOLLAR_BQUOTE, - STATE(6347), 1, + STATE(6008), 1, aux_sym__literal_repeat1, - STATE(6763), 1, + STATE(6572), 1, sym_last_case_item, - ACTIONS(7516), 2, + ACTIONS(6462), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7524), 2, + ACTIONS(6470), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3357), 2, + STATE(3233), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(6599), 2, + STATE(6265), 2, sym_concatenation, sym__extglob_blob, - STATE(6223), 9, + STATE(5926), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -225193,98 +215036,58 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [174024] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1266), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 30, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [174067] = 24, + [166029] = 24, ACTIONS(71), 1, sym_comment, - ACTIONS(6376), 1, + ACTIONS(5504), 1, sym_word, - ACTIONS(6390), 1, + ACTIONS(5518), 1, anon_sym_DOLLAR, - ACTIONS(6396), 1, + ACTIONS(5524), 1, aux_sym_number_token1, - ACTIONS(6398), 1, + ACTIONS(5526), 1, aux_sym_number_token2, - ACTIONS(6402), 1, + ACTIONS(5530), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, + ACTIONS(5538), 1, sym_test_operator, - ACTIONS(6412), 1, + ACTIONS(5540), 1, sym_extglob_pattern, - ACTIONS(6414), 1, + ACTIONS(5542), 1, sym__brace_start, - ACTIONS(7506), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(7508), 1, + ACTIONS(6454), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, + ACTIONS(6456), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, + ACTIONS(6458), 1, sym__special_character, - ACTIONS(7514), 1, + ACTIONS(6460), 1, anon_sym_DQUOTE, - ACTIONS(7518), 1, + ACTIONS(6464), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, + ACTIONS(6466), 1, anon_sym_BQUOTE, - ACTIONS(7522), 1, + ACTIONS(6468), 1, anon_sym_DOLLAR_BQUOTE, - STATE(6347), 1, + STATE(6008), 1, aux_sym__literal_repeat1, - STATE(7016), 1, + STATE(6654), 1, sym_last_case_item, - ACTIONS(7516), 2, + ACTIONS(6462), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7524), 2, + ACTIONS(6470), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3357), 2, + STATE(3233), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(6599), 2, + STATE(6265), 2, sym_concatenation, sym__extglob_blob, - STATE(6223), 9, + STATE(5926), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -225294,58 +215097,58 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [174152] = 24, + [166114] = 24, ACTIONS(71), 1, sym_comment, - ACTIONS(6376), 1, + ACTIONS(5504), 1, sym_word, - ACTIONS(6390), 1, + ACTIONS(5518), 1, anon_sym_DOLLAR, - ACTIONS(6396), 1, + ACTIONS(5524), 1, aux_sym_number_token1, - ACTIONS(6398), 1, + ACTIONS(5526), 1, aux_sym_number_token2, - ACTIONS(6402), 1, + ACTIONS(5530), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, + ACTIONS(5538), 1, sym_test_operator, - ACTIONS(6412), 1, + ACTIONS(5540), 1, sym_extglob_pattern, - ACTIONS(6414), 1, + ACTIONS(5542), 1, sym__brace_start, - ACTIONS(7506), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(7508), 1, + ACTIONS(6454), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, + ACTIONS(6456), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, + ACTIONS(6458), 1, sym__special_character, - ACTIONS(7514), 1, + ACTIONS(6460), 1, anon_sym_DQUOTE, - ACTIONS(7518), 1, + ACTIONS(6464), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, + ACTIONS(6466), 1, anon_sym_BQUOTE, - ACTIONS(7522), 1, + ACTIONS(6468), 1, anon_sym_DOLLAR_BQUOTE, - STATE(6347), 1, + STATE(6008), 1, aux_sym__literal_repeat1, - STATE(7019), 1, + STATE(6379), 1, sym_last_case_item, - ACTIONS(7516), 2, + ACTIONS(6462), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7524), 2, + ACTIONS(6470), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3357), 2, + STATE(3233), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(6599), 2, + STATE(6265), 2, sym_concatenation, sym__extglob_blob, - STATE(6223), 9, + STATE(5926), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -225355,58 +215158,58 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [174237] = 24, + [166199] = 24, ACTIONS(71), 1, sym_comment, - ACTIONS(6376), 1, + ACTIONS(5504), 1, sym_word, - ACTIONS(6390), 1, + ACTIONS(5518), 1, anon_sym_DOLLAR, - ACTIONS(6396), 1, + ACTIONS(5524), 1, aux_sym_number_token1, - ACTIONS(6398), 1, + ACTIONS(5526), 1, aux_sym_number_token2, - ACTIONS(6402), 1, + ACTIONS(5530), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, + ACTIONS(5538), 1, sym_test_operator, - ACTIONS(6412), 1, + ACTIONS(5540), 1, sym_extglob_pattern, - ACTIONS(6414), 1, + ACTIONS(5542), 1, sym__brace_start, - ACTIONS(7506), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(7508), 1, + ACTIONS(6454), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, + ACTIONS(6456), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, + ACTIONS(6458), 1, sym__special_character, - ACTIONS(7514), 1, + ACTIONS(6460), 1, anon_sym_DQUOTE, - ACTIONS(7518), 1, + ACTIONS(6464), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, + ACTIONS(6466), 1, anon_sym_BQUOTE, - ACTIONS(7522), 1, + ACTIONS(6468), 1, anon_sym_DOLLAR_BQUOTE, - STATE(6347), 1, + STATE(6008), 1, aux_sym__literal_repeat1, - STATE(7031), 1, + STATE(6393), 1, sym_last_case_item, - ACTIONS(7516), 2, + ACTIONS(6462), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7524), 2, + ACTIONS(6470), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3357), 2, + STATE(3233), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(6599), 2, + STATE(6265), 2, sym_concatenation, sym__extglob_blob, - STATE(6223), 9, + STATE(5926), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -225416,98 +215219,58 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [174322] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1294), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 30, - anon_sym_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, - [174365] = 24, + [166284] = 24, ACTIONS(71), 1, sym_comment, - ACTIONS(6376), 1, + ACTIONS(5504), 1, sym_word, - ACTIONS(6390), 1, + ACTIONS(5518), 1, anon_sym_DOLLAR, - ACTIONS(6396), 1, + ACTIONS(5524), 1, aux_sym_number_token1, - ACTIONS(6398), 1, + ACTIONS(5526), 1, aux_sym_number_token2, - ACTIONS(6402), 1, + ACTIONS(5530), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, + ACTIONS(5538), 1, sym_test_operator, - ACTIONS(6412), 1, + ACTIONS(5540), 1, sym_extglob_pattern, - ACTIONS(6414), 1, + ACTIONS(5542), 1, sym__brace_start, - ACTIONS(7506), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(7508), 1, + ACTIONS(6454), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, + ACTIONS(6456), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, + ACTIONS(6458), 1, sym__special_character, - ACTIONS(7514), 1, + ACTIONS(6460), 1, anon_sym_DQUOTE, - ACTIONS(7518), 1, + ACTIONS(6464), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, + ACTIONS(6466), 1, anon_sym_BQUOTE, - ACTIONS(7522), 1, + ACTIONS(6468), 1, anon_sym_DOLLAR_BQUOTE, - STATE(6347), 1, + STATE(6008), 1, aux_sym__literal_repeat1, - STATE(7033), 1, + STATE(6475), 1, sym_last_case_item, - ACTIONS(7516), 2, + ACTIONS(6462), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7524), 2, + ACTIONS(6470), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3357), 2, + STATE(3233), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(6599), 2, + STATE(6265), 2, sym_concatenation, sym__extglob_blob, - STATE(6223), 9, + STATE(5926), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -225517,58 +215280,58 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [174450] = 24, + [166369] = 24, ACTIONS(71), 1, sym_comment, - ACTIONS(6376), 1, + ACTIONS(5504), 1, sym_word, - ACTIONS(6390), 1, + ACTIONS(5518), 1, anon_sym_DOLLAR, - ACTIONS(6396), 1, + ACTIONS(5524), 1, aux_sym_number_token1, - ACTIONS(6398), 1, + ACTIONS(5526), 1, aux_sym_number_token2, - ACTIONS(6402), 1, + ACTIONS(5530), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, + ACTIONS(5538), 1, sym_test_operator, - ACTIONS(6412), 1, + ACTIONS(5540), 1, sym_extglob_pattern, - ACTIONS(6414), 1, + ACTIONS(5542), 1, sym__brace_start, - ACTIONS(7506), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(7508), 1, + ACTIONS(6454), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, + ACTIONS(6456), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, + ACTIONS(6458), 1, sym__special_character, - ACTIONS(7514), 1, + ACTIONS(6460), 1, anon_sym_DQUOTE, - ACTIONS(7518), 1, + ACTIONS(6464), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, + ACTIONS(6466), 1, anon_sym_BQUOTE, - ACTIONS(7522), 1, + ACTIONS(6468), 1, anon_sym_DOLLAR_BQUOTE, - STATE(6347), 1, + STATE(6008), 1, aux_sym__literal_repeat1, - STATE(7040), 1, + STATE(6481), 1, sym_last_case_item, - ACTIONS(7516), 2, + ACTIONS(6462), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7524), 2, + ACTIONS(6470), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3357), 2, + STATE(3233), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(6599), 2, + STATE(6265), 2, sym_concatenation, sym__extglob_blob, - STATE(6223), 9, + STATE(5926), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -225578,67 +215341,221 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [174535] = 8, - ACTIONS(3), 1, + [166454] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(3950), 1, - anon_sym_DQUOTE, - ACTIONS(7601), 1, - sym_variable_name, - STATE(4349), 1, - sym_string, - ACTIONS(1197), 2, + ACTIONS(5201), 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(5203), 23, 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, + 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, + [166497] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1229), 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, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 20, - anon_sym_SEMI, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1231), 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, + [166540] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5169), 12, 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, + sym_word, + ACTIONS(5171), 23, + 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_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, + [166583] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5173), 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(5175), 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, + [166626] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5177), 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(5179), 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, - aux_sym_heredoc_redirect_token1, - [174588] = 8, + 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, + [166669] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3950), 1, + ACTIONS(1191), 1, + sym_file_descriptor, + ACTIONS(3307), 1, anon_sym_DQUOTE, - ACTIONS(7601), 1, + ACTIONS(6481), 1, sym_variable_name, - STATE(4349), 1, + STATE(4065), 1, sym_string, - ACTIONS(1191), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(7599), 2, + ACTIONS(6479), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7597), 8, + ACTIONS(6477), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -225647,7 +215564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1183), 20, + ACTIONS(1183), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -225668,82 +215585,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, - [174641] = 24, + anon_sym_LT_LT_LT, + [166722] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6376), 1, - sym_word, - ACTIONS(6390), 1, + ACTIONS(4493), 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(4495), 23, + sym_file_descriptor, sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, sym__brace_start, - ACTIONS(7506), 1, - anon_sym_LPAREN, - ACTIONS(7508), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_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(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, + [166765] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1197), 1, + ACTIONS(1191), 1, sym_file_descriptor, - ACTIONS(3950), 1, + ACTIONS(6677), 1, anon_sym_DQUOTE, - ACTIONS(7601), 1, + ACTIONS(6681), 1, sym_variable_name, - STATE(4349), 1, + STATE(4127), 1, sym_string, - ACTIONS(7599), 2, + ACTIONS(6679), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7597), 8, + ACTIONS(6675), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -225752,7 +215649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1195), 21, + ACTIONS(1183), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -225774,247 +215671,221 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, anon_sym_BQUOTE, - [174779] = 3, - ACTIONS(3), 1, + [166818] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1278), 5, + ACTIONS(5205), 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(5207), 23, 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_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_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, + [166861] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5181), 12, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5183), 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_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, + [166904] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1250), 5, + ACTIONS(5161), 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(5163), 23, 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, + [166947] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6376), 1, - sym_word, - ACTIONS(6390), 1, + ACTIONS(5197), 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(5199), 23, + sym_file_descriptor, sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, sym__brace_start, - ACTIONS(7506), 1, - anon_sym_LPAREN, - ACTIONS(7508), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_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(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, + [166990] = 3, + ACTIONS(71), 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), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(4899), 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_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_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(4901), 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_AMP_GT_GT, - anon_sym_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, + [167033] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1197), 1, sym_file_descriptor, - ACTIONS(3512), 1, + ACTIONS(3307), 1, anon_sym_DQUOTE, - ACTIONS(7420), 1, + ACTIONS(6481), 1, sym_variable_name, - STATE(4218), 1, + STATE(4065), 1, sym_string, - ACTIONS(7418), 2, + ACTIONS(6479), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7416), 8, + ACTIONS(6477), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -226045,21 +215916,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - [175099] = 8, + [167086] = 24, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5504), 1, + sym_word, + ACTIONS(5518), 1, + anon_sym_DOLLAR, + ACTIONS(5524), 1, + aux_sym_number_token1, + ACTIONS(5526), 1, + aux_sym_number_token2, + ACTIONS(5530), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5538), 1, + sym_test_operator, + ACTIONS(5540), 1, + sym_extglob_pattern, + ACTIONS(5542), 1, + sym__brace_start, + ACTIONS(6450), 1, + anon_sym_LPAREN, + ACTIONS(6454), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6456), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6458), 1, + sym__special_character, + ACTIONS(6460), 1, + anon_sym_DQUOTE, + ACTIONS(6464), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6466), 1, + anon_sym_BQUOTE, + ACTIONS(6468), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6008), 1, + aux_sym__literal_repeat1, + STATE(6427), 1, + sym_last_case_item, + ACTIONS(6462), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(6470), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3233), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6265), 2, + sym_concatenation, + sym__extglob_blob, + STATE(5926), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [167171] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1191), 1, + ACTIONS(1197), 1, sym_file_descriptor, - ACTIONS(3950), 1, + ACTIONS(6677), 1, anon_sym_DQUOTE, - ACTIONS(7601), 1, + ACTIONS(6681), 1, sym_variable_name, - STATE(4349), 1, + STATE(4127), 1, sym_string, - ACTIONS(7599), 2, + ACTIONS(6679), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7597), 8, + ACTIONS(6675), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -226068,7 +216000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1183), 21, + ACTIONS(1195), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -226078,6 +216010,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, @@ -226089,59 +216022,58 @@ 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_BQUOTE, - [175152] = 24, + [167224] = 24, ACTIONS(71), 1, sym_comment, - ACTIONS(6376), 1, + ACTIONS(5504), 1, sym_word, - ACTIONS(6390), 1, + ACTIONS(5518), 1, anon_sym_DOLLAR, - ACTIONS(6396), 1, + ACTIONS(5524), 1, aux_sym_number_token1, - ACTIONS(6398), 1, + ACTIONS(5526), 1, aux_sym_number_token2, - ACTIONS(6402), 1, + ACTIONS(5530), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, + ACTIONS(5538), 1, sym_test_operator, - ACTIONS(6412), 1, + ACTIONS(5540), 1, sym_extglob_pattern, - ACTIONS(6414), 1, + ACTIONS(5542), 1, sym__brace_start, - ACTIONS(7506), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(7508), 1, + ACTIONS(6454), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, + ACTIONS(6456), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, + ACTIONS(6458), 1, sym__special_character, - ACTIONS(7514), 1, + ACTIONS(6460), 1, anon_sym_DQUOTE, - ACTIONS(7518), 1, + ACTIONS(6464), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, + ACTIONS(6466), 1, anon_sym_BQUOTE, - ACTIONS(7522), 1, + ACTIONS(6468), 1, anon_sym_DOLLAR_BQUOTE, - STATE(6347), 1, + STATE(6008), 1, aux_sym__literal_repeat1, - STATE(6880), 1, + STATE(6444), 1, sym_last_case_item, - ACTIONS(7516), 2, + ACTIONS(6462), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7524), 2, + ACTIONS(6470), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3357), 2, + STATE(3233), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(6599), 2, + STATE(6265), 2, sym_concatenation, sym__extglob_blob, - STATE(6223), 9, + STATE(5926), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -226151,58 +216083,58 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [175237] = 24, + [167309] = 24, ACTIONS(71), 1, sym_comment, - ACTIONS(6376), 1, + ACTIONS(5504), 1, sym_word, - ACTIONS(6390), 1, + ACTIONS(5518), 1, anon_sym_DOLLAR, - ACTIONS(6396), 1, + ACTIONS(5524), 1, aux_sym_number_token1, - ACTIONS(6398), 1, + ACTIONS(5526), 1, aux_sym_number_token2, - ACTIONS(6402), 1, + ACTIONS(5530), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, + ACTIONS(5538), 1, sym_test_operator, - ACTIONS(6412), 1, + ACTIONS(5540), 1, sym_extglob_pattern, - ACTIONS(6414), 1, + ACTIONS(5542), 1, sym__brace_start, - ACTIONS(7506), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(7508), 1, + ACTIONS(6454), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, + ACTIONS(6456), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, + ACTIONS(6458), 1, sym__special_character, - ACTIONS(7514), 1, + ACTIONS(6460), 1, anon_sym_DQUOTE, - ACTIONS(7518), 1, + ACTIONS(6464), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, + ACTIONS(6466), 1, anon_sym_BQUOTE, - ACTIONS(7522), 1, + ACTIONS(6468), 1, anon_sym_DOLLAR_BQUOTE, - STATE(6347), 1, + STATE(6008), 1, aux_sym__literal_repeat1, - STATE(7175), 1, + STATE(6488), 1, sym_last_case_item, - ACTIONS(7516), 2, + ACTIONS(6462), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7524), 2, + ACTIONS(6470), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3357), 2, + STATE(3233), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(6599), 2, + STATE(6265), 2, sym_concatenation, sym__extglob_blob, - STATE(6223), 9, + STATE(5926), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -226212,21 +216144,21 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [175322] = 8, + [167394] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1191), 1, sym_file_descriptor, - ACTIONS(3512), 1, + ACTIONS(6677), 1, anon_sym_DQUOTE, - ACTIONS(7420), 1, + ACTIONS(6681), 1, sym_variable_name, - STATE(4218), 1, + STATE(4127), 1, sym_string, - ACTIONS(7418), 2, + ACTIONS(6679), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7416), 8, + ACTIONS(6675), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -226245,6 +216177,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, @@ -226256,120 +216189,98 @@ 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, - [175375] = 24, + [167447] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6376), 1, - sym_word, - ACTIONS(6390), 1, + ACTIONS(5185), 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(5187), 23, + sym_file_descriptor, sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, sym__brace_start, - ACTIONS(7506), 1, - anon_sym_LPAREN, - ACTIONS(7508), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_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(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, + [167490] = 24, ACTIONS(71), 1, sym_comment, - ACTIONS(6376), 1, + ACTIONS(5504), 1, sym_word, - ACTIONS(6390), 1, + ACTIONS(5518), 1, anon_sym_DOLLAR, - ACTIONS(6396), 1, + ACTIONS(5524), 1, aux_sym_number_token1, - ACTIONS(6398), 1, + ACTIONS(5526), 1, aux_sym_number_token2, - ACTIONS(6402), 1, + ACTIONS(5530), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, + ACTIONS(5538), 1, sym_test_operator, - ACTIONS(6412), 1, + ACTIONS(5540), 1, sym_extglob_pattern, - ACTIONS(6414), 1, + ACTIONS(5542), 1, sym__brace_start, - ACTIONS(7506), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(7508), 1, + ACTIONS(6454), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, + ACTIONS(6456), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, + ACTIONS(6458), 1, sym__special_character, - ACTIONS(7514), 1, + ACTIONS(6460), 1, anon_sym_DQUOTE, - ACTIONS(7518), 1, + ACTIONS(6464), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, + ACTIONS(6466), 1, anon_sym_BQUOTE, - ACTIONS(7522), 1, + ACTIONS(6468), 1, anon_sym_DOLLAR_BQUOTE, - STATE(6347), 1, + STATE(6008), 1, aux_sym__literal_repeat1, - STATE(7188), 1, + STATE(6495), 1, sym_last_case_item, - ACTIONS(7516), 2, + ACTIONS(6462), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7524), 2, + ACTIONS(6470), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3357), 2, + STATE(3233), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(6599), 2, + STATE(6265), 2, sym_concatenation, sym__extglob_blob, - STATE(6223), 9, + STATE(5926), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -226379,58 +216290,58 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [175545] = 24, + [167575] = 24, ACTIONS(71), 1, sym_comment, - ACTIONS(6376), 1, + ACTIONS(5504), 1, sym_word, - ACTIONS(6390), 1, + ACTIONS(5518), 1, anon_sym_DOLLAR, - ACTIONS(6396), 1, + ACTIONS(5524), 1, aux_sym_number_token1, - ACTIONS(6398), 1, + ACTIONS(5526), 1, aux_sym_number_token2, - ACTIONS(6402), 1, + ACTIONS(5530), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, + ACTIONS(5538), 1, sym_test_operator, - ACTIONS(6412), 1, + ACTIONS(5540), 1, sym_extglob_pattern, - ACTIONS(6414), 1, + ACTIONS(5542), 1, sym__brace_start, - ACTIONS(7506), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(7508), 1, + ACTIONS(6454), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, + ACTIONS(6456), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, + ACTIONS(6458), 1, sym__special_character, - ACTIONS(7514), 1, + ACTIONS(6460), 1, anon_sym_DQUOTE, - ACTIONS(7518), 1, + ACTIONS(6464), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, + ACTIONS(6466), 1, anon_sym_BQUOTE, - ACTIONS(7522), 1, + ACTIONS(6468), 1, anon_sym_DOLLAR_BQUOTE, - STATE(6347), 1, + STATE(6008), 1, aux_sym__literal_repeat1, - STATE(7189), 1, + STATE(6574), 1, sym_last_case_item, - ACTIONS(7516), 2, + ACTIONS(6462), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7524), 2, + ACTIONS(6470), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3357), 2, + STATE(3233), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(6599), 2, + STATE(6265), 2, sym_concatenation, sym__extglob_blob, - STATE(6223), 9, + STATE(5926), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -226440,58 +216351,58 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [175630] = 24, + [167660] = 24, ACTIONS(71), 1, sym_comment, - ACTIONS(6376), 1, + ACTIONS(5504), 1, sym_word, - ACTIONS(6390), 1, + ACTIONS(5518), 1, anon_sym_DOLLAR, - ACTIONS(6396), 1, + ACTIONS(5524), 1, aux_sym_number_token1, - ACTIONS(6398), 1, + ACTIONS(5526), 1, aux_sym_number_token2, - ACTIONS(6402), 1, + ACTIONS(5530), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, + ACTIONS(5538), 1, sym_test_operator, - ACTIONS(6412), 1, + ACTIONS(5540), 1, sym_extglob_pattern, - ACTIONS(6414), 1, + ACTIONS(5542), 1, sym__brace_start, - ACTIONS(7506), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(7508), 1, + ACTIONS(6454), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, + ACTIONS(6456), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, + ACTIONS(6458), 1, sym__special_character, - ACTIONS(7514), 1, + ACTIONS(6460), 1, anon_sym_DQUOTE, - ACTIONS(7518), 1, + ACTIONS(6464), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, + ACTIONS(6466), 1, anon_sym_BQUOTE, - ACTIONS(7522), 1, + ACTIONS(6468), 1, anon_sym_DOLLAR_BQUOTE, - STATE(6347), 1, + STATE(6008), 1, aux_sym__literal_repeat1, - STATE(7195), 1, + STATE(6586), 1, sym_last_case_item, - ACTIONS(7516), 2, + ACTIONS(6462), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7524), 2, + ACTIONS(6470), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3357), 2, + STATE(3233), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(6599), 2, + STATE(6265), 2, sym_concatenation, sym__extglob_blob, - STATE(6223), 9, + STATE(5926), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -226501,180 +216412,348 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [175715] = 24, + [167745] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6376), 1, - sym_word, - ACTIONS(6390), 1, + ACTIONS(5185), 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(5187), 23, + sym_file_descriptor, sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, sym__brace_start, - ACTIONS(7506), 1, - anon_sym_LPAREN, - ACTIONS(7508), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_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(7196), 1, - sym_last_case_item, - ACTIONS(7516), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [167788] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5165), 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(5167), 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, - ACTIONS(7524), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, 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, + [167831] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3642), 1, + anon_sym_DQUOTE, + ACTIONS(6673), 1, + sym_variable_name, + STATE(4172), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [175800] = 24, + ACTIONS(1191), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(6671), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(6669), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [167884] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6376), 1, + ACTIONS(5189), 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(6390), 1, + ACTIONS(5191), 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, + [167927] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5189), 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(5191), 23, + sym_file_descriptor, sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, sym__brace_start, - ACTIONS(7506), 1, - anon_sym_LPAREN, - ACTIONS(7508), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_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, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [167970] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5193), 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(5195), 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, - ACTIONS(7524), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, 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, + [168013] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1197), 1, + sym_file_descriptor, + ACTIONS(3642), 1, + anon_sym_DQUOTE, + ACTIONS(6673), 1, + sym_variable_name, + STATE(4172), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [175885] = 24, + ACTIONS(6671), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(6669), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [168066] = 24, ACTIONS(71), 1, sym_comment, - ACTIONS(6376), 1, + ACTIONS(5504), 1, sym_word, - ACTIONS(6390), 1, + ACTIONS(5518), 1, anon_sym_DOLLAR, - ACTIONS(6396), 1, + ACTIONS(5524), 1, aux_sym_number_token1, - ACTIONS(6398), 1, + ACTIONS(5526), 1, aux_sym_number_token2, - ACTIONS(6402), 1, + ACTIONS(5530), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, + ACTIONS(5538), 1, sym_test_operator, - ACTIONS(6412), 1, + ACTIONS(5540), 1, sym_extglob_pattern, - ACTIONS(6414), 1, + ACTIONS(5542), 1, sym__brace_start, - ACTIONS(7506), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(7508), 1, + ACTIONS(6454), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, + ACTIONS(6456), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, + ACTIONS(6458), 1, sym__special_character, - ACTIONS(7514), 1, + ACTIONS(6460), 1, anon_sym_DQUOTE, - ACTIONS(7518), 1, + ACTIONS(6464), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, + ACTIONS(6466), 1, anon_sym_BQUOTE, - ACTIONS(7522), 1, + ACTIONS(6468), 1, anon_sym_DOLLAR_BQUOTE, - STATE(6347), 1, + STATE(6008), 1, aux_sym__literal_repeat1, - STATE(6807), 1, + STATE(7033), 1, sym_last_case_item, - ACTIONS(7516), 2, + ACTIONS(6462), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7524), 2, + ACTIONS(6470), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3357), 2, + STATE(3233), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(6599), 2, + STATE(6265), 2, sym_concatenation, sym__extglob_blob, - STATE(6223), 9, + STATE(5926), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -226684,21 +216763,42 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [175970] = 3, + [168151] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 5, + ACTIONS(1191), 1, sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 30, + ACTIONS(3642), 1, + anon_sym_DQUOTE, + ACTIONS(6673), 1, + sym_variable_name, + STATE(4172), 1, + sym_string, + ACTIONS(6671), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(6669), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 21, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -226706,76 +216806,150 @@ 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, - aux_sym_concatenation_token1, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [168204] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6677), 1, + anon_sym_DQUOTE, + ACTIONS(6681), 1, + sym_variable_name, + STATE(4127), 1, + sym_string, + ACTIONS(1197), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(6679), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(6675), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - sym__special_character, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [168257] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6677), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_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(6681), 1, + sym_variable_name, + STATE(4127), 1, + sym_string, + ACTIONS(1191), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(6679), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(6675), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [168310] = 24, ACTIONS(71), 1, sym_comment, - ACTIONS(6376), 1, + ACTIONS(5504), 1, sym_word, - ACTIONS(6390), 1, + ACTIONS(5518), 1, anon_sym_DOLLAR, - ACTIONS(6396), 1, + ACTIONS(5524), 1, aux_sym_number_token1, - ACTIONS(6398), 1, + ACTIONS(5526), 1, aux_sym_number_token2, - ACTIONS(6402), 1, + ACTIONS(5530), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, + ACTIONS(5538), 1, sym_test_operator, - ACTIONS(6412), 1, + ACTIONS(5540), 1, sym_extglob_pattern, - ACTIONS(6414), 1, + ACTIONS(5542), 1, sym__brace_start, - ACTIONS(7506), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(7508), 1, + ACTIONS(6454), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, + ACTIONS(6456), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, + ACTIONS(6458), 1, sym__special_character, - ACTIONS(7514), 1, + ACTIONS(6460), 1, anon_sym_DQUOTE, - ACTIONS(7518), 1, + ACTIONS(6464), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, + ACTIONS(6466), 1, anon_sym_BQUOTE, - ACTIONS(7522), 1, + ACTIONS(6468), 1, anon_sym_DOLLAR_BQUOTE, - STATE(6347), 1, + STATE(6008), 1, aux_sym__literal_repeat1, - STATE(6821), 1, + STATE(6558), 1, sym_last_case_item, - ACTIONS(7516), 2, + ACTIONS(6462), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7524), 2, + ACTIONS(6470), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3357), 2, + STATE(3233), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(6599), 2, + STATE(6265), 2, sym_concatenation, sym__extglob_blob, - STATE(6223), 9, + STATE(5926), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -226785,58 +216959,58 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [176098] = 24, + [168395] = 24, ACTIONS(71), 1, sym_comment, - ACTIONS(6376), 1, + ACTIONS(5504), 1, sym_word, - ACTIONS(6390), 1, + ACTIONS(5518), 1, anon_sym_DOLLAR, - ACTIONS(6396), 1, + ACTIONS(5524), 1, aux_sym_number_token1, - ACTIONS(6398), 1, + ACTIONS(5526), 1, aux_sym_number_token2, - ACTIONS(6402), 1, + ACTIONS(5530), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, + ACTIONS(5538), 1, sym_test_operator, - ACTIONS(6412), 1, + ACTIONS(5540), 1, sym_extglob_pattern, - ACTIONS(6414), 1, + ACTIONS(5542), 1, sym__brace_start, - ACTIONS(7506), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(7508), 1, + ACTIONS(6454), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, + ACTIONS(6456), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, + ACTIONS(6458), 1, sym__special_character, - ACTIONS(7514), 1, + ACTIONS(6460), 1, anon_sym_DQUOTE, - ACTIONS(7518), 1, + ACTIONS(6464), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, + ACTIONS(6466), 1, anon_sym_BQUOTE, - ACTIONS(7522), 1, + ACTIONS(6468), 1, anon_sym_DOLLAR_BQUOTE, - STATE(6347), 1, + STATE(6008), 1, aux_sym__literal_repeat1, - STATE(6823), 1, + STATE(6951), 1, sym_last_case_item, - ACTIONS(7516), 2, + ACTIONS(6462), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7524), 2, + ACTIONS(6470), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3357), 2, + STATE(3233), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(6599), 2, + STATE(6265), 2, sym_concatenation, sym__extglob_blob, - STATE(6223), 9, + STATE(5926), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -226846,58 +217020,58 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [176183] = 24, + [168480] = 24, ACTIONS(71), 1, sym_comment, - ACTIONS(6376), 1, + ACTIONS(5504), 1, sym_word, - ACTIONS(6390), 1, + ACTIONS(5518), 1, anon_sym_DOLLAR, - ACTIONS(6396), 1, + ACTIONS(5524), 1, aux_sym_number_token1, - ACTIONS(6398), 1, + ACTIONS(5526), 1, aux_sym_number_token2, - ACTIONS(6402), 1, + ACTIONS(5530), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, + ACTIONS(5538), 1, sym_test_operator, - ACTIONS(6412), 1, + ACTIONS(5540), 1, sym_extglob_pattern, - ACTIONS(6414), 1, + ACTIONS(5542), 1, sym__brace_start, - ACTIONS(7506), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(7508), 1, + ACTIONS(6454), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, + ACTIONS(6456), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, + ACTIONS(6458), 1, sym__special_character, - ACTIONS(7514), 1, + ACTIONS(6460), 1, anon_sym_DQUOTE, - ACTIONS(7518), 1, + ACTIONS(6464), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, + ACTIONS(6466), 1, anon_sym_BQUOTE, - ACTIONS(7522), 1, + ACTIONS(6468), 1, anon_sym_DOLLAR_BQUOTE, - STATE(6347), 1, + STATE(6008), 1, aux_sym__literal_repeat1, - STATE(6830), 1, + STATE(6569), 1, sym_last_case_item, - ACTIONS(7516), 2, + ACTIONS(6462), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7524), 2, + ACTIONS(6470), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3357), 2, + STATE(3233), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(6599), 2, + STATE(6265), 2, sym_concatenation, sym__extglob_blob, - STATE(6223), 9, + STATE(5926), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -226907,98 +217081,98 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [176268] = 3, - ACTIONS(3), 1, + [168565] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(4485), 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(4487), 23, 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_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, - [176311] = 24, + [168608] = 24, ACTIONS(71), 1, sym_comment, - ACTIONS(6376), 1, + ACTIONS(5504), 1, sym_word, - ACTIONS(6390), 1, + ACTIONS(5518), 1, anon_sym_DOLLAR, - ACTIONS(6396), 1, + ACTIONS(5524), 1, aux_sym_number_token1, - ACTIONS(6398), 1, + ACTIONS(5526), 1, aux_sym_number_token2, - ACTIONS(6402), 1, + ACTIONS(5530), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, + ACTIONS(5538), 1, sym_test_operator, - ACTIONS(6412), 1, + ACTIONS(5540), 1, sym_extglob_pattern, - ACTIONS(6414), 1, + ACTIONS(5542), 1, sym__brace_start, - ACTIONS(7506), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(7508), 1, + ACTIONS(6454), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, + ACTIONS(6456), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, + ACTIONS(6458), 1, sym__special_character, - ACTIONS(7514), 1, + ACTIONS(6460), 1, anon_sym_DQUOTE, - ACTIONS(7518), 1, + ACTIONS(6464), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, + ACTIONS(6466), 1, anon_sym_BQUOTE, - ACTIONS(7522), 1, + ACTIONS(6468), 1, anon_sym_DOLLAR_BQUOTE, - STATE(6347), 1, + STATE(6008), 1, aux_sym__literal_repeat1, - STATE(6831), 1, + STATE(6420), 1, sym_last_case_item, - ACTIONS(7516), 2, + ACTIONS(6462), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7524), 2, + ACTIONS(6470), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3357), 2, + STATE(3233), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(6599), 2, + STATE(6265), 2, sym_concatenation, sym__extglob_blob, - STATE(6223), 9, + STATE(5926), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -227008,98 +217182,58 @@ static const uint16_t ts_small_parse_table[] = { 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, - 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, - [176439] = 24, + [168693] = 24, ACTIONS(71), 1, sym_comment, - ACTIONS(6376), 1, + ACTIONS(5504), 1, sym_word, - ACTIONS(6390), 1, + ACTIONS(5518), 1, anon_sym_DOLLAR, - ACTIONS(6396), 1, + ACTIONS(5524), 1, aux_sym_number_token1, - ACTIONS(6398), 1, + ACTIONS(5526), 1, aux_sym_number_token2, - ACTIONS(6402), 1, + ACTIONS(5530), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, + ACTIONS(5538), 1, sym_test_operator, - ACTIONS(6412), 1, + ACTIONS(5540), 1, sym_extglob_pattern, - ACTIONS(6414), 1, + ACTIONS(5542), 1, sym__brace_start, - ACTIONS(7506), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(7508), 1, + ACTIONS(6454), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, + ACTIONS(6456), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, + ACTIONS(6458), 1, sym__special_character, - ACTIONS(7514), 1, + ACTIONS(6460), 1, anon_sym_DQUOTE, - ACTIONS(7518), 1, + ACTIONS(6464), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, + ACTIONS(6466), 1, anon_sym_BQUOTE, - ACTIONS(7522), 1, + ACTIONS(6468), 1, anon_sym_DOLLAR_BQUOTE, - STATE(6347), 1, + STATE(6008), 1, aux_sym__literal_repeat1, - STATE(6769), 1, + STATE(6464), 1, sym_last_case_item, - ACTIONS(7516), 2, + ACTIONS(6462), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7524), 2, + ACTIONS(6470), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3357), 2, + STATE(3233), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(6599), 2, + STATE(6265), 2, sym_concatenation, sym__extglob_blob, - STATE(6223), 9, + STATE(5926), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -227109,271 +217243,82 @@ static const uint16_t ts_small_parse_table[] = { 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, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_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_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_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, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [176673] = 3, - ACTIONS(3), 1, + [168778] = 24, + 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, + ACTIONS(5504), 1, sym_word, - [176716] = 3, - ACTIONS(3), 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, - 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, + ACTIONS(5518), 1, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(5524), 1, aux_sym_number_token1, + ACTIONS(5526), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, + ACTIONS(5530), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [176759] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1215), 5, - sym_file_descriptor, - sym__concat, + ACTIONS(5538), 1, sym_test_operator, + ACTIONS(5540), 1, + sym_extglob_pattern, + ACTIONS(5542), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 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, + ACTIONS(6450), 1, + anon_sym_LPAREN, + ACTIONS(6454), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6456), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, + ACTIONS(6458), 1, sym__special_character, + ACTIONS(6460), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, + ACTIONS(6464), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(6466), 1, anon_sym_BQUOTE, + ACTIONS(6468), 1, anon_sym_DOLLAR_BQUOTE, + STATE(6008), 1, + aux_sym__literal_repeat1, + STATE(6466), 1, + sym_last_case_item, + ACTIONS(6462), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(6470), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [176802] = 8, + STATE(3233), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6265), 2, + sym_concatenation, + sym__extglob_blob, + STATE(5926), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [168863] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1191), 1, + ACTIONS(1197), 1, sym_file_descriptor, - ACTIONS(3950), 1, + ACTIONS(6677), 1, anon_sym_DQUOTE, - ACTIONS(7601), 1, + ACTIONS(6681), 1, sym_variable_name, - STATE(4349), 1, + STATE(4127), 1, sym_string, - ACTIONS(7599), 2, + ACTIONS(6679), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7597), 8, + ACTIONS(6675), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -227382,7 +217327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1183), 21, + ACTIONS(1195), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -227392,7 +217337,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, @@ -227404,183 +217348,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, - [176855] = 3, - ACTIONS(3), 1, + anon_sym_BQUOTE, + [168916] = 24, + ACTIONS(71), 1, sym_comment, - ACTIONS(1274), 5, - sym_file_descriptor, - sym__concat, + ACTIONS(5504), 1, + sym_word, + ACTIONS(5518), 1, + anon_sym_DOLLAR, + ACTIONS(5524), 1, + aux_sym_number_token1, + ACTIONS(5526), 1, + aux_sym_number_token2, + ACTIONS(5530), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5538), 1, sym_test_operator, + ACTIONS(5540), 1, + sym_extglob_pattern, + ACTIONS(5542), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 30, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + ACTIONS(6450), 1, + anon_sym_LPAREN, + ACTIONS(6454), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6456), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, + ACTIONS(6458), 1, sym__special_character, + ACTIONS(6460), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, + ACTIONS(6464), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(6466), 1, anon_sym_BQUOTE, + ACTIONS(6468), 1, anon_sym_DOLLAR_BQUOTE, + STATE(6008), 1, + aux_sym__literal_repeat1, + STATE(6479), 1, + sym_last_case_item, + ACTIONS(6462), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(6470), 2, 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, + STATE(3233), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6265), 2, + sym_concatenation, + sym__extglob_blob, + STATE(5926), 9, + sym_arithmetic_expansion, + sym_brace_expression, 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), 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, - [176951] = 3, - ACTIONS(3), 1, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [169001] = 24, + ACTIONS(71), 1, sym_comment, - ACTIONS(1254), 5, - sym_file_descriptor, - sym__concat, + ACTIONS(5504), 1, + sym_word, + ACTIONS(5518), 1, + anon_sym_DOLLAR, + ACTIONS(5524), 1, + aux_sym_number_token1, + ACTIONS(5526), 1, + aux_sym_number_token2, + ACTIONS(5530), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5538), 1, sym_test_operator, + ACTIONS(5540), 1, + sym_extglob_pattern, + ACTIONS(5542), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 30, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + ACTIONS(6450), 1, + anon_sym_LPAREN, + ACTIONS(6454), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6456), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, + ACTIONS(6458), 1, sym__special_character, + ACTIONS(6460), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, + ACTIONS(6464), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(6466), 1, anon_sym_BQUOTE, + ACTIONS(6468), 1, anon_sym_DOLLAR_BQUOTE, + STATE(6008), 1, + aux_sym__literal_repeat1, + STATE(6489), 1, + sym_last_case_item, + ACTIONS(6462), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(6470), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [176994] = 24, + STATE(3233), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6265), 2, + sym_concatenation, + sym__extglob_blob, + STATE(5926), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [169086] = 24, ACTIONS(71), 1, sym_comment, - ACTIONS(6376), 1, + ACTIONS(5504), 1, sym_word, - ACTIONS(6390), 1, + ACTIONS(5518), 1, anon_sym_DOLLAR, - ACTIONS(6396), 1, + ACTIONS(5524), 1, aux_sym_number_token1, - ACTIONS(6398), 1, + ACTIONS(5526), 1, aux_sym_number_token2, - ACTIONS(6402), 1, + ACTIONS(5530), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, + ACTIONS(5538), 1, sym_test_operator, - ACTIONS(6412), 1, + ACTIONS(5540), 1, sym_extglob_pattern, - ACTIONS(6414), 1, + ACTIONS(5542), 1, sym__brace_start, - ACTIONS(7506), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(7508), 1, + ACTIONS(6454), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, + ACTIONS(6456), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, + ACTIONS(6458), 1, sym__special_character, - ACTIONS(7514), 1, + ACTIONS(6460), 1, anon_sym_DQUOTE, - ACTIONS(7518), 1, + ACTIONS(6464), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, + ACTIONS(6466), 1, anon_sym_BQUOTE, - ACTIONS(7522), 1, + ACTIONS(6468), 1, anon_sym_DOLLAR_BQUOTE, - STATE(6347), 1, + STATE(6008), 1, aux_sym__literal_repeat1, - STATE(7496), 1, + STATE(6490), 1, sym_last_case_item, - ACTIONS(7516), 2, + ACTIONS(6462), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7524), 2, + ACTIONS(6470), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3357), 2, + STATE(3233), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(6599), 2, + STATE(6265), 2, sym_concatenation, sym__extglob_blob, - STATE(6223), 9, + STATE(5926), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -227590,21 +217532,22 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [177079] = 8, + [169171] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1191), 1, - sym_file_descriptor, - ACTIONS(3950), 1, + ACTIONS(3642), 1, anon_sym_DQUOTE, - ACTIONS(7601), 1, + ACTIONS(6673), 1, sym_variable_name, - STATE(4349), 1, + STATE(4172), 1, sym_string, - ACTIONS(7599), 2, + ACTIONS(1197), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(6671), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7597), 8, + ACTIONS(6669), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -227613,7 +217556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1183), 20, + ACTIONS(1195), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -227634,113 +217577,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, - [177131] = 5, + [169224] = 25, ACTIONS(71), 1, sym_comment, - STATE(3362), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7603), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5264), 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, + ACTIONS(6683), 1, sym_word, - ACTIONS(5266), 20, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [177177] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3554), 1, + ACTIONS(6685), 1, + anon_sym_LPAREN, + ACTIONS(6687), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3556), 1, + ACTIONS(6689), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3558), 1, + ACTIONS(6691), 1, anon_sym_DOLLAR, - ACTIONS(3562), 1, + ACTIONS(6693), 1, + sym__special_character, + ACTIONS(6695), 1, anon_sym_DQUOTE, - ACTIONS(3564), 1, + ACTIONS(6699), 1, aux_sym_number_token1, - ACTIONS(3566), 1, + ACTIONS(6701), 1, aux_sym_number_token2, - ACTIONS(3568), 1, + ACTIONS(6703), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3570), 1, + ACTIONS(6705), 1, + anon_sym_RBRACE3, + ACTIONS(6707), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3572), 1, + ACTIONS(6709), 1, anon_sym_BQUOTE, - ACTIONS(3574), 1, + ACTIONS(6711), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3582), 1, - sym__brace_start, - ACTIONS(7609), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7611), 1, - sym__special_character, - ACTIONS(7613), 1, + ACTIONS(6715), 1, + sym_variable_name, + ACTIONS(6717), 1, sym_test_operator, - STATE(4982), 1, + ACTIONS(6719), 1, + sym__expansion_word, + ACTIONS(6721), 1, + sym__brace_start, + STATE(5876), 1, + sym_command_substitution, + STATE(6068), 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, + ACTIONS(6697), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - ACTIONS(7607), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4614), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(6713), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(6046), 5, sym_string, - sym_translated_string, - sym_number, + sym_array, sym_simple_expansion, sym_expansion, - sym_command_substitution, sym_process_substitution, - [177255] = 5, + STATE(6347), 5, + sym_arithmetic_expansion, + sym_brace_expression, + sym_translated_string, + sym_number, + sym__concatenation_in_expansion, + [169310] = 5, ACTIONS(71), 1, sym_comment, - STATE(3372), 1, + STATE(3238), 1, aux_sym_concatenation_repeat1, - ACTIONS(7603), 2, + ACTIONS(6723), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(4311), 11, + ACTIONS(4489), 11, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -227752,7 +217658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(4313), 20, + ACTIONS(4491), 20, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -227773,15 +217679,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [177301] = 5, + [169356] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1197), 1, + sym_file_descriptor, + ACTIONS(6677), 1, + anon_sym_DQUOTE, + ACTIONS(6681), 1, + sym_variable_name, + STATE(4127), 1, + sym_string, + ACTIONS(6679), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(6675), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [169408] = 6, ACTIONS(71), 1, sym_comment, - STATE(3372), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7603), 2, - sym__concat, + ACTIONS(6723), 1, aux_sym_concatenation_token1, - ACTIONS(5268), 11, + ACTIONS(6725), 1, + sym__concat, + STATE(3231), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1213), 11, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -227793,7 +217744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(5270), 20, + ACTIONS(1215), 20, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -227814,21 +217765,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [177347] = 8, + [169456] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1191), 1, sym_file_descriptor, - ACTIONS(7591), 1, + ACTIONS(6677), 1, anon_sym_DQUOTE, - ACTIONS(7595), 1, + ACTIONS(6681), 1, sym_variable_name, - STATE(4267), 1, + STATE(4127), 1, sym_string, - ACTIONS(7593), 2, + ACTIONS(6679), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7589), 8, + ACTIONS(6675), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -227858,15 +217809,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, - [177399] = 5, + [169508] = 5, ACTIONS(71), 1, sym_comment, - STATE(3362), 1, + STATE(3238), 1, aux_sym_concatenation_repeat1, - ACTIONS(7603), 2, + ACTIONS(6723), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1223), 11, + ACTIONS(4481), 11, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -227878,7 +217829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1225), 20, + ACTIONS(4483), 20, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -227899,54 +217850,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [177445] = 21, + [169554] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3554), 1, + ACTIONS(3245), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3556), 1, + ACTIONS(3247), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3558), 1, + ACTIONS(3249), 1, anon_sym_DOLLAR, - ACTIONS(3562), 1, + ACTIONS(3253), 1, anon_sym_DQUOTE, - ACTIONS(3564), 1, + ACTIONS(3255), 1, aux_sym_number_token1, - ACTIONS(3566), 1, + ACTIONS(3257), 1, aux_sym_number_token2, - ACTIONS(3568), 1, + ACTIONS(3259), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3570), 1, + ACTIONS(3261), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3572), 1, + ACTIONS(3263), 1, anon_sym_BQUOTE, - ACTIONS(3574), 1, + ACTIONS(3265), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3582), 1, + ACTIONS(3273), 1, sym__brace_start, - ACTIONS(7611), 1, + ACTIONS(6731), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6733), 1, sym__special_character, - ACTIONS(7613), 1, + ACTIONS(6735), 1, sym_test_operator, - ACTIONS(7617), 1, - aux_sym_heredoc_redirect_token1, - STATE(4982), 1, + STATE(4748), 1, aux_sym__literal_repeat1, - ACTIONS(3576), 2, + ACTIONS(3267), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3360), 2, + STATE(3230), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(7605), 3, + ACTIONS(6727), 3, sym_raw_string, sym_ansi_c_string, sym_word, - ACTIONS(7615), 3, + ACTIONS(6729), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - STATE(4614), 9, + STATE(4441), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -227956,15 +217907,15 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [177523] = 5, + [169632] = 5, ACTIONS(71), 1, sym_comment, - STATE(3372), 1, + STATE(3221), 1, aux_sym_concatenation_repeat1, - ACTIONS(7603), 2, + ACTIONS(6723), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(4437), 11, + ACTIONS(4493), 11, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -227976,7 +217927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(4439), 20, + ACTIONS(4495), 20, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -227997,74 +217948,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [177569] = 23, + [169678] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(7619), 1, - sym_word, - ACTIONS(7622), 1, - anon_sym_LPAREN, - ACTIONS(7625), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7628), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7631), 1, + STATE(3238), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6723), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4123), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(7634), 1, - sym__special_character, - ACTIONS(7637), 1, - anon_sym_DQUOTE, - ACTIONS(7643), 1, aux_sym_number_token1, - ACTIONS(7646), 1, aux_sym_number_token2, - ACTIONS(7649), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7652), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7655), 1, anon_sym_BQUOTE, - ACTIONS(7658), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7664), 1, + sym_word, + ACTIONS(4125), 20, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - ACTIONS(7667), 1, - sym_extglob_pattern, - ACTIONS(7670), 1, sym__brace_start, - STATE(6278), 1, - aux_sym__literal_repeat1, - ACTIONS(7640), 2, + 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(7661), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3357), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6513), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6152), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [177651] = 5, + [169724] = 5, ACTIONS(71), 1, sym_comment, - STATE(3362), 1, + STATE(3221), 1, aux_sym_concatenation_repeat1, - ACTIONS(7603), 2, + ACTIONS(6723), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(5130), 11, + ACTIONS(3913), 11, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -228076,7 +218009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(5132), 20, + ACTIONS(3915), 20, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -228097,15 +218030,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [177697] = 5, + [169770] = 5, ACTIONS(71), 1, sym_comment, - STATE(3359), 1, + STATE(3221), 1, aux_sym_concatenation_repeat1, - ACTIONS(7673), 2, + ACTIONS(6723), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1213), 11, + ACTIONS(4485), 11, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -228117,7 +218050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1215), 20, + ACTIONS(4487), 20, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -228138,54 +218071,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [177743] = 21, + [169816] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6685), 1, + anon_sym_LPAREN, + ACTIONS(6687), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6689), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6691), 1, + anon_sym_DOLLAR, + ACTIONS(6693), 1, + sym__special_character, + ACTIONS(6695), 1, + anon_sym_DQUOTE, + ACTIONS(6699), 1, + aux_sym_number_token1, + ACTIONS(6701), 1, + aux_sym_number_token2, + ACTIONS(6703), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6707), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6709), 1, + anon_sym_BQUOTE, + ACTIONS(6711), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6715), 1, + sym_variable_name, + ACTIONS(6721), 1, + sym__brace_start, + ACTIONS(6737), 1, + sym_word, + ACTIONS(6741), 1, + anon_sym_RBRACE3, + ACTIONS(6743), 1, + sym_test_operator, + ACTIONS(6745), 1, + sym__expansion_word, + STATE(5838), 1, + sym_command_substitution, + STATE(6070), 1, + aux_sym__literal_repeat1, + ACTIONS(6713), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6739), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(6036), 5, + sym_string, + sym_array, + sym_simple_expansion, + sym_expansion, + sym_process_substitution, + STATE(6304), 5, + sym_arithmetic_expansion, + sym_brace_expression, + sym_translated_string, + sym_number, + sym__concatenation_in_expansion, + [169902] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2169), 1, + ACTIONS(6752), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(7679), 1, + ACTIONS(6754), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7682), 1, + ACTIONS(6757), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7685), 1, + ACTIONS(6760), 1, anon_sym_DOLLAR, - ACTIONS(7688), 1, + ACTIONS(6763), 1, sym__special_character, - ACTIONS(7691), 1, + ACTIONS(6766), 1, anon_sym_DQUOTE, - ACTIONS(7694), 1, + ACTIONS(6769), 1, aux_sym_number_token1, - ACTIONS(7697), 1, + ACTIONS(6772), 1, aux_sym_number_token2, - ACTIONS(7700), 1, + ACTIONS(6775), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7703), 1, + ACTIONS(6778), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7706), 1, + ACTIONS(6781), 1, anon_sym_BQUOTE, - ACTIONS(7709), 1, + ACTIONS(6784), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7715), 1, + ACTIONS(6790), 1, sym_test_operator, - ACTIONS(7718), 1, + ACTIONS(6793), 1, sym__brace_start, - STATE(4982), 1, + STATE(4748), 1, aux_sym__literal_repeat1, - ACTIONS(7712), 2, + ACTIONS(6787), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3360), 2, + STATE(3230), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2167), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - ACTIONS(7676), 3, + ACTIONS(6747), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4614), 9, + ACTIONS(6750), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4441), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -228195,15 +218189,15 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [177821] = 5, + [169980] = 5, ACTIONS(71), 1, sym_comment, - STATE(3372), 1, + STATE(3231), 1, aux_sym_concatenation_repeat1, - ACTIONS(7603), 2, + ACTIONS(6796), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(2156), 11, + ACTIONS(1219), 11, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -228215,7 +218209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(2158), 20, + ACTIONS(1221), 20, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -228236,16 +218230,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [177867] = 6, + [170026] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(7603), 1, - aux_sym_concatenation_token1, - ACTIONS(7721), 1, - sym__concat, - STATE(3359), 1, + STATE(3238), 1, aux_sym_concatenation_repeat1, - ACTIONS(1227), 11, + ACTIONS(6723), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4004), 11, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -228257,7 +218250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1229), 20, + ACTIONS(4006), 20, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -228278,56 +218271,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [177915] = 5, - ACTIONS(3), 1, + [170072] = 23, + ACTIONS(71), 1, sym_comment, - ACTIONS(7723), 1, - sym__special_character, - STATE(3363), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 28, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + ACTIONS(6799), 1, + sym_word, + ACTIONS(6802), 1, + anon_sym_LPAREN, + ACTIONS(6805), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6808), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(6811), 1, anon_sym_DOLLAR, + ACTIONS(6814), 1, + sym__special_character, + ACTIONS(6817), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(6823), 1, aux_sym_number_token1, + ACTIONS(6826), 1, aux_sym_number_token2, + ACTIONS(6829), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(6832), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(6835), 1, anon_sym_BQUOTE, + ACTIONS(6838), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(6844), 1, + sym_test_operator, + ACTIONS(6847), 1, + sym_extglob_pattern, + ACTIONS(6850), 1, + sym__brace_start, + STATE(5959), 1, + aux_sym__literal_repeat1, + ACTIONS(6820), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(6841), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [177961] = 5, + STATE(3233), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6213), 2, + sym_concatenation, + sym__extglob_blob, + STATE(5884), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [170154] = 5, ACTIONS(71), 1, sym_comment, - STATE(3362), 1, + STATE(3238), 1, aux_sym_concatenation_repeat1, - ACTIONS(7603), 2, + ACTIONS(6723), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(4280), 11, + ACTIONS(1229), 11, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -228339,7 +218350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(4282), 20, + ACTIONS(1231), 20, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -228360,54 +218371,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [178007] = 21, + [170200] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3554), 1, + ACTIONS(3245), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3556), 1, + ACTIONS(3247), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3558), 1, + ACTIONS(3249), 1, anon_sym_DOLLAR, - ACTIONS(3562), 1, + ACTIONS(3253), 1, anon_sym_DQUOTE, - ACTIONS(3564), 1, + ACTIONS(3255), 1, aux_sym_number_token1, - ACTIONS(3566), 1, + ACTIONS(3257), 1, aux_sym_number_token2, - ACTIONS(3568), 1, + ACTIONS(3259), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3570), 1, + ACTIONS(3261), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3572), 1, + ACTIONS(3263), 1, anon_sym_BQUOTE, - ACTIONS(3574), 1, + ACTIONS(3265), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3582), 1, + ACTIONS(3273), 1, sym__brace_start, - ACTIONS(7611), 1, + ACTIONS(6733), 1, sym__special_character, - ACTIONS(7613), 1, + ACTIONS(6735), 1, sym_test_operator, - ACTIONS(7728), 1, + ACTIONS(6855), 1, aux_sym_heredoc_redirect_token1, - STATE(4982), 1, + STATE(4748), 1, aux_sym__literal_repeat1, - ACTIONS(3576), 2, + ACTIONS(3267), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3360), 2, + STATE(3230), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(7605), 3, + ACTIONS(6727), 3, sym_raw_string, sym_ansi_c_string, sym_word, - ACTIONS(7726), 3, + ACTIONS(6853), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - STATE(4614), 9, + STATE(4441), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -228417,54 +218428,98 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [178085] = 20, + [170278] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7732), 1, + ACTIONS(1191), 1, + sym_file_descriptor, + ACTIONS(3642), 1, + anon_sym_DQUOTE, + ACTIONS(6673), 1, + sym_variable_name, + STATE(4172), 1, + sym_string, + ACTIONS(6671), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(6669), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [170330] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6859), 1, anon_sym_SLASH, - ACTIONS(7734), 1, + ACTIONS(6861), 1, anon_sym_PERCENT, - ACTIONS(7736), 1, + ACTIONS(6863), 1, anon_sym_COLON, - ACTIONS(7740), 1, + ACTIONS(6867), 1, anon_sym_RBRACE3, - ACTIONS(7742), 1, + ACTIONS(6869), 1, anon_sym_AT, - ACTIONS(7744), 1, + ACTIONS(6871), 1, anon_sym_STAR2, - STATE(6295), 1, + STATE(5963), 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, + STATE(6601), 1, sym__expansion_regex_removal, - STATE(7214), 1, + STATE(6720), 1, sym__expansion_max_length, - STATE(7271), 1, + STATE(6842), 1, sym__expansion_operator, - ACTIONS(7730), 2, + STATE(6876), 1, + sym__expansion_expression, + STATE(6889), 1, + sym__expansion_regex, + STATE(6989), 1, + sym__expansion_regex_replacement, + ACTIONS(6857), 2, anon_sym_COMMA, anon_sym_CARET, - ACTIONS(7750), 2, + ACTIONS(6877), 2, anon_sym_COMMA_COMMA, anon_sym_CARET_CARET, - ACTIONS(7738), 3, + ACTIONS(6865), 3, sym__immediate_double_hash, anon_sym_POUND, anon_sym_PERCENT_PERCENT, - ACTIONS(7748), 3, + ACTIONS(6875), 3, anon_sym_SLASH_SLASH, anon_sym_SLASH_POUND, anon_sym_SLASH_PERCENT, - ACTIONS(7752), 3, + ACTIONS(6879), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(7746), 8, + ACTIONS(6873), 8, anon_sym_EQ2, anon_sym_COLON_EQ, anon_sym_DASH3, @@ -228473,464 +218528,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_PLUS, anon_sym_QMARK2, anon_sym_COLON_QMARK, - [178161] = 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(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, + [170406] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(7758), 1, - sym_word, - 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(6723), 1, + aux_sym_concatenation_token1, + ACTIONS(6881), 1, + sym__concat, + STATE(3231), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1207), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(7768), 1, - sym__special_character, - ACTIONS(7770), 1, - anon_sym_DQUOTE, - ACTIONS(7774), 1, aux_sym_number_token1, - ACTIONS(7776), 1, aux_sym_number_token2, - ACTIONS(7778), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7780), 1, - anon_sym_RBRACE3, - ACTIONS(7782), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7784), 1, anon_sym_BQUOTE, - ACTIONS(7786), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7790), 1, - sym_variable_name, - ACTIONS(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, - aux_sym__literal_repeat1, - ACTIONS(7772), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7788), 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, - sym_arithmetic_expansion, - sym_brace_expression, - sym_translated_string, - sym_number, - sym__concatenation_in_expansion, - [178325] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7798), 1, - sym__special_character, - STATE(3363), 1, - aux_sym__literal_repeat1, - ACTIONS(5132), 4, + sym_word, + ACTIONS(1209), 20, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 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, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_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(71), 1, + [170454] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(7760), 1, - anon_sym_LPAREN, - ACTIONS(7762), 1, + ACTIONS(3245), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7764), 1, + ACTIONS(3247), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7766), 1, + ACTIONS(3249), 1, anon_sym_DOLLAR, - ACTIONS(7768), 1, - sym__special_character, - ACTIONS(7770), 1, + ACTIONS(3253), 1, anon_sym_DQUOTE, - ACTIONS(7774), 1, + ACTIONS(3255), 1, aux_sym_number_token1, - ACTIONS(7776), 1, + ACTIONS(3257), 1, aux_sym_number_token2, - ACTIONS(7778), 1, + ACTIONS(3259), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7782), 1, + ACTIONS(3261), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7784), 1, + ACTIONS(3263), 1, anon_sym_BQUOTE, - ACTIONS(7786), 1, + ACTIONS(3265), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7790), 1, - sym_variable_name, - ACTIONS(7796), 1, + ACTIONS(3273), 1, sym__brace_start, - ACTIONS(7800), 1, - sym_word, - ACTIONS(7804), 1, - anon_sym_RBRACE3, - ACTIONS(7806), 1, + ACTIONS(6733), 1, + sym__special_character, + ACTIONS(6735), 1, sym_test_operator, - ACTIONS(7808), 1, - sym__expansion_word, - STATE(6224), 1, - sym_command_substitution, - STATE(6398), 1, + ACTIONS(6885), 1, + aux_sym_heredoc_redirect_token1, + STATE(4748), 1, aux_sym__literal_repeat1, - ACTIONS(7788), 2, + ACTIONS(3267), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7802), 2, + STATE(3230), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(6727), 3, 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_word, + ACTIONS(6883), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4441), 9, sym_arithmetic_expansion, sym_brace_expression, + sym_string, sym_translated_string, sym_number, - sym__concatenation_in_expansion, - [178457] = 25, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [170532] = 25, ACTIONS(71), 1, sym_comment, - ACTIONS(7760), 1, + ACTIONS(6685), 1, anon_sym_LPAREN, - ACTIONS(7762), 1, + ACTIONS(6687), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7764), 1, + ACTIONS(6689), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7766), 1, + ACTIONS(6691), 1, anon_sym_DOLLAR, - ACTIONS(7768), 1, + ACTIONS(6693), 1, sym__special_character, - ACTIONS(7770), 1, + ACTIONS(6695), 1, anon_sym_DQUOTE, - ACTIONS(7774), 1, + ACTIONS(6699), 1, aux_sym_number_token1, - ACTIONS(7776), 1, + ACTIONS(6701), 1, aux_sym_number_token2, - ACTIONS(7778), 1, + ACTIONS(6703), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7782), 1, + ACTIONS(6707), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7784), 1, + ACTIONS(6709), 1, anon_sym_BQUOTE, - ACTIONS(7786), 1, + ACTIONS(6711), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7790), 1, + ACTIONS(6715), 1, sym_variable_name, - ACTIONS(7796), 1, + ACTIONS(6721), 1, sym__brace_start, - ACTIONS(7810), 1, + ACTIONS(6887), 1, sym_word, - ACTIONS(7814), 1, + ACTIONS(6891), 1, anon_sym_RBRACE3, - ACTIONS(7816), 1, + ACTIONS(6893), 1, sym_test_operator, - ACTIONS(7818), 1, + ACTIONS(6895), 1, sym__expansion_word, - STATE(6197), 1, + STATE(5836), 1, sym_command_substitution, - STATE(6433), 1, + STATE(6082), 1, aux_sym__literal_repeat1, - ACTIONS(7788), 2, + ACTIONS(6713), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7812), 2, + ACTIONS(6889), 2, sym_raw_string, sym_ansi_c_string, - STATE(6371), 5, + STATE(5989), 5, sym_string, sym_array, sym_simple_expansion, sym_expansion, sym_process_substitution, - STATE(6665), 5, + STATE(6342), 5, sym_arithmetic_expansion, sym_brace_expression, sym_translated_string, sym_number, sym__concatenation_in_expansion, - [178543] = 6, - 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, - 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_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, - ACTIONS(71), 1, - sym_comment, - STATE(3372), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7603), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5134), 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(5136), 20, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_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, - 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, - 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, - [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, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 20, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [178735] = 5, + [170618] = 5, ACTIONS(71), 1, sym_comment, - STATE(3362), 1, + STATE(3221), 1, aux_sym_concatenation_repeat1, - ACTIONS(7603), 2, + ACTIONS(6723), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(4307), 11, + ACTIONS(4008), 11, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -228942,7 +218708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(4309), 20, + ACTIONS(4010), 20, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -228963,21 +218729,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [178781] = 8, + [170664] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1197), 1, sym_file_descriptor, - ACTIONS(7591), 1, + ACTIONS(3642), 1, anon_sym_DQUOTE, - ACTIONS(7595), 1, + ACTIONS(6673), 1, sym_variable_name, - STATE(4267), 1, + STATE(4172), 1, sym_string, - ACTIONS(7593), 2, + ACTIONS(6671), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7589), 8, + ACTIONS(6669), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -228990,81 +218756,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_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, - [178833] = 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(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, + anon_sym_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, + [170716] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1312), 11, + STATE(3238), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6723), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4447), 11, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -229076,9 +218793,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1314), 22, + ACTIONS(4449), 20, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -229090,7 +218806,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, @@ -229099,10 +218814,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [178947] = 3, + [170762] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 11, + STATE(3221), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6723), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4451), 11, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -229114,9 +218834,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1310), 22, + ACTIONS(4453), 20, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -229128,7 +218847,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, @@ -229137,55 +218855,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [178988] = 23, + [170808] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7824), 1, - sym_word, - ACTIONS(7826), 1, - anon_sym_LPAREN, - ACTIONS(7828), 1, + ACTIONS(3245), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7830), 1, + ACTIONS(3247), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7832), 1, + ACTIONS(3249), 1, anon_sym_DOLLAR, - ACTIONS(7834), 1, - sym__special_character, - ACTIONS(7836), 1, + ACTIONS(3253), 1, anon_sym_DQUOTE, - ACTIONS(7840), 1, + ACTIONS(3255), 1, aux_sym_number_token1, - ACTIONS(7842), 1, + ACTIONS(3257), 1, aux_sym_number_token2, - ACTIONS(7844), 1, + ACTIONS(3259), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7846), 1, + ACTIONS(3261), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7848), 1, + ACTIONS(3263), 1, anon_sym_BQUOTE, - ACTIONS(7850), 1, + ACTIONS(3265), 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, + ACTIONS(3273), 1, sym__brace_start, - STATE(2618), 1, + ACTIONS(6733), 1, + sym__special_character, + ACTIONS(6735), 1, + sym_test_operator, + ACTIONS(6899), 1, + aux_sym_heredoc_redirect_token1, + STATE(4748), 1, aux_sym__literal_repeat1, - ACTIONS(7838), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7852), 2, + ACTIONS(3267), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2852), 2, + STATE(3230), 2, sym_concatenation, - sym_array, - STATE(2346), 9, + aux_sym_for_statement_repeat1, + ACTIONS(6727), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(6897), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4441), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -229195,10 +218912,10 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [179069] = 3, + [170886] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1260), 11, + ACTIONS(1304), 11, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -229210,7 +218927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1262), 22, + ACTIONS(1306), 22, sym_file_descriptor, sym__concat, sym_variable_name, @@ -229233,93 +218950,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [179110] = 3, - ACTIONS(71), 1, + [170927] = 23, + ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(2168), 1, anon_sym_DOLLAR, + ACTIONS(2174), 1, aux_sym_number_token1, + ACTIONS(2176), 1, aux_sym_number_token2, + ACTIONS(2180), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1270), 22, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_test_operator, + ACTIONS(2194), 1, sym__brace_start, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [179151] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7862), 1, + ACTIONS(6901), 1, sym_word, - ACTIONS(7864), 1, + ACTIONS(6903), 1, anon_sym_LPAREN, - ACTIONS(7866), 1, + ACTIONS(6905), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7868), 1, + ACTIONS(6907), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7870), 1, - anon_sym_DOLLAR, - ACTIONS(7872), 1, + ACTIONS(6909), 1, sym__special_character, - ACTIONS(7874), 1, + ACTIONS(6911), 1, anon_sym_DQUOTE, - ACTIONS(7878), 1, - aux_sym_number_token1, - ACTIONS(7880), 1, - aux_sym_number_token2, - ACTIONS(7882), 1, + ACTIONS(6915), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7884), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7886), 1, + ACTIONS(6917), 1, anon_sym_BQUOTE, - ACTIONS(7888), 1, + ACTIONS(6919), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7892), 1, + ACTIONS(6923), 1, sym__comment_word, - ACTIONS(7894), 1, + ACTIONS(6925), 1, sym__empty_value, - ACTIONS(7896), 1, + ACTIONS(6927), 1, sym_test_operator, - ACTIONS(7898), 1, - sym__brace_start, - STATE(1819), 1, + STATE(1579), 1, aux_sym__literal_repeat1, - ACTIONS(7876), 2, + ACTIONS(6913), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7890), 2, + ACTIONS(6921), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2036), 2, + STATE(1851), 2, sym_concatenation, sym_array, - STATE(1363), 9, + STATE(1529), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -229329,106 +219008,52 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [179232] = 19, + [171008] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(7732), 1, + ACTIONS(6859), 1, anon_sym_SLASH, - ACTIONS(7734), 1, + ACTIONS(6861), 1, anon_sym_PERCENT, - ACTIONS(7736), 1, + ACTIONS(6863), 1, anon_sym_COLON, - ACTIONS(7822), 1, - anon_sym_AT, - ACTIONS(7900), 1, + ACTIONS(6929), 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(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, + ACTIONS(6931), 1, anon_sym_AT, - ACTIONS(7902), 1, - anon_sym_RBRACE3, - STATE(6317), 1, + STATE(5942), 1, aux_sym__expansion_body_repeat1, - STATE(6704), 1, + STATE(6382), 1, sym__expansion_regex_replacement, - STATE(6715), 1, - sym__expansion_expression, - STATE(6784), 1, + STATE(6518), 1, + sym__expansion_regex_removal, + STATE(6529), 1, sym__expansion_max_length, - STATE(6811), 1, + STATE(6538), 1, sym__expansion_operator, - STATE(7373), 1, - sym__expansion_regex_removal, - STATE(7414), 1, + STATE(7002), 1, + sym__expansion_expression, + STATE(7130), 1, sym__expansion_regex, - ACTIONS(7730), 2, + ACTIONS(6857), 2, anon_sym_COMMA, anon_sym_CARET, - ACTIONS(7750), 2, + ACTIONS(6877), 2, anon_sym_COMMA_COMMA, anon_sym_CARET_CARET, - ACTIONS(7738), 3, + ACTIONS(6865), 3, sym__immediate_double_hash, anon_sym_POUND, anon_sym_PERCENT_PERCENT, - ACTIONS(7748), 3, + ACTIONS(6875), 3, anon_sym_SLASH_SLASH, anon_sym_SLASH_POUND, anon_sym_SLASH_PERCENT, - ACTIONS(7752), 3, + ACTIONS(6879), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(7746), 8, + ACTIONS(6873), 8, anon_sym_EQ2, anon_sym_COLON_EQ, anon_sym_DASH3, @@ -229437,55 +219062,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, + [171081] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(2067), 1, + ACTIONS(1288), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - 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(1290), 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, + [171122] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6933), 1, sym_word, - ACTIONS(7906), 1, + ACTIONS(6935), 1, anon_sym_LPAREN, - ACTIONS(7908), 1, + ACTIONS(6937), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7910), 1, + ACTIONS(6939), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7912), 1, + ACTIONS(6941), 1, + anon_sym_DOLLAR, + ACTIONS(6943), 1, sym__special_character, - ACTIONS(7914), 1, + ACTIONS(6945), 1, anon_sym_DQUOTE, - ACTIONS(7918), 1, + ACTIONS(6949), 1, + aux_sym_number_token1, + ACTIONS(6951), 1, + aux_sym_number_token2, + ACTIONS(6953), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7920), 1, + ACTIONS(6955), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6957), 1, anon_sym_BQUOTE, - ACTIONS(7922), 1, + ACTIONS(6959), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7926), 1, + ACTIONS(6963), 1, sym__comment_word, - ACTIONS(7928), 1, + ACTIONS(6965), 1, sym__empty_value, - ACTIONS(7930), 1, + ACTIONS(6967), 1, sym_test_operator, - STATE(1756), 1, + ACTIONS(6969), 1, + sym__brace_start, + STATE(4125), 1, aux_sym__literal_repeat1, - ACTIONS(7916), 2, + ACTIONS(6947), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7924), 2, + ACTIONS(6961), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1911), 2, + STATE(4413), 2, sym_concatenation, sym_array, - STATE(1447), 9, + STATE(4308), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -229495,55 +219158,55 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [179459] = 23, + [171203] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(7932), 1, + ACTIONS(6971), 1, sym_word, - ACTIONS(7934), 1, + ACTIONS(6973), 1, anon_sym_LPAREN, - ACTIONS(7936), 1, + ACTIONS(6975), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7938), 1, + ACTIONS(6977), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7940), 1, + ACTIONS(6979), 1, anon_sym_DOLLAR, - ACTIONS(7942), 1, + ACTIONS(6981), 1, sym__special_character, - ACTIONS(7944), 1, + ACTIONS(6983), 1, anon_sym_DQUOTE, - ACTIONS(7948), 1, + ACTIONS(6987), 1, aux_sym_number_token1, - ACTIONS(7950), 1, + ACTIONS(6989), 1, aux_sym_number_token2, - ACTIONS(7952), 1, + ACTIONS(6991), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7954), 1, + ACTIONS(6993), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7956), 1, + ACTIONS(6995), 1, anon_sym_BQUOTE, - ACTIONS(7958), 1, + ACTIONS(6997), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7962), 1, + ACTIONS(7001), 1, sym__comment_word, - ACTIONS(7964), 1, + ACTIONS(7003), 1, sym__empty_value, - ACTIONS(7966), 1, + ACTIONS(7005), 1, sym_test_operator, - ACTIONS(7968), 1, + ACTIONS(7007), 1, sym__brace_start, - STATE(4223), 1, + STATE(5099), 1, aux_sym__literal_repeat1, - ACTIONS(7946), 2, + ACTIONS(6985), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7960), 2, + ACTIONS(6999), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(4668), 2, + STATE(5213), 2, sym_concatenation, sym_array, - STATE(4375), 9, + STATE(4911), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -229553,55 +219216,136 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [179540] = 23, - ACTIONS(3), 1, + [171284] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(7970), 1, + ACTIONS(1252), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(7972), 1, - anon_sym_LPAREN, - ACTIONS(7974), 1, + ACTIONS(1254), 22, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7976), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7978), 1, - anon_sym_DOLLAR, - ACTIONS(7980), 1, + aux_sym_concatenation_token1, sym__special_character, - ACTIONS(7982), 1, anon_sym_DQUOTE, - ACTIONS(7986), 1, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [171325] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3253), 1, + anon_sym_DQUOTE, + ACTIONS(7013), 1, + sym_variable_name, + STATE(4577), 1, + sym_string, + ACTIONS(1191), 2, + sym_test_operator, + sym__brace_start, + ACTIONS(7011), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7009), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 18, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + aux_sym_heredoc_redirect_token1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(7988), 1, aux_sym_number_token2, - ACTIONS(7990), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7992), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7994), 1, anon_sym_BQUOTE, - ACTIONS(7996), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8000), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [171376] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2083), 1, + anon_sym_DOLLAR, + ACTIONS(2089), 1, + aux_sym_number_token1, + ACTIONS(2091), 1, + aux_sym_number_token2, + ACTIONS(2095), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2109), 1, + sym__brace_start, + ACTIONS(7015), 1, + sym_word, + ACTIONS(7017), 1, + anon_sym_LPAREN, + ACTIONS(7019), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7021), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7023), 1, + sym__special_character, + ACTIONS(7025), 1, + anon_sym_DQUOTE, + ACTIONS(7029), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7031), 1, + anon_sym_BQUOTE, + ACTIONS(7033), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7037), 1, sym__comment_word, - ACTIONS(8002), 1, + ACTIONS(7039), 1, sym__empty_value, - ACTIONS(8004), 1, + ACTIONS(7041), 1, sym_test_operator, - ACTIONS(8006), 1, - sym__brace_start, - STATE(3452), 1, + STATE(1709), 1, aux_sym__literal_repeat1, - ACTIONS(7984), 2, + ACTIONS(7027), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7998), 2, + ACTIONS(7035), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3701), 2, + STATE(1730), 2, sym_concatenation, sym_array, - STATE(3352), 9, + STATE(1223), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -229611,55 +219355,93 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [179621] = 23, + [171457] = 3, + 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, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1258), 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, + [171498] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(2033), 1, + ACTIONS(1591), 1, anon_sym_DOLLAR, - ACTIONS(2039), 1, + ACTIONS(1597), 1, aux_sym_number_token1, - ACTIONS(2041), 1, + ACTIONS(1599), 1, aux_sym_number_token2, - ACTIONS(2045), 1, + ACTIONS(1603), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2059), 1, + ACTIONS(1617), 1, sym__brace_start, - ACTIONS(8008), 1, + ACTIONS(7043), 1, sym_word, - ACTIONS(8010), 1, + ACTIONS(7045), 1, anon_sym_LPAREN, - ACTIONS(8012), 1, + ACTIONS(7047), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8014), 1, + ACTIONS(7049), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8016), 1, + ACTIONS(7051), 1, sym__special_character, - ACTIONS(8018), 1, + ACTIONS(7053), 1, anon_sym_DQUOTE, - ACTIONS(8022), 1, + ACTIONS(7057), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8024), 1, + ACTIONS(7059), 1, anon_sym_BQUOTE, - ACTIONS(8026), 1, + ACTIONS(7061), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8030), 1, + ACTIONS(7065), 1, sym__comment_word, - ACTIONS(8032), 1, + ACTIONS(7067), 1, sym__empty_value, - ACTIONS(8034), 1, + ACTIONS(7069), 1, sym_test_operator, - STATE(1828), 1, + STATE(1252), 1, aux_sym__literal_repeat1, - ACTIONS(8020), 2, + ACTIONS(7055), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8028), 2, + ACTIONS(7063), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2056), 2, + STATE(1413), 2, sym_concatenation, sym_array, - STATE(1377), 9, + STATE(989), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -229669,55 +219451,93 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [179702] = 23, + [171579] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1219), 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(1221), 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, + [171620] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(7934), 1, + ACTIONS(7071), 1, + sym_word, + ACTIONS(7073), 1, anon_sym_LPAREN, - ACTIONS(7936), 1, + ACTIONS(7075), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7938), 1, + ACTIONS(7077), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7940), 1, + ACTIONS(7079), 1, anon_sym_DOLLAR, - ACTIONS(7944), 1, + ACTIONS(7081), 1, + sym__special_character, + ACTIONS(7083), 1, anon_sym_DQUOTE, - ACTIONS(7948), 1, + ACTIONS(7087), 1, aux_sym_number_token1, - ACTIONS(7950), 1, + ACTIONS(7089), 1, aux_sym_number_token2, - ACTIONS(7952), 1, + ACTIONS(7091), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7954), 1, + ACTIONS(7093), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7956), 1, + ACTIONS(7095), 1, anon_sym_BQUOTE, - ACTIONS(7958), 1, + ACTIONS(7097), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7962), 1, + ACTIONS(7101), 1, sym__comment_word, - ACTIONS(7964), 1, + ACTIONS(7103), 1, sym__empty_value, - ACTIONS(7968), 1, - sym__brace_start, - ACTIONS(8036), 1, - sym_word, - ACTIONS(8038), 1, - sym__special_character, - ACTIONS(8042), 1, + ACTIONS(7105), 1, sym_test_operator, - STATE(4223), 1, + ACTIONS(7107), 1, + sym__brace_start, + STATE(1240), 1, aux_sym__literal_repeat1, - ACTIONS(7960), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8040), 2, + ACTIONS(7085), 2, sym_raw_string, sym_ansi_c_string, - STATE(4668), 2, + ACTIONS(7099), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1401), 2, sym_concatenation, sym_array, - STATE(4422), 9, + STATE(985), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -229727,55 +219547,93 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [179783] = 23, + [171701] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1292), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1294), 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, + [171742] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(7934), 1, + ACTIONS(6935), 1, anon_sym_LPAREN, - ACTIONS(7936), 1, + ACTIONS(6937), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7938), 1, + ACTIONS(6939), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7940), 1, + ACTIONS(6941), 1, anon_sym_DOLLAR, - ACTIONS(7944), 1, + ACTIONS(6945), 1, anon_sym_DQUOTE, - ACTIONS(7948), 1, + ACTIONS(6949), 1, aux_sym_number_token1, - ACTIONS(7950), 1, + ACTIONS(6951), 1, aux_sym_number_token2, - ACTIONS(7952), 1, + ACTIONS(6953), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7954), 1, + ACTIONS(6955), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7956), 1, + ACTIONS(6957), 1, anon_sym_BQUOTE, - ACTIONS(7958), 1, + ACTIONS(6959), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7962), 1, + ACTIONS(6963), 1, sym__comment_word, - ACTIONS(7964), 1, + ACTIONS(6965), 1, sym__empty_value, - ACTIONS(7968), 1, + ACTIONS(6969), 1, sym__brace_start, - ACTIONS(8044), 1, + ACTIONS(7109), 1, sym_word, - ACTIONS(8046), 1, + ACTIONS(7111), 1, sym__special_character, - ACTIONS(8050), 1, + ACTIONS(7115), 1, sym_test_operator, - STATE(4223), 1, + STATE(4125), 1, aux_sym__literal_repeat1, - ACTIONS(7960), 2, + ACTIONS(6961), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8048), 2, + ACTIONS(7113), 2, sym_raw_string, sym_ansi_c_string, - STATE(4668), 2, + STATE(4413), 2, sym_concatenation, sym_array, - STATE(4603), 9, + STATE(4270), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -229785,113 +219643,131 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [179864] = 23, - ACTIONS(3), 1, + [171823] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(4064), 1, + 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, + 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(4066), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4068), 1, - anon_sym_DOLLAR, - ACTIONS(4070), 1, + aux_sym_concatenation_token1, sym__special_character, - ACTIONS(4072), 1, anon_sym_DQUOTE, - ACTIONS(4076), 1, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [171864] = 3, + 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, + anon_sym_DOLLAR, aux_sym_number_token1, - ACTIONS(4078), 1, aux_sym_number_token2, - ACTIONS(4080), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4082), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4084), 1, anon_sym_BQUOTE, - ACTIONS(4086), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4096), 1, - sym__brace_start, - ACTIONS(8052), 1, sym_word, - ACTIONS(8054), 1, - anon_sym_LPAREN, - ACTIONS(8058), 1, - sym__comment_word, - ACTIONS(8060), 1, - sym__empty_value, - ACTIONS(8062), 1, + ACTIONS(1278), 22, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - STATE(2605), 1, - aux_sym__literal_repeat1, - ACTIONS(4088), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8056), 2, + sym__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, - STATE(2901), 2, - sym_concatenation, - sym_array, - STATE(2371), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [179945] = 23, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [171905] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(8064), 1, + ACTIONS(7117), 1, sym_word, - ACTIONS(8066), 1, + ACTIONS(7119), 1, anon_sym_LPAREN, - ACTIONS(8068), 1, + ACTIONS(7121), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8070), 1, + ACTIONS(7123), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8072), 1, + ACTIONS(7125), 1, anon_sym_DOLLAR, - ACTIONS(8074), 1, + ACTIONS(7127), 1, sym__special_character, - ACTIONS(8076), 1, + ACTIONS(7129), 1, anon_sym_DQUOTE, - ACTIONS(8080), 1, + ACTIONS(7133), 1, aux_sym_number_token1, - ACTIONS(8082), 1, + ACTIONS(7135), 1, aux_sym_number_token2, - ACTIONS(8084), 1, + ACTIONS(7137), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8086), 1, + ACTIONS(7139), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8088), 1, + ACTIONS(7141), 1, anon_sym_BQUOTE, - ACTIONS(8090), 1, + ACTIONS(7143), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8094), 1, + ACTIONS(7147), 1, sym__comment_word, - ACTIONS(8096), 1, + ACTIONS(7149), 1, sym__empty_value, - ACTIONS(8098), 1, + ACTIONS(7151), 1, sym_test_operator, - ACTIONS(8100), 1, + ACTIONS(7153), 1, sym__brace_start, - STATE(5287), 1, + STATE(4047), 1, aux_sym__literal_repeat1, - ACTIONS(8078), 2, + ACTIONS(7131), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8092), 2, + ACTIONS(7145), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(5507), 2, + STATE(4454), 2, sym_concatenation, sym_array, - STATE(5124), 9, + STATE(4002), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -229901,55 +219777,55 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [180026] = 23, + [171986] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(7934), 1, + ACTIONS(7155), 1, + sym_word, + ACTIONS(7157), 1, anon_sym_LPAREN, - ACTIONS(7936), 1, + ACTIONS(7159), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7938), 1, + ACTIONS(7161), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7940), 1, + ACTIONS(7163), 1, anon_sym_DOLLAR, - ACTIONS(7944), 1, + ACTIONS(7165), 1, + sym__special_character, + ACTIONS(7167), 1, anon_sym_DQUOTE, - ACTIONS(7948), 1, + ACTIONS(7171), 1, aux_sym_number_token1, - ACTIONS(7950), 1, + ACTIONS(7173), 1, aux_sym_number_token2, - ACTIONS(7952), 1, + ACTIONS(7175), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7954), 1, + ACTIONS(7177), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7956), 1, + ACTIONS(7179), 1, anon_sym_BQUOTE, - ACTIONS(7958), 1, + ACTIONS(7181), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7962), 1, + ACTIONS(7185), 1, sym__comment_word, - ACTIONS(7964), 1, + ACTIONS(7187), 1, sym__empty_value, - ACTIONS(7968), 1, - sym__brace_start, - ACTIONS(8102), 1, - sym_word, - ACTIONS(8104), 1, - sym__special_character, - ACTIONS(8108), 1, + ACTIONS(7189), 1, sym_test_operator, - STATE(4223), 1, + ACTIONS(7191), 1, + sym__brace_start, + STATE(1602), 1, aux_sym__literal_repeat1, - ACTIONS(7960), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8106), 2, + ACTIONS(7169), 2, sym_raw_string, sym_ansi_c_string, - STATE(4668), 2, + ACTIONS(7183), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1797), 2, sym_concatenation, sym_array, - STATE(4503), 9, + STATE(1244), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -229959,55 +219835,55 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [180107] = 23, + [172067] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(8110), 1, + ACTIONS(7193), 1, sym_word, - ACTIONS(8112), 1, + ACTIONS(7195), 1, anon_sym_LPAREN, - ACTIONS(8114), 1, + ACTIONS(7197), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8116), 1, + ACTIONS(7199), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8118), 1, + ACTIONS(7201), 1, anon_sym_DOLLAR, - ACTIONS(8120), 1, + ACTIONS(7203), 1, sym__special_character, - ACTIONS(8122), 1, + ACTIONS(7205), 1, anon_sym_DQUOTE, - ACTIONS(8126), 1, + ACTIONS(7209), 1, aux_sym_number_token1, - ACTIONS(8128), 1, + ACTIONS(7211), 1, aux_sym_number_token2, - ACTIONS(8130), 1, + ACTIONS(7213), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8132), 1, + ACTIONS(7215), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8134), 1, + ACTIONS(7217), 1, anon_sym_BQUOTE, - ACTIONS(8136), 1, + ACTIONS(7219), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8140), 1, + ACTIONS(7223), 1, sym__comment_word, - ACTIONS(8142), 1, + ACTIONS(7225), 1, sym__empty_value, - ACTIONS(8144), 1, + ACTIONS(7227), 1, sym_test_operator, - ACTIONS(8146), 1, + ACTIONS(7229), 1, sym__brace_start, - STATE(1411), 1, + STATE(1675), 1, aux_sym__literal_repeat1, - ACTIONS(8124), 2, + ACTIONS(7207), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8138), 2, + ACTIONS(7221), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1655), 2, + STATE(1809), 2, sym_concatenation, sym_array, - STATE(1122), 9, + STATE(1332), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -230017,113 +219893,55 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [180188] = 23, + [172148] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(7934), 1, - anon_sym_LPAREN, - ACTIONS(7936), 1, + ACTIONS(3528), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7938), 1, + ACTIONS(3530), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7940), 1, + ACTIONS(3532), 1, anon_sym_DOLLAR, - ACTIONS(7944), 1, + ACTIONS(3534), 1, + sym__special_character, + ACTIONS(3536), 1, anon_sym_DQUOTE, - ACTIONS(7948), 1, + ACTIONS(3540), 1, aux_sym_number_token1, - ACTIONS(7950), 1, + ACTIONS(3542), 1, aux_sym_number_token2, - ACTIONS(7952), 1, + ACTIONS(3544), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7954), 1, + ACTIONS(3546), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7956), 1, + ACTIONS(3548), 1, anon_sym_BQUOTE, - ACTIONS(7958), 1, + ACTIONS(3550), 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, - sym_raw_string, - sym_ansi_c_string, - STATE(4668), 2, - sym_concatenation, - sym_array, - STATE(5077), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [180269] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1591), 1, - 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, + ACTIONS(3560), 1, sym__brace_start, - ACTIONS(8156), 1, + ACTIONS(7231), 1, sym_word, - ACTIONS(8158), 1, + ACTIONS(7233), 1, anon_sym_LPAREN, - ACTIONS(8160), 1, - 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, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8172), 1, - anon_sym_BQUOTE, - ACTIONS(8174), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8178), 1, + ACTIONS(7237), 1, sym__comment_word, - ACTIONS(8180), 1, + ACTIONS(7239), 1, sym__empty_value, - ACTIONS(8182), 1, + ACTIONS(7241), 1, sym_test_operator, - STATE(1425), 1, + STATE(2611), 1, aux_sym__literal_repeat1, - ACTIONS(8168), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8176), 2, + ACTIONS(3552), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1660), 2, + ACTIONS(7235), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2794), 2, sym_concatenation, sym_array, - STATE(1124), 9, + STATE(2284), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -230133,55 +219951,55 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [180350] = 23, + [172229] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(8184), 1, - sym_word, - ACTIONS(8186), 1, + ACTIONS(6935), 1, anon_sym_LPAREN, - ACTIONS(8188), 1, + ACTIONS(6937), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8190), 1, + ACTIONS(6939), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8192), 1, + ACTIONS(6941), 1, anon_sym_DOLLAR, - ACTIONS(8194), 1, - sym__special_character, - ACTIONS(8196), 1, + ACTIONS(6945), 1, anon_sym_DQUOTE, - ACTIONS(8200), 1, + ACTIONS(6949), 1, aux_sym_number_token1, - ACTIONS(8202), 1, + ACTIONS(6951), 1, aux_sym_number_token2, - ACTIONS(8204), 1, + ACTIONS(6953), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8206), 1, + ACTIONS(6955), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8208), 1, + ACTIONS(6957), 1, anon_sym_BQUOTE, - ACTIONS(8210), 1, + ACTIONS(6959), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8214), 1, + ACTIONS(6963), 1, sym__comment_word, - ACTIONS(8216), 1, + ACTIONS(6965), 1, sym__empty_value, - ACTIONS(8218), 1, - sym_test_operator, - ACTIONS(8220), 1, + ACTIONS(6969), 1, sym__brace_start, - STATE(4317), 1, + ACTIONS(7243), 1, + sym_word, + ACTIONS(7245), 1, + sym__special_character, + ACTIONS(7249), 1, + sym_test_operator, + STATE(4125), 1, aux_sym__literal_repeat1, - ACTIONS(8198), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8212), 2, + ACTIONS(6961), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(4604), 2, + ACTIONS(7247), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(4413), 2, sym_concatenation, sym_array, - STATE(4148), 9, + STATE(4338), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -230191,55 +220009,55 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [180431] = 23, + [172310] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(8222), 1, - sym_word, - ACTIONS(8224), 1, + ACTIONS(6935), 1, anon_sym_LPAREN, - ACTIONS(8226), 1, + ACTIONS(6937), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8228), 1, + ACTIONS(6939), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8230), 1, + ACTIONS(6941), 1, anon_sym_DOLLAR, - ACTIONS(8232), 1, - sym__special_character, - ACTIONS(8234), 1, + ACTIONS(6945), 1, anon_sym_DQUOTE, - ACTIONS(8238), 1, + ACTIONS(6949), 1, aux_sym_number_token1, - ACTIONS(8240), 1, + ACTIONS(6951), 1, aux_sym_number_token2, - ACTIONS(8242), 1, + ACTIONS(6953), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8244), 1, + ACTIONS(6955), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8246), 1, + ACTIONS(6957), 1, anon_sym_BQUOTE, - ACTIONS(8248), 1, + ACTIONS(6959), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8252), 1, + ACTIONS(6963), 1, sym__comment_word, - ACTIONS(8254), 1, + ACTIONS(6965), 1, sym__empty_value, - ACTIONS(8256), 1, - sym_test_operator, - ACTIONS(8258), 1, + ACTIONS(6969), 1, sym__brace_start, - STATE(1480), 1, + ACTIONS(7251), 1, + sym_word, + ACTIONS(7253), 1, + sym__special_character, + ACTIONS(7257), 1, + sym_test_operator, + STATE(4125), 1, aux_sym__literal_repeat1, - ACTIONS(8236), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8250), 2, + ACTIONS(6961), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1906), 2, + ACTIONS(7255), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(4413), 2, sym_concatenation, sym_array, - STATE(1234), 9, + STATE(4839), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -230249,55 +220067,55 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [180512] = 23, + [172391] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1883), 1, + ACTIONS(1761), 1, anon_sym_DOLLAR, - ACTIONS(1889), 1, + ACTIONS(1767), 1, aux_sym_number_token1, - ACTIONS(1891), 1, + ACTIONS(1769), 1, aux_sym_number_token2, - ACTIONS(1895), 1, + ACTIONS(1773), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1909), 1, + ACTIONS(1787), 1, sym__brace_start, - ACTIONS(8260), 1, + ACTIONS(7259), 1, sym_word, - ACTIONS(8262), 1, + ACTIONS(7261), 1, anon_sym_LPAREN, - ACTIONS(8264), 1, + ACTIONS(7263), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8266), 1, + ACTIONS(7265), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8268), 1, + ACTIONS(7267), 1, sym__special_character, - ACTIONS(8270), 1, + ACTIONS(7269), 1, anon_sym_DQUOTE, - ACTIONS(8274), 1, + ACTIONS(7273), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8276), 1, + ACTIONS(7275), 1, anon_sym_BQUOTE, - ACTIONS(8278), 1, + ACTIONS(7277), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8282), 1, + ACTIONS(7281), 1, sym__comment_word, - ACTIONS(8284), 1, + ACTIONS(7283), 1, sym__empty_value, - ACTIONS(8286), 1, + ACTIONS(7285), 1, sym_test_operator, - STATE(1471), 1, + STATE(1452), 1, aux_sym__literal_repeat1, - ACTIONS(8272), 2, + ACTIONS(7271), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8280), 2, + ACTIONS(7279), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1874), 2, + STATE(1653), 2, sym_concatenation, sym_array, - STATE(1265), 9, + STATE(1159), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -230307,10 +220125,10 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [180593] = 3, + [172472] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1213), 11, + ACTIONS(1296), 11, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -230322,7 +220140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1215), 22, + ACTIONS(1298), 22, sym_file_descriptor, sym__concat, sym_variable_name, @@ -230345,216 +220163,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [180634] = 19, + [172513] = 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(8288), 1, - anon_sym_RBRACE3, - STATE(6345), 1, - aux_sym__expansion_body_repeat1, - STATE(6756), 1, - sym__expansion_regex, - STATE(6772), 1, - sym__expansion_regex_replacement, - STATE(6975), 1, - sym__expansion_regex_removal, - STATE(7001), 1, - sym__expansion_max_length, - STATE(7010), 1, - sym__expansion_operator, - STATE(7255), 1, - sym__expansion_expression, - ACTIONS(7730), 2, - anon_sym_COMMA, - anon_sym_CARET, - ACTIONS(7750), 2, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - ACTIONS(7738), 3, - sym__immediate_double_hash, - anon_sym_POUND, - anon_sym_PERCENT_PERCENT, - ACTIONS(7748), 3, - anon_sym_SLASH_SLASH, - anon_sym_SLASH_POUND, - anon_sym_SLASH_PERCENT, - ACTIONS(7752), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(7746), 8, - anon_sym_EQ2, - anon_sym_COLON_EQ, - anon_sym_DASH3, - anon_sym_COLON_DASH, - anon_sym_PLUS3, - anon_sym_COLON_PLUS, - anon_sym_QMARK2, - anon_sym_COLON_QMARK, - [180707] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1272), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(6935), 1, + anon_sym_LPAREN, + ACTIONS(6937), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6939), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6941), 1, anon_sym_DOLLAR, + ACTIONS(6945), 1, + anon_sym_DQUOTE, + ACTIONS(6949), 1, aux_sym_number_token1, + ACTIONS(6951), 1, aux_sym_number_token2, + ACTIONS(6953), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6955), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(6957), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1274), 22, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_test_operator, + ACTIONS(6959), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6963), 1, + sym__comment_word, + ACTIONS(6965), 1, + sym__empty_value, + ACTIONS(6969), 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, + ACTIONS(7287), 1, + sym_word, + ACTIONS(7289), 1, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(7293), 1, + sym_test_operator, + STATE(4125), 1, + aux_sym__literal_repeat1, + ACTIONS(6961), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [180748] = 3, - ACTIONS(71), 1, + ACTIONS(7291), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(4413), 2, + sym_concatenation, + sym_array, + STATE(4154), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [172594] = 23, + ACTIONS(3), 1, sym_comment, - ACTIONS(1264), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(7295), 1, sym_word, - ACTIONS(1266), 22, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + ACTIONS(7297), 1, + anon_sym_LPAREN, + ACTIONS(7299), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7301), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(7303), 1, + anon_sym_DOLLAR, + ACTIONS(7305), 1, sym__special_character, + ACTIONS(7307), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [180789] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1280), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, + ACTIONS(7311), 1, aux_sym_number_token1, + ACTIONS(7313), 1, aux_sym_number_token2, + ACTIONS(7315), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7317), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(7319), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1282), 22, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(7321), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7325), 1, + sym__comment_word, + ACTIONS(7327), 1, + sym__empty_value, + ACTIONS(7329), 1, sym_test_operator, + ACTIONS(7331), 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(2567), 1, + aux_sym__literal_repeat1, + ACTIONS(7309), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(7323), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [180830] = 3, - ACTIONS(71), 1, + STATE(2693), 2, + sym_concatenation, + sym_array, + 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, + [172675] = 23, + ACTIONS(3), 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(7333), 1, + sym_word, + ACTIONS(7335), 1, + anon_sym_LPAREN, + ACTIONS(7337), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7339), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7341), 1, anon_sym_DOLLAR, + ACTIONS(7343), 1, + sym__special_character, + ACTIONS(7345), 1, + anon_sym_DQUOTE, + ACTIONS(7349), 1, aux_sym_number_token1, + ACTIONS(7351), 1, aux_sym_number_token2, + ACTIONS(7353), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7355), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(7357), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1250), 22, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(7359), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7363), 1, + sym__comment_word, + ACTIONS(7365), 1, + sym__empty_value, + ACTIONS(7367), 1, sym_test_operator, + ACTIONS(7369), 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(3300), 1, + aux_sym__literal_repeat1, + ACTIONS(7347), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(7361), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [180871] = 3, + STATE(3342), 2, + sym_concatenation, + sym_array, + STATE(3244), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [172756] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 11, + ACTIONS(1272), 11, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -230566,7 +220352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1258), 22, + ACTIONS(1274), 22, sym_file_descriptor, sym__concat, sym_variable_name, @@ -230589,10 +220375,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [180912] = 3, + [172797] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1276), 11, + ACTIONS(1300), 11, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -230604,7 +220390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1278), 22, + ACTIONS(1302), 22, sym_file_descriptor, sym__concat, sym_variable_name, @@ -230627,10 +220413,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [180953] = 3, + [172838] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1288), 11, + ACTIONS(1300), 11, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -230642,7 +220428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1290), 22, + ACTIONS(1302), 22, sym_file_descriptor, sym__concat, sym_variable_name, @@ -230665,48 +220451,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [180994] = 3, - ACTIONS(71), 1, + [172879] = 23, + ACTIONS(3), 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(7371), 1, + sym_word, + ACTIONS(7373), 1, + anon_sym_LPAREN, + ACTIONS(7375), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7377), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7379), 1, anon_sym_DOLLAR, + ACTIONS(7381), 1, + sym__special_character, + ACTIONS(7383), 1, + anon_sym_DQUOTE, + ACTIONS(7387), 1, aux_sym_number_token1, + ACTIONS(7389), 1, aux_sym_number_token2, + ACTIONS(7391), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7393), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(7395), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1294), 22, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(7397), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7401), 1, + sym__comment_word, + ACTIONS(7403), 1, + sym__empty_value, + ACTIONS(7405), 1, sym_test_operator, + ACTIONS(7407), 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(4224), 1, + aux_sym__literal_repeat1, + ACTIONS(7385), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(7399), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [181035] = 3, + STATE(4633), 2, + sym_concatenation, + sym_array, + STATE(4145), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [172960] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 11, + ACTIONS(1264), 11, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -230718,7 +220524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1298), 22, + ACTIONS(1266), 22, sym_file_descriptor, sym__concat, sym_variable_name, @@ -230741,10 +220547,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [181076] = 3, + [173001] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 11, + ACTIONS(1308), 11, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -230756,7 +220562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1302), 22, + ACTIONS(1310), 22, sym_file_descriptor, sym__concat, sym_variable_name, @@ -230779,10 +220585,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [181117] = 3, + [173042] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 11, + ACTIONS(1260), 11, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -230794,7 +220600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1306), 22, + ACTIONS(1262), 22, sym_file_descriptor, sym__concat, sym_variable_name, @@ -230817,10 +220623,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [181158] = 3, + [173083] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 11, + ACTIONS(1248), 11, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -230832,7 +220638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1302), 22, + ACTIONS(1250), 22, sym_file_descriptor, sym__concat, sym_variable_name, @@ -230855,65 +220661,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [181199] = 8, + [173124] = 23, 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, - 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), 18, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, + ACTIONS(7195), 1, + anon_sym_LPAREN, + ACTIONS(7197), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7199), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(7201), 1, + anon_sym_DOLLAR, + ACTIONS(7205), 1, + anon_sym_DQUOTE, + ACTIONS(7209), 1, + aux_sym_number_token1, + ACTIONS(7211), 1, + aux_sym_number_token2, + ACTIONS(7213), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7215), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7217), 1, + anon_sym_BQUOTE, + ACTIONS(7219), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7223), 1, + sym__comment_word, + ACTIONS(7225), 1, + sym__empty_value, + ACTIONS(7229), 1, + sym__brace_start, + ACTIONS(7409), 1, + sym_word, + ACTIONS(7411), 1, sym__special_character, + ACTIONS(7415), 1, + sym_test_operator, + STATE(1675), 1, + aux_sym__literal_repeat1, + ACTIONS(7221), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7413), 2, sym_raw_string, sym_ansi_c_string, + STATE(1809), 2, + sym_concatenation, + sym_array, + STATE(2158), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [173205] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2168), 1, + anon_sym_DOLLAR, + ACTIONS(2174), 1, aux_sym_number_token1, + ACTIONS(2176), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, + ACTIONS(2180), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(2194), 1, + sym__brace_start, + ACTIONS(6903), 1, + anon_sym_LPAREN, + ACTIONS(6905), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6907), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6911), 1, + anon_sym_DQUOTE, + ACTIONS(6915), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6917), 1, anon_sym_BQUOTE, + ACTIONS(6919), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(6923), 1, + sym__comment_word, + ACTIONS(6925), 1, + sym__empty_value, + ACTIONS(7417), 1, + sym_word, + ACTIONS(7419), 1, + sym__special_character, + ACTIONS(7423), 1, + sym_test_operator, + STATE(1579), 1, + aux_sym__literal_repeat1, + ACTIONS(6921), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [181250] = 8, + ACTIONS(7421), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1851), 2, + sym_concatenation, + sym_array, + STATE(2164), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [173286] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3562), 1, + ACTIONS(3253), 1, anon_sym_DQUOTE, - ACTIONS(8294), 1, + ACTIONS(7013), 1, sym_variable_name, - STATE(4874), 1, + STATE(4577), 1, sym_string, - ACTIONS(1191), 2, + ACTIONS(1197), 2, sym_test_operator, sym__brace_start, - ACTIONS(8292), 2, + ACTIONS(7011), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8290), 8, + ACTIONS(7009), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -230922,7 +220801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1183), 18, + ACTIONS(1195), 18, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, @@ -230941,189 +220820,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [181301] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1284), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1286), 22, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [181342] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1225), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 29, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_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, - [181383] = 23, + [173337] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(8296), 1, - sym_word, - ACTIONS(8298), 1, + ACTIONS(7195), 1, anon_sym_LPAREN, - ACTIONS(8300), 1, + ACTIONS(7197), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8302), 1, + ACTIONS(7199), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8304), 1, + ACTIONS(7201), 1, anon_sym_DOLLAR, - ACTIONS(8306), 1, - sym__special_character, - ACTIONS(8308), 1, + ACTIONS(7205), 1, anon_sym_DQUOTE, - ACTIONS(8312), 1, + ACTIONS(7209), 1, aux_sym_number_token1, - ACTIONS(8314), 1, + ACTIONS(7211), 1, aux_sym_number_token2, - ACTIONS(8316), 1, + ACTIONS(7213), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, + ACTIONS(7215), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8320), 1, + ACTIONS(7217), 1, anon_sym_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(7219), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8326), 1, + ACTIONS(7223), 1, sym__comment_word, - ACTIONS(8328), 1, + ACTIONS(7225), 1, sym__empty_value, - ACTIONS(8330), 1, - sym_test_operator, - ACTIONS(8332), 1, - sym__brace_start, - STATE(1720), 1, - aux_sym__literal_repeat1, - ACTIONS(8310), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8324), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2043), 2, - sym_concatenation, - sym_array, - STATE(1678), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [181464] = 23, - 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, + ACTIONS(7229), 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, - 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(8334), 1, + ACTIONS(7425), 1, sym_word, - ACTIONS(8336), 1, + ACTIONS(7427), 1, sym__special_character, - ACTIONS(8340), 1, + ACTIONS(7431), 1, sym_test_operator, - STATE(1828), 1, + STATE(1675), 1, aux_sym__literal_repeat1, - ACTIONS(8028), 2, + ACTIONS(7221), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8338), 2, + ACTIONS(7429), 2, sym_raw_string, sym_ansi_c_string, - STATE(2056), 2, + STATE(1809), 2, sym_concatenation, sym_array, - STATE(1686), 9, + STATE(1524), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -231133,10 +220878,10 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [181545] = 3, + [173418] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1252), 11, + ACTIONS(1280), 11, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -231148,7 +220893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1254), 22, + ACTIONS(1282), 22, sym_file_descriptor, sym__concat, sym_variable_name, @@ -231171,113 +220916,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [181586] = 23, + [173459] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(8298), 1, + ACTIONS(7433), 1, + sym_word, + ACTIONS(7435), 1, anon_sym_LPAREN, - ACTIONS(8300), 1, + ACTIONS(7437), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8302), 1, + ACTIONS(7439), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8304), 1, + ACTIONS(7441), 1, anon_sym_DOLLAR, - ACTIONS(8308), 1, + ACTIONS(7443), 1, + sym__special_character, + ACTIONS(7445), 1, anon_sym_DQUOTE, - ACTIONS(8312), 1, + ACTIONS(7449), 1, aux_sym_number_token1, - ACTIONS(8314), 1, + ACTIONS(7451), 1, aux_sym_number_token2, - ACTIONS(8316), 1, + ACTIONS(7453), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, + ACTIONS(7455), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8320), 1, + ACTIONS(7457), 1, anon_sym_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(7459), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8326), 1, + ACTIONS(7463), 1, sym__comment_word, - ACTIONS(8328), 1, + ACTIONS(7465), 1, sym__empty_value, - ACTIONS(8332), 1, - sym__brace_start, - ACTIONS(8342), 1, - sym_word, - ACTIONS(8344), 1, - sym__special_character, - ACTIONS(8348), 1, + ACTIONS(7467), 1, sym_test_operator, - STATE(1720), 1, + ACTIONS(7469), 1, + sym__brace_start, + STATE(1444), 1, aux_sym__literal_repeat1, - ACTIONS(8324), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8346), 2, + ACTIONS(7447), 2, sym_raw_string, sym_ansi_c_string, - STATE(2043), 2, - sym_concatenation, - sym_array, - STATE(1386), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [181667] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8298), 1, - anon_sym_LPAREN, - ACTIONS(8300), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8302), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8304), 1, - anon_sym_DOLLAR, - ACTIONS(8308), 1, - anon_sym_DQUOTE, - ACTIONS(8312), 1, - aux_sym_number_token1, - ACTIONS(8314), 1, - aux_sym_number_token2, - ACTIONS(8316), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8320), 1, - anon_sym_BQUOTE, - ACTIONS(8322), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8326), 1, - sym__comment_word, - ACTIONS(8328), 1, - sym__empty_value, - ACTIONS(8332), 1, - sym__brace_start, - ACTIONS(8350), 1, - sym_word, - ACTIONS(8352), 1, - sym__special_character, - ACTIONS(8356), 1, - sym_test_operator, - STATE(1720), 1, - aux_sym__literal_repeat1, - ACTIONS(8324), 2, + ACTIONS(7461), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8354), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2043), 2, + STATE(1609), 2, sym_concatenation, sym_array, - STATE(2297), 9, + STATE(1152), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -231287,55 +220974,163 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [181748] = 23, + [173540] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2033), 1, + ACTIONS(6859), 1, + anon_sym_SLASH, + ACTIONS(6861), 1, + anon_sym_PERCENT, + ACTIONS(6863), 1, + anon_sym_COLON, + ACTIONS(6931), 1, + anon_sym_AT, + ACTIONS(7471), 1, + anon_sym_RBRACE3, + STATE(5964), 1, + aux_sym__expansion_body_repeat1, + STATE(6440), 1, + sym__expansion_operator, + STATE(6599), 1, + sym__expansion_expression, + STATE(6669), 1, + sym__expansion_max_length, + STATE(6878), 1, + sym__expansion_regex, + STATE(6922), 1, + sym__expansion_regex_replacement, + STATE(6923), 1, + sym__expansion_regex_removal, + ACTIONS(6857), 2, + anon_sym_COMMA, + anon_sym_CARET, + ACTIONS(6877), 2, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + ACTIONS(6865), 3, + sym__immediate_double_hash, + anon_sym_POUND, + anon_sym_PERCENT_PERCENT, + ACTIONS(6875), 3, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + ACTIONS(6879), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(6873), 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, + [173613] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6859), 1, + anon_sym_SLASH, + ACTIONS(6861), 1, + anon_sym_PERCENT, + ACTIONS(6863), 1, + anon_sym_COLON, + ACTIONS(6931), 1, + anon_sym_AT, + ACTIONS(7473), 1, + anon_sym_RBRACE3, + STATE(6037), 1, + aux_sym__expansion_body_repeat1, + STATE(6707), 1, + sym__expansion_max_length, + STATE(6738), 1, + sym__expansion_regex_replacement, + STATE(6765), 1, + sym__expansion_regex_removal, + STATE(6813), 1, + sym__expansion_operator, + STATE(6835), 1, + sym__expansion_expression, + STATE(7133), 1, + sym__expansion_regex, + ACTIONS(6857), 2, + anon_sym_COMMA, + anon_sym_CARET, + ACTIONS(6877), 2, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + ACTIONS(6865), 3, + sym__immediate_double_hash, + anon_sym_POUND, + anon_sym_PERCENT_PERCENT, + ACTIONS(6875), 3, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + ACTIONS(6879), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(6873), 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, + [173686] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2168), 1, anon_sym_DOLLAR, - ACTIONS(2039), 1, + ACTIONS(2174), 1, aux_sym_number_token1, - ACTIONS(2041), 1, + ACTIONS(2176), 1, aux_sym_number_token2, - ACTIONS(2045), 1, + ACTIONS(2180), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2059), 1, + ACTIONS(2194), 1, sym__brace_start, - ACTIONS(8010), 1, + ACTIONS(6903), 1, anon_sym_LPAREN, - ACTIONS(8012), 1, + ACTIONS(6905), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8014), 1, + ACTIONS(6907), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8018), 1, + ACTIONS(6911), 1, anon_sym_DQUOTE, - ACTIONS(8022), 1, + ACTIONS(6915), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8024), 1, + ACTIONS(6917), 1, anon_sym_BQUOTE, - ACTIONS(8026), 1, + ACTIONS(6919), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8030), 1, + ACTIONS(6923), 1, sym__comment_word, - ACTIONS(8032), 1, + ACTIONS(6925), 1, sym__empty_value, - ACTIONS(8358), 1, + ACTIONS(7475), 1, sym_word, - ACTIONS(8360), 1, + ACTIONS(7477), 1, sym__special_character, - ACTIONS(8364), 1, + ACTIONS(7481), 1, sym_test_operator, - STATE(1828), 1, + STATE(1579), 1, aux_sym__literal_repeat1, - ACTIONS(8028), 2, + ACTIONS(6921), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8362), 2, + ACTIONS(7479), 2, sym_raw_string, sym_ansi_c_string, - STATE(2056), 2, + STATE(1851), 2, sym_concatenation, sym_array, - STATE(2301), 9, + STATE(1217), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -231345,72 +221140,102 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [181829] = 23, - ACTIONS(3), 1, + [173767] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(8366), 1, - sym_word, - ACTIONS(8368), 1, - anon_sym_LPAREN, - ACTIONS(8370), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8372), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8374), 1, + ACTIONS(1284), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(8376), 1, - sym__special_character, - ACTIONS(8378), 1, - anon_sym_DQUOTE, - ACTIONS(8382), 1, aux_sym_number_token1, - ACTIONS(8384), 1, aux_sym_number_token2, - ACTIONS(8386), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8388), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8390), 1, anon_sym_BQUOTE, - ACTIONS(8392), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8396), 1, - sym__comment_word, - ACTIONS(8398), 1, - sym__empty_value, - ACTIONS(8400), 1, + sym_word, + ACTIONS(1286), 22, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - ACTIONS(8402), 1, sym__brace_start, - STATE(4407), 1, - aux_sym__literal_repeat1, - ACTIONS(8380), 2, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(8394), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(4700), 2, - sym_concatenation, - sym_array, - STATE(4237), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [181910] = 5, + [173808] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6859), 1, + anon_sym_SLASH, + ACTIONS(6861), 1, + anon_sym_PERCENT, + ACTIONS(6863), 1, + anon_sym_COLON, + ACTIONS(6867), 1, + anon_sym_RBRACE3, + ACTIONS(6931), 1, + anon_sym_AT, + STATE(5985), 1, + aux_sym__expansion_body_repeat1, + STATE(6612), 1, + sym__expansion_expression, + STATE(6747), 1, + sym__expansion_regex, + STATE(6756), 1, + sym__expansion_regex_replacement, + STATE(6800), 1, + sym__expansion_regex_removal, + STATE(6838), 1, + sym__expansion_max_length, + STATE(6857), 1, + sym__expansion_operator, + ACTIONS(6857), 2, + anon_sym_COMMA, + anon_sym_CARET, + ACTIONS(6877), 2, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + ACTIONS(6865), 3, + sym__immediate_double_hash, + anon_sym_POUND, + anon_sym_PERCENT_PERCENT, + ACTIONS(6875), 3, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + ACTIONS(6879), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(6873), 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, + [173881] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(8404), 1, - sym__special_character, - STATE(3454), 1, - aux_sym__literal_repeat1, - ACTIONS(5687), 10, + ACTIONS(1312), 11, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -231420,9 +221245,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(5689), 20, + ACTIONS(1314), 22, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -231434,176 +221261,63 @@ static const 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, - [181954] = 23, + [173922] = 23, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8420), 1, + ACTIONS(7497), 1, sym_raw_string, - ACTIONS(8422), 1, - aux_sym_number_token1, - ACTIONS(8424), 1, - aux_sym_number_token2, - ACTIONS(8426), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, - anon_sym_BQUOTE, - ACTIONS(8432), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8434), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8436), 1, - sym_variable_name, - STATE(2712), 1, - sym__arithmetic_binary_expression, - STATE(2715), 1, - sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - STATE(3429), 1, - aux_sym_compound_statement_repeat1, - ACTIONS(8410), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(8412), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3017), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [182034] = 23, - ACTIONS(71), 1, - 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, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(8438), 1, - sym_raw_string, - ACTIONS(8440), 1, + ACTIONS(7511), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, - sym__arithmetic_binary_expression, - STATE(2715), 1, - sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - STATE(3444), 1, - aux_sym_compound_statement_repeat1, - ACTIONS(8410), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(8412), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2809), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [182114] = 23, - ACTIONS(71), 1, - sym_comment, - ACTIONS(8406), 1, - anon_sym_LPAREN, - ACTIONS(8408), 1, - anon_sym_BANG, - ACTIONS(8414), 1, - anon_sym_TILDE, - ACTIONS(8416), 1, - anon_sym_DOLLAR, - ACTIONS(8418), 1, - anon_sym_DQUOTE, - ACTIONS(8422), 1, - 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, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(8442), 1, - sym_raw_string, - ACTIONS(8444), 1, - aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - STATE(3434), 1, + STATE(3309), 1, aux_sym_compound_statement_repeat1, - ACTIONS(8410), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2810), 9, + STATE(2864), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -231613,54 +221327,54 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [182194] = 23, + [174002] = 23, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(8446), 1, + ACTIONS(7515), 1, sym_raw_string, - ACTIONS(8448), 1, + ACTIONS(7517), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - STATE(3444), 1, + STATE(3309), 1, aux_sym_compound_statement_repeat1, - ACTIONS(8410), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2981), 9, + STATE(2746), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -231670,14 +221384,14 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [182274] = 5, + [174082] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(8404), 1, + ACTIONS(7519), 1, sym__special_character, - STATE(3454), 1, + STATE(3296), 1, aux_sym__literal_repeat1, - ACTIONS(4307), 10, + ACTIONS(1316), 10, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -231688,7 +221402,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(4309), 20, + ACTIONS(1318), 20, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -231709,96 +221423,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [182318] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1197), 1, - sym_file_descriptor, - ACTIONS(8452), 1, - anon_sym_DQUOTE, - ACTIONS(8456), 1, - sym_variable_name, - STATE(5176), 1, - sym_string, - ACTIONS(8454), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(8450), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 18, - 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, + [174126] = 23, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(8458), 1, + ACTIONS(7522), 1, sym_raw_string, - ACTIONS(8460), 1, + ACTIONS(7524), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - STATE(3444), 1, + STATE(3309), 1, aux_sym_compound_statement_repeat1, - ACTIONS(8410), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2816), 9, + STATE(2755), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -231808,54 +221480,54 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [182448] = 23, + [174206] = 23, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(8462), 1, + ACTIONS(7526), 1, sym_raw_string, - ACTIONS(8464), 1, + ACTIONS(7528), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - STATE(3436), 1, + STATE(3309), 1, aux_sym_compound_statement_repeat1, - ACTIONS(8410), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2817), 9, + STATE(2756), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -231865,54 +221537,54 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [182528] = 23, + [174286] = 23, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(8466), 1, + ACTIONS(7530), 1, sym_raw_string, - ACTIONS(8468), 1, + ACTIONS(7532), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - STATE(3444), 1, + STATE(3294), 1, aux_sym_compound_statement_repeat1, - ACTIONS(8410), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2821), 9, + STATE(2795), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -231922,54 +221594,93 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [182608] = 23, + [174366] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7534), 1, + sym__special_character, + STATE(3296), 1, + aux_sym__literal_repeat1, + ACTIONS(4447), 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(4449), 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, + [174410] = 23, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(8470), 1, + ACTIONS(7536), 1, sym_raw_string, - ACTIONS(8472), 1, + ACTIONS(7538), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - STATE(3439), 1, + STATE(3309), 1, aux_sym_compound_statement_repeat1, - ACTIONS(8410), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2823), 9, + STATE(2813), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -231979,54 +221690,54 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [182688] = 23, + [174490] = 23, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(8474), 1, + ACTIONS(7540), 1, sym_raw_string, - ACTIONS(8476), 1, + ACTIONS(7542), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - STATE(3431), 1, + STATE(3309), 1, aux_sym_compound_statement_repeat1, - ACTIONS(8410), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2863), 9, + STATE(2699), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -232036,54 +221747,54 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [182768] = 23, + [174570] = 23, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(8478), 1, + ACTIONS(7544), 1, sym_raw_string, - ACTIONS(8480), 1, + ACTIONS(7546), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - STATE(3444), 1, + STATE(3298), 1, aux_sym_compound_statement_repeat1, - ACTIONS(8410), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2827), 9, + STATE(2781), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -232093,54 +221804,54 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [182848] = 23, + [174650] = 23, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(8482), 1, + ACTIONS(7548), 1, sym_raw_string, - ACTIONS(8484), 1, + ACTIONS(7550), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - STATE(3441), 1, + STATE(3309), 1, aux_sym_compound_statement_repeat1, - ACTIONS(8410), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2828), 9, + STATE(2787), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -232150,54 +221861,54 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [182928] = 23, + [174730] = 23, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(8486), 1, + ACTIONS(7552), 1, sym_raw_string, - ACTIONS(8488), 1, + ACTIONS(7554), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - STATE(3444), 1, + STATE(3295), 1, aux_sym_compound_statement_repeat1, - ACTIONS(8410), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2830), 9, + STATE(2710), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -232207,60 +221918,63 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [183008] = 5, - ACTIONS(71), 1, + [174810] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(8404), 1, - sym__special_character, - STATE(3454), 1, - aux_sym__literal_repeat1, - ACTIONS(5130), 10, + ACTIONS(1191), 1, + sym_file_descriptor, + ACTIONS(3307), 1, + anon_sym_DQUOTE, + ACTIONS(6481), 1, + sym_variable_name, + STATE(4065), 1, + sym_string, + ACTIONS(6479), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(6477), 8, + 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_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(5132), 20, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, 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, - [183052] = 8, + [174860] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1191), 1, sym_file_descriptor, - ACTIONS(8452), 1, + ACTIONS(7558), 1, anon_sym_DQUOTE, - ACTIONS(8456), 1, + ACTIONS(7562), 1, sym_variable_name, - STATE(5176), 1, + STATE(4897), 1, sym_string, - ACTIONS(8454), 2, + ACTIONS(7560), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8450), 8, + ACTIONS(7556), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -232288,111 +222002,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [183102] = 23, - ACTIONS(71), 1, - sym_comment, - ACTIONS(8490), 1, - anon_sym_LPAREN, - ACTIONS(8493), 1, - anon_sym_BANG, - ACTIONS(8502), 1, - anon_sym_TILDE, - ACTIONS(8505), 1, - anon_sym_DOLLAR, - ACTIONS(8508), 1, - anon_sym_DQUOTE, - ACTIONS(8511), 1, - sym_raw_string, - ACTIONS(8514), 1, - aux_sym_number_token1, - ACTIONS(8517), 1, - aux_sym_number_token2, - ACTIONS(8520), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8523), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8526), 1, - anon_sym_BQUOTE, - ACTIONS(8529), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8532), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8535), 1, - sym_variable_name, - STATE(2712), 1, - sym__arithmetic_binary_expression, - STATE(2715), 1, - sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - STATE(3444), 1, - aux_sym_compound_statement_repeat1, - ACTIONS(8496), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(8499), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3214), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [183182] = 23, + [174910] = 23, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(8538), 1, + ACTIONS(7564), 1, sym_raw_string, - ACTIONS(8540), 1, + ACTIONS(7566), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - STATE(3447), 1, + STATE(3302), 1, aux_sym_compound_statement_repeat1, - ACTIONS(8410), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2942), 9, + STATE(2660), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -232402,168 +222059,54 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [183262] = 23, + [174990] = 23, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7568), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7571), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7580), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7583), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7586), 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(8542), 1, + ACTIONS(7589), 1, sym_raw_string, - ACTIONS(8544), 1, - aux_sym__simple_variable_name_token1, - STATE(2712), 1, - sym__arithmetic_binary_expression, - STATE(2715), 1, - sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - STATE(3448), 1, - aux_sym_compound_statement_repeat1, - ACTIONS(8410), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(8412), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2980), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [183342] = 23, - 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, + ACTIONS(7592), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7595), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7598), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7601), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7604), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7607), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(8546), 1, - sym_raw_string, - ACTIONS(8548), 1, + ACTIONS(7610), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, - sym__arithmetic_binary_expression, - STATE(2715), 1, - sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - STATE(3444), 1, - aux_sym_compound_statement_repeat1, - ACTIONS(8410), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(8412), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2947), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [183422] = 23, - ACTIONS(71), 1, - sym_comment, - ACTIONS(8406), 1, - anon_sym_LPAREN, - ACTIONS(8408), 1, - anon_sym_BANG, - ACTIONS(8414), 1, - anon_sym_TILDE, - ACTIONS(8416), 1, - anon_sym_DOLLAR, - ACTIONS(8418), 1, - 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, + ACTIONS(7613), 1, sym_variable_name, - ACTIONS(8550), 1, - sym_raw_string, - ACTIONS(8552), 1, - aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - STATE(3444), 1, + STATE(3309), 1, aux_sym_compound_statement_repeat1, - ACTIONS(8410), 2, + ACTIONS(7574), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7577), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2986), 9, + STATE(2985), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -232573,14 +222116,14 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [183502] = 5, + [175070] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(8404), 1, + ACTIONS(7534), 1, sym__special_character, - STATE(3454), 1, + STATE(3296), 1, aux_sym__literal_repeat1, - ACTIONS(4280), 10, + ACTIONS(4481), 10, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -232591,7 +222134,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(4282), 20, + ACTIONS(4483), 20, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -232612,56 +222155,14 @@ static const uint16_t ts_small_parse_table[] = { 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, - 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), 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, + [175114] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(8404), 1, + ACTIONS(7534), 1, sym__special_character, - STATE(3454), 1, + STATE(3296), 1, aux_sym__literal_repeat1, - ACTIONS(5561), 10, + ACTIONS(4004), 10, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -232672,7 +222173,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(5563), 20, + ACTIONS(4006), 20, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -232693,14 +222194,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [183640] = 5, + [175158] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(8404), 1, + ACTIONS(7534), 1, sym__special_character, - STATE(3454), 1, + STATE(3296), 1, aux_sym__literal_repeat1, - ACTIONS(5264), 10, + ACTIONS(4123), 10, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -232711,7 +222212,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(5266), 20, + ACTIONS(4125), 20, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -232732,71 +222233,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [183684] = 23, - ACTIONS(71), 1, - sym_comment, - ACTIONS(8406), 1, - anon_sym_LPAREN, - ACTIONS(8408), 1, - anon_sym_BANG, - ACTIONS(8414), 1, - anon_sym_TILDE, - ACTIONS(8416), 1, - anon_sym_DOLLAR, - ACTIONS(8418), 1, - anon_sym_DQUOTE, - ACTIONS(8422), 1, - 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(8554), 1, - sym_raw_string, - ACTIONS(8556), 1, - aux_sym__simple_variable_name_token1, - STATE(2712), 1, - sym__arithmetic_binary_expression, - STATE(2715), 1, - sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - STATE(3456), 1, - aux_sym_compound_statement_repeat1, - ACTIONS(8410), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(8412), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2993), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [183764] = 5, + [175202] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(8558), 1, + ACTIONS(7534), 1, sym__special_character, - STATE(3454), 1, + STATE(3296), 1, aux_sym__literal_repeat1, - ACTIONS(1316), 10, + ACTIONS(4489), 10, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -232807,7 +222251,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(1318), 20, + ACTIONS(4491), 20, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -232826,208 +222270,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, 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, - 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(8561), 1, - sym_raw_string, - ACTIONS(8563), 1, - aux_sym__simple_variable_name_token1, - STATE(2712), 1, - sym__arithmetic_binary_expression, - STATE(2715), 1, - sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - STATE(3444), 1, - aux_sym_compound_statement_repeat1, - ACTIONS(8410), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(8412), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3010), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [183938] = 22, - 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, - anon_sym_DOLLAR, - ACTIONS(8577), 1, - anon_sym_DQUOTE, - ACTIONS(8579), 1, - sym_raw_string, - ACTIONS(8581), 1, - aux_sym_number_token1, - ACTIONS(8583), 1, - aux_sym_number_token2, - ACTIONS(8585), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, - anon_sym_BQUOTE, - ACTIONS(8591), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8593), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8595), 1, - sym_variable_name, - STATE(3024), 1, - sym__arithmetic_binary_expression, - STATE(3027), 1, - sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(8571), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3030), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [184015] = 22, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [175246] = 23, ACTIONS(71), 1, sym_comment, - ACTIONS(8597), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8599), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8605), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8607), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8609), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8611), 1, - sym_raw_string, - ACTIONS(8613), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8615), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8617), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8619), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8621), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8623), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8625), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8627), 1, + ACTIONS(7513), 1, sym_variable_name, - STATE(3262), 1, + ACTIONS(7616), 1, + sym_raw_string, + ACTIONS(7618), 1, + aux_sym__simple_variable_name_token1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(3267), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(3272), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(3274), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8601), 2, + STATE(3304), 1, + aux_sym_compound_statement_repeat1, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8603), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3029), 9, + STATE(2766), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -233037,52 +222329,54 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [184092] = 22, + [175326] = 23, ACTIONS(71), 1, sym_comment, - ACTIONS(8597), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8599), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8605), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8607), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8609), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8613), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8615), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8617), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8619), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8621), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8623), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8627), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(8629), 1, + ACTIONS(7620), 1, sym_raw_string, - ACTIONS(8631), 1, + ACTIONS(7622), 1, aux_sym__simple_variable_name_token1, - STATE(3262), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(3267), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(3272), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(3274), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8601), 2, + STATE(3317), 1, + aux_sym_compound_statement_repeat1, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8603), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3032), 9, + STATE(2851), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -233092,106 +222386,54 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [184169] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(8633), 1, - sym_word, - ACTIONS(8635), 1, - anon_sym_RPAREN, - 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, - 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(3462), 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, - [184244] = 22, + [175406] = 23, ACTIONS(71), 1, sym_comment, - ACTIONS(8597), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8599), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8605), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8607), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8609), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8613), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8615), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8617), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8619), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8621), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8623), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8627), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(8667), 1, + ACTIONS(7624), 1, sym_raw_string, - ACTIONS(8669), 1, + ACTIONS(7626), 1, aux_sym__simple_variable_name_token1, - STATE(3262), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(3267), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(3272), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(3274), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8601), 2, + STATE(3301), 1, + aux_sym_compound_statement_repeat1, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8603), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3035), 9, + STATE(2799), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -233201,106 +222443,54 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [184321] = 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(8671), 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, - [184396] = 22, + [175486] = 23, ACTIONS(71), 1, sym_comment, - ACTIONS(8597), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8599), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8605), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8607), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8609), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8613), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8615), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8617), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8619), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8621), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8623), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8627), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(8673), 1, + ACTIONS(7628), 1, sym_raw_string, - ACTIONS(8675), 1, + ACTIONS(7630), 1, aux_sym__simple_variable_name_token1, - STATE(3262), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(3267), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(3272), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(3274), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8601), 2, + STATE(3309), 1, + aux_sym_compound_statement_repeat1, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8603), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3037), 9, + STATE(2869), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -233310,52 +222500,54 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [184473] = 22, + [175566] = 23, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(8677), 1, + ACTIONS(7632), 1, sym_raw_string, - ACTIONS(8679), 1, + ACTIONS(7634), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + STATE(3297), 1, + aux_sym_compound_statement_repeat1, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3173), 9, + STATE(2751), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -233365,52 +222557,138 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [184550] = 22, + [175646] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1197), 1, + sym_file_descriptor, + ACTIONS(7558), 1, + anon_sym_DQUOTE, + ACTIONS(7562), 1, + sym_variable_name, + STATE(4897), 1, + sym_string, + ACTIONS(7560), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7556), 8, + 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, + [175696] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1197), 1, + sym_file_descriptor, + ACTIONS(3307), 1, + anon_sym_DQUOTE, + ACTIONS(6481), 1, + sym_variable_name, + STATE(4065), 1, + sym_string, + ACTIONS(6479), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(6477), 8, + 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, + [175746] = 23, ACTIONS(71), 1, sym_comment, - ACTIONS(8597), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8599), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8605), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8607), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8609), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8613), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8615), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8617), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8619), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8621), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8623), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8627), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(8681), 1, + ACTIONS(7636), 1, sym_raw_string, - ACTIONS(8683), 1, + ACTIONS(7638), 1, aux_sym__simple_variable_name_token1, - STATE(3262), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(3267), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(3272), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(3274), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8601), 2, + STATE(3322), 1, + aux_sym_compound_statement_repeat1, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8603), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3039), 9, + STATE(2847), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -233420,52 +222698,54 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [184627] = 22, + [175826] = 23, ACTIONS(71), 1, sym_comment, - ACTIONS(8597), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8599), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8605), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8607), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8609), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8613), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8615), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8617), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8619), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8621), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8623), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8627), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(8685), 1, + ACTIONS(7640), 1, sym_raw_string, - ACTIONS(8687), 1, + ACTIONS(7642), 1, aux_sym__simple_variable_name_token1, - STATE(3262), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(3267), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(3272), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(3274), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8601), 2, + STATE(3309), 1, + aux_sym_compound_statement_repeat1, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8603), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3041), 9, + STATE(2681), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -233475,52 +222755,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [184704] = 22, + [175906] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(8689), 1, + ACTIONS(7644), 1, sym_raw_string, - ACTIONS(8691), 1, + ACTIONS(7646), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3175), 9, + STATE(2480), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -233530,106 +222810,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, + [175983] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8597), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8599), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8605), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8607), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8609), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8613), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8615), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8617), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8619), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8621), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8623), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8627), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(8695), 1, + ACTIONS(7648), 1, sym_raw_string, - ACTIONS(8697), 1, + ACTIONS(7650), 1, aux_sym__simple_variable_name_token1, - STATE(3262), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(3267), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(3272), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(3274), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8601), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8603), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3043), 9, + STATE(2563), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -233639,106 +222865,134 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [184933] = 21, - ACTIONS(71), 1, + [176060] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(8633), 1, - sym_word, - ACTIONS(8637), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8641), 1, + ACTIONS(1197), 1, + sym_file_descriptor, + ACTIONS(7654), 1, + anon_sym_DQUOTE, + ACTIONS(7658), 1, + sym_variable_name, + STATE(5125), 1, + sym_string, + ACTIONS(7656), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7652), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(8643), 1, - sym__special_character, - ACTIONS(8645), 1, + 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, + [176109] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1191), 1, + sym_file_descriptor, + ACTIONS(7654), 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, + ACTIONS(7658), 1, + sym_variable_name, + STATE(5125), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [185008] = 22, + ACTIONS(7656), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7652), 8, + 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, + [176158] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(8701), 1, + ACTIONS(7660), 1, sym_raw_string, - ACTIONS(8703), 1, + ACTIONS(7662), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3212), 9, + STATE(2519), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -233748,159 +223002,51 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [185085] = 21, + [176235] = 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, + ACTIONS(5518), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, - sym__special_character, - ACTIONS(8645), 1, - anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(5524), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(5526), 1, aux_sym_number_token2, - ACTIONS(8653), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(5530), 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, + ACTIONS(5540), 1, + sym_extglob_pattern, + ACTIONS(5542), 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, - ACTIONS(71), 1, - sym_comment, - ACTIONS(8633), 1, - sym_word, - ACTIONS(8637), 1, + ACTIONS(6454), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, + ACTIONS(6456), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8641), 1, - anon_sym_DOLLAR, - ACTIONS(8643), 1, + ACTIONS(6458), 1, sym__special_character, - ACTIONS(8645), 1, + ACTIONS(6460), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, - aux_sym_number_token1, - ACTIONS(8651), 1, - aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(6464), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(6466), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(6468), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, + ACTIONS(7664), 1, + sym_word, + ACTIONS(7668), 1, sym_test_operator, - ACTIONS(8665), 1, - sym__brace_start, - ACTIONS(8707), 1, - anon_sym_RPAREN, - STATE(5388), 1, + STATE(6024), 1, aux_sym__literal_repeat1, - ACTIONS(8647), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8661), 2, + ACTIONS(6470), 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, - [185235] = 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(8709), 1, - anon_sym_RPAREN, - STATE(5388), 1, - aux_sym__literal_repeat1, - ACTIONS(8647), 2, + ACTIONS(7666), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8661), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3488), 2, + STATE(6279), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(5021), 9, + sym__extglob_blob, + STATE(5910), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -233910,52 +223056,52 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [185310] = 22, + [176310] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8597), 1, + ACTIONS(7670), 1, anon_sym_LPAREN, - ACTIONS(8599), 1, + ACTIONS(7672), 1, anon_sym_BANG, - ACTIONS(8605), 1, + ACTIONS(7678), 1, anon_sym_TILDE, - ACTIONS(8607), 1, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8609), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8613), 1, + ACTIONS(7684), 1, + sym_raw_string, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8615), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8617), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8619), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8621), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8623), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8627), 1, - sym_variable_name, - ACTIONS(8711), 1, - sym_raw_string, - ACTIONS(8713), 1, + ACTIONS(7698), 1, aux_sym__simple_variable_name_token1, - STATE(3262), 1, - sym__arithmetic_binary_expression, - STATE(3267), 1, + ACTIONS(7700), 1, + sym_variable_name, + STATE(2924), 1, sym__arithmetic_ternary_expression, - STATE(3272), 1, - sym__arithmetic_unary_expression, - STATE(3274), 1, + STATE(3002), 1, sym__arithmetic_postfix_expression, - ACTIONS(8601), 2, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8603), 2, + ACTIONS(7676), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3045), 9, + STATE(3153), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -233965,820 +223111,670 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [185387] = 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(8715), 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(3477), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(5021), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [185462] = 21, - 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(8717), 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, - [185537] = 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(8719), 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(3479), 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, - [185612] = 21, + [176387] = 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(7670), 1, + anon_sym_LPAREN, + ACTIONS(7672), 1, + anon_sym_BANG, + ACTIONS(7678), 1, + anon_sym_TILDE, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, - sym__special_character, - ACTIONS(8645), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, - sym_test_operator, - ACTIONS(8665), 1, - sym__brace_start, - ACTIONS(8721), 1, - anon_sym_RPAREN, - STATE(5388), 1, - aux_sym__literal_repeat1, - ACTIONS(8647), 2, + ACTIONS(7700), 1, + sym_variable_name, + ACTIONS(7702), 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(7704), 1, + aux_sym__simple_variable_name_token1, + STATE(2924), 1, + sym__arithmetic_ternary_expression, + STATE(3002), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7676), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2875), 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, - [185687] = 21, + [176464] = 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(7670), 1, + anon_sym_LPAREN, + ACTIONS(7672), 1, + anon_sym_BANG, + ACTIONS(7678), 1, + anon_sym_TILDE, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, - sym__special_character, - ACTIONS(8645), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(7696), 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(7700), 1, + sym_variable_name, + ACTIONS(7706), 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(7708), 1, + aux_sym__simple_variable_name_token1, + STATE(2924), 1, + sym__arithmetic_ternary_expression, + STATE(3002), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7676), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2877), 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, + [176541] = 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(7670), 1, + anon_sym_LPAREN, + ACTIONS(7672), 1, + anon_sym_BANG, + ACTIONS(7678), 1, + anon_sym_TILDE, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, - sym__special_character, - ACTIONS(8645), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(7696), 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(7700), 1, + sym_variable_name, + ACTIONS(7710), 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(7712), 1, + aux_sym__simple_variable_name_token1, + STATE(2924), 1, + sym__arithmetic_ternary_expression, + STATE(3002), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7676), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2878), 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, + [176618] = 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(7670), 1, + anon_sym_LPAREN, + ACTIONS(7672), 1, + anon_sym_BANG, + ACTIONS(7678), 1, + anon_sym_TILDE, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, - sym__special_character, - ACTIONS(8645), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(7696), 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(7700), 1, + sym_variable_name, + ACTIONS(7714), 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(7716), 1, + aux_sym__simple_variable_name_token1, + STATE(2924), 1, + sym__arithmetic_ternary_expression, + STATE(3002), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7676), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2879), 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, + [176695] = 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, + ACTIONS(7670), 1, + anon_sym_LPAREN, + ACTIONS(7672), 1, + anon_sym_BANG, + ACTIONS(7678), 1, + anon_sym_TILDE, + ACTIONS(7680), 1, + anon_sym_DOLLAR, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(7696), 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(7700), 1, + sym_variable_name, + ACTIONS(7718), 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(7720), 1, + aux_sym__simple_variable_name_token1, + STATE(2924), 1, + sym__arithmetic_ternary_expression, + STATE(3002), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7676), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2882), 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, + [176772] = 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(7670), 1, + anon_sym_LPAREN, + ACTIONS(7672), 1, + anon_sym_BANG, + ACTIONS(7678), 1, + anon_sym_TILDE, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, - sym__special_character, - ACTIONS(8645), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(7696), 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(7700), 1, + sym_variable_name, + ACTIONS(7722), 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(7724), 1, + aux_sym__simple_variable_name_token1, + STATE(2924), 1, + sym__arithmetic_ternary_expression, + STATE(3002), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7676), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2922), 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, + [176849] = 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(7670), 1, + anon_sym_LPAREN, + ACTIONS(7672), 1, + anon_sym_BANG, + ACTIONS(7678), 1, + anon_sym_TILDE, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, - sym__special_character, - ACTIONS(8645), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(7696), 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(7700), 1, + sym_variable_name, + ACTIONS(7726), 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(7728), 1, + aux_sym__simple_variable_name_token1, + STATE(2924), 1, + sym__arithmetic_ternary_expression, + STATE(3002), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7676), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2926), 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, + [176926] = 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(7670), 1, + anon_sym_LPAREN, + ACTIONS(7672), 1, + anon_sym_BANG, + ACTIONS(7678), 1, + anon_sym_TILDE, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, - sym__special_character, - ACTIONS(8645), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, - sym_test_operator, - ACTIONS(8665), 1, - sym__brace_start, - ACTIONS(8735), 1, - anon_sym_RPAREN, - STATE(5388), 1, - aux_sym__literal_repeat1, - ACTIONS(8647), 2, + ACTIONS(7700), 1, + sym_variable_name, + ACTIONS(7730), 1, sym_raw_string, - sym_ansi_c_string, - ACTIONS(8661), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3487), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(5021), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(7732), 1, + aux_sym__simple_variable_name_token1, + STATE(2924), 1, + sym__arithmetic_ternary_expression, + STATE(3002), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7676), 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, - [186212] = 21, + [177003] = 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(7670), 1, + anon_sym_LPAREN, + ACTIONS(7672), 1, + anon_sym_BANG, + ACTIONS(7678), 1, + anon_sym_TILDE, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, - sym__special_character, - ACTIONS(8645), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, - sym_test_operator, - ACTIONS(8665), 1, - sym__brace_start, - ACTIONS(8737), 1, - anon_sym_RPAREN, - STATE(5388), 1, - aux_sym__literal_repeat1, - ACTIONS(8647), 2, + ACTIONS(7700), 1, + sym_variable_name, + ACTIONS(7734), 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(7736), 1, + aux_sym__simple_variable_name_token1, + STATE(2924), 1, + sym__arithmetic_ternary_expression, + STATE(3002), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7676), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2932), 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, - [186287] = 21, + [177080] = 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(7670), 1, + anon_sym_LPAREN, + ACTIONS(7672), 1, + anon_sym_BANG, + ACTIONS(7678), 1, + anon_sym_TILDE, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8751), 1, - sym__special_character, - ACTIONS(8754), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8760), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8763), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8766), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8769), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8772), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8775), 1, + ACTIONS(7696), 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(7700), 1, + sym_variable_name, + ACTIONS(7738), 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(7740), 1, + aux_sym__simple_variable_name_token1, + STATE(2924), 1, + sym__arithmetic_ternary_expression, + STATE(3002), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7676), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2933), 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, + [177157] = 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(7670), 1, + anon_sym_LPAREN, + ACTIONS(7672), 1, + anon_sym_BANG, + ACTIONS(7678), 1, + anon_sym_TILDE, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, - sym__special_character, - ACTIONS(8645), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(7696), 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(7700), 1, + sym_variable_name, + ACTIONS(7742), 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(7744), 1, + aux_sym__simple_variable_name_token1, + STATE(2924), 1, + sym__arithmetic_ternary_expression, + STATE(3002), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7676), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2934), 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, + [177234] = 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(7670), 1, + anon_sym_LPAREN, + ACTIONS(7672), 1, + anon_sym_BANG, + ACTIONS(7678), 1, + anon_sym_TILDE, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, - sym__special_character, - ACTIONS(8645), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, - sym_test_operator, - ACTIONS(8665), 1, - sym__brace_start, - ACTIONS(8789), 1, - anon_sym_RPAREN, - STATE(5388), 1, - aux_sym__literal_repeat1, - ACTIONS(8647), 2, + ACTIONS(7700), 1, + sym_variable_name, + ACTIONS(7746), 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(7748), 1, + aux_sym__simple_variable_name_token1, + STATE(2924), 1, + sym__arithmetic_ternary_expression, + STATE(3002), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7676), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2935), 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, - [186512] = 3, + [177311] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5860), 10, + ACTIONS(4451), 10, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -234789,7 +223785,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(5872), 21, + ACTIONS(4453), 21, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -234811,106 +223807,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [186551] = 21, - ACTIONS(3), 1, + [177350] = 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(7483), 1, + anon_sym_LPAREN, + ACTIONS(7485), 1, + anon_sym_BANG, + ACTIONS(7491), 1, + anon_sym_TILDE, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8805), 1, - sym__special_character, - ACTIONS(8808), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8811), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8814), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8817), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8820), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8823), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8826), 1, + ACTIONS(7509), 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(7513), 1, + sym_variable_name, + ACTIONS(7750), 1, sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(5043), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(7752), 1, + aux_sym__simple_variable_name_token1, + STATE(2649), 1, + sym__arithmetic_binary_expression, + STATE(2650), 1, + sym__arithmetic_ternary_expression, + STATE(2654), 1, + sym__arithmetic_unary_expression, + STATE(2655), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7487), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7489), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2630), 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, + [177427] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7670), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7672), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7678), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7700), 1, sym_variable_name, - ACTIONS(8838), 1, + ACTIONS(7754), 1, sym_raw_string, - ACTIONS(8840), 1, + ACTIONS(7756), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, - sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2924), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3002), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7676), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2752), 9, + STATE(2964), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -234920,52 +223917,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [186703] = 22, + [177504] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(8842), 1, + ACTIONS(7758), 1, sym_raw_string, - ACTIONS(8844), 1, + ACTIONS(7760), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2617), 9, + STATE(2633), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -234975,52 +223972,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [186780] = 22, + [177581] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(8846), 1, + ACTIONS(7762), 1, sym_raw_string, - ACTIONS(8848), 1, + ACTIONS(7764), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2765), 9, + STATE(2634), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -235030,52 +224027,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [186857] = 22, + [177658] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(8850), 1, + ACTIONS(7766), 1, sym_raw_string, - ACTIONS(8852), 1, + ACTIONS(7768), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2619), 9, + STATE(2636), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -235085,52 +224082,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [186934] = 22, + [177735] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(8854), 1, + ACTIONS(7770), 1, sym_raw_string, - ACTIONS(8856), 1, + ACTIONS(7772), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2766), 9, + STATE(2639), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -235140,52 +224137,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [187011] = 22, + [177812] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(8858), 1, + ACTIONS(7774), 1, sym_raw_string, - ACTIONS(8860), 1, + ACTIONS(7776), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2767), 9, + STATE(2640), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -235195,106 +224192,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [187088] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6390), 1, - anon_sym_DOLLAR, - ACTIONS(6396), 1, - aux_sym_number_token1, - ACTIONS(6398), 1, - aux_sym_number_token2, - ACTIONS(6402), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, - sym__brace_start, - ACTIONS(7508), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, - sym__special_character, - ACTIONS(7514), 1, - anon_sym_DQUOTE, - ACTIONS(7518), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, - anon_sym_BQUOTE, - ACTIONS(7522), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8862), 1, - sym_word, - ACTIONS(8866), 1, - sym_test_operator, - STATE(6356), 1, - aux_sym__literal_repeat1, - ACTIONS(7524), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8864), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(6611), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6248), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [187163] = 22, + [177889] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(8868), 1, + ACTIONS(7778), 1, sym_raw_string, - ACTIONS(8870), 1, + ACTIONS(7780), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2768), 9, + STATE(2646), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -235304,52 +224247,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [187240] = 22, + [177966] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(8872), 1, + ACTIONS(7782), 1, sym_raw_string, - ACTIONS(8874), 1, + ACTIONS(7784), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2623), 9, + STATE(2648), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -235359,52 +224302,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [187317] = 22, + [178043] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(8876), 1, + ACTIONS(7786), 1, sym_raw_string, - ACTIONS(8878), 1, + ACTIONS(7788), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2889), 9, + STATE(2652), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -235414,104 +224357,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, + [178120] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8597), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8599), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8605), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8607), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8609), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8613), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8615), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8617), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8619), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8621), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8623), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8627), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(8882), 1, + ACTIONS(7790), 1, sym_raw_string, - ACTIONS(8884), 1, + ACTIONS(7792), 1, aux_sym__simple_variable_name_token1, - STATE(3262), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(3267), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(3272), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(3274), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8601), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8603), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3203), 9, + STATE(2656), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -235521,52 +224412,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [187542] = 22, + [178197] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8597), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8599), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8605), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8607), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8609), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8613), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8615), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8617), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8619), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8621), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8623), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8627), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(8886), 1, + ACTIONS(7794), 1, sym_raw_string, - ACTIONS(8888), 1, + ACTIONS(7796), 1, aux_sym__simple_variable_name_token1, - STATE(3262), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(3267), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(3272), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(3274), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8601), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8603), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3208), 9, + STATE(2559), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -235576,52 +224467,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [187619] = 22, + [178274] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8597), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8599), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8605), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8607), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8609), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8613), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8615), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8617), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8619), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8621), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8623), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8627), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(8890), 1, + ACTIONS(7798), 1, sym_raw_string, - ACTIONS(8892), 1, + ACTIONS(7800), 1, aux_sym__simple_variable_name_token1, - STATE(3262), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(3267), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(3272), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(3274), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8601), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8603), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3210), 9, + STATE(2453), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -235631,106 +224522,107 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [187696] = 21, + [178351] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(6390), 1, + ACTIONS(7483), 1, + anon_sym_LPAREN, + ACTIONS(7485), 1, + anon_sym_BANG, + ACTIONS(7491), 1, + anon_sym_TILDE, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(6396), 1, + ACTIONS(7495), 1, + anon_sym_DQUOTE, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(6398), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(6402), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, - sym__brace_start, - ACTIONS(7508), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, - sym__special_character, - ACTIONS(7514), 1, - anon_sym_DQUOTE, - ACTIONS(7518), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, + ACTIONS(7505), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(7522), 1, + ACTIONS(7509), 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(7513), 1, + sym_variable_name, + ACTIONS(7802), 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(7804), 1, + aux_sym__simple_variable_name_token1, + STATE(2649), 1, + sym__arithmetic_binary_expression, + STATE(2650), 1, + sym__arithmetic_ternary_expression, + STATE(2654), 1, + sym__arithmetic_unary_expression, + STATE(2655), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7487), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7489), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2455), 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, + [178428] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(8900), 1, + ACTIONS(7806), 1, sym_raw_string, - ACTIONS(8902), 1, + ACTIONS(7808), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2771), 9, + STATE(2965), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -235740,21 +224632,93 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [187848] = 8, + [178505] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4965), 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(4967), 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, + [178544] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4969), 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(4971), 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, + [178583] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1197), 1, sym_file_descriptor, - ACTIONS(3950), 1, + ACTIONS(7812), 1, anon_sym_DQUOTE, - ACTIONS(7601), 1, + ACTIONS(7816), 1, sym_variable_name, - STATE(4349), 1, + STATE(5020), 1, sym_string, - ACTIONS(7599), 2, + ACTIONS(7814), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7597), 8, + ACTIONS(7810), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -235780,53 +224744,202 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [178632] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1191), 1, + sym_file_descriptor, + ACTIONS(7812), 1, + anon_sym_DQUOTE, + ACTIONS(7816), 1, + sym_variable_name, + STATE(5020), 1, + sym_string, + ACTIONS(7814), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7810), 8, + 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, + [178681] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3245), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3247), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3249), 1, + anon_sym_DOLLAR, + ACTIONS(3251), 1, + sym__special_character, + ACTIONS(3253), 1, + anon_sym_DQUOTE, + ACTIONS(3255), 1, + aux_sym_number_token1, + ACTIONS(3257), 1, + aux_sym_number_token2, + ACTIONS(3259), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3261), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3263), 1, + anon_sym_BQUOTE, + ACTIONS(3265), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3271), 1, + sym_test_operator, + ACTIONS(3273), 1, + sym__brace_start, + ACTIONS(7818), 1, aux_sym_heredoc_redirect_token1, - [187897] = 22, + STATE(3380), 1, + aux_sym__heredoc_command, + STATE(5021), 1, + aux_sym__literal_repeat1, + STATE(5201), 1, + sym_concatenation, + ACTIONS(3267), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3231), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(4829), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [178756] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6752), 1, + anon_sym_RPAREN, + ACTIONS(7820), 1, + sym_word, + ACTIONS(7823), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7826), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7829), 1, + anon_sym_DOLLAR, + ACTIONS(7832), 1, + sym__special_character, + ACTIONS(7835), 1, + anon_sym_DQUOTE, + ACTIONS(7841), 1, + aux_sym_number_token1, + ACTIONS(7844), 1, + aux_sym_number_token2, + ACTIONS(7847), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7850), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7853), 1, + anon_sym_BQUOTE, + ACTIONS(7856), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7862), 1, + sym_test_operator, + ACTIONS(7865), 1, + sym__brace_start, + STATE(5131), 1, + aux_sym__literal_repeat1, + ACTIONS(7838), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7859), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3363), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(4788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [178831] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7670), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7672), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7678), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7700), 1, sym_variable_name, - ACTIONS(8904), 1, + ACTIONS(7868), 1, sym_raw_string, - ACTIONS(8906), 1, + ACTIONS(7870), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, - sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2924), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3002), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7676), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2656), 9, + STATE(3122), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -235836,52 +224949,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [187974] = 22, + [178908] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(8908), 1, + ACTIONS(7872), 1, sym_raw_string, - ACTIONS(8910), 1, + ACTIONS(7874), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3147), 9, + STATE(2568), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -235891,21 +225004,62 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [188051] = 8, + [178985] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1197), 1, + sym_file_descriptor, + ACTIONS(3642), 1, + anon_sym_DQUOTE, + ACTIONS(6673), 1, + sym_variable_name, + STATE(4172), 1, + sym_string, + ACTIONS(6671), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(6669), 8, + 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, + [179034] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1191), 1, sym_file_descriptor, - ACTIONS(3950), 1, + ACTIONS(3642), 1, anon_sym_DQUOTE, - ACTIONS(7601), 1, + ACTIONS(6673), 1, sym_variable_name, - STATE(4349), 1, + STATE(4172), 1, sym_string, - ACTIONS(7599), 2, + ACTIONS(6671), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7597), 8, + ACTIONS(6669), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -235932,52 +225086,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, - [188100] = 22, + [179083] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(8597), 1, + ACTIONS(5518), 1, + anon_sym_DOLLAR, + ACTIONS(5524), 1, + aux_sym_number_token1, + ACTIONS(5526), 1, + aux_sym_number_token2, + ACTIONS(5530), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5540), 1, + sym_extglob_pattern, + ACTIONS(5542), 1, + sym__brace_start, + ACTIONS(6454), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6456), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6458), 1, + sym__special_character, + ACTIONS(6460), 1, + anon_sym_DQUOTE, + ACTIONS(6464), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6466), 1, + anon_sym_BQUOTE, + ACTIONS(6468), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7876), 1, + sym_word, + ACTIONS(7880), 1, + sym_test_operator, + STATE(6092), 1, + aux_sym__literal_repeat1, + ACTIONS(6470), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7878), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(6349), 2, + sym_concatenation, + sym__extglob_blob, + STATE(5996), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [179158] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7882), 1, anon_sym_LPAREN, - ACTIONS(8599), 1, + ACTIONS(7884), 1, anon_sym_BANG, - ACTIONS(8605), 1, + ACTIONS(7890), 1, anon_sym_TILDE, - ACTIONS(8607), 1, + ACTIONS(7892), 1, anon_sym_DOLLAR, - ACTIONS(8609), 1, + ACTIONS(7894), 1, anon_sym_DQUOTE, - ACTIONS(8613), 1, + ACTIONS(7896), 1, + sym_raw_string, + ACTIONS(7898), 1, aux_sym_number_token1, - ACTIONS(8615), 1, + ACTIONS(7900), 1, aux_sym_number_token2, - ACTIONS(8617), 1, + ACTIONS(7902), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8619), 1, + ACTIONS(7904), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8621), 1, + ACTIONS(7906), 1, anon_sym_BQUOTE, - ACTIONS(8623), 1, + ACTIONS(7908), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8627), 1, - sym_variable_name, - ACTIONS(8912), 1, - sym_raw_string, - ACTIONS(8914), 1, + ACTIONS(7910), 1, aux_sym__simple_variable_name_token1, - STATE(3262), 1, + ACTIONS(7912), 1, + sym_variable_name, + STATE(3042), 1, sym__arithmetic_binary_expression, - STATE(3267), 1, + STATE(3048), 1, sym__arithmetic_ternary_expression, - STATE(3272), 1, + STATE(3057), 1, sym__arithmetic_unary_expression, - STATE(3274), 1, + STATE(3058), 1, sym__arithmetic_postfix_expression, - ACTIONS(8601), 2, + ACTIONS(7886), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8603), 2, + ACTIONS(7888), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3149), 9, + STATE(2907), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -235987,52 +225195,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [188177] = 22, + [179235] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7882), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7884), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7890), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7892), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7894), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7898), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7900), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7902), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7904), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7906), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7908), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7912), 1, sym_variable_name, - ACTIONS(8916), 1, + ACTIONS(7914), 1, sym_raw_string, - ACTIONS(8918), 1, + ACTIONS(7916), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3042), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3048), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3057), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3058), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(7886), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7888), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3158), 9, + STATE(2908), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -236042,52 +225250,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [188254] = 22, + [179312] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7882), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7884), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7890), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7892), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7894), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7898), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7900), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7902), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7904), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7906), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7908), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7912), 1, sym_variable_name, - ACTIONS(8920), 1, + ACTIONS(7918), 1, sym_raw_string, - ACTIONS(8922), 1, + ACTIONS(7920), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3042), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3048), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3057), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3058), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(7886), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7888), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2772), 9, + STATE(2909), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -236097,10 +225305,10 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [188331] = 3, + [179389] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(2160), 10, + ACTIONS(4485), 10, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -236111,7 +225319,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(2162), 21, + ACTIONS(4487), 21, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -236133,51 +225341,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [188370] = 21, + [179428] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3554), 1, + ACTIONS(1197), 1, + sym_file_descriptor, + ACTIONS(6677), 1, + anon_sym_DQUOTE, + ACTIONS(6681), 1, + sym_variable_name, + STATE(4127), 1, + sym_string, + ACTIONS(6679), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(6675), 8, + 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, + [179477] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1191), 1, + sym_file_descriptor, + ACTIONS(6677), 1, + anon_sym_DQUOTE, + ACTIONS(6681), 1, + sym_variable_name, + STATE(4127), 1, + sym_string, + ACTIONS(6679), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(6675), 8, + 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, + [179526] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3913), 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(3915), 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(3556), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3558), 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, + [179565] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7922), 1, + sym_word, + ACTIONS(7924), 1, + anon_sym_RPAREN, + ACTIONS(7926), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7928), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7930), 1, anon_sym_DOLLAR, - ACTIONS(3560), 1, + ACTIONS(7932), 1, sym__special_character, - ACTIONS(3562), 1, + ACTIONS(7934), 1, anon_sym_DQUOTE, - ACTIONS(3564), 1, + ACTIONS(7938), 1, aux_sym_number_token1, - ACTIONS(3566), 1, + ACTIONS(7940), 1, aux_sym_number_token2, - ACTIONS(3568), 1, + ACTIONS(7942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3570), 1, + ACTIONS(7944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3572), 1, + ACTIONS(7946), 1, anon_sym_BQUOTE, - ACTIONS(3574), 1, + ACTIONS(7948), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3580), 1, + ACTIONS(7952), 1, sym_test_operator, - ACTIONS(3582), 1, + ACTIONS(7954), 1, sym__brace_start, - ACTIONS(8924), 1, - aux_sym_heredoc_redirect_token1, - STATE(3492), 1, - aux_sym__heredoc_command, - STATE(5338), 1, + STATE(5131), 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(7936), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(5043), 9, + ACTIONS(7950), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3378), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(4788), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -236187,51 +225513,51 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [188445] = 21, + [179640] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3554), 1, + ACTIONS(3245), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3556), 1, + ACTIONS(3247), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3558), 1, + ACTIONS(3249), 1, anon_sym_DOLLAR, - ACTIONS(3560), 1, + ACTIONS(3251), 1, sym__special_character, - ACTIONS(3562), 1, + ACTIONS(3253), 1, anon_sym_DQUOTE, - ACTIONS(3564), 1, + ACTIONS(3255), 1, aux_sym_number_token1, - ACTIONS(3566), 1, + ACTIONS(3257), 1, aux_sym_number_token2, - ACTIONS(3568), 1, + ACTIONS(3259), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3570), 1, + ACTIONS(3261), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3572), 1, + ACTIONS(3263), 1, anon_sym_BQUOTE, - ACTIONS(3574), 1, + ACTIONS(3265), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3580), 1, + ACTIONS(3271), 1, sym_test_operator, - ACTIONS(3582), 1, + ACTIONS(3273), 1, sym__brace_start, - ACTIONS(8926), 1, + ACTIONS(7956), 1, aux_sym_heredoc_redirect_token1, - STATE(3492), 1, + STATE(3380), 1, aux_sym__heredoc_command, - STATE(5338), 1, + STATE(5021), 1, aux_sym__literal_repeat1, - STATE(5447), 1, + STATE(5201), 1, sym_concatenation, - ACTIONS(3576), 2, + ACTIONS(3267), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3540), 3, + ACTIONS(3231), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(5043), 9, + STATE(4829), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -236241,65 +225567,64 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [188520] = 22, + [179715] = 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(7922), 1, + sym_word, + ACTIONS(7926), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7928), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7930), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7932), 1, + sym__special_character, + ACTIONS(7934), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7938), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7940), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7946), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7948), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(8928), 1, + ACTIONS(7952), 1, + sym_test_operator, + ACTIONS(7954), 1, + sym__brace_start, + ACTIONS(7958), 1, + anon_sym_RPAREN, + STATE(5131), 1, + aux_sym__literal_repeat1, + ACTIONS(7936), 2, sym_raw_string, - ACTIONS(8930), 1, - aux_sym__simple_variable_name_token1, - STATE(2712), 1, - sym__arithmetic_binary_expression, - STATE(2715), 1, - sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(8412), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2773), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + ACTIONS(7950), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3363), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(4788), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [188597] = 3, + sym_process_substitution, + [179790] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4311), 10, + ACTIONS(4493), 10, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -236310,7 +225635,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(4313), 21, + ACTIONS(4495), 21, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -236332,216 +225657,231 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [188636] = 22, - ACTIONS(71), 1, + [179829] = 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(7963), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7965), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7968), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7971), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7974), 1, + sym__special_character, + ACTIONS(7977), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7980), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7983), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7986), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7989), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7992), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7995), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(8932), 1, + ACTIONS(8001), 1, + sym_test_operator, + ACTIONS(8004), 1, + sym__brace_start, + STATE(3380), 1, + aux_sym__heredoc_command, + STATE(5021), 1, + aux_sym__literal_repeat1, + STATE(5201), 1, + sym_concatenation, + ACTIONS(7998), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7960), 3, sym_raw_string, - ACTIONS(8934), 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(2774), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + sym_word, + STATE(4829), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [188713] = 22, + sym_process_substitution, + [179904] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, - anon_sym_LPAREN, - ACTIONS(8408), 1, - anon_sym_BANG, - ACTIONS(8414), 1, - anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(4008), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(8418), 1, - anon_sym_DQUOTE, - ACTIONS(8422), 1, aux_sym_number_token1, - ACTIONS(8424), 1, aux_sym_number_token2, - ACTIONS(8426), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + sym_word, + ACTIONS(4010), 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, - ACTIONS(8432), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [179943] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5020), 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(5032), 21, + sym_file_descriptor, sym_variable_name, - ACTIONS(8936), 1, + sym_test_operator, + sym__brace_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, - ACTIONS(8938), 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(2659), 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, - [188790] = 22, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [179982] = 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(7922), 1, + sym_word, + ACTIONS(7926), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7928), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7930), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7932), 1, + sym__special_character, + ACTIONS(7934), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7938), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7940), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7946), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7948), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_variable_name, - ACTIONS(8940), 1, + ACTIONS(7952), 1, + sym_test_operator, + ACTIONS(7954), 1, + sym__brace_start, + ACTIONS(8007), 1, + anon_sym_RPAREN, + STATE(5131), 1, + aux_sym__literal_repeat1, + ACTIONS(7936), 2, sym_raw_string, - ACTIONS(8942), 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(3179), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + ACTIONS(7950), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3384), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(4788), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [188867] = 21, + sym_process_substitution, + [180057] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(8633), 1, + ACTIONS(7922), 1, sym_word, - ACTIONS(8637), 1, + ACTIONS(7926), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, + ACTIONS(7928), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8641), 1, + ACTIONS(7930), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, + ACTIONS(7932), 1, sym__special_character, - ACTIONS(8645), 1, + ACTIONS(7934), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(7938), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(7940), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(7942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(7944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(7946), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(7948), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, + ACTIONS(7952), 1, sym_test_operator, - ACTIONS(8665), 1, + ACTIONS(7954), 1, sym__brace_start, - ACTIONS(8944), 1, + ACTIONS(8009), 1, anon_sym_RPAREN, - STATE(5388), 1, + STATE(5131), 1, aux_sym__literal_repeat1, - ACTIONS(8647), 2, + ACTIONS(7936), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8661), 2, + ACTIONS(7950), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3530), 2, + STATE(3363), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5021), 9, + STATE(4788), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -236551,52 +225891,52 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [188942] = 22, + [180132] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8597), 1, + ACTIONS(7882), 1, anon_sym_LPAREN, - ACTIONS(8599), 1, + ACTIONS(7884), 1, anon_sym_BANG, - ACTIONS(8605), 1, + ACTIONS(7890), 1, anon_sym_TILDE, - ACTIONS(8607), 1, + ACTIONS(7892), 1, anon_sym_DOLLAR, - ACTIONS(8609), 1, + ACTIONS(7894), 1, anon_sym_DQUOTE, - ACTIONS(8613), 1, + ACTIONS(7898), 1, aux_sym_number_token1, - ACTIONS(8615), 1, + ACTIONS(7900), 1, aux_sym_number_token2, - ACTIONS(8617), 1, + ACTIONS(7902), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8619), 1, + ACTIONS(7904), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8621), 1, + ACTIONS(7906), 1, anon_sym_BQUOTE, - ACTIONS(8623), 1, + ACTIONS(7908), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8627), 1, + ACTIONS(7912), 1, sym_variable_name, - ACTIONS(8946), 1, + ACTIONS(8011), 1, sym_raw_string, - ACTIONS(8948), 1, + ACTIONS(8013), 1, aux_sym__simple_variable_name_token1, - STATE(3262), 1, + STATE(3042), 1, sym__arithmetic_binary_expression, - STATE(3267), 1, + STATE(3048), 1, sym__arithmetic_ternary_expression, - STATE(3272), 1, + STATE(3057), 1, sym__arithmetic_unary_expression, - STATE(3274), 1, + STATE(3058), 1, sym__arithmetic_postfix_expression, - ACTIONS(8601), 2, + ACTIONS(7886), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8603), 2, + ACTIONS(7888), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3180), 9, + STATE(2969), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -236606,106 +225946,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [189019] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3554), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3556), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3558), 1, - anon_sym_DOLLAR, - ACTIONS(3560), 1, - sym__special_character, - ACTIONS(3562), 1, - anon_sym_DQUOTE, - ACTIONS(3564), 1, - aux_sym_number_token1, - ACTIONS(3566), 1, - aux_sym_number_token2, - ACTIONS(3568), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3570), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3572), 1, - anon_sym_BQUOTE, - ACTIONS(3574), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3580), 1, - sym_test_operator, - ACTIONS(3582), 1, - sym__brace_start, - ACTIONS(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, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(5043), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [189094] = 22, + [180209] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7882), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7884), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7890), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7892), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7894), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7898), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7900), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7902), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7904), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7906), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7908), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7912), 1, sym_variable_name, - ACTIONS(8952), 1, + ACTIONS(8015), 1, sym_raw_string, - ACTIONS(8954), 1, + ACTIONS(8017), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3042), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3048), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3057), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3058), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(7886), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7888), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3181), 9, + STATE(2970), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -236715,214 +226001,217 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [189171] = 21, - ACTIONS(3), 1, + [180286] = 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(7882), 1, + anon_sym_LPAREN, + ACTIONS(7884), 1, + anon_sym_BANG, + ACTIONS(7890), 1, + anon_sym_TILDE, + ACTIONS(7892), 1, anon_sym_DOLLAR, - ACTIONS(3560), 1, - sym__special_character, - ACTIONS(3562), 1, + ACTIONS(7894), 1, anon_sym_DQUOTE, - ACTIONS(3564), 1, + ACTIONS(7898), 1, aux_sym_number_token1, - ACTIONS(3566), 1, + ACTIONS(7900), 1, aux_sym_number_token2, - ACTIONS(3568), 1, + ACTIONS(7902), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3570), 1, + ACTIONS(7904), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3572), 1, + ACTIONS(7906), 1, anon_sym_BQUOTE, - ACTIONS(3574), 1, + ACTIONS(7908), 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(7912), 1, + sym_variable_name, + ACTIONS(8019), 1, sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(5043), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(8021), 1, + aux_sym__simple_variable_name_token1, + STATE(3042), 1, + sym__arithmetic_binary_expression, + STATE(3048), 1, + sym__arithmetic_ternary_expression, + STATE(3057), 1, + sym__arithmetic_unary_expression, + STATE(3058), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7886), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7888), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2972), 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, + [180363] = 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(7882), 1, + anon_sym_LPAREN, + ACTIONS(7884), 1, + anon_sym_BANG, + ACTIONS(7890), 1, + anon_sym_TILDE, + ACTIONS(7892), 1, anon_sym_DOLLAR, - ACTIONS(3560), 1, - sym__special_character, - ACTIONS(3562), 1, + ACTIONS(7894), 1, anon_sym_DQUOTE, - ACTIONS(3564), 1, + ACTIONS(7898), 1, aux_sym_number_token1, - ACTIONS(3566), 1, + ACTIONS(7900), 1, aux_sym_number_token2, - ACTIONS(3568), 1, + ACTIONS(7902), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3570), 1, + ACTIONS(7904), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3572), 1, + ACTIONS(7906), 1, anon_sym_BQUOTE, - ACTIONS(3574), 1, + ACTIONS(7908), 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(7912), 1, + sym_variable_name, + ACTIONS(8023), 1, sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(5043), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(8025), 1, + aux_sym__simple_variable_name_token1, + STATE(3042), 1, + sym__arithmetic_binary_expression, + STATE(3048), 1, + sym__arithmetic_ternary_expression, + STATE(3057), 1, + sym__arithmetic_unary_expression, + STATE(3058), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7886), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7888), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2973), 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, + [180440] = 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(7882), 1, + anon_sym_LPAREN, + ACTIONS(7884), 1, + anon_sym_BANG, + ACTIONS(7890), 1, + anon_sym_TILDE, + ACTIONS(7892), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, - sym__special_character, - ACTIONS(8645), 1, + ACTIONS(7894), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(7898), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(7900), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(7902), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(7904), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(7906), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(7908), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, - sym_test_operator, - ACTIONS(8665), 1, - sym__brace_start, - ACTIONS(8960), 1, - anon_sym_RPAREN, - STATE(5388), 1, - aux_sym__literal_repeat1, - ACTIONS(8647), 2, + ACTIONS(7912), 1, + sym_variable_name, + ACTIONS(8027), 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(8029), 1, + aux_sym__simple_variable_name_token1, + STATE(3042), 1, + sym__arithmetic_binary_expression, + STATE(3048), 1, + sym__arithmetic_ternary_expression, + STATE(3057), 1, + sym__arithmetic_unary_expression, + STATE(3058), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7886), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7888), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2974), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [189396] = 22, + [180517] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7882), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7884), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7890), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7892), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7894), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7898), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7900), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7902), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7904), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7906), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7908), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7912), 1, sym_variable_name, - ACTIONS(8962), 1, + ACTIONS(8031), 1, sym_raw_string, - ACTIONS(8964), 1, + ACTIONS(8033), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3042), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3048), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3057), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3058), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(7886), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7888), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2791), 9, + STATE(2975), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -236932,52 +226221,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [189473] = 22, + [180594] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7882), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7884), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7890), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7892), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7894), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7898), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7900), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7902), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7904), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7906), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7908), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7912), 1, sym_variable_name, - ACTIONS(8966), 1, + ACTIONS(8035), 1, sym_raw_string, - ACTIONS(8968), 1, + ACTIONS(8037), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3042), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3048), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3057), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3058), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(7886), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7888), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3155), 9, + STATE(2976), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -236987,52 +226276,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [189550] = 22, + [180671] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7882), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7884), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7890), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7892), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7894), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7898), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7900), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7902), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7904), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7906), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7908), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7912), 1, sym_variable_name, - ACTIONS(8970), 1, + ACTIONS(8039), 1, sym_raw_string, - ACTIONS(8972), 1, + ACTIONS(8041), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3042), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3048), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3057), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3058), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(7886), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7888), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2803), 9, + STATE(2977), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -237042,52 +226331,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [189627] = 22, + [180748] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7882), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7884), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7890), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7892), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7894), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7898), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7900), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7902), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7904), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7906), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7908), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7912), 1, sym_variable_name, - ACTIONS(8974), 1, + ACTIONS(8043), 1, sym_raw_string, - ACTIONS(8976), 1, + ACTIONS(8045), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3042), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3048), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3057), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3058), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(7886), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7888), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3197), 9, + STATE(2978), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -237097,160 +226386,162 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [189704] = 21, - ACTIONS(3), 1, + [180825] = 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(7882), 1, + anon_sym_LPAREN, + ACTIONS(7884), 1, + anon_sym_BANG, + ACTIONS(7890), 1, + anon_sym_TILDE, + ACTIONS(7892), 1, anon_sym_DOLLAR, - ACTIONS(3560), 1, - sym__special_character, - ACTIONS(3562), 1, + ACTIONS(7894), 1, anon_sym_DQUOTE, - ACTIONS(3564), 1, + ACTIONS(7898), 1, aux_sym_number_token1, - ACTIONS(3566), 1, + ACTIONS(7900), 1, aux_sym_number_token2, - ACTIONS(3568), 1, + ACTIONS(7902), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3570), 1, + ACTIONS(7904), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3572), 1, + ACTIONS(7906), 1, anon_sym_BQUOTE, - ACTIONS(3574), 1, + ACTIONS(7908), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3580), 1, - sym_test_operator, - ACTIONS(3582), 1, - sym__brace_start, - ACTIONS(8978), 1, - aux_sym_heredoc_redirect_token1, - STATE(3492), 1, - aux_sym__heredoc_command, - STATE(5338), 1, - aux_sym__literal_repeat1, - STATE(5447), 1, - sym_concatenation, - ACTIONS(3576), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3540), 3, + ACTIONS(7912), 1, + sym_variable_name, + ACTIONS(8047), 1, sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(5043), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(8049), 1, + aux_sym__simple_variable_name_token1, + STATE(3042), 1, + sym__arithmetic_binary_expression, + STATE(3048), 1, + sym__arithmetic_ternary_expression, + STATE(3057), 1, + sym__arithmetic_unary_expression, + STATE(3058), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7886), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7888), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2979), 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, - [189779] = 21, - ACTIONS(3), 1, + [180902] = 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(7882), 1, + anon_sym_LPAREN, + ACTIONS(7884), 1, + anon_sym_BANG, + ACTIONS(7890), 1, + anon_sym_TILDE, + ACTIONS(7892), 1, anon_sym_DOLLAR, - ACTIONS(3560), 1, - sym__special_character, - ACTIONS(3562), 1, + ACTIONS(7894), 1, anon_sym_DQUOTE, - ACTIONS(3564), 1, + ACTIONS(7898), 1, aux_sym_number_token1, - ACTIONS(3566), 1, + ACTIONS(7900), 1, aux_sym_number_token2, - ACTIONS(3568), 1, + ACTIONS(7902), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3570), 1, + ACTIONS(7904), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3572), 1, + ACTIONS(7906), 1, anon_sym_BQUOTE, - ACTIONS(3574), 1, + ACTIONS(7908), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3580), 1, - sym_test_operator, - ACTIONS(3582), 1, - sym__brace_start, - ACTIONS(8980), 1, - aux_sym_heredoc_redirect_token1, - STATE(3492), 1, - aux_sym__heredoc_command, - STATE(5338), 1, - aux_sym__literal_repeat1, - STATE(5447), 1, - sym_concatenation, - ACTIONS(3576), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3540), 3, + ACTIONS(7912), 1, + sym_variable_name, + ACTIONS(8051), 1, sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(5043), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(8053), 1, + aux_sym__simple_variable_name_token1, + STATE(3042), 1, + sym__arithmetic_binary_expression, + STATE(3048), 1, + sym__arithmetic_ternary_expression, + STATE(3057), 1, + sym__arithmetic_unary_expression, + STATE(3058), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7886), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7888), 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, - [189854] = 22, + [180979] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7882), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7884), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7890), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7892), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7894), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7898), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7900), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7902), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7904), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7906), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7908), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7912), 1, sym_variable_name, - ACTIONS(8982), 1, + ACTIONS(8055), 1, sym_raw_string, - ACTIONS(8984), 1, + ACTIONS(8057), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3042), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3048), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3057), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3058), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(7886), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7888), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2775), 9, + STATE(2981), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -237260,52 +226551,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [189931] = 22, + [181056] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7882), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7884), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7890), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7892), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7894), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7898), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7900), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7902), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7904), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7906), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7908), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7912), 1, sym_variable_name, - ACTIONS(8986), 1, + ACTIONS(8059), 1, sym_raw_string, - ACTIONS(8988), 1, + ACTIONS(8061), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3042), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3048), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3057), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3058), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(7886), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7888), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2667), 9, + STATE(2986), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -237315,52 +226606,106 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [190008] = 22, + [181133] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7922), 1, + sym_word, + ACTIONS(7926), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7928), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7930), 1, + anon_sym_DOLLAR, + ACTIONS(7932), 1, + sym__special_character, + ACTIONS(7934), 1, + anon_sym_DQUOTE, + ACTIONS(7938), 1, + aux_sym_number_token1, + ACTIONS(7940), 1, + aux_sym_number_token2, + ACTIONS(7942), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7944), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7946), 1, + anon_sym_BQUOTE, + ACTIONS(7948), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7952), 1, + sym_test_operator, + ACTIONS(7954), 1, + sym__brace_start, + ACTIONS(8063), 1, + anon_sym_RPAREN, + STATE(5131), 1, + aux_sym__literal_repeat1, + ACTIONS(7936), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7950), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3400), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(4788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [181208] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(8990), 1, + ACTIONS(8065), 1, sym_raw_string, - ACTIONS(8992), 1, + ACTIONS(8067), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3235), 9, + STATE(2663), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -237370,51 +226715,105 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [190085] = 21, - ACTIONS(3), 1, + [181285] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(3554), 1, + ACTIONS(7922), 1, + sym_word, + ACTIONS(7926), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7928), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7930), 1, + anon_sym_DOLLAR, + ACTIONS(7932), 1, + sym__special_character, + ACTIONS(7934), 1, + anon_sym_DQUOTE, + ACTIONS(7938), 1, + aux_sym_number_token1, + ACTIONS(7940), 1, + aux_sym_number_token2, + ACTIONS(7942), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7944), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7946), 1, + anon_sym_BQUOTE, + ACTIONS(7948), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7952), 1, + sym_test_operator, + ACTIONS(7954), 1, + sym__brace_start, + ACTIONS(8069), 1, + anon_sym_RPAREN, + STATE(5131), 1, + aux_sym__literal_repeat1, + ACTIONS(7936), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7950), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3363), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(4788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [181360] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7922), 1, + sym_word, + ACTIONS(7926), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3556), 1, + ACTIONS(7928), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3558), 1, + ACTIONS(7930), 1, anon_sym_DOLLAR, - ACTIONS(3560), 1, + ACTIONS(7932), 1, sym__special_character, - ACTIONS(3562), 1, + ACTIONS(7934), 1, anon_sym_DQUOTE, - ACTIONS(3564), 1, + ACTIONS(7938), 1, aux_sym_number_token1, - ACTIONS(3566), 1, + ACTIONS(7940), 1, aux_sym_number_token2, - ACTIONS(3568), 1, + ACTIONS(7942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3570), 1, + ACTIONS(7944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3572), 1, + ACTIONS(7946), 1, anon_sym_BQUOTE, - ACTIONS(3574), 1, + ACTIONS(7948), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3580), 1, + ACTIONS(7952), 1, sym_test_operator, - ACTIONS(3582), 1, + ACTIONS(7954), 1, sym__brace_start, - ACTIONS(8994), 1, - aux_sym_heredoc_redirect_token1, - STATE(3492), 1, - aux_sym__heredoc_command, - STATE(5338), 1, + ACTIONS(8071), 1, + anon_sym_RPAREN, + STATE(5131), 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(7936), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(5043), 9, + ACTIONS(7950), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3403), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(4788), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -237424,51 +226823,51 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [190160] = 21, - ACTIONS(3), 1, + [181435] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(3554), 1, + ACTIONS(5518), 1, + anon_sym_DOLLAR, + ACTIONS(5524), 1, + aux_sym_number_token1, + ACTIONS(5526), 1, + aux_sym_number_token2, + ACTIONS(5530), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5540), 1, + sym_extglob_pattern, + ACTIONS(5542), 1, + sym__brace_start, + ACTIONS(6454), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3556), 1, + ACTIONS(6456), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3558), 1, - anon_sym_DOLLAR, - ACTIONS(3560), 1, + ACTIONS(6458), 1, sym__special_character, - ACTIONS(3562), 1, + ACTIONS(6460), 1, anon_sym_DQUOTE, - ACTIONS(3564), 1, - aux_sym_number_token1, - ACTIONS(3566), 1, - aux_sym_number_token2, - ACTIONS(3568), 1, + ACTIONS(6464), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3570), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3572), 1, + ACTIONS(6466), 1, anon_sym_BQUOTE, - ACTIONS(3574), 1, + ACTIONS(6468), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3580), 1, + ACTIONS(8073), 1, + sym_word, + ACTIONS(8077), 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, + STATE(5992), 1, aux_sym__literal_repeat1, - STATE(5447), 1, - sym_concatenation, - ACTIONS(3576), 2, + ACTIONS(6470), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3540), 3, + ACTIONS(8075), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(5043), 9, + STATE(6170), 2, + sym_concatenation, + sym__extglob_blob, + STATE(5931), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -237478,51 +226877,51 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [190235] = 21, + [181510] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(8633), 1, + ACTIONS(7922), 1, sym_word, - ACTIONS(8637), 1, + ACTIONS(7926), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, + ACTIONS(7928), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8641), 1, + ACTIONS(7930), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, + ACTIONS(7932), 1, sym__special_character, - ACTIONS(8645), 1, + ACTIONS(7934), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(7938), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(7940), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(7942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(7944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(7946), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(7948), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, + ACTIONS(7952), 1, sym_test_operator, - ACTIONS(8665), 1, + ACTIONS(7954), 1, sym__brace_start, - ACTIONS(8998), 1, + ACTIONS(8079), 1, anon_sym_RPAREN, - STATE(5388), 1, + STATE(5131), 1, aux_sym__literal_repeat1, - ACTIONS(8647), 2, + ACTIONS(7936), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8661), 2, + ACTIONS(7950), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3545), 2, + STATE(3363), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5021), 9, + STATE(4788), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -237532,161 +226931,159 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [190310] = 22, + [181585] = 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(7922), 1, + sym_word, + ACTIONS(7926), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7928), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7930), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7932), 1, + sym__special_character, + ACTIONS(7934), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7938), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7940), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7946), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7948), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(9000), 1, + ACTIONS(7952), 1, + sym_test_operator, + ACTIONS(7954), 1, + sym__brace_start, + ACTIONS(8081), 1, + anon_sym_RPAREN, + STATE(5131), 1, + aux_sym__literal_repeat1, + ACTIONS(7936), 2, 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, + ACTIONS(7950), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3405), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(4788), 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, + [181660] = 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(7922), 1, + sym_word, + ACTIONS(7926), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7928), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7930), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7932), 1, + sym__special_character, + ACTIONS(7934), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7938), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7940), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7946), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7948), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_variable_name, - ACTIONS(9004), 1, + ACTIONS(7952), 1, + sym_test_operator, + ACTIONS(7954), 1, + sym__brace_start, + ACTIONS(8083), 1, + anon_sym_RPAREN, + STATE(5131), 1, + aux_sym__literal_repeat1, + ACTIONS(7936), 2, sym_raw_string, - ACTIONS(9006), 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(3257), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + ACTIONS(7950), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3363), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(4788), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [190464] = 21, + sym_process_substitution, + [181735] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(8633), 1, + ACTIONS(7922), 1, sym_word, - ACTIONS(8637), 1, + ACTIONS(7926), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, + ACTIONS(7928), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8641), 1, + ACTIONS(7930), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, + ACTIONS(7932), 1, sym__special_character, - ACTIONS(8645), 1, + ACTIONS(7934), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(7938), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(7940), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(7942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(7944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(7946), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(7948), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, + ACTIONS(7952), 1, sym_test_operator, - ACTIONS(8665), 1, + ACTIONS(7954), 1, sym__brace_start, - ACTIONS(9008), 1, + ACTIONS(8085), 1, anon_sym_RPAREN, - STATE(5388), 1, + STATE(5131), 1, aux_sym__literal_repeat1, - ACTIONS(8647), 2, + ACTIONS(7936), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8661), 2, + ACTIONS(7950), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3488), 2, + STATE(3407), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5021), 9, + STATE(4788), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -237696,271 +227093,303 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [190539] = 22, + [181810] = 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(7922), 1, + sym_word, + ACTIONS(7926), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7928), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7930), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7932), 1, + sym__special_character, + ACTIONS(7934), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7938), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7940), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7946), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7948), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(9010), 1, + ACTIONS(7952), 1, + sym_test_operator, + ACTIONS(7954), 1, + sym__brace_start, + ACTIONS(8087), 1, + anon_sym_RPAREN, + STATE(5131), 1, + aux_sym__literal_repeat1, + ACTIONS(7936), 2, sym_raw_string, - ACTIONS(9012), 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(2671), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + ACTIONS(7950), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3363), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(4788), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [190616] = 22, + sym_process_substitution, + [181885] = 3, 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(1229), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(8577), 1, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1231), 21, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(8581), 1, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [181924] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7922), 1, + sym_word, + ACTIONS(7926), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7928), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7930), 1, + anon_sym_DOLLAR, + ACTIONS(7932), 1, + sym__special_character, + ACTIONS(7934), 1, + anon_sym_DQUOTE, + ACTIONS(7938), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7940), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7946), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7948), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_variable_name, - ACTIONS(9014), 1, + ACTIONS(7952), 1, + sym_test_operator, + ACTIONS(7954), 1, + sym__brace_start, + ACTIONS(8089), 1, + anon_sym_RPAREN, + STATE(5131), 1, + aux_sym__literal_repeat1, + ACTIONS(7936), 2, sym_raw_string, - ACTIONS(9016), 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(3268), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + ACTIONS(7950), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3410), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(4788), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [190693] = 22, + sym_process_substitution, + [181999] = 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(7922), 1, + sym_word, + ACTIONS(7926), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7928), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7930), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7932), 1, + sym__special_character, + ACTIONS(7934), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7938), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7940), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7946), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7948), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(9018), 1, + ACTIONS(7952), 1, + sym_test_operator, + ACTIONS(7954), 1, + sym__brace_start, + ACTIONS(8091), 1, + anon_sym_RPAREN, + STATE(5131), 1, + aux_sym__literal_repeat1, + ACTIONS(7936), 2, sym_raw_string, - ACTIONS(9020), 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(2672), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + ACTIONS(7950), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3363), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(4788), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [190770] = 22, + sym_process_substitution, + [182074] = 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(7922), 1, + sym_word, + ACTIONS(7926), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7928), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7930), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7932), 1, + sym__special_character, + ACTIONS(7934), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7938), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7940), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7946), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7948), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_variable_name, - ACTIONS(9022), 1, + ACTIONS(7952), 1, + sym_test_operator, + ACTIONS(7954), 1, + sym__brace_start, + ACTIONS(8093), 1, + anon_sym_RPAREN, + STATE(5131), 1, + aux_sym__literal_repeat1, + ACTIONS(7936), 2, sym_raw_string, - ACTIONS(9024), 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(3280), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + ACTIONS(7950), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3412), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(4788), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [190847] = 21, + sym_process_substitution, + [182149] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(8633), 1, + ACTIONS(7922), 1, sym_word, - ACTIONS(8637), 1, + ACTIONS(7926), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, + ACTIONS(7928), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8641), 1, + ACTIONS(7930), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, + ACTIONS(7932), 1, sym__special_character, - ACTIONS(8645), 1, + ACTIONS(7934), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(7938), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(7940), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(7942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(7944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(7946), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(7948), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, + ACTIONS(7952), 1, sym_test_operator, - ACTIONS(8665), 1, + ACTIONS(7954), 1, sym__brace_start, - ACTIONS(9026), 1, + ACTIONS(8095), 1, anon_sym_RPAREN, - STATE(5388), 1, + STATE(5131), 1, aux_sym__literal_repeat1, - ACTIONS(8647), 2, + ACTIONS(7936), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8661), 2, + ACTIONS(7950), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3552), 2, + STATE(3363), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5021), 9, + STATE(4788), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -237970,51 +227399,51 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [190922] = 21, - ACTIONS(3), 1, + [182224] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(3554), 1, + ACTIONS(7922), 1, + sym_word, + ACTIONS(7926), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3556), 1, + ACTIONS(7928), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3558), 1, + ACTIONS(7930), 1, anon_sym_DOLLAR, - ACTIONS(3560), 1, + ACTIONS(7932), 1, sym__special_character, - ACTIONS(3562), 1, + ACTIONS(7934), 1, anon_sym_DQUOTE, - ACTIONS(3564), 1, + ACTIONS(7938), 1, aux_sym_number_token1, - ACTIONS(3566), 1, + ACTIONS(7940), 1, aux_sym_number_token2, - ACTIONS(3568), 1, + ACTIONS(7942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3570), 1, + ACTIONS(7944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3572), 1, + ACTIONS(7946), 1, anon_sym_BQUOTE, - ACTIONS(3574), 1, + ACTIONS(7948), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3580), 1, + ACTIONS(7952), 1, sym_test_operator, - ACTIONS(3582), 1, + ACTIONS(7954), 1, sym__brace_start, - ACTIONS(9028), 1, - aux_sym_heredoc_redirect_token1, - STATE(3492), 1, - aux_sym__heredoc_command, - STATE(5338), 1, + ACTIONS(8097), 1, + anon_sym_RPAREN, + STATE(5131), 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(7936), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(5043), 9, + ACTIONS(7950), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3414), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(4788), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -238024,51 +227453,51 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [190997] = 21, + [182299] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(8633), 1, + ACTIONS(7922), 1, sym_word, - ACTIONS(8637), 1, + ACTIONS(7926), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, + ACTIONS(7928), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8641), 1, + ACTIONS(7930), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, + ACTIONS(7932), 1, sym__special_character, - ACTIONS(8645), 1, + ACTIONS(7934), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(7938), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(7940), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(7942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(7944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(7946), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(7948), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, + ACTIONS(7952), 1, sym_test_operator, - ACTIONS(8665), 1, + ACTIONS(7954), 1, sym__brace_start, - ACTIONS(9030), 1, + ACTIONS(8099), 1, anon_sym_RPAREN, - STATE(5388), 1, + STATE(5131), 1, aux_sym__literal_repeat1, - ACTIONS(8647), 2, + ACTIONS(7936), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8661), 2, + ACTIONS(7950), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3488), 2, + STATE(3363), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5021), 9, + STATE(4788), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -238078,491 +227507,483 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [191072] = 22, + [182374] = 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(7922), 1, + sym_word, + ACTIONS(7926), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7928), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7930), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7932), 1, + sym__special_character, + ACTIONS(7934), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7938), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7940), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7946), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7948), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(9032), 1, + ACTIONS(7952), 1, + sym_test_operator, + ACTIONS(7954), 1, + sym__brace_start, + ACTIONS(8101), 1, + anon_sym_RPAREN, + STATE(5131), 1, + aux_sym__literal_repeat1, + ACTIONS(7936), 2, sym_raw_string, - ACTIONS(9034), 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(2673), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + ACTIONS(7950), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3416), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(4788), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [191149] = 22, + sym_process_substitution, + [182449] = 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(7922), 1, + sym_word, + ACTIONS(7926), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7928), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7930), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7932), 1, + sym__special_character, + ACTIONS(7934), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7938), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7940), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7946), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7948), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_variable_name, - ACTIONS(9036), 1, + ACTIONS(7952), 1, + sym_test_operator, + ACTIONS(7954), 1, + sym__brace_start, + ACTIONS(8103), 1, + anon_sym_RPAREN, + STATE(5131), 1, + aux_sym__literal_repeat1, + ACTIONS(7936), 2, sym_raw_string, - ACTIONS(9038), 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(3020), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + ACTIONS(7950), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3363), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(4788), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [191226] = 22, + sym_process_substitution, + [182524] = 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(7922), 1, + sym_word, + ACTIONS(7926), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7928), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7930), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7932), 1, + sym__special_character, + ACTIONS(7934), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7938), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7940), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7946), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7948), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(9040), 1, + ACTIONS(7952), 1, + sym_test_operator, + ACTIONS(7954), 1, + sym__brace_start, + ACTIONS(8105), 1, + anon_sym_RPAREN, + STATE(5131), 1, + aux_sym__literal_repeat1, + ACTIONS(7936), 2, sym_raw_string, - ACTIONS(9042), 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(2674), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + ACTIONS(7950), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3418), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(4788), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [191303] = 22, + sym_process_substitution, + [182599] = 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(7922), 1, + sym_word, + ACTIONS(7926), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7928), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7930), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7932), 1, + sym__special_character, + ACTIONS(7934), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7938), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7940), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7946), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7948), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_variable_name, - ACTIONS(9044), 1, + ACTIONS(7952), 1, + sym_test_operator, + ACTIONS(7954), 1, + sym__brace_start, + ACTIONS(8107), 1, + anon_sym_RPAREN, + STATE(5131), 1, + aux_sym__literal_repeat1, + ACTIONS(7936), 2, sym_raw_string, - ACTIONS(9046), 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(3023), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + ACTIONS(7950), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3363), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(4788), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [191380] = 22, + sym_process_substitution, + [182674] = 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(7922), 1, + sym_word, + ACTIONS(7926), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7928), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7930), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7932), 1, + sym__special_character, + ACTIONS(7934), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7938), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7940), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7946), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7948), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(9048), 1, + ACTIONS(7952), 1, + sym_test_operator, + ACTIONS(7954), 1, + sym__brace_start, + ACTIONS(8109), 1, + anon_sym_RPAREN, + STATE(5131), 1, + aux_sym__literal_repeat1, + ACTIONS(7936), 2, sym_raw_string, - ACTIONS(9050), 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(2675), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + ACTIONS(7950), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3420), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(4788), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [191457] = 22, + sym_process_substitution, + [182749] = 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(7922), 1, + sym_word, + ACTIONS(7926), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7928), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7930), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7932), 1, + sym__special_character, + ACTIONS(7934), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7938), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7940), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7946), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7948), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_variable_name, - ACTIONS(9052), 1, + ACTIONS(7952), 1, + sym_test_operator, + ACTIONS(7954), 1, + sym__brace_start, + ACTIONS(8111), 1, + anon_sym_RPAREN, + STATE(5131), 1, + aux_sym__literal_repeat1, + ACTIONS(7936), 2, sym_raw_string, - ACTIONS(9054), 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(3026), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + ACTIONS(7950), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3363), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(4788), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [191534] = 22, + sym_process_substitution, + [182824] = 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(7922), 1, + sym_word, + ACTIONS(7926), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7928), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7930), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7932), 1, + sym__special_character, + ACTIONS(7934), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7938), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7940), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7946), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7948), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(9056), 1, + ACTIONS(7952), 1, + sym_test_operator, + ACTIONS(7954), 1, + sym__brace_start, + ACTIONS(8113), 1, + anon_sym_RPAREN, + STATE(5131), 1, + aux_sym__literal_repeat1, + ACTIONS(7936), 2, sym_raw_string, - ACTIONS(9058), 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(2676), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + ACTIONS(7950), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3422), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(4788), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [191611] = 22, + sym_process_substitution, + [182899] = 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(7922), 1, + sym_word, + ACTIONS(7926), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7928), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7930), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7932), 1, + sym__special_character, + ACTIONS(7934), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7938), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7940), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7946), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7948), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_variable_name, - ACTIONS(9060), 1, + ACTIONS(7952), 1, + sym_test_operator, + ACTIONS(7954), 1, + sym__brace_start, + ACTIONS(8115), 1, + anon_sym_RPAREN, + STATE(5131), 1, + aux_sym__literal_repeat1, + ACTIONS(7936), 2, sym_raw_string, - ACTIONS(9062), 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(3028), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + ACTIONS(7950), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3363), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(4788), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [191688] = 21, + sym_process_substitution, + [182974] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(8633), 1, + ACTIONS(7922), 1, sym_word, - ACTIONS(8637), 1, + ACTIONS(7926), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, + ACTIONS(7928), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8641), 1, + ACTIONS(7930), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, + ACTIONS(7932), 1, sym__special_character, - ACTIONS(8645), 1, + ACTIONS(7934), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(7938), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(7940), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(7942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(7944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(7946), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(7948), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, + ACTIONS(7952), 1, sym_test_operator, - ACTIONS(8665), 1, + ACTIONS(7954), 1, sym__brace_start, - ACTIONS(9064), 1, + ACTIONS(8117), 1, anon_sym_RPAREN, - STATE(5388), 1, + STATE(5131), 1, aux_sym__literal_repeat1, - ACTIONS(8647), 2, + ACTIONS(7936), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8661), 2, + ACTIONS(7950), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3562), 2, + STATE(3424), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5021), 9, + STATE(4788), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -238572,51 +227993,51 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [191763] = 21, + [183049] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(8633), 1, + ACTIONS(7922), 1, sym_word, - ACTIONS(8637), 1, + ACTIONS(7926), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, + ACTIONS(7928), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8641), 1, + ACTIONS(7930), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, + ACTIONS(7932), 1, sym__special_character, - ACTIONS(8645), 1, + ACTIONS(7934), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(7938), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(7940), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(7942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(7944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(7946), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(7948), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, + ACTIONS(7952), 1, sym_test_operator, - ACTIONS(8665), 1, + ACTIONS(7954), 1, sym__brace_start, - ACTIONS(9066), 1, + ACTIONS(8119), 1, anon_sym_RPAREN, - STATE(5388), 1, + STATE(5131), 1, aux_sym__literal_repeat1, - ACTIONS(8647), 2, + ACTIONS(7936), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8661), 2, + ACTIONS(7950), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3488), 2, + STATE(3363), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5021), 9, + STATE(4788), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -238626,106 +228047,105 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [191838] = 22, + [183124] = 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(7922), 1, + sym_word, + ACTIONS(7926), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7928), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7930), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7932), 1, + sym__special_character, + ACTIONS(7934), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7938), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7940), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7946), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7948), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(9068), 1, + ACTIONS(7952), 1, + sym_test_operator, + ACTIONS(7954), 1, + sym__brace_start, + ACTIONS(8121), 1, + anon_sym_RPAREN, + STATE(5131), 1, + aux_sym__literal_repeat1, + ACTIONS(7936), 2, 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_ansi_c_string, + ACTIONS(7950), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3426), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(4788), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [191915] = 21, + sym_process_substitution, + [183199] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(8633), 1, + ACTIONS(7922), 1, sym_word, - ACTIONS(8637), 1, + ACTIONS(7926), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, + ACTIONS(7928), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8641), 1, + ACTIONS(7930), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, + ACTIONS(7932), 1, sym__special_character, - ACTIONS(8645), 1, + ACTIONS(7934), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(7938), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(7940), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(7942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(7944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(7946), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(7948), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, + ACTIONS(7952), 1, sym_test_operator, - ACTIONS(8665), 1, + ACTIONS(7954), 1, sym__brace_start, - ACTIONS(9072), 1, + ACTIONS(8123), 1, anon_sym_RPAREN, - STATE(5388), 1, + STATE(5131), 1, aux_sym__literal_repeat1, - ACTIONS(8647), 2, + ACTIONS(7936), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8661), 2, + ACTIONS(7950), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3474), 2, + STATE(3363), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5021), 9, + STATE(4788), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -238735,52 +228155,52 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [191990] = 22, + [183274] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7882), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7884), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7890), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7892), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7894), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7898), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7900), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7902), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7904), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7906), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7908), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7912), 1, sym_variable_name, - ACTIONS(9074), 1, + ACTIONS(8125), 1, sym_raw_string, - ACTIONS(9076), 1, + ACTIONS(8127), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3042), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3048), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3057), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3058), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(7886), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7888), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2679), 9, + STATE(3154), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -238790,52 +228210,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [192067] = 22, + [183351] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(9078), 1, + ACTIONS(8129), 1, sym_raw_string, - ACTIONS(9080), 1, + ACTIONS(8131), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3033), 9, + STATE(2615), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -238845,52 +228265,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [192144] = 22, + [183428] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7670), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7672), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7678), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7700), 1, sym_variable_name, - ACTIONS(9082), 1, + ACTIONS(8133), 1, sym_raw_string, - ACTIONS(9084), 1, + ACTIONS(8135), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, - sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2924), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3002), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7676), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2680), 9, + STATE(3093), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -238900,52 +228320,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [192221] = 22, + [183505] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7882), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7884), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7890), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7892), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7894), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7898), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7900), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7902), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7904), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7906), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7908), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7912), 1, sym_variable_name, - ACTIONS(9086), 1, + ACTIONS(8137), 1, sym_raw_string, - ACTIONS(9088), 1, + ACTIONS(8139), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3042), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3048), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3057), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3058), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(7886), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7888), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3036), 9, + STATE(3111), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -238955,52 +228375,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [192298] = 22, + [183582] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(9090), 1, + ACTIONS(8141), 1, sym_raw_string, - ACTIONS(9092), 1, + ACTIONS(8143), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2681), 9, + STATE(3127), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -239010,162 +228430,212 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [192375] = 22, - ACTIONS(71), 1, + [183659] = 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(3245), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3247), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3249), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(3251), 1, + sym__special_character, + ACTIONS(3253), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(3255), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(3257), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(3259), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(3261), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(3263), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(3265), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_variable_name, - ACTIONS(9094), 1, + ACTIONS(3271), 1, + sym_test_operator, + ACTIONS(3273), 1, + sym__brace_start, + ACTIONS(8145), 1, + aux_sym_heredoc_redirect_token1, + STATE(3380), 1, + aux_sym__heredoc_command, + STATE(5021), 1, + aux_sym__literal_repeat1, + STATE(5201), 1, + sym_concatenation, + ACTIONS(3267), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3231), 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(4829), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [192452] = 22, - ACTIONS(71), 1, + sym_process_substitution, + [183734] = 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(3245), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3247), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3249), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(3251), 1, + sym__special_character, + ACTIONS(3253), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(3255), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(3257), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(3259), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(3261), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(3263), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(3265), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(9098), 1, + ACTIONS(3271), 1, + sym_test_operator, + ACTIONS(3273), 1, + sym__brace_start, + ACTIONS(8147), 1, + aux_sym_heredoc_redirect_token1, + STATE(3380), 1, + aux_sym__heredoc_command, + STATE(5021), 1, + aux_sym__literal_repeat1, + STATE(5201), 1, + sym_concatenation, + ACTIONS(3267), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3231), 3, sym_raw_string, - ACTIONS(9100), 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(2682), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + sym_word, + STATE(4829), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [192529] = 22, + sym_process_substitution, + [183809] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6859), 1, + anon_sym_SLASH, + ACTIONS(6861), 1, + anon_sym_PERCENT, + ACTIONS(6863), 1, + anon_sym_COLON, + ACTIONS(6867), 1, + anon_sym_RBRACE3, + ACTIONS(6869), 1, + anon_sym_AT, + ACTIONS(6871), 1, + anon_sym_STAR2, + ACTIONS(8149), 1, + anon_sym_LBRACK, + STATE(6619), 1, + sym__expansion_max_length, + STATE(6809), 1, + sym__expansion_operator, + STATE(6924), 1, + sym__expansion_regex_removal, + STATE(7051), 1, + sym__expansion_expression, + STATE(7052), 1, + sym__expansion_regex, + STATE(7053), 1, + sym__expansion_regex_replacement, + ACTIONS(6857), 2, + anon_sym_COMMA, + anon_sym_CARET, + ACTIONS(6877), 2, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + ACTIONS(6865), 3, + sym__immediate_double_hash, + anon_sym_POUND, + anon_sym_PERCENT_PERCENT, + ACTIONS(6875), 3, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + ACTIONS(6873), 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, + [183880] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(9102), 1, + ACTIONS(8151), 1, sym_raw_string, - ACTIONS(9104), 1, + ACTIONS(8153), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3040), 9, + STATE(2647), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -239175,52 +228645,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [192606] = 22, + [183957] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7670), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7672), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7678), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7700), 1, sym_variable_name, - ACTIONS(9106), 1, + ACTIONS(8155), 1, sym_raw_string, - ACTIONS(9108), 1, + ACTIONS(8157), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, - sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2924), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3002), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7676), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2683), 9, + STATE(3149), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -239230,52 +228700,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [192683] = 22, + [184034] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7882), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7884), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7890), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7892), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7894), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7898), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7900), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7902), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7904), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7906), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7908), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7912), 1, sym_variable_name, - ACTIONS(9110), 1, + ACTIONS(8159), 1, sym_raw_string, - ACTIONS(9112), 1, + ACTIONS(8161), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3042), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3048), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3057), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3058), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(7886), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7888), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3042), 9, + STATE(3152), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -239285,52 +228755,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [192760] = 22, + [184111] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(9114), 1, + ACTIONS(8163), 1, sym_raw_string, - ACTIONS(9116), 1, + ACTIONS(8165), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2684), 9, + STATE(2917), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -239340,162 +228810,160 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [192837] = 22, - ACTIONS(71), 1, + [184188] = 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(3245), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3247), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3249), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(3251), 1, + sym__special_character, + ACTIONS(3253), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(3255), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(3257), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(3259), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(3261), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(3263), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(3265), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_variable_name, - ACTIONS(9118), 1, + ACTIONS(3271), 1, + sym_test_operator, + ACTIONS(3273), 1, + sym__brace_start, + ACTIONS(8167), 1, + aux_sym_heredoc_redirect_token1, + STATE(3380), 1, + aux_sym__heredoc_command, + STATE(5021), 1, + aux_sym__literal_repeat1, + STATE(5201), 1, + sym_concatenation, + ACTIONS(3267), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3231), 3, sym_raw_string, - ACTIONS(9120), 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(3044), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + sym_word, + STATE(4829), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [192914] = 22, - ACTIONS(71), 1, + sym_process_substitution, + [184263] = 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(3245), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3247), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3249), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(3251), 1, + sym__special_character, + ACTIONS(3253), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(3255), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(3257), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(3259), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(3261), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(3263), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(3265), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(9122), 1, + ACTIONS(3271), 1, + sym_test_operator, + ACTIONS(3273), 1, + sym__brace_start, + ACTIONS(8169), 1, + aux_sym_heredoc_redirect_token1, + STATE(3380), 1, + aux_sym__heredoc_command, + STATE(5021), 1, + aux_sym__literal_repeat1, + STATE(5201), 1, + sym_concatenation, + ACTIONS(3267), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3231), 3, sym_raw_string, - ACTIONS(9124), 1, - aux_sym__simple_variable_name_token1, - STATE(2712), 1, - sym__arithmetic_binary_expression, - STATE(2715), 1, - sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(8412), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2685), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + sym_word, + STATE(4829), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [192991] = 22, + sym_process_substitution, + [184338] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(9126), 1, + ACTIONS(8171), 1, sym_raw_string, - ACTIONS(9128), 1, + ACTIONS(8173), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3046), 9, + STATE(2458), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -239505,52 +228973,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [193068] = 22, + [184415] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8597), 1, + ACTIONS(7670), 1, anon_sym_LPAREN, - ACTIONS(8599), 1, + ACTIONS(7672), 1, anon_sym_BANG, - ACTIONS(8605), 1, + ACTIONS(7678), 1, anon_sym_TILDE, - ACTIONS(8607), 1, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8609), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8613), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8615), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8617), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8619), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8621), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8623), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8627), 1, + ACTIONS(7700), 1, sym_variable_name, - ACTIONS(9130), 1, + ACTIONS(8175), 1, sym_raw_string, - ACTIONS(9132), 1, + ACTIONS(8177), 1, aux_sym__simple_variable_name_token1, - STATE(3262), 1, - sym__arithmetic_binary_expression, - STATE(3267), 1, + STATE(2924), 1, sym__arithmetic_ternary_expression, - STATE(3272), 1, - sym__arithmetic_unary_expression, - STATE(3274), 1, + STATE(3002), 1, sym__arithmetic_postfix_expression, - ACTIONS(8601), 2, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8603), 2, + ACTIONS(7676), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3025), 9, + STATE(2890), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -239560,162 +229028,160 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [193145] = 22, - ACTIONS(71), 1, + [184492] = 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(3245), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3247), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3249), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(3251), 1, + sym__special_character, + ACTIONS(3253), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(3255), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(3257), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(3259), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(3261), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(3263), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(3265), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_variable_name, - ACTIONS(9134), 1, + ACTIONS(3271), 1, + sym_test_operator, + ACTIONS(3273), 1, + sym__brace_start, + ACTIONS(8179), 1, + aux_sym_heredoc_redirect_token1, + STATE(3380), 1, + aux_sym__heredoc_command, + STATE(5021), 1, + aux_sym__literal_repeat1, + STATE(5201), 1, + sym_concatenation, + ACTIONS(3267), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3231), 3, sym_raw_string, - ACTIONS(9136), 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(3048), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + sym_word, + STATE(4829), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [193222] = 22, - ACTIONS(71), 1, + sym_process_substitution, + [184567] = 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(3245), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3247), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3249), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(3251), 1, + sym__special_character, + ACTIONS(3253), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(3255), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(3257), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(3259), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(3261), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(3263), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(3265), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(9138), 1, + ACTIONS(3271), 1, + sym_test_operator, + ACTIONS(3273), 1, + sym__brace_start, + ACTIONS(8181), 1, + aux_sym_heredoc_redirect_token1, + STATE(3380), 1, + aux_sym__heredoc_command, + STATE(5021), 1, + aux_sym__literal_repeat1, + STATE(5201), 1, + sym_concatenation, + ACTIONS(3267), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3231), 3, sym_raw_string, - ACTIONS(9140), 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(2688), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + sym_word, + STATE(4829), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [193299] = 22, + sym_process_substitution, + [184642] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(9142), 1, + ACTIONS(8183), 1, sym_raw_string, - ACTIONS(9144), 1, + ACTIONS(8185), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3050), 9, + STATE(2463), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -239725,52 +229191,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [193376] = 22, + [184719] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7670), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7672), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7678), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7700), 1, sym_variable_name, - ACTIONS(9146), 1, + ACTIONS(8187), 1, sym_raw_string, - ACTIONS(9148), 1, + ACTIONS(8189), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, - sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2924), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3002), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7676), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2689), 9, + STATE(2873), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -239780,162 +229246,160 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [193453] = 22, - ACTIONS(71), 1, + [184796] = 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(3245), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3247), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3249), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(3251), 1, + sym__special_character, + ACTIONS(3253), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(3255), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(3257), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(3259), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(3261), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(3263), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(3265), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_variable_name, - ACTIONS(9150), 1, + ACTIONS(3271), 1, + sym_test_operator, + ACTIONS(3273), 1, + sym__brace_start, + ACTIONS(8191), 1, + aux_sym_heredoc_redirect_token1, + STATE(3380), 1, + aux_sym__heredoc_command, + STATE(5021), 1, + aux_sym__literal_repeat1, + STATE(5201), 1, + sym_concatenation, + ACTIONS(3267), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3231), 3, sym_raw_string, - ACTIONS(9152), 1, - aux_sym__simple_variable_name_token1, - STATE(3024), 1, - sym__arithmetic_binary_expression, - STATE(3027), 1, - sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(8571), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3052), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + sym_word, + STATE(4829), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [193530] = 22, - ACTIONS(71), 1, + sym_process_substitution, + [184871] = 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(3245), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3247), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3249), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(3251), 1, + sym__special_character, + ACTIONS(3253), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(3255), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(3257), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(3259), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(3261), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(3263), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(3265), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(9154), 1, + ACTIONS(3271), 1, + sym_test_operator, + ACTIONS(3273), 1, + sym__brace_start, + ACTIONS(8193), 1, + aux_sym_heredoc_redirect_token1, + STATE(3380), 1, + aux_sym__heredoc_command, + STATE(5021), 1, + aux_sym__literal_repeat1, + STATE(5201), 1, + sym_concatenation, + ACTIONS(3267), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3231), 3, sym_raw_string, - ACTIONS(9156), 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(2690), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + sym_word, + STATE(4829), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [193607] = 22, + sym_process_substitution, + [184946] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(9158), 1, + ACTIONS(8195), 1, sym_raw_string, - ACTIONS(9160), 1, + ACTIONS(8197), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3054), 9, + STATE(2562), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -239945,52 +229409,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [193684] = 22, + [185023] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7670), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7672), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7678), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7700), 1, sym_variable_name, - ACTIONS(9162), 1, + ACTIONS(8199), 1, sym_raw_string, - ACTIONS(9164), 1, + ACTIONS(8201), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, - sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2924), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3002), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7676), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2691), 9, + STATE(2990), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -240000,107 +229464,160 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [193761] = 22, - ACTIONS(71), 1, + [185100] = 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(3245), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3247), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3249), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(3251), 1, + sym__special_character, + ACTIONS(3253), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(3255), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(3257), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(3259), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(3261), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(3263), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(3265), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_variable_name, - ACTIONS(9166), 1, + ACTIONS(3271), 1, + sym_test_operator, + ACTIONS(3273), 1, + sym__brace_start, + ACTIONS(8203), 1, + aux_sym_heredoc_redirect_token1, + STATE(3380), 1, + aux_sym__heredoc_command, + STATE(5021), 1, + aux_sym__literal_repeat1, + STATE(5201), 1, + sym_concatenation, + ACTIONS(3267), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3231), 3, sym_raw_string, - ACTIONS(9168), 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(3055), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + sym_word, + STATE(4829), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [185175] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3245), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3247), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3249), 1, + anon_sym_DOLLAR, + ACTIONS(3251), 1, + sym__special_character, + ACTIONS(3253), 1, + anon_sym_DQUOTE, + ACTIONS(3255), 1, + aux_sym_number_token1, + ACTIONS(3257), 1, + aux_sym_number_token2, + ACTIONS(3259), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3261), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3263), 1, + anon_sym_BQUOTE, + ACTIONS(3265), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3271), 1, + sym_test_operator, + ACTIONS(3273), 1, + sym__brace_start, + ACTIONS(8205), 1, + aux_sym_heredoc_redirect_token1, + STATE(3380), 1, + aux_sym__heredoc_command, + STATE(5021), 1, + aux_sym__literal_repeat1, + STATE(5201), 1, + sym_concatenation, + ACTIONS(3267), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3231), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(4829), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [193838] = 22, + sym_process_substitution, + [185250] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(9170), 1, + ACTIONS(8207), 1, sym_raw_string, - ACTIONS(9172), 1, + ACTIONS(8209), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2692), 9, + STATE(2471), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -240110,52 +229627,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [193915] = 22, + [185327] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7670), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7672), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7678), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7700), 1, sym_variable_name, - ACTIONS(9174), 1, + ACTIONS(8211), 1, sym_raw_string, - ACTIONS(9176), 1, + ACTIONS(8213), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, - sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2924), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3002), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7676), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3057), 9, + STATE(3080), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -240165,52 +229682,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [193992] = 22, + [185404] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(9178), 1, + ACTIONS(8215), 1, sym_raw_string, - ACTIONS(9180), 1, + ACTIONS(8217), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2693), 9, + STATE(2472), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -240220,52 +229737,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [194069] = 22, + [185481] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7670), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7672), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7678), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7700), 1, sym_variable_name, - ACTIONS(9182), 1, + ACTIONS(8219), 1, sym_raw_string, - ACTIONS(9184), 1, + ACTIONS(8221), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, - sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2924), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3002), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7676), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3058), 9, + STATE(3125), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -240275,52 +229792,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [194146] = 22, + [185558] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(9186), 1, + ACTIONS(8223), 1, sym_raw_string, - ACTIONS(9188), 1, + ACTIONS(8225), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2694), 9, + STATE(2473), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -240330,52 +229847,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [194223] = 22, + [185635] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7670), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7672), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7678), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7700), 1, sym_variable_name, - ACTIONS(9190), 1, + ACTIONS(8227), 1, sym_raw_string, - ACTIONS(9192), 1, + ACTIONS(8229), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, - sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2924), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3002), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7676), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3060), 9, + STATE(3151), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -240385,52 +229902,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [194300] = 22, + [185712] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(9194), 1, + ACTIONS(8231), 1, sym_raw_string, - ACTIONS(9196), 1, + ACTIONS(8233), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3266), 9, + STATE(2474), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -240440,52 +229957,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [194377] = 22, + [185789] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7670), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7672), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7678), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7700), 1, sym_variable_name, - ACTIONS(9198), 1, + ACTIONS(8235), 1, sym_raw_string, - ACTIONS(9200), 1, + ACTIONS(8237), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, - sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2924), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3002), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7676), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2695), 9, + STATE(2883), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -240495,52 +230012,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [194454] = 22, + [185866] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(9202), 1, + ACTIONS(8239), 1, sym_raw_string, - ACTIONS(9204), 1, + ACTIONS(8241), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3061), 9, + STATE(2475), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -240550,52 +230067,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [194531] = 22, + [185943] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7670), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7672), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7678), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7700), 1, sym_variable_name, - ACTIONS(9206), 1, + ACTIONS(8243), 1, sym_raw_string, - ACTIONS(9208), 1, + ACTIONS(8245), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, - sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2924), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3002), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7676), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3269), 9, + STATE(2893), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -240605,52 +230122,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [194608] = 22, + [186020] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(9210), 1, + ACTIONS(8247), 1, sym_raw_string, - ACTIONS(9212), 1, + ACTIONS(8249), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3270), 9, + STATE(2477), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -240660,52 +230177,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [194685] = 22, + [186097] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7670), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7672), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7678), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7700), 1, sym_variable_name, - ACTIONS(9214), 1, + ACTIONS(8251), 1, sym_raw_string, - ACTIONS(9216), 1, + ACTIONS(8253), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, - sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2924), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3002), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7676), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3271), 9, + STATE(2898), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -240715,52 +230232,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [194762] = 22, + [186174] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(9218), 1, + ACTIONS(8255), 1, sym_raw_string, - ACTIONS(9220), 1, + ACTIONS(8257), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2696), 9, + STATE(2478), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -240770,52 +230287,107 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [194839] = 22, + [186251] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7670), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7672), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7678), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7700), 1, sym_variable_name, - ACTIONS(9222), 1, + ACTIONS(8259), 1, sym_raw_string, - ACTIONS(9224), 1, + ACTIONS(8261), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, - sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2924), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3002), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7676), 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_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [186328] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7670), 1, + anon_sym_LPAREN, + ACTIONS(7672), 1, + anon_sym_BANG, + ACTIONS(7678), 1, + anon_sym_TILDE, + ACTIONS(7680), 1, + anon_sym_DOLLAR, + ACTIONS(7682), 1, + anon_sym_DQUOTE, + ACTIONS(7686), 1, + aux_sym_number_token1, + ACTIONS(7688), 1, + aux_sym_number_token2, + ACTIONS(7690), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7692), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7694), 1, + anon_sym_BQUOTE, + ACTIONS(7696), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7700), 1, + sym_variable_name, + ACTIONS(8263), 1, + sym_raw_string, + ACTIONS(8265), 1, + aux_sym__simple_variable_name_token1, + STATE(2924), 1, + sym__arithmetic_ternary_expression, + STATE(3002), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7676), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3063), 9, + STATE(2925), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -240825,52 +230397,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [194916] = 22, + [186405] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(9226), 1, + ACTIONS(8267), 1, sym_raw_string, - ACTIONS(9228), 1, + ACTIONS(8269), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3273), 9, + STATE(2482), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -240880,52 +230452,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [194993] = 22, + [186482] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7670), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7672), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7678), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7700), 1, sym_variable_name, - ACTIONS(9230), 1, + ACTIONS(8271), 1, sym_raw_string, - ACTIONS(9232), 1, + ACTIONS(8273), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, - sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2924), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3002), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7676), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2697), 9, + STATE(2945), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -240935,52 +230507,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [195070] = 22, + [186559] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(9234), 1, + ACTIONS(8275), 1, sym_raw_string, - ACTIONS(9236), 1, + ACTIONS(8277), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3065), 9, + STATE(2483), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -240990,52 +230562,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [195147] = 22, + [186636] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7670), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7672), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7678), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7700), 1, sym_variable_name, - ACTIONS(9238), 1, + ACTIONS(8279), 1, sym_raw_string, - ACTIONS(9240), 1, + ACTIONS(8281), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, - sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2924), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3002), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7676), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3276), 9, + STATE(2956), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -241045,52 +230617,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [195224] = 22, + [186713] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(9242), 1, + ACTIONS(8283), 1, sym_raw_string, - ACTIONS(9244), 1, + ACTIONS(8285), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2698), 9, + STATE(2485), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -241100,52 +230672,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [195301] = 22, + [186790] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7670), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7672), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7678), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7700), 1, sym_variable_name, - ACTIONS(9246), 1, + ACTIONS(8287), 1, sym_raw_string, - ACTIONS(9248), 1, + ACTIONS(8289), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, - sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2924), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3002), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7676), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3067), 9, + STATE(2963), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -241155,52 +230727,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [195378] = 22, + [186867] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(9250), 1, + ACTIONS(8291), 1, sym_raw_string, - ACTIONS(9252), 1, + ACTIONS(8293), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3278), 9, + STATE(2487), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -241210,52 +230782,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [195455] = 22, + [186944] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7670), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7672), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7678), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7700), 1, sym_variable_name, - ACTIONS(9254), 1, + ACTIONS(8295), 1, sym_raw_string, - ACTIONS(9256), 1, + ACTIONS(8297), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, - sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2924), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3002), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7676), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3285), 9, + STATE(2971), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -241265,52 +230837,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [195532] = 22, + [187021] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(9258), 1, + ACTIONS(8299), 1, sym_raw_string, - ACTIONS(9260), 1, + ACTIONS(8301), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2699), 9, + STATE(2489), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -241320,52 +230892,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [195609] = 22, + [187098] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7670), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7672), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7678), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7700), 1, sym_variable_name, - ACTIONS(9262), 1, + ACTIONS(8303), 1, sym_raw_string, - ACTIONS(9264), 1, + ACTIONS(8305), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, - sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2924), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3002), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7676), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3069), 9, + STATE(2989), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -241375,52 +230947,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [195686] = 22, + [187175] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(9266), 1, + ACTIONS(8307), 1, sym_raw_string, - ACTIONS(9268), 1, + ACTIONS(8309), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3286), 9, + STATE(2490), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -241430,52 +231002,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [195763] = 22, + [187252] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7670), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7672), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7678), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7700), 1, sym_variable_name, - ACTIONS(9270), 1, + ACTIONS(8311), 1, sym_raw_string, - ACTIONS(9272), 1, + ACTIONS(8313), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, - sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2924), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3002), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7676), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2700), 9, + STATE(2992), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -241485,52 +231057,107 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [195840] = 22, + [187329] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(9274), 1, + ACTIONS(8315), 1, sym_raw_string, - ACTIONS(9276), 1, + ACTIONS(8317), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(2655), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7487), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7489), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2491), 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, + [187406] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7670), 1, + anon_sym_LPAREN, + ACTIONS(7672), 1, + anon_sym_BANG, + ACTIONS(7678), 1, + anon_sym_TILDE, + ACTIONS(7680), 1, + anon_sym_DOLLAR, + ACTIONS(7682), 1, + anon_sym_DQUOTE, + ACTIONS(7686), 1, + aux_sym_number_token1, + ACTIONS(7688), 1, + aux_sym_number_token2, + ACTIONS(7690), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7692), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7694), 1, + anon_sym_BQUOTE, + ACTIONS(7696), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7700), 1, + sym_variable_name, + ACTIONS(8319), 1, + sym_raw_string, + ACTIONS(8321), 1, + aux_sym__simple_variable_name_token1, + STATE(2924), 1, + sym__arithmetic_ternary_expression, + STATE(3002), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7676), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3071), 9, + STATE(3000), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -241540,52 +231167,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [195917] = 22, + [187483] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(9278), 1, + ACTIONS(8323), 1, sym_raw_string, - ACTIONS(9280), 1, + ACTIONS(8325), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2701), 9, + STATE(2492), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -241595,52 +231222,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [195994] = 22, + [187560] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7670), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7672), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7678), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7700), 1, sym_variable_name, - ACTIONS(9282), 1, + ACTIONS(8327), 1, sym_raw_string, - ACTIONS(9284), 1, + ACTIONS(8329), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, - sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2924), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3002), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7676), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3072), 9, + STATE(3004), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -241650,52 +231277,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [196071] = 22, + [187637] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(9286), 1, + ACTIONS(8331), 1, sym_raw_string, - ACTIONS(9288), 1, + ACTIONS(8333), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2702), 9, + STATE(2493), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -241705,52 +231332,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [196148] = 22, + [187714] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7670), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7672), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7678), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7700), 1, sym_variable_name, - ACTIONS(9290), 1, + ACTIONS(8335), 1, sym_raw_string, - ACTIONS(9292), 1, + ACTIONS(8337), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, - sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2924), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3002), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7676), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3074), 9, + STATE(3032), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -241760,52 +231387,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [196225] = 22, + [187791] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(9294), 1, + ACTIONS(8339), 1, sym_raw_string, - ACTIONS(9296), 1, + ACTIONS(8341), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2703), 9, + STATE(2452), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -241815,52 +231442,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [196302] = 22, + [187868] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7670), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7672), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7678), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7700), 1, sym_variable_name, - ACTIONS(9298), 1, + ACTIONS(8343), 1, sym_raw_string, - ACTIONS(9300), 1, + ACTIONS(8345), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, - sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2924), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3002), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7676), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3076), 9, + STATE(3060), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -241870,52 +231497,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [196379] = 22, + [187945] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(9302), 1, + ACTIONS(8347), 1, sym_raw_string, - ACTIONS(9304), 1, + ACTIONS(8349), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2704), 9, + STATE(2494), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -241925,52 +231552,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [196456] = 22, + [188022] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7670), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7672), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7678), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7700), 1, sym_variable_name, - ACTIONS(9306), 1, + ACTIONS(8351), 1, sym_raw_string, - ACTIONS(9308), 1, + ACTIONS(8353), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, - sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2924), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3002), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7676), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3079), 9, + STATE(3067), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -241980,52 +231607,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [196533] = 22, + [188099] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(9310), 1, + ACTIONS(8355), 1, sym_raw_string, - ACTIONS(9312), 1, + ACTIONS(8357), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2705), 9, + STATE(2495), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -242035,52 +231662,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [196610] = 22, + [188176] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7670), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7672), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7678), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7700), 1, sym_variable_name, - ACTIONS(9314), 1, + ACTIONS(8359), 1, sym_raw_string, - ACTIONS(9316), 1, + ACTIONS(8361), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, - sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2924), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3002), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7676), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3081), 9, + STATE(3069), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -242090,52 +231717,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [196687] = 22, + [188253] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(9318), 1, + ACTIONS(8363), 1, sym_raw_string, - ACTIONS(9320), 1, + ACTIONS(8365), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3287), 9, + STATE(2496), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -242145,52 +231772,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [196764] = 22, + [188330] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7670), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7672), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7678), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7700), 1, sym_variable_name, - ACTIONS(9322), 1, + ACTIONS(8367), 1, sym_raw_string, - ACTIONS(9324), 1, + ACTIONS(8369), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, - sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2924), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3002), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7676), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3288), 9, + STATE(3077), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -242200,52 +231827,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [196841] = 22, + [188407] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(9326), 1, + ACTIONS(8371), 1, sym_raw_string, - ACTIONS(9328), 1, + ACTIONS(8373), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2706), 9, + STATE(2497), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -242255,52 +231882,162 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [196918] = 22, + [188484] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7670), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7672), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7678), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7700), 1, sym_variable_name, - ACTIONS(9330), 1, + ACTIONS(8375), 1, sym_raw_string, - ACTIONS(9332), 1, + ACTIONS(8377), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(2924), 1, + sym__arithmetic_ternary_expression, + STATE(3002), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + ACTIONS(7674), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7676), 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_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [188561] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7483), 1, + anon_sym_LPAREN, + ACTIONS(7485), 1, + anon_sym_BANG, + ACTIONS(7491), 1, + anon_sym_TILDE, + ACTIONS(7493), 1, + anon_sym_DOLLAR, + ACTIONS(7495), 1, + anon_sym_DQUOTE, + ACTIONS(7499), 1, + aux_sym_number_token1, + ACTIONS(7501), 1, + aux_sym_number_token2, + ACTIONS(7503), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7505), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7507), 1, + anon_sym_BQUOTE, + ACTIONS(7509), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7513), 1, + sym_variable_name, + ACTIONS(8379), 1, + sym_raw_string, + ACTIONS(8381), 1, + aux_sym__simple_variable_name_token1, + STATE(2649), 1, + sym__arithmetic_binary_expression, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3083), 9, + STATE(2498), 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, + [188638] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7670), 1, + anon_sym_LPAREN, + ACTIONS(7672), 1, + anon_sym_BANG, + ACTIONS(7678), 1, + anon_sym_TILDE, + ACTIONS(7680), 1, + anon_sym_DOLLAR, + ACTIONS(7682), 1, + anon_sym_DQUOTE, + ACTIONS(7686), 1, + aux_sym_number_token1, + ACTIONS(7688), 1, + aux_sym_number_token2, + ACTIONS(7690), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7692), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7694), 1, + anon_sym_BQUOTE, + ACTIONS(7696), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7700), 1, + sym_variable_name, + ACTIONS(8383), 1, + sym_raw_string, + ACTIONS(8385), 1, + aux_sym__simple_variable_name_token1, + STATE(2924), 1, + sym__arithmetic_ternary_expression, + STATE(3002), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7676), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3090), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -242310,52 +232047,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [196995] = 22, + [188715] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(9334), 1, + ACTIONS(8387), 1, sym_raw_string, - ACTIONS(9336), 1, + ACTIONS(8389), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2707), 9, + STATE(2499), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -242365,52 +232102,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [197072] = 22, + [188792] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7670), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7672), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7678), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7700), 1, sym_variable_name, - ACTIONS(9338), 1, + ACTIONS(8391), 1, sym_raw_string, - ACTIONS(9340), 1, + ACTIONS(8393), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, - sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2924), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3002), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7676), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3084), 9, + STATE(3094), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -242420,52 +232157,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [197149] = 22, + [188869] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(9342), 1, + ACTIONS(8395), 1, sym_raw_string, - ACTIONS(9344), 1, + ACTIONS(8397), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3251), 9, + STATE(2500), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -242475,52 +232212,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [197226] = 22, + [188946] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7670), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7672), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7678), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7700), 1, sym_variable_name, - ACTIONS(9346), 1, + ACTIONS(8399), 1, sym_raw_string, - ACTIONS(9348), 1, + ACTIONS(8401), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, - sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2924), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3002), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7676), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3089), 9, + STATE(3113), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -242530,52 +232267,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [197303] = 22, + [189023] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(9350), 1, + ACTIONS(8403), 1, sym_raw_string, - ACTIONS(9352), 1, + ACTIONS(8405), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2708), 9, + STATE(2501), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -242585,52 +232322,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [197380] = 22, + [189100] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7670), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7672), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7678), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7700), 1, sym_variable_name, - ACTIONS(9354), 1, + ACTIONS(8407), 1, sym_raw_string, - ACTIONS(9356), 1, + ACTIONS(8409), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, - sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2924), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3002), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7676), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3085), 9, + STATE(3119), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -242640,52 +232377,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [197457] = 22, + [189177] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(9358), 1, + ACTIONS(8411), 1, sym_raw_string, - ACTIONS(9360), 1, + ACTIONS(8413), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2709), 9, + STATE(2502), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -242695,52 +232432,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [197534] = 22, + [189254] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7670), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7672), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7678), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7700), 1, sym_variable_name, - ACTIONS(9362), 1, + ACTIONS(8415), 1, sym_raw_string, - ACTIONS(9364), 1, + ACTIONS(8417), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, - sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2924), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3002), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7676), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3086), 9, + STATE(3123), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -242750,52 +232487,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [197611] = 22, + [189331] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(9366), 1, + ACTIONS(8419), 1, sym_raw_string, - ACTIONS(9368), 1, + ACTIONS(8421), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2710), 9, + STATE(2503), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -242805,52 +232542,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [197688] = 22, + [189408] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7670), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7672), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7678), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7700), 1, sym_variable_name, - ACTIONS(9370), 1, + ACTIONS(8423), 1, sym_raw_string, - ACTIONS(9372), 1, + ACTIONS(8425), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, - sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2924), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3002), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7676), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3088), 9, + STATE(3124), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -242860,93 +232597,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, + [189485] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(9382), 1, + ACTIONS(8427), 1, sym_raw_string, - ACTIONS(9384), 1, + ACTIONS(8429), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2711), 9, + STATE(2504), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -242956,52 +232652,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [197891] = 22, + [189562] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7670), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7672), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7678), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7700), 1, sym_variable_name, - ACTIONS(9386), 1, + ACTIONS(8431), 1, sym_raw_string, - ACTIONS(9388), 1, + ACTIONS(8433), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, - sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2924), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3002), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7676), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3090), 9, + STATE(3128), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -243011,93 +232707,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, + [189639] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(9390), 1, + ACTIONS(8435), 1, sym_raw_string, - ACTIONS(9392), 1, + ACTIONS(8437), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2713), 9, + STATE(2505), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -243107,52 +232762,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [198094] = 22, + [189716] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7670), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7672), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7678), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7700), 1, sym_variable_name, - ACTIONS(9394), 1, + ACTIONS(8439), 1, sym_raw_string, - ACTIONS(9396), 1, + ACTIONS(8441), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, - sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2924), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3002), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7676), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3093), 9, + STATE(3136), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -243162,52 +232817,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [198171] = 22, + [189793] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(9398), 1, + ACTIONS(8443), 1, sym_raw_string, - ACTIONS(9400), 1, + ACTIONS(8445), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2714), 9, + STATE(2506), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -243217,52 +232872,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [198248] = 22, + [189870] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7670), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7672), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7678), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7700), 1, sym_variable_name, - ACTIONS(9402), 1, + ACTIONS(8447), 1, sym_raw_string, - ACTIONS(9404), 1, + ACTIONS(8449), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, - sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2924), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3002), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7676), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3094), 9, + STATE(3139), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -243272,52 +232927,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [198325] = 22, + [189947] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(9406), 1, + ACTIONS(8451), 1, sym_raw_string, - ACTIONS(9408), 1, + ACTIONS(8453), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2716), 9, + STATE(2507), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -243327,52 +232982,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [198402] = 22, + [190024] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7670), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7672), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7678), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7700), 1, sym_variable_name, - ACTIONS(9410), 1, + ACTIONS(8455), 1, sym_raw_string, - ACTIONS(9412), 1, + ACTIONS(8457), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, - sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2924), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3002), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7676), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3096), 9, + STATE(3141), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -243382,52 +233037,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [198479] = 22, + [190101] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(9414), 1, + ACTIONS(8459), 1, sym_raw_string, - ACTIONS(9416), 1, + ACTIONS(8461), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2717), 9, + STATE(2508), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -243437,52 +233092,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [198556] = 22, + [190178] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7670), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7672), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7678), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7700), 1, sym_variable_name, - ACTIONS(9418), 1, + ACTIONS(8463), 1, sym_raw_string, - ACTIONS(9420), 1, + ACTIONS(8465), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, - sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2924), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3002), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7676), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3098), 9, + STATE(3147), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -243492,52 +233147,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [198633] = 22, + [190255] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(9422), 1, + ACTIONS(8467), 1, sym_raw_string, - ACTIONS(9424), 1, + ACTIONS(8469), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2718), 9, + STATE(2510), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -243547,52 +233202,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [198710] = 22, + [190332] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7670), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7672), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7678), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7700), 1, sym_variable_name, - ACTIONS(9426), 1, + ACTIONS(8471), 1, sym_raw_string, - ACTIONS(9428), 1, + ACTIONS(8473), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, - sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2924), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3002), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7676), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3100), 9, + STATE(3028), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -243602,52 +233257,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [198787] = 22, + [190409] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(9430), 1, + ACTIONS(8475), 1, sym_raw_string, - ACTIONS(9432), 1, + ACTIONS(8477), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2719), 9, + STATE(2512), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -243657,52 +233312,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [198864] = 22, + [190486] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7670), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7672), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7678), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7700), 1, sym_variable_name, - ACTIONS(9434), 1, + ACTIONS(8479), 1, sym_raw_string, - ACTIONS(9436), 1, + ACTIONS(8481), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, - sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2924), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3002), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7676), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3102), 9, + STATE(2880), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -243712,52 +233367,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [198941] = 22, + [190563] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(9438), 1, + ACTIONS(8483), 1, sym_raw_string, - ACTIONS(9440), 1, + ACTIONS(8485), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2720), 9, + STATE(2513), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -243767,52 +233422,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [199018] = 22, + [190640] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7670), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7672), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7678), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7700), 1, sym_variable_name, - ACTIONS(9442), 1, + ACTIONS(8487), 1, sym_raw_string, - ACTIONS(9444), 1, + ACTIONS(8489), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, - sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2924), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3002), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7676), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3104), 9, + STATE(2886), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -243822,52 +233477,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [199095] = 22, + [190717] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(9446), 1, + ACTIONS(8491), 1, sym_raw_string, - ACTIONS(9448), 1, + ACTIONS(8493), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2721), 9, + STATE(2514), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -243877,52 +233532,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [199172] = 22, + [190794] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7670), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7672), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7678), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7700), 1, sym_variable_name, - ACTIONS(9450), 1, + ACTIONS(8495), 1, sym_raw_string, - ACTIONS(9452), 1, + ACTIONS(8497), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, - sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2924), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3002), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7676), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3106), 9, + STATE(2889), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -243932,52 +233587,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [199249] = 22, + [190871] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(9454), 1, + ACTIONS(8499), 1, sym_raw_string, - ACTIONS(9456), 1, + ACTIONS(8501), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2722), 9, + STATE(2515), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -243987,52 +233642,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [199326] = 22, + [190948] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7670), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7672), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7678), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7700), 1, sym_variable_name, - ACTIONS(9458), 1, + ACTIONS(8503), 1, sym_raw_string, - ACTIONS(9460), 1, + ACTIONS(8505), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, - sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2924), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3002), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7676), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3108), 9, + STATE(2891), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -244042,88 +233697,107 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [199403] = 3, + [191025] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(5886), 10, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(7483), 1, + anon_sym_LPAREN, + ACTIONS(7485), 1, + anon_sym_BANG, + ACTIONS(7491), 1, + anon_sym_TILDE, + ACTIONS(7493), 1, anon_sym_DOLLAR, + ACTIONS(7495), 1, + anon_sym_DQUOTE, + ACTIONS(7499), 1, aux_sym_number_token1, + ACTIONS(7501), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(5888), 21, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7505), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7507), 1, anon_sym_BQUOTE, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [199442] = 22, + ACTIONS(7513), 1, + sym_variable_name, + ACTIONS(8507), 1, + sym_raw_string, + ACTIONS(8509), 1, + aux_sym__simple_variable_name_token1, + STATE(2649), 1, + sym__arithmetic_binary_expression, + STATE(2650), 1, + sym__arithmetic_ternary_expression, + STATE(2654), 1, + sym__arithmetic_unary_expression, + STATE(2655), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7487), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7489), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2516), 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, + [191102] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7670), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7672), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7678), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7700), 1, sym_variable_name, - ACTIONS(9462), 1, + ACTIONS(8511), 1, sym_raw_string, - ACTIONS(9464), 1, + ACTIONS(8513), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, - sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2924), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3002), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7676), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2723), 9, + STATE(2894), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -244133,52 +233807,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [199519] = 22, + [191179] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(9466), 1, + ACTIONS(8515), 1, sym_raw_string, - ACTIONS(9468), 1, + ACTIONS(8517), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3110), 9, + STATE(2518), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -244188,52 +233862,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [199596] = 22, + [191256] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7670), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7672), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7678), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7700), 1, sym_variable_name, - ACTIONS(9470), 1, + ACTIONS(8519), 1, sym_raw_string, - ACTIONS(9472), 1, + ACTIONS(8521), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, - sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2924), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3002), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7676), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2724), 9, + STATE(2896), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -244243,52 +233917,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [199673] = 22, + [191333] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(9474), 1, + ACTIONS(8523), 1, sym_raw_string, - ACTIONS(9476), 1, + ACTIONS(8525), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3112), 9, + STATE(2520), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -244298,52 +233972,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [199750] = 22, + [191410] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7670), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7672), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7678), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7700), 1, sym_variable_name, - ACTIONS(9478), 1, + ACTIONS(8527), 1, sym_raw_string, - ACTIONS(9480), 1, + ACTIONS(8529), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, - sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2924), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, - sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3002), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7676), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2769), 9, + STATE(2899), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -244353,52 +234027,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [199827] = 22, + [191487] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(9482), 1, + ACTIONS(8531), 1, sym_raw_string, - ACTIONS(9484), 1, + ACTIONS(8533), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2725), 9, + STATE(2521), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -244408,52 +234082,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [199904] = 22, + [191564] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7670), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7672), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7678), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7700), 1, sym_variable_name, - ACTIONS(9486), 1, + ACTIONS(8535), 1, sym_raw_string, - ACTIONS(9488), 1, + ACTIONS(8537), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, - sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2924), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3002), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7676), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3115), 9, + STATE(2903), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -244463,52 +234137,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [199981] = 22, + [191641] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(9490), 1, + ACTIONS(8539), 1, sym_raw_string, - ACTIONS(9492), 1, + ACTIONS(8541), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2726), 9, + STATE(2522), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -244518,52 +234192,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [200058] = 22, + [191718] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7670), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7672), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7678), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7700), 1, sym_variable_name, - ACTIONS(9494), 1, + ACTIONS(8543), 1, sym_raw_string, - ACTIONS(9496), 1, + ACTIONS(8545), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, - sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2924), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3002), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7676), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3118), 9, + STATE(2913), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -244573,52 +234247,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [200135] = 22, + [191795] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(9498), 1, + ACTIONS(8547), 1, sym_raw_string, - ACTIONS(9500), 1, + ACTIONS(8549), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2728), 9, + STATE(2523), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -244628,52 +234302,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [200212] = 22, + [191872] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7670), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7672), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7678), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7700), 1, sym_variable_name, - ACTIONS(9502), 1, + ACTIONS(8551), 1, sym_raw_string, - ACTIONS(9504), 1, + ACTIONS(8553), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, - sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2924), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3002), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7676), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3121), 9, + STATE(2916), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -244683,52 +234357,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [200289] = 22, + [191949] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(9506), 1, + ACTIONS(8555), 1, sym_raw_string, - ACTIONS(9508), 1, + ACTIONS(8557), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2730), 9, + STATE(2525), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -244738,52 +234412,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [200366] = 22, + [192026] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7670), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7672), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7678), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7700), 1, sym_variable_name, - ACTIONS(9510), 1, + ACTIONS(8559), 1, sym_raw_string, - ACTIONS(9512), 1, + ACTIONS(8561), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, - sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2924), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3002), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7676), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3124), 9, + STATE(2919), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -244793,52 +234467,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [200443] = 22, + [192103] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(9514), 1, + ACTIONS(8563), 1, sym_raw_string, - ACTIONS(9516), 1, + ACTIONS(8565), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2731), 9, + STATE(2527), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -244848,52 +234522,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [200520] = 22, + [192180] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7670), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7672), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7678), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7700), 1, sym_variable_name, - ACTIONS(9518), 1, + ACTIONS(8567), 1, sym_raw_string, - ACTIONS(9520), 1, + ACTIONS(8569), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, - sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2924), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3002), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7676), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3126), 9, + STATE(2927), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -244903,52 +234577,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [200597] = 22, + [192257] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(9522), 1, + ACTIONS(8571), 1, sym_raw_string, - ACTIONS(9524), 1, + ACTIONS(8573), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2732), 9, + STATE(2528), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -244958,52 +234632,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [200674] = 22, + [192334] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7670), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7672), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7678), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7700), 1, sym_variable_name, - ACTIONS(9526), 1, + ACTIONS(8575), 1, sym_raw_string, - ACTIONS(9528), 1, + ACTIONS(8577), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, - sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2924), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3002), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7676), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3128), 9, + STATE(2941), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -245013,52 +234687,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [200751] = 22, + [192411] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(9530), 1, + ACTIONS(8579), 1, sym_raw_string, - ACTIONS(9532), 1, + ACTIONS(8581), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2733), 9, + STATE(2530), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -245068,52 +234742,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [200828] = 22, + [192488] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7670), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7672), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7678), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7700), 1, sym_variable_name, - ACTIONS(9534), 1, + ACTIONS(8583), 1, sym_raw_string, - ACTIONS(9536), 1, + ACTIONS(8585), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, - sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2924), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3002), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7676), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3130), 9, + STATE(2944), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -245123,52 +234797,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [200905] = 22, + [192565] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(9538), 1, + ACTIONS(8587), 1, sym_raw_string, - ACTIONS(9540), 1, + ACTIONS(8589), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2734), 9, + STATE(2532), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -245178,52 +234852,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [200982] = 22, + [192642] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7670), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7672), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7678), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7700), 1, sym_variable_name, - ACTIONS(9542), 1, + ACTIONS(8591), 1, sym_raw_string, - ACTIONS(9544), 1, + ACTIONS(8593), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, - sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2924), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3002), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7676), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3132), 9, + STATE(2947), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -245233,52 +234907,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [201059] = 22, + [192719] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(9546), 1, + ACTIONS(8595), 1, sym_raw_string, - ACTIONS(9548), 1, + ACTIONS(8597), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2735), 9, + STATE(2534), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -245288,52 +234962,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [201136] = 22, + [192796] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7670), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7672), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7678), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7700), 1, sym_variable_name, - ACTIONS(9550), 1, + ACTIONS(8599), 1, sym_raw_string, - ACTIONS(9552), 1, + ACTIONS(8601), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, - sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2924), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, - sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3002), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7676), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3134), 9, + STATE(2955), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -245343,52 +235017,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [201213] = 22, + [192873] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(9554), 1, + ACTIONS(8603), 1, sym_raw_string, - ACTIONS(9556), 1, + ACTIONS(8605), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2776), 9, + STATE(2536), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -245398,188 +235072,107 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [201290] = 8, - ACTIONS(3), 1, + [192950] = 22, + ACTIONS(71), 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, + ACTIONS(7670), 1, + anon_sym_LPAREN, + ACTIONS(7672), 1, anon_sym_BANG, - anon_sym_QMARK, + ACTIONS(7678), 1, + anon_sym_TILDE, + ACTIONS(7680), 1, 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, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(7595), 1, - sym_variable_name, - STATE(4267), 1, - sym_string, - ACTIONS(7593), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7589), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 17, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [201388] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6390), 1, - anon_sym_DOLLAR, - ACTIONS(6396), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(6398), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(6402), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, - sym__brace_start, - ACTIONS(7508), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, - sym__special_character, - ACTIONS(7514), 1, - anon_sym_DQUOTE, - ACTIONS(7518), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, + ACTIONS(7692), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(7522), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9558), 1, - sym_word, - ACTIONS(9562), 1, - sym_test_operator, - STATE(6307), 1, - aux_sym__literal_repeat1, - ACTIONS(7524), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9560), 2, + ACTIONS(7700), 1, + sym_variable_name, + ACTIONS(8607), 1, sym_raw_string, - sym_ansi_c_string, - STATE(6456), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6153), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(8609), 1, + aux_sym__simple_variable_name_token1, + STATE(2924), 1, + sym__arithmetic_ternary_expression, + STATE(3002), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7676), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2957), 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, - [201463] = 22, + [193027] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(9564), 1, + ACTIONS(8611), 1, sym_raw_string, - ACTIONS(9566), 1, + ACTIONS(8613), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3113), 9, + STATE(2538), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -245589,124 +235182,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [201540] = 3, - 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, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(5707), 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, - [201579] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(2156), 10, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(2158), 21, - sym_file_descriptor, - 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, - [201618] = 22, + [193104] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8597), 1, + ACTIONS(7670), 1, anon_sym_LPAREN, - ACTIONS(8599), 1, + ACTIONS(7672), 1, anon_sym_BANG, - ACTIONS(8605), 1, + ACTIONS(7678), 1, anon_sym_TILDE, - ACTIONS(8607), 1, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8609), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8613), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8615), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8617), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8619), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8621), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8623), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8627), 1, + ACTIONS(7700), 1, sym_variable_name, - ACTIONS(9568), 1, + ACTIONS(8615), 1, sym_raw_string, - ACTIONS(9570), 1, + ACTIONS(8617), 1, aux_sym__simple_variable_name_token1, - STATE(3262), 1, - sym__arithmetic_binary_expression, - STATE(3267), 1, + STATE(2924), 1, sym__arithmetic_ternary_expression, - STATE(3272), 1, - sym__arithmetic_unary_expression, - STATE(3274), 1, + STATE(3002), 1, sym__arithmetic_postfix_expression, - ACTIONS(8601), 2, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8603), 2, + ACTIONS(7676), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3284), 9, + STATE(2961), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -245716,52 +235237,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [201695] = 22, + [193181] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8597), 1, + ACTIONS(7670), 1, anon_sym_LPAREN, - ACTIONS(8599), 1, + ACTIONS(7672), 1, anon_sym_BANG, - ACTIONS(8605), 1, + ACTIONS(7678), 1, anon_sym_TILDE, - ACTIONS(8607), 1, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8609), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8613), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8615), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8617), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8619), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8621), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8623), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8627), 1, + ACTIONS(7700), 1, sym_variable_name, - ACTIONS(9572), 1, + ACTIONS(8619), 1, sym_raw_string, - ACTIONS(9574), 1, + ACTIONS(8621), 1, aux_sym__simple_variable_name_token1, - STATE(3262), 1, - sym__arithmetic_binary_expression, - STATE(3267), 1, + STATE(2924), 1, sym__arithmetic_ternary_expression, - STATE(3272), 1, - sym__arithmetic_unary_expression, - STATE(3274), 1, + STATE(3002), 1, sym__arithmetic_postfix_expression, - ACTIONS(8601), 2, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8603), 2, + ACTIONS(7676), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3159), 9, + STATE(3034), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -245771,52 +235292,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [201772] = 22, + [193258] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8597), 1, + ACTIONS(7670), 1, anon_sym_LPAREN, - ACTIONS(8599), 1, + ACTIONS(7672), 1, anon_sym_BANG, - ACTIONS(8605), 1, + ACTIONS(7678), 1, anon_sym_TILDE, - ACTIONS(8607), 1, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8609), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8613), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8615), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8617), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8619), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8621), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8623), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8627), 1, + ACTIONS(7700), 1, sym_variable_name, - ACTIONS(9576), 1, + ACTIONS(8623), 1, sym_raw_string, - ACTIONS(9578), 1, + ACTIONS(8625), 1, aux_sym__simple_variable_name_token1, - STATE(3262), 1, - sym__arithmetic_binary_expression, - STATE(3267), 1, + STATE(2924), 1, sym__arithmetic_ternary_expression, - STATE(3272), 1, - sym__arithmetic_unary_expression, - STATE(3274), 1, + STATE(3002), 1, sym__arithmetic_postfix_expression, - ACTIONS(8601), 2, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8603), 2, + ACTIONS(7676), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3156), 9, + STATE(3061), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -245826,88 +235347,52 @@ static const uint16_t ts_small_parse_table[] = { 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, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4439), 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, - [201888] = 22, + [193335] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8597), 1, + ACTIONS(7670), 1, anon_sym_LPAREN, - ACTIONS(8599), 1, + ACTIONS(7672), 1, anon_sym_BANG, - ACTIONS(8605), 1, + ACTIONS(7678), 1, anon_sym_TILDE, - ACTIONS(8607), 1, + ACTIONS(7680), 1, anon_sym_DOLLAR, - ACTIONS(8609), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - ACTIONS(8613), 1, + ACTIONS(7686), 1, aux_sym_number_token1, - ACTIONS(8615), 1, + ACTIONS(7688), 1, aux_sym_number_token2, - ACTIONS(8617), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8619), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8621), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(8623), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8627), 1, + ACTIONS(7700), 1, sym_variable_name, - ACTIONS(9580), 1, + ACTIONS(8627), 1, sym_raw_string, - ACTIONS(9582), 1, + ACTIONS(8629), 1, aux_sym__simple_variable_name_token1, - STATE(3262), 1, - sym__arithmetic_binary_expression, - STATE(3267), 1, + STATE(2924), 1, sym__arithmetic_ternary_expression, - STATE(3272), 1, - sym__arithmetic_unary_expression, - STATE(3274), 1, + STATE(3002), 1, sym__arithmetic_postfix_expression, - ACTIONS(8601), 2, + STATE(3134), 1, + sym__arithmetic_unary_expression, + STATE(3145), 1, + sym__arithmetic_binary_expression, + ACTIONS(7674), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8603), 2, + ACTIONS(7676), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3150), 9, + STATE(3088), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -245917,106 +235402,107 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [201965] = 21, + [193412] = 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(7882), 1, + anon_sym_LPAREN, + ACTIONS(7884), 1, + anon_sym_BANG, + ACTIONS(7890), 1, + anon_sym_TILDE, + ACTIONS(7892), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, - sym__special_character, - ACTIONS(8645), 1, + ACTIONS(7894), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(7898), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(7900), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(7902), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(7904), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(7906), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(7908), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, - sym_test_operator, - ACTIONS(8665), 1, - sym__brace_start, - ACTIONS(9584), 1, - anon_sym_RPAREN, - STATE(5388), 1, - aux_sym__literal_repeat1, - ACTIONS(8647), 2, + ACTIONS(7912), 1, + sym_variable_name, + ACTIONS(8631), 1, sym_raw_string, - sym_ansi_c_string, - ACTIONS(8661), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3700), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(5021), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(8633), 1, + aux_sym__simple_variable_name_token1, + STATE(3042), 1, + sym__arithmetic_binary_expression, + STATE(3048), 1, + sym__arithmetic_ternary_expression, + STATE(3057), 1, + sym__arithmetic_unary_expression, + STATE(3058), 1, + sym__arithmetic_postfix_expression, + ACTIONS(7886), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7888), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2960), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [202040] = 22, + [193489] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8597), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8599), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8605), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8607), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8609), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8613), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8615), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8617), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8619), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8621), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8623), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8627), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(9586), 1, + ACTIONS(8635), 1, sym_raw_string, - ACTIONS(9588), 1, + ACTIONS(8637), 1, aux_sym__simple_variable_name_token1, - STATE(3262), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(3267), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(3272), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(3274), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8601), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8603), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3021), 9, + STATE(2456), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -246026,51 +235512,51 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [202117] = 21, + [193566] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(8633), 1, + ACTIONS(7922), 1, sym_word, - ACTIONS(8637), 1, + ACTIONS(7926), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, + ACTIONS(7928), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8641), 1, + ACTIONS(7930), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, + ACTIONS(7932), 1, sym__special_character, - ACTIONS(8645), 1, + ACTIONS(7934), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(7938), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(7940), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(7942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(7944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(7946), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(7948), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, + ACTIONS(7952), 1, sym_test_operator, - ACTIONS(8665), 1, + ACTIONS(7954), 1, sym__brace_start, - ACTIONS(9590), 1, + ACTIONS(8639), 1, anon_sym_RPAREN, - STATE(5388), 1, + STATE(5131), 1, aux_sym__literal_repeat1, - ACTIONS(8647), 2, + ACTIONS(7936), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8661), 2, + ACTIONS(7950), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3488), 2, + STATE(3363), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5021), 9, + STATE(4788), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -246080,289 +235566,106 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [202192] = 3, + [193641] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(5268), 10, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, + ACTIONS(7922), 1, sym_word, - ACTIONS(5270), 21, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + ACTIONS(7926), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7928), 1, anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [202231] = 22, - ACTIONS(71), 1, - sym_comment, - ACTIONS(8597), 1, - anon_sym_LPAREN, - ACTIONS(8599), 1, - anon_sym_BANG, - ACTIONS(8605), 1, - anon_sym_TILDE, - ACTIONS(8607), 1, + ACTIONS(7930), 1, anon_sym_DOLLAR, - ACTIONS(8609), 1, + ACTIONS(7932), 1, + sym__special_character, + ACTIONS(7934), 1, anon_sym_DQUOTE, - ACTIONS(8613), 1, + ACTIONS(7938), 1, aux_sym_number_token1, - ACTIONS(8615), 1, + ACTIONS(7940), 1, aux_sym_number_token2, - ACTIONS(8617), 1, + ACTIONS(7942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8619), 1, + ACTIONS(7944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8621), 1, + ACTIONS(7946), 1, anon_sym_BQUOTE, - ACTIONS(8623), 1, + ACTIONS(7948), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8627), 1, - sym_variable_name, - ACTIONS(9592), 1, - 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_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [202308] = 3, - 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, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1225), 21, - sym_file_descriptor, - sym_variable_name, + ACTIONS(7952), 1, sym_test_operator, + ACTIONS(7954), 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, + ACTIONS(8641), 1, + anon_sym_RPAREN, + STATE(5131), 1, + aux_sym__literal_repeat1, + ACTIONS(7936), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(7950), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [202347] = 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(9596), 1, - 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_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [202424] = 22, - 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, - anon_sym_DOLLAR, - ACTIONS(8577), 1, - anon_sym_DQUOTE, - ACTIONS(8581), 1, - aux_sym_number_token1, - ACTIONS(8583), 1, - aux_sym_number_token2, - ACTIONS(8585), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, - anon_sym_BQUOTE, - ACTIONS(8591), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_variable_name, - ACTIONS(9600), 1, - 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, + STATE(3561), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(4788), 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, + [193716] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(7483), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(7485), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(7491), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(7493), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(7495), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(7499), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(7501), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(7503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(7505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7507), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(7509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(7513), 1, sym_variable_name, - ACTIONS(9604), 1, + ACTIONS(8643), 1, sym_raw_string, - ACTIONS(9606), 1, + ACTIONS(8645), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(2649), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(2650), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(2654), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(2655), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(7487), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(7489), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2629), 9, + STATE(2468), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -246372,62 +235675,21 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [202578] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1197), 1, - sym_file_descriptor, - ACTIONS(9610), 1, - anon_sym_DQUOTE, - ACTIONS(9614), 1, - sym_variable_name, - STATE(5321), 1, - sym_string, - ACTIONS(9612), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9608), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 17, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [202627] = 8, + [193793] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1191), 1, sym_file_descriptor, - ACTIONS(9610), 1, + ACTIONS(8649), 1, anon_sym_DQUOTE, - ACTIONS(9614), 1, + ACTIONS(8653), 1, sym_variable_name, - STATE(5321), 1, + STATE(4988), 1, sym_string, - ACTIONS(9612), 2, + ACTIONS(8651), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9608), 8, + ACTIONS(8647), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -246436,7 +235698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1183), 17, + ACTIONS(1183), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -246445,7 +235707,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -246454,144 +235715,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [202676] = 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(9616), 1, - 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_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [202753] = 8, + [193841] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(9622), 1, - anon_sym_DQUOTE, - ACTIONS(9626), 1, - sym_variable_name, - STATE(5125), 1, - sym_string, - ACTIONS(1197), 2, - sym_test_operator, - sym__brace_start, - ACTIONS(9624), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9620), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 15, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [202801] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(2331), 1, - sym_word, - ACTIONS(2337), 1, - anon_sym_DOLLAR, - ACTIONS(2343), 1, - aux_sym_number_token1, - ACTIONS(2345), 1, - aux_sym_number_token2, - ACTIONS(2349), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2357), 1, - sym_test_operator, - ACTIONS(2359), 1, - sym__brace_start, - ACTIONS(9628), 1, + ACTIONS(577), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9630), 1, + ACTIONS(579), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9632), 1, - sym__special_character, - ACTIONS(9634), 1, + ACTIONS(583), 1, + anon_sym_DOLLAR, + ACTIONS(587), 1, anon_sym_DQUOTE, - ACTIONS(9638), 1, + ACTIONS(591), 1, + aux_sym_number_token1, + ACTIONS(593), 1, + aux_sym_number_token2, + ACTIONS(595), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9640), 1, - anon_sym_BQUOTE, - ACTIONS(9642), 1, + ACTIONS(597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(601), 1, anon_sym_DOLLAR_BQUOTE, - STATE(1491), 1, - aux_sym__literal_repeat1, - ACTIONS(9636), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(9644), 2, + ACTIONS(607), 1, + sym__brace_start, + ACTIONS(4667), 1, + anon_sym_BQUOTE, + ACTIONS(8655), 1, + sym_word, + ACTIONS(8657), 1, + anon_sym_RBRACK, + ACTIONS(8663), 1, + sym_test_operator, + ACTIONS(603), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(592), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1165), 9, + ACTIONS(8659), 2, + sym__special_character, + sym__comment_word, + ACTIONS(8661), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2387), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -246601,49 +235766,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [202873] = 20, - ACTIONS(71), 1, + [193911] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(2331), 1, - sym_word, - ACTIONS(2337), 1, + ACTIONS(577), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(579), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(583), 1, anon_sym_DOLLAR, - ACTIONS(2343), 1, + ACTIONS(587), 1, + anon_sym_DQUOTE, + ACTIONS(591), 1, aux_sym_number_token1, - ACTIONS(2345), 1, + ACTIONS(593), 1, aux_sym_number_token2, - ACTIONS(2349), 1, + ACTIONS(595), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(597), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2357), 1, - sym_test_operator, - ACTIONS(2359), 1, + ACTIONS(601), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(607), 1, sym__brace_start, - ACTIONS(9628), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9630), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9632), 1, - sym__special_character, - ACTIONS(9634), 1, - anon_sym_DQUOTE, - ACTIONS(9638), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9640), 1, + ACTIONS(4667), 1, anon_sym_BQUOTE, - ACTIONS(9642), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(1491), 1, - aux_sym__literal_repeat1, - ACTIONS(9636), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(9644), 2, + ACTIONS(8655), 1, + sym_word, + ACTIONS(8663), 1, + sym_test_operator, + ACTIONS(8665), 1, + anon_sym_RBRACK, + ACTIONS(603), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(593), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1165), 9, + ACTIONS(8659), 2, + sym__special_character, + sym__comment_word, + ACTIONS(8661), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2387), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -246653,50 +235817,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [202945] = 21, + [193981] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(1454), 1, + ACTIONS(1374), 1, anon_sym_DOLLAR, - ACTIONS(1460), 1, + ACTIONS(1380), 1, aux_sym_number_token1, - ACTIONS(1462), 1, + ACTIONS(1382), 1, aux_sym_number_token2, - ACTIONS(1466), 1, + ACTIONS(1386), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1478), 1, + ACTIONS(1398), 1, sym__brace_start, - ACTIONS(9646), 1, + ACTIONS(8667), 1, sym_word, - ACTIONS(9648), 1, + ACTIONS(8669), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9650), 1, + ACTIONS(8671), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9652), 1, + ACTIONS(8673), 1, sym__special_character, - ACTIONS(9654), 1, + ACTIONS(8675), 1, anon_sym_DQUOTE, - ACTIONS(9658), 1, + ACTIONS(8679), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9660), 1, + ACTIONS(8681), 1, anon_sym_BQUOTE, - ACTIONS(9662), 1, + ACTIONS(8683), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9666), 1, + ACTIONS(8687), 1, sym_test_operator, - ACTIONS(9668), 1, + ACTIONS(8689), 1, sym_regex, - STATE(1395), 1, + STATE(909), 1, aux_sym__literal_repeat1, - STATE(1586), 1, + STATE(1076), 1, sym_concatenation, - ACTIONS(9656), 2, + ACTIONS(8677), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(9664), 2, + ACTIONS(8685), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1055), 9, + STATE(790), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -246706,49 +235870,90 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [203019] = 20, + [194055] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1197), 1, + sym_file_descriptor, + ACTIONS(8693), 1, + anon_sym_DQUOTE, + ACTIONS(8697), 1, + sym_variable_name, + STATE(5174), 1, + sym_string, + ACTIONS(8695), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8691), 8, + 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, + [194103] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(8226), 1, + ACTIONS(1511), 1, + anon_sym_DOLLAR, + ACTIONS(1517), 1, + aux_sym_number_token1, + ACTIONS(1519), 1, + aux_sym_number_token2, + ACTIONS(1523), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1535), 1, + sym__brace_start, + ACTIONS(8699), 1, + sym_word, + ACTIONS(8701), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8228), 1, + ACTIONS(8703), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8230), 1, - anon_sym_DOLLAR, - ACTIONS(8232), 1, + ACTIONS(8705), 1, sym__special_character, - ACTIONS(8234), 1, + ACTIONS(8707), 1, anon_sym_DQUOTE, - ACTIONS(8238), 1, - aux_sym_number_token1, - ACTIONS(8240), 1, - aux_sym_number_token2, - ACTIONS(8242), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8244), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8246), 1, + ACTIONS(8713), 1, anon_sym_BQUOTE, - ACTIONS(8248), 1, + ACTIONS(8715), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8258), 1, - sym__brace_start, - ACTIONS(9670), 1, - sym_word, - ACTIONS(9674), 1, + ACTIONS(8719), 1, sym_test_operator, - STATE(1501), 1, + ACTIONS(8721), 1, + sym_regex, + STATE(1343), 1, aux_sym__literal_repeat1, - ACTIONS(8250), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9672), 2, + STATE(1472), 1, + sym_concatenation, + ACTIONS(8709), 2, sym_raw_string, sym_ansi_c_string, - STATE(595), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1210), 9, + ACTIONS(8717), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(959), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -246758,48 +235963,88 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [203091] = 19, + [194177] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1191), 1, + sym_file_descriptor, + ACTIONS(8693), 1, + anon_sym_DQUOTE, + ACTIONS(8697), 1, + sym_variable_name, + STATE(5174), 1, + sym_string, + ACTIONS(8695), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8691), 8, + 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, + [194225] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(577), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, + ACTIONS(579), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, + ACTIONS(583), 1, anon_sym_DOLLAR, - ACTIONS(377), 1, + ACTIONS(587), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(591), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(593), 1, aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(595), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(597), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, + ACTIONS(601), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, + ACTIONS(607), 1, sym__brace_start, - ACTIONS(5375), 1, + ACTIONS(4667), 1, anon_sym_BQUOTE, - ACTIONS(9676), 1, + ACTIONS(8655), 1, sym_word, - ACTIONS(9678), 1, - anon_sym_RBRACK, - ACTIONS(9684), 1, + ACTIONS(8663), 1, sym_test_operator, - ACTIONS(393), 2, + ACTIONS(8723), 1, + anon_sym_RBRACK, + ACTIONS(603), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9680), 2, + ACTIONS(8659), 2, sym__special_character, sym__comment_word, - ACTIONS(9682), 3, + ACTIONS(8661), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2517), 9, + STATE(2387), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -246809,49 +236054,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [203161] = 20, - ACTIONS(71), 1, + [194295] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(8226), 1, + ACTIONS(577), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8228), 1, + ACTIONS(579), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8230), 1, + ACTIONS(583), 1, anon_sym_DOLLAR, - ACTIONS(8232), 1, - sym__special_character, - ACTIONS(8234), 1, + ACTIONS(587), 1, anon_sym_DQUOTE, - ACTIONS(8238), 1, + ACTIONS(591), 1, aux_sym_number_token1, - ACTIONS(8240), 1, + ACTIONS(593), 1, aux_sym_number_token2, - ACTIONS(8242), 1, + ACTIONS(595), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8244), 1, + ACTIONS(597), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8246), 1, - anon_sym_BQUOTE, - ACTIONS(8248), 1, + ACTIONS(601), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8258), 1, + ACTIONS(607), 1, sym__brace_start, - ACTIONS(9670), 1, + ACTIONS(4667), 1, + anon_sym_BQUOTE, + ACTIONS(8655), 1, sym_word, - ACTIONS(9674), 1, + ACTIONS(8663), 1, sym_test_operator, - STATE(1501), 1, - aux_sym__literal_repeat1, - ACTIONS(8250), 2, + ACTIONS(8725), 1, + anon_sym_RBRACK, + ACTIONS(603), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9672), 2, + ACTIONS(8659), 2, + sym__special_character, + sym__comment_word, + ACTIONS(8661), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(596), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1210), 9, + STATE(2387), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -246861,49 +236105,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [203233] = 20, + [194365] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3010), 1, + ACTIONS(1414), 1, anon_sym_DOLLAR, - ACTIONS(3016), 1, + ACTIONS(1420), 1, aux_sym_number_token1, - ACTIONS(3018), 1, + ACTIONS(1422), 1, aux_sym_number_token2, - ACTIONS(3022), 1, + ACTIONS(1426), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3032), 1, + ACTIONS(1438), 1, sym__brace_start, - ACTIONS(3793), 1, + ACTIONS(8727), 1, sym_word, - ACTIONS(3797), 1, - sym_test_operator, - ACTIONS(9686), 1, + ACTIONS(8729), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9688), 1, + ACTIONS(8731), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9690), 1, + ACTIONS(8733), 1, sym__special_character, - ACTIONS(9692), 1, + ACTIONS(8735), 1, anon_sym_DQUOTE, - ACTIONS(9696), 1, + ACTIONS(8739), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9698), 1, + ACTIONS(8741), 1, anon_sym_BQUOTE, - ACTIONS(9700), 1, + ACTIONS(8743), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2112), 1, + ACTIONS(8747), 1, + sym_test_operator, + ACTIONS(8749), 1, + sym_regex, + STATE(1108), 1, aux_sym__literal_repeat1, - ACTIONS(9694), 2, + STATE(1323), 1, + sym_concatenation, + ACTIONS(8737), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(9702), 2, + ACTIONS(8745), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(718), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1761), 9, + STATE(868), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -246913,48 +236158,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [203305] = 19, + [194439] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(577), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, + ACTIONS(579), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, + ACTIONS(583), 1, anon_sym_DOLLAR, - ACTIONS(377), 1, + ACTIONS(587), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(591), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(593), 1, aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(595), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(597), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, + ACTIONS(601), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, + ACTIONS(607), 1, sym__brace_start, - ACTIONS(5375), 1, + ACTIONS(4667), 1, anon_sym_BQUOTE, - ACTIONS(9676), 1, + ACTIONS(8655), 1, sym_word, - ACTIONS(9684), 1, + ACTIONS(8663), 1, sym_test_operator, - ACTIONS(9704), 1, + ACTIONS(8751), 1, anon_sym_RBRACK, - ACTIONS(393), 2, + ACTIONS(603), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9680), 2, + ACTIONS(8659), 2, sym__special_character, sym__comment_word, - ACTIONS(9682), 3, + ACTIONS(8661), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2517), 9, + STATE(2387), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -246964,101 +236209,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [203375] = 20, - ACTIONS(71), 1, + [194509] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(3588), 1, - sym_word, - ACTIONS(3594), 1, - anon_sym_DOLLAR, - ACTIONS(3600), 1, - aux_sym_number_token1, - ACTIONS(3602), 1, - aux_sym_number_token2, - ACTIONS(3606), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3614), 1, - sym_test_operator, - ACTIONS(3616), 1, - sym__brace_start, - ACTIONS(9706), 1, + ACTIONS(577), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9708), 1, + ACTIONS(579), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9710), 1, - sym__special_character, - ACTIONS(9712), 1, - anon_sym_DQUOTE, - ACTIONS(9716), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9718), 1, - anon_sym_BQUOTE, - ACTIONS(9720), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2279), 1, - aux_sym__literal_repeat1, - ACTIONS(9714), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(9722), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(690), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1800), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [203447] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(3010), 1, + ACTIONS(583), 1, anon_sym_DOLLAR, - ACTIONS(3016), 1, + ACTIONS(587), 1, + anon_sym_DQUOTE, + ACTIONS(591), 1, aux_sym_number_token1, - ACTIONS(3018), 1, + ACTIONS(593), 1, aux_sym_number_token2, - ACTIONS(3022), 1, + ACTIONS(595), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(597), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3032), 1, + ACTIONS(601), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(607), 1, sym__brace_start, - ACTIONS(3793), 1, + ACTIONS(4667), 1, + anon_sym_BQUOTE, + ACTIONS(8655), 1, sym_word, - ACTIONS(3797), 1, + ACTIONS(8663), 1, sym_test_operator, - ACTIONS(9686), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9688), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9690), 1, + ACTIONS(8753), 1, + anon_sym_RBRACK, + ACTIONS(603), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8659), 2, sym__special_character, - ACTIONS(9692), 1, - anon_sym_DQUOTE, - ACTIONS(9696), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9698), 1, - anon_sym_BQUOTE, - ACTIONS(9700), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2112), 1, - aux_sym__literal_repeat1, - ACTIONS(9694), 2, + sym__comment_word, + ACTIONS(8661), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - ACTIONS(9702), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(720), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1761), 9, + STATE(2387), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -247068,153 +236260,88 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [203519] = 20, - ACTIONS(71), 1, + [194579] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(3231), 1, - sym_word, - ACTIONS(3237), 1, - anon_sym_DOLLAR, - ACTIONS(3243), 1, - aux_sym_number_token1, - ACTIONS(3245), 1, - aux_sym_number_token2, - ACTIONS(3249), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3257), 1, + ACTIONS(3253), 1, + anon_sym_DQUOTE, + ACTIONS(7013), 1, + sym_variable_name, + STATE(4577), 1, + sym_string, + ACTIONS(1197), 2, sym_test_operator, - ACTIONS(3259), 1, sym__brace_start, - ACTIONS(9724), 1, + ACTIONS(7011), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7009), 8, + 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, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9726), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9728), 1, sym__special_character, - ACTIONS(9730), 1, - anon_sym_DQUOTE, - ACTIONS(9734), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9736), 1, - anon_sym_BQUOTE, - ACTIONS(9738), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2110), 1, - aux_sym__literal_repeat1, - ACTIONS(9732), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(9740), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(660), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1524), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [203591] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(3588), 1, - sym_word, - ACTIONS(3594), 1, - anon_sym_DOLLAR, - ACTIONS(3600), 1, aux_sym_number_token1, - ACTIONS(3602), 1, aux_sym_number_token2, - ACTIONS(3606), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3614), 1, - sym_test_operator, - ACTIONS(3616), 1, - sym__brace_start, - ACTIONS(9706), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9708), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9710), 1, - sym__special_character, - ACTIONS(9712), 1, - anon_sym_DQUOTE, - ACTIONS(9716), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9718), 1, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - ACTIONS(9720), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2279), 1, - aux_sym__literal_repeat1, - ACTIONS(9714), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(9722), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(714), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1800), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [203663] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(3231), 1, sym_word, - ACTIONS(3237), 1, + [194627] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(577), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(579), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(583), 1, anon_sym_DOLLAR, - ACTIONS(3243), 1, + ACTIONS(587), 1, + anon_sym_DQUOTE, + ACTIONS(591), 1, aux_sym_number_token1, - ACTIONS(3245), 1, + ACTIONS(593), 1, aux_sym_number_token2, - ACTIONS(3249), 1, + ACTIONS(595), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(597), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3257), 1, - sym_test_operator, - ACTIONS(3259), 1, + ACTIONS(601), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(607), 1, sym__brace_start, - ACTIONS(9724), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9726), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9728), 1, - sym__special_character, - ACTIONS(9730), 1, - anon_sym_DQUOTE, - ACTIONS(9734), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9736), 1, + ACTIONS(4667), 1, anon_sym_BQUOTE, - ACTIONS(9738), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2110), 1, - aux_sym__literal_repeat1, - ACTIONS(9732), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(9740), 2, + ACTIONS(8655), 1, + sym_word, + ACTIONS(8663), 1, + sym_test_operator, + ACTIONS(8755), 1, + anon_sym_RBRACK, + ACTIONS(603), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(661), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1524), 9, + ACTIONS(8659), 2, + sym__special_character, + sym__comment_word, + ACTIONS(8661), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2387), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -247224,49 +236351,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [203735] = 20, - ACTIONS(71), 1, + [194697] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(2613), 1, - sym_word, - ACTIONS(2619), 1, + ACTIONS(577), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(579), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(583), 1, anon_sym_DOLLAR, - ACTIONS(2625), 1, + ACTIONS(587), 1, + anon_sym_DQUOTE, + ACTIONS(591), 1, aux_sym_number_token1, - ACTIONS(2627), 1, + ACTIONS(593), 1, aux_sym_number_token2, - ACTIONS(2631), 1, + ACTIONS(595), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(597), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2639), 1, - sym_test_operator, - ACTIONS(2641), 1, + ACTIONS(601), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(607), 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(4667), 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(8655), 1, + sym_word, + ACTIONS(8663), 1, + sym_test_operator, + ACTIONS(8757), 1, + anon_sym_RBRACK, + ACTIONS(603), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(617), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1348), 9, + ACTIONS(8659), 2, + sym__special_character, + sym__comment_word, + ACTIONS(8661), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2387), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -247276,206 +236402,89 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [203807] = 20, - ACTIONS(71), 1, + [194767] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(2613), 1, - sym_word, - 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(2639), 1, + ACTIONS(3253), 1, + anon_sym_DQUOTE, + ACTIONS(7013), 1, + sym_variable_name, + STATE(4577), 1, + sym_string, + ACTIONS(1191), 2, sym_test_operator, - ACTIONS(2641), 1, sym__brace_start, - ACTIONS(9742), 1, + ACTIONS(7011), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7009), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 15, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, - 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, - 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, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(620), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1348), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [203879] = 20, - ACTIONS(71), 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(3793), 1, - sym_word, - ACTIONS(3797), 1, - sym_test_operator, - ACTIONS(9686), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9688), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9690), 1, - sym__special_character, - ACTIONS(9692), 1, - anon_sym_DQUOTE, - ACTIONS(9696), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9698), 1, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - ACTIONS(9700), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2112), 1, - aux_sym__literal_repeat1, - ACTIONS(9694), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(9702), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(712), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1761), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [203951] = 20, + sym_word, + [194815] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(3010), 1, + ACTIONS(3249), 1, anon_sym_DOLLAR, - ACTIONS(3016), 1, + ACTIONS(3255), 1, aux_sym_number_token1, - ACTIONS(3018), 1, + ACTIONS(3257), 1, aux_sym_number_token2, - ACTIONS(3022), 1, + ACTIONS(3261), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3032), 1, + ACTIONS(3273), 1, sym__brace_start, - ACTIONS(3793), 1, + ACTIONS(6727), 1, sym_word, - ACTIONS(3797), 1, + ACTIONS(6735), 1, sym_test_operator, - ACTIONS(9686), 1, + ACTIONS(8759), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9688), 1, + ACTIONS(8761), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9690), 1, + ACTIONS(8763), 1, sym__special_character, - ACTIONS(9692), 1, + ACTIONS(8765), 1, anon_sym_DQUOTE, - ACTIONS(9696), 1, + ACTIONS(8769), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9698), 1, + ACTIONS(8771), 1, anon_sym_BQUOTE, - ACTIONS(9700), 1, + ACTIONS(8773), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2112), 1, + STATE(4748), 1, aux_sym__literal_repeat1, - ACTIONS(9694), 2, + ACTIONS(8767), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(9702), 2, + ACTIONS(8775), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(722), 2, + STATE(3224), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(1761), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [204023] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1414), 1, - anon_sym_DOLLAR, - ACTIONS(1420), 1, - aux_sym_number_token1, - ACTIONS(1422), 1, - aux_sym_number_token2, - ACTIONS(1426), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1438), 1, - sym__brace_start, - ACTIONS(9760), 1, - sym_word, - ACTIONS(9762), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9764), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9766), 1, - sym__special_character, - ACTIONS(9768), 1, - anon_sym_DQUOTE, - ACTIONS(9772), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9774), 1, - anon_sym_BQUOTE, - ACTIONS(9776), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9780), 1, - sym_test_operator, - ACTIONS(9782), 1, - sym_regex, - STATE(1235), 1, - aux_sym__literal_repeat1, - STATE(1347), 1, - sym_concatenation, - ACTIONS(9770), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(9778), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(960), 9, + STATE(4441), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -247485,48 +236494,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [204097] = 19, + [194887] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(577), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, + ACTIONS(579), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, + ACTIONS(583), 1, anon_sym_DOLLAR, - ACTIONS(377), 1, + ACTIONS(587), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(591), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(593), 1, aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(595), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(597), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, + ACTIONS(601), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, + ACTIONS(607), 1, sym__brace_start, - ACTIONS(5375), 1, + ACTIONS(4667), 1, anon_sym_BQUOTE, - ACTIONS(9676), 1, + ACTIONS(8655), 1, sym_word, - ACTIONS(9684), 1, + ACTIONS(8663), 1, sym_test_operator, - ACTIONS(9784), 1, + ACTIONS(8777), 1, anon_sym_RBRACK, - ACTIONS(393), 2, + ACTIONS(603), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9680), 2, + ACTIONS(8659), 2, sym__special_character, sym__comment_word, - ACTIONS(9682), 3, + ACTIONS(8661), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2517), 9, + STATE(2387), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -247536,101 +236545,89 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [204167] = 20, - ACTIONS(71), 1, + [194957] = 8, + 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(7605), 1, - sym_word, - ACTIONS(7613), 1, + ACTIONS(8781), 1, + anon_sym_DQUOTE, + ACTIONS(8785), 1, + sym_variable_name, + STATE(4964), 1, + sym_string, + ACTIONS(1197), 2, sym_test_operator, - ACTIONS(9786), 1, + sym__brace_start, + ACTIONS(8783), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8779), 8, + 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, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9788), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9790), 1, sym__special_character, - ACTIONS(9792), 1, - anon_sym_DQUOTE, - ACTIONS(9796), 1, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - ACTIONS(9798), 1, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - ACTIONS(9800), 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, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3355), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(4614), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [204239] = 20, + sym_word, + [195005] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(3638), 1, + ACTIONS(3249), 1, anon_sym_DOLLAR, - ACTIONS(3644), 1, + ACTIONS(3255), 1, aux_sym_number_token1, - ACTIONS(3646), 1, + ACTIONS(3257), 1, aux_sym_number_token2, - ACTIONS(3650), 1, + ACTIONS(3261), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3660), 1, + ACTIONS(3273), 1, sym__brace_start, - ACTIONS(4056), 1, + ACTIONS(6727), 1, sym_word, - ACTIONS(4060), 1, + ACTIONS(6735), 1, sym_test_operator, - ACTIONS(9804), 1, + ACTIONS(8759), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9806), 1, + ACTIONS(8761), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9808), 1, + ACTIONS(8763), 1, sym__special_character, - ACTIONS(9810), 1, + ACTIONS(8765), 1, anon_sym_DQUOTE, - ACTIONS(9814), 1, + ACTIONS(8769), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9816), 1, + ACTIONS(8771), 1, anon_sym_BQUOTE, - ACTIONS(9818), 1, + ACTIONS(8773), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2253), 1, + STATE(4748), 1, aux_sym__literal_repeat1, - ACTIONS(9812), 2, + ACTIONS(8767), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(9820), 2, + ACTIONS(8775), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(756), 2, + STATE(3245), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(1931), 9, + STATE(4441), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -247640,101 +236637,88 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [204311] = 20, - ACTIONS(71), 1, + [195077] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(7828), 1, + ACTIONS(8781), 1, + anon_sym_DQUOTE, + ACTIONS(8785), 1, + sym_variable_name, + STATE(4964), 1, + sym_string, + ACTIONS(1191), 2, + sym_test_operator, + sym__brace_start, + ACTIONS(8783), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8779), 8, + 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, - 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, + sym_raw_string, + sym_ansi_c_string, 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(9822), 1, - sym_word, - ACTIONS(9826), 1, - sym_test_operator, - STATE(2634), 1, - aux_sym__literal_repeat1, - ACTIONS(7852), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9824), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(842), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2335), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [204383] = 20, - ACTIONS(71), 1, + sym_word, + [195125] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(7828), 1, + ACTIONS(577), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7830), 1, + ACTIONS(579), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7832), 1, + ACTIONS(583), 1, anon_sym_DOLLAR, - ACTIONS(7834), 1, - sym__special_character, - ACTIONS(7836), 1, + ACTIONS(587), 1, anon_sym_DQUOTE, - ACTIONS(7840), 1, + ACTIONS(591), 1, aux_sym_number_token1, - ACTIONS(7842), 1, + ACTIONS(593), 1, aux_sym_number_token2, - ACTIONS(7844), 1, + ACTIONS(595), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7846), 1, + ACTIONS(597), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7848), 1, - anon_sym_BQUOTE, - ACTIONS(7850), 1, + ACTIONS(601), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7860), 1, + ACTIONS(607), 1, sym__brace_start, - ACTIONS(9822), 1, + ACTIONS(4667), 1, + anon_sym_BQUOTE, + ACTIONS(8655), 1, sym_word, - ACTIONS(9826), 1, + ACTIONS(8663), 1, sym_test_operator, - STATE(2634), 1, - aux_sym__literal_repeat1, - ACTIONS(7852), 2, + ACTIONS(8787), 1, + anon_sym_RBRACK, + ACTIONS(603), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9824), 2, + ACTIONS(8659), 2, + sym__special_character, + sym__comment_word, + ACTIONS(8661), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(844), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2335), 9, + STATE(2387), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -247744,49 +236728,90 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [204455] = 20, + [195195] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1197), 1, + sym_file_descriptor, + ACTIONS(8649), 1, + anon_sym_DQUOTE, + ACTIONS(8653), 1, + sym_variable_name, + STATE(4988), 1, + sym_string, + ACTIONS(8651), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8647), 8, + 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, + [195243] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(4321), 1, - sym_word, - ACTIONS(4323), 1, + ACTIONS(2681), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4325), 1, + ACTIONS(2683), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4327), 1, + ACTIONS(2685), 1, anon_sym_DOLLAR, - ACTIONS(4331), 1, + ACTIONS(2687), 1, + sym__special_character, + ACTIONS(2689), 1, anon_sym_DQUOTE, - ACTIONS(4335), 1, + ACTIONS(2693), 1, aux_sym_number_token1, - ACTIONS(4337), 1, + ACTIONS(2695), 1, aux_sym_number_token2, - ACTIONS(4339), 1, + ACTIONS(2697), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4341), 1, + ACTIONS(2699), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4343), 1, + ACTIONS(2701), 1, anon_sym_BQUOTE, - ACTIONS(4345), 1, + ACTIONS(2703), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4349), 1, - sym_test_operator, - ACTIONS(4351), 1, + ACTIONS(2711), 1, sym__brace_start, - ACTIONS(9828), 1, - sym__special_character, - STATE(2630), 1, + ACTIONS(8789), 1, + sym_word, + ACTIONS(8793), 1, + sym_test_operator, + ACTIONS(8795), 1, + sym_regex, + STATE(2244), 1, aux_sym__literal_repeat1, - ACTIONS(4333), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4347), 2, + STATE(2386), 1, + sym_concatenation, + ACTIONS(2705), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(820), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2382), 9, + ACTIONS(8791), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1999), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -247796,48 +236821,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [204527] = 19, + [195317] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(577), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, + ACTIONS(579), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, + ACTIONS(583), 1, anon_sym_DOLLAR, - ACTIONS(377), 1, + ACTIONS(587), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(591), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(593), 1, aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(595), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(597), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, + ACTIONS(601), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, + ACTIONS(607), 1, sym__brace_start, - ACTIONS(5375), 1, + ACTIONS(4667), 1, anon_sym_BQUOTE, - ACTIONS(9676), 1, + ACTIONS(8655), 1, sym_word, - ACTIONS(9684), 1, + ACTIONS(8663), 1, sym_test_operator, - ACTIONS(9830), 1, + ACTIONS(8797), 1, anon_sym_RBRACK, - ACTIONS(393), 2, + ACTIONS(603), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9680), 2, + ACTIONS(8659), 2, sym__special_character, sym__comment_word, - ACTIONS(9682), 3, + ACTIONS(8661), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2517), 9, + STATE(2387), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -247847,48 +236872,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [204597] = 19, + [195387] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(577), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, + ACTIONS(579), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, + ACTIONS(583), 1, anon_sym_DOLLAR, - ACTIONS(377), 1, + ACTIONS(587), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(591), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(593), 1, aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(595), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(597), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, + ACTIONS(601), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, + ACTIONS(607), 1, sym__brace_start, - ACTIONS(5375), 1, + ACTIONS(4667), 1, anon_sym_BQUOTE, - ACTIONS(9676), 1, + ACTIONS(8655), 1, sym_word, - ACTIONS(9684), 1, + ACTIONS(8663), 1, sym_test_operator, - ACTIONS(9832), 1, + ACTIONS(8799), 1, anon_sym_RBRACK, - ACTIONS(393), 2, + ACTIONS(603), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9680), 2, + ACTIONS(8659), 2, sym__special_character, sym__comment_word, - ACTIONS(9682), 3, + ACTIONS(8661), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2517), 9, + STATE(2387), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -247898,49 +236923,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [204667] = 20, + [195457] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3201), 1, - sym_word, - ACTIONS(3207), 1, + ACTIONS(1555), 1, anon_sym_DOLLAR, - ACTIONS(3213), 1, + ACTIONS(1561), 1, aux_sym_number_token1, - ACTIONS(3215), 1, + ACTIONS(1563), 1, aux_sym_number_token2, - ACTIONS(3219), 1, + ACTIONS(1567), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3227), 1, - sym_test_operator, - ACTIONS(3229), 1, + ACTIONS(1579), 1, sym__brace_start, - ACTIONS(9834), 1, + ACTIONS(8801), 1, + sym_word, + ACTIONS(8803), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9836), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9838), 1, + ACTIONS(8807), 1, sym__special_character, - ACTIONS(9840), 1, + ACTIONS(8809), 1, anon_sym_DQUOTE, - ACTIONS(9844), 1, + ACTIONS(8813), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9846), 1, + ACTIONS(8815), 1, anon_sym_BQUOTE, - ACTIONS(9848), 1, + ACTIONS(8817), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2027), 1, + ACTIONS(8821), 1, + sym_test_operator, + ACTIONS(8823), 1, + sym_regex, + STATE(1285), 1, aux_sym__literal_repeat1, - ACTIONS(9842), 2, + STATE(1533), 1, + sym_concatenation, + ACTIONS(8811), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(9850), 2, + ACTIONS(8819), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(673), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1611), 9, + STATE(1186), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -247950,49 +236976,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [204739] = 20, + [195531] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(3201), 1, - sym_word, - ACTIONS(3207), 1, + ACTIONS(3249), 1, anon_sym_DOLLAR, - ACTIONS(3213), 1, + ACTIONS(3255), 1, aux_sym_number_token1, - ACTIONS(3215), 1, + ACTIONS(3257), 1, aux_sym_number_token2, - ACTIONS(3219), 1, + ACTIONS(3261), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3227), 1, - sym_test_operator, - ACTIONS(3229), 1, + ACTIONS(3273), 1, sym__brace_start, - ACTIONS(9834), 1, + ACTIONS(6727), 1, + sym_word, + ACTIONS(6735), 1, + sym_test_operator, + ACTIONS(8759), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9836), 1, + ACTIONS(8761), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9838), 1, + ACTIONS(8763), 1, sym__special_character, - ACTIONS(9840), 1, + ACTIONS(8765), 1, anon_sym_DQUOTE, - ACTIONS(9844), 1, + ACTIONS(8769), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9846), 1, + ACTIONS(8771), 1, anon_sym_BQUOTE, - ACTIONS(9848), 1, + ACTIONS(8773), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2027), 1, + STATE(4748), 1, aux_sym__literal_repeat1, - ACTIONS(9842), 2, + ACTIONS(8767), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(9850), 2, + ACTIONS(8775), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(659), 2, + STATE(3235), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(1611), 9, + STATE(4441), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -248002,152 +237028,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [204811] = 20, + [195603] = 21, 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(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, - 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, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(821), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - 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, - [204883] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(367), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, + ACTIONS(1555), 1, anon_sym_DOLLAR, - ACTIONS(377), 1, - anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(1561), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(1563), 1, aux_sym_number_token2, - ACTIONS(385), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(1567), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, + ACTIONS(1579), 1, sym__brace_start, - ACTIONS(5375), 1, - anon_sym_BQUOTE, - ACTIONS(9676), 1, - sym_word, - ACTIONS(9684), 1, - sym_test_operator, - ACTIONS(9852), 1, - anon_sym_RBRACK, - ACTIONS(393), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9680), 2, - sym__special_character, - sym__comment_word, - ACTIONS(9682), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2517), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [204953] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7974), 1, + ACTIONS(8803), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7976), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7978), 1, - anon_sym_DOLLAR, - ACTIONS(7980), 1, - sym__special_character, - ACTIONS(7982), 1, + ACTIONS(8809), 1, anon_sym_DQUOTE, - ACTIONS(7986), 1, - aux_sym_number_token1, - ACTIONS(7988), 1, - aux_sym_number_token2, - ACTIONS(7990), 1, + ACTIONS(8813), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7992), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7994), 1, + ACTIONS(8815), 1, anon_sym_BQUOTE, - ACTIONS(7996), 1, + ACTIONS(8817), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8006), 1, - sym__brace_start, - ACTIONS(9854), 1, + ACTIONS(8823), 1, + sym_regex, + ACTIONS(8825), 1, sym_word, - ACTIONS(9858), 1, + ACTIONS(8827), 1, + sym__special_character, + ACTIONS(8831), 1, sym_test_operator, - STATE(3442), 1, + STATE(1285), 1, aux_sym__literal_repeat1, - ACTIONS(7998), 2, + STATE(1533), 1, + sym_concatenation, + ACTIONS(8819), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9856), 2, + ACTIONS(8829), 2, sym_raw_string, sym_ansi_c_string, - STATE(1716), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3373), 9, + STATE(964), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -248157,102 +237081,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [205025] = 20, + [195677] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(7866), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7868), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7870), 1, + ACTIONS(1555), 1, anon_sym_DOLLAR, - ACTIONS(7872), 1, - sym__special_character, - ACTIONS(7874), 1, - anon_sym_DQUOTE, - ACTIONS(7878), 1, + ACTIONS(1561), 1, aux_sym_number_token1, - ACTIONS(7880), 1, + ACTIONS(1563), 1, aux_sym_number_token2, - ACTIONS(7882), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7884), 1, + ACTIONS(1567), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7886), 1, - anon_sym_BQUOTE, - ACTIONS(7888), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7898), 1, + ACTIONS(1579), 1, sym__brace_start, - ACTIONS(9860), 1, - sym_word, - ACTIONS(9864), 1, - sym_test_operator, - STATE(1803), 1, - aux_sym__literal_repeat1, - ACTIONS(7890), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9862), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(609), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1325), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [205097] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(2653), 1, + ACTIONS(8803), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2655), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2657), 1, - anon_sym_DOLLAR, - ACTIONS(2659), 1, - sym__special_character, - ACTIONS(2661), 1, + ACTIONS(8809), 1, anon_sym_DQUOTE, - ACTIONS(2665), 1, - aux_sym_number_token1, - ACTIONS(2667), 1, - aux_sym_number_token2, - ACTIONS(2669), 1, + ACTIONS(8813), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2671), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2673), 1, + ACTIONS(8815), 1, anon_sym_BQUOTE, - ACTIONS(2675), 1, + ACTIONS(8817), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2683), 1, - sym__brace_start, - ACTIONS(9866), 1, + ACTIONS(8823), 1, + sym_regex, + ACTIONS(8833), 1, sym_word, - ACTIONS(9870), 1, + ACTIONS(8835), 1, + sym__special_character, + ACTIONS(8839), 1, sym_test_operator, - ACTIONS(9872), 1, - sym_regex, - STATE(2405), 1, + STATE(1285), 1, aux_sym__literal_repeat1, - STATE(2480), 1, + STATE(1533), 1, sym_concatenation, - ACTIONS(2677), 2, + ACTIONS(8819), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9868), 2, + ACTIONS(8837), 2, sym_raw_string, sym_ansi_c_string, - STATE(1916), 9, + STATE(1690), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -248262,49 +237134,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [205171] = 20, + [195751] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(5619), 1, - sym_word, - ACTIONS(5625), 1, + ACTIONS(3249), 1, anon_sym_DOLLAR, - ACTIONS(5631), 1, + ACTIONS(3255), 1, aux_sym_number_token1, - ACTIONS(5633), 1, + ACTIONS(3257), 1, aux_sym_number_token2, - ACTIONS(5637), 1, + ACTIONS(3261), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5645), 1, - sym_test_operator, - ACTIONS(5647), 1, + ACTIONS(3273), 1, sym__brace_start, - ACTIONS(9874), 1, + ACTIONS(6727), 1, + sym_word, + ACTIONS(6735), 1, + sym_test_operator, + ACTIONS(8759), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9876), 1, + ACTIONS(8761), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9878), 1, + ACTIONS(8763), 1, sym__special_character, - ACTIONS(9880), 1, + ACTIONS(8765), 1, anon_sym_DQUOTE, - ACTIONS(9884), 1, + ACTIONS(8769), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9886), 1, + ACTIONS(8771), 1, anon_sym_BQUOTE, - ACTIONS(9888), 1, + ACTIONS(8773), 1, anon_sym_DOLLAR_BQUOTE, - STATE(3369), 1, + STATE(4748), 1, aux_sym__literal_repeat1, - ACTIONS(9882), 2, + ACTIONS(8767), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(9890), 2, + ACTIONS(8775), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1429), 2, + STATE(3239), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(3082), 9, + STATE(4441), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -248314,49 +237186,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [205243] = 20, + [195823] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(5619), 1, + ACTIONS(3077), 1, sym_word, - ACTIONS(5625), 1, + ACTIONS(3083), 1, anon_sym_DOLLAR, - ACTIONS(5631), 1, + ACTIONS(3089), 1, aux_sym_number_token1, - ACTIONS(5633), 1, + ACTIONS(3091), 1, aux_sym_number_token2, - ACTIONS(5637), 1, + ACTIONS(3095), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5645), 1, + ACTIONS(3103), 1, sym_test_operator, - ACTIONS(5647), 1, + ACTIONS(3105), 1, sym__brace_start, - ACTIONS(9874), 1, + ACTIONS(8841), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9876), 1, + ACTIONS(8843), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9878), 1, + ACTIONS(8845), 1, sym__special_character, - ACTIONS(9880), 1, + ACTIONS(8847), 1, anon_sym_DQUOTE, - ACTIONS(9884), 1, + ACTIONS(8851), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9886), 1, + ACTIONS(8853), 1, anon_sym_BQUOTE, - ACTIONS(9888), 1, + ACTIONS(8855), 1, anon_sym_DOLLAR_BQUOTE, - STATE(3369), 1, + STATE(4334), 1, aux_sym__literal_repeat1, - ACTIONS(9882), 2, + STATE(4713), 1, + sym_concatenation, + ACTIONS(8849), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(9890), 2, + ACTIONS(8857), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1390), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3082), 9, + STATE(4037), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -248366,88 +237237,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [205315] = 8, + [195894] = 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, - 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, + ACTIONS(1511), 1, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 15, - aux_sym_heredoc_redirect_token1, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1517), 1, aux_sym_number_token1, + ACTIONS(1519), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, + ACTIONS(1523), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [205363] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(367), 1, + ACTIONS(1535), 1, + sym__brace_start, + ACTIONS(8701), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, + ACTIONS(8703), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, - anon_sym_DOLLAR, - ACTIONS(377), 1, + ACTIONS(8707), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, - aux_sym_number_token1, - ACTIONS(383), 1, - aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(8711), 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, + ACTIONS(8713), 1, anon_sym_BQUOTE, - ACTIONS(9676), 1, + ACTIONS(8715), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8859), 1, sym_word, - ACTIONS(9684), 1, - sym_test_operator, - ACTIONS(9892), 1, - anon_sym_RBRACK, - ACTIONS(393), 2, + ACTIONS(8865), 1, + sym__comment_word, + ACTIONS(8717), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9680), 2, + ACTIONS(8861), 2, + sym_test_operator, sym__special_character, - sym__comment_word, - ACTIONS(9682), 3, + ACTIONS(8863), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2517), 9, + STATE(1129), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -248457,49 +237286,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [205433] = 20, + [195961] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(9894), 1, - sym_word, - ACTIONS(9896), 1, + ACTIONS(3732), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9898), 1, + ACTIONS(3734), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9900), 1, + ACTIONS(3736), 1, anon_sym_DOLLAR, - ACTIONS(9902), 1, - sym__special_character, - ACTIONS(9904), 1, + ACTIONS(3740), 1, anon_sym_DQUOTE, - ACTIONS(9908), 1, + ACTIONS(3744), 1, aux_sym_number_token1, - ACTIONS(9910), 1, + ACTIONS(3746), 1, aux_sym_number_token2, - ACTIONS(9912), 1, + ACTIONS(3748), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9914), 1, + ACTIONS(3750), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9916), 1, + ACTIONS(3752), 1, anon_sym_BQUOTE, - ACTIONS(9918), 1, + ACTIONS(3754), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9922), 1, - sym_test_operator, - ACTIONS(9924), 1, + ACTIONS(3762), 1, sym__brace_start, - STATE(2496), 1, + ACTIONS(8867), 1, + sym_word, + ACTIONS(8869), 1, + sym__special_character, + ACTIONS(8873), 1, + sym_test_operator, + STATE(2777), 1, aux_sym__literal_repeat1, - ACTIONS(9906), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(9920), 2, + STATE(3023), 1, + sym_concatenation, + ACTIONS(3756), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(801), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2283), 9, + ACTIONS(8871), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2361), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -248509,49 +237337,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [205505] = 20, + [196032] = 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, + ACTIONS(8875), 1, sym_word, - ACTIONS(4060), 1, - sym_test_operator, - ACTIONS(9804), 1, + ACTIONS(8877), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9806), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9808), 1, + ACTIONS(8881), 1, + anon_sym_DOLLAR, + ACTIONS(8883), 1, sym__special_character, - ACTIONS(9810), 1, + ACTIONS(8885), 1, anon_sym_DQUOTE, - ACTIONS(9814), 1, + ACTIONS(8889), 1, + aux_sym_number_token1, + ACTIONS(8891), 1, + aux_sym_number_token2, + ACTIONS(8893), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9816), 1, + ACTIONS(8895), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8897), 1, anon_sym_BQUOTE, - ACTIONS(9818), 1, + ACTIONS(8899), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2253), 1, + ACTIONS(8903), 1, + sym_test_operator, + ACTIONS(8905), 1, + sym__brace_start, + STATE(5068), 1, aux_sym__literal_repeat1, - ACTIONS(9812), 2, + STATE(5233), 1, + sym_concatenation, + ACTIONS(8887), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(9820), 2, + ACTIONS(8901), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(759), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1931), 9, + STATE(4917), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -248561,48 +237388,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [205577] = 19, - ACTIONS(3), 1, + [196103] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(3732), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, + ACTIONS(3734), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, + ACTIONS(3736), 1, anon_sym_DOLLAR, - ACTIONS(377), 1, + ACTIONS(3740), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(3744), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(3746), 1, aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(3748), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(3750), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, + ACTIONS(3752), 1, + anon_sym_BQUOTE, + ACTIONS(3754), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, + ACTIONS(3762), 1, sym__brace_start, - ACTIONS(5375), 1, - anon_sym_BQUOTE, - ACTIONS(9676), 1, + ACTIONS(8869), 1, + sym__special_character, + ACTIONS(8907), 1, sym_word, - ACTIONS(9684), 1, + ACTIONS(8911), 1, sym_test_operator, - ACTIONS(9926), 1, - anon_sym_RBRACK, - ACTIONS(393), 2, + STATE(2792), 1, + aux_sym__literal_repeat1, + STATE(3071), 1, + sym_concatenation, + ACTIONS(3756), 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(8909), 2, sym_raw_string, sym_ansi_c_string, - STATE(2517), 9, + STATE(2367), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -248612,49 +237439,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [205647] = 20, + [196174] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(4801), 1, - sym_word, - ACTIONS(4803), 1, + ACTIONS(8877), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4805), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4807), 1, + ACTIONS(8881), 1, anon_sym_DOLLAR, - ACTIONS(4811), 1, + ACTIONS(8883), 1, + sym__special_character, + ACTIONS(8885), 1, anon_sym_DQUOTE, - ACTIONS(4815), 1, + ACTIONS(8889), 1, aux_sym_number_token1, - ACTIONS(4817), 1, + ACTIONS(8891), 1, aux_sym_number_token2, - ACTIONS(4819), 1, + ACTIONS(8893), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4821), 1, + ACTIONS(8895), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4823), 1, + ACTIONS(8897), 1, anon_sym_BQUOTE, - ACTIONS(4825), 1, + ACTIONS(8899), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4829), 1, - sym_test_operator, - ACTIONS(4831), 1, + ACTIONS(8905), 1, sym__brace_start, - ACTIONS(9928), 1, - sym__special_character, - STATE(2859), 1, + ACTIONS(8913), 1, + sym_word, + ACTIONS(8917), 1, + sym_test_operator, + STATE(5090), 1, aux_sym__literal_repeat1, - ACTIONS(4813), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4827), 2, + STATE(5211), 1, + sym_concatenation, + ACTIONS(8901), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(964), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2538), 9, + ACTIONS(8915), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(4958), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -248664,49 +237490,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [205719] = 20, - ACTIONS(71), 1, + [196245] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3638), 1, - anon_sym_DOLLAR, - ACTIONS(3644), 1, + ACTIONS(7375), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7377), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7383), 1, + anon_sym_DQUOTE, + ACTIONS(7387), 1, aux_sym_number_token1, - ACTIONS(3646), 1, + ACTIONS(7389), 1, aux_sym_number_token2, - ACTIONS(3650), 1, + ACTIONS(7391), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7393), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3660), 1, + ACTIONS(7395), 1, + anon_sym_BQUOTE, + ACTIONS(7397), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7407), 1, sym__brace_start, - ACTIONS(4056), 1, + ACTIONS(8919), 1, sym_word, - ACTIONS(4060), 1, + ACTIONS(8921), 1, + anon_sym_DOLLAR, + ACTIONS(8927), 1, + sym__comment_word, + ACTIONS(7399), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8923), 2, sym_test_operator, - ACTIONS(9804), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9806), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9808), 1, sym__special_character, - ACTIONS(9810), 1, - anon_sym_DQUOTE, - ACTIONS(9814), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9816), 1, - anon_sym_BQUOTE, - ACTIONS(9818), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2253), 1, - aux_sym__literal_repeat1, - ACTIONS(9812), 2, + ACTIONS(8925), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - ACTIONS(9820), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(757), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1931), 9, + STATE(4148), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -248716,49 +237539,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [205791] = 20, - ACTIONS(71), 1, + [196312] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(2795), 1, - sym_word, - ACTIONS(2801), 1, - anon_sym_DOLLAR, - ACTIONS(2807), 1, + ACTIONS(1517), 1, aux_sym_number_token1, - ACTIONS(2809), 1, + ACTIONS(1519), 1, aux_sym_number_token2, - ACTIONS(2813), 1, + ACTIONS(1523), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2821), 1, - sym_test_operator, - ACTIONS(2823), 1, + ACTIONS(1535), 1, sym__brace_start, - ACTIONS(9930), 1, + ACTIONS(8701), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9932), 1, + ACTIONS(8703), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9934), 1, - sym__special_character, - ACTIONS(9936), 1, + ACTIONS(8707), 1, anon_sym_DQUOTE, - ACTIONS(9940), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9942), 1, + ACTIONS(8713), 1, anon_sym_BQUOTE, - ACTIONS(9944), 1, + ACTIONS(8715), 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(8859), 1, + sym_word, + ACTIONS(8865), 1, + sym__comment_word, + ACTIONS(8929), 1, + anon_sym_DOLLAR, + ACTIONS(8717), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(633), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1292), 9, + ACTIONS(8861), 2, + sym_test_operator, + sym__special_character, + ACTIONS(8863), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1129), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -248768,49 +237588,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [205863] = 20, - ACTIONS(71), 1, + [196379] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(2795), 1, - sym_word, - ACTIONS(2801), 1, + ACTIONS(577), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(579), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(583), 1, anon_sym_DOLLAR, - ACTIONS(2807), 1, + ACTIONS(587), 1, + anon_sym_DQUOTE, + ACTIONS(591), 1, aux_sym_number_token1, - ACTIONS(2809), 1, + ACTIONS(593), 1, aux_sym_number_token2, - ACTIONS(2813), 1, + ACTIONS(595), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(597), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2821), 1, - sym_test_operator, - ACTIONS(2823), 1, + ACTIONS(601), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(607), 1, sym__brace_start, - ACTIONS(9930), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9932), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9934), 1, - sym__special_character, - ACTIONS(9936), 1, - anon_sym_DQUOTE, - ACTIONS(9940), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9942), 1, + ACTIONS(4667), 1, anon_sym_BQUOTE, - ACTIONS(9944), 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(8655), 1, + sym_word, + ACTIONS(8659), 1, + sym__comment_word, + ACTIONS(603), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(635), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1292), 9, + ACTIONS(8663), 2, + sym_test_operator, + sym__special_character, + ACTIONS(8661), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2387), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -248820,49 +237637,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [205935] = 20, + [196446] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(3632), 1, + ACTIONS(4195), 1, sym_word, - 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(3658), 1, - sym_test_operator, - ACTIONS(3660), 1, - sym__brace_start, - ACTIONS(9804), 1, + ACTIONS(4197), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9806), 1, + ACTIONS(4199), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9810), 1, + ACTIONS(4201), 1, + anon_sym_DOLLAR, + ACTIONS(4205), 1, anon_sym_DQUOTE, - ACTIONS(9814), 1, + ACTIONS(4209), 1, + aux_sym_number_token1, + ACTIONS(4211), 1, + aux_sym_number_token2, + ACTIONS(4213), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9816), 1, + ACTIONS(4215), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4217), 1, anon_sym_BQUOTE, - ACTIONS(9818), 1, + ACTIONS(4219), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9948), 1, + ACTIONS(4223), 1, + sym_test_operator, + ACTIONS(4225), 1, + sym__brace_start, + ACTIONS(8931), 1, sym__special_character, - STATE(2253), 1, + STATE(4985), 1, aux_sym__literal_repeat1, - ACTIONS(9820), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9950), 2, + STATE(5180), 1, + sym_concatenation, + ACTIONS(4207), 2, sym_raw_string, sym_ansi_c_string, - STATE(711), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1851), 9, + ACTIONS(4221), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(4866), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -248872,49 +237688,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [206007] = 20, + [196517] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(5009), 1, - sym_word, - ACTIONS(5011), 1, + ACTIONS(2681), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5013), 1, + ACTIONS(2683), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5015), 1, + ACTIONS(2685), 1, anon_sym_DOLLAR, - ACTIONS(5017), 1, + ACTIONS(2687), 1, sym__special_character, - ACTIONS(5019), 1, + ACTIONS(2689), 1, anon_sym_DQUOTE, - ACTIONS(5023), 1, + ACTIONS(2693), 1, aux_sym_number_token1, - ACTIONS(5025), 1, + ACTIONS(2695), 1, aux_sym_number_token2, - ACTIONS(5027), 1, + ACTIONS(2697), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5029), 1, + ACTIONS(2699), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5031), 1, + ACTIONS(2701), 1, anon_sym_BQUOTE, - ACTIONS(5033), 1, + ACTIONS(2703), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5037), 1, - sym_test_operator, - ACTIONS(5039), 1, + ACTIONS(2711), 1, sym__brace_start, - STATE(3136), 1, + ACTIONS(8933), 1, + sym_word, + ACTIONS(8937), 1, + sym_test_operator, + STATE(2229), 1, aux_sym__literal_repeat1, - ACTIONS(5021), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5035), 2, + STATE(2332), 1, + sym_concatenation, + ACTIONS(2705), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(998), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2655), 9, + ACTIONS(8935), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1890), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -248924,49 +237739,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [206079] = 20, + [196588] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(5009), 1, - sym_word, - ACTIONS(5011), 1, + ACTIONS(4197), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5013), 1, + ACTIONS(4199), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5015), 1, + ACTIONS(4201), 1, anon_sym_DOLLAR, - ACTIONS(5017), 1, - sym__special_character, - ACTIONS(5019), 1, + ACTIONS(4205), 1, anon_sym_DQUOTE, - ACTIONS(5023), 1, + ACTIONS(4209), 1, aux_sym_number_token1, - ACTIONS(5025), 1, + ACTIONS(4211), 1, aux_sym_number_token2, - ACTIONS(5027), 1, + ACTIONS(4213), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5029), 1, + ACTIONS(4215), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5031), 1, + ACTIONS(4217), 1, anon_sym_BQUOTE, - ACTIONS(5033), 1, + ACTIONS(4219), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5037), 1, - sym_test_operator, - ACTIONS(5039), 1, + ACTIONS(4225), 1, sym__brace_start, - STATE(3136), 1, + ACTIONS(4227), 1, + sym_word, + ACTIONS(4231), 1, + sym_test_operator, + ACTIONS(8931), 1, + sym__special_character, + STATE(4959), 1, aux_sym__literal_repeat1, - ACTIONS(5021), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5035), 2, + STATE(5187), 1, + sym_concatenation, + ACTIONS(4221), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(999), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2655), 9, + ACTIONS(4229), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(4772), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -248976,49 +237790,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [206151] = 20, + [196659] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(7866), 1, + ACTIONS(2681), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7868), 1, + ACTIONS(2683), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7870), 1, + ACTIONS(2685), 1, anon_sym_DOLLAR, - ACTIONS(7872), 1, + ACTIONS(2687), 1, sym__special_character, - ACTIONS(7874), 1, + ACTIONS(2689), 1, anon_sym_DQUOTE, - ACTIONS(7878), 1, + ACTIONS(2693), 1, aux_sym_number_token1, - ACTIONS(7880), 1, + ACTIONS(2695), 1, aux_sym_number_token2, - ACTIONS(7882), 1, + ACTIONS(2697), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7884), 1, + ACTIONS(2699), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7886), 1, + ACTIONS(2701), 1, anon_sym_BQUOTE, - ACTIONS(7888), 1, + ACTIONS(2703), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7898), 1, + ACTIONS(2711), 1, sym__brace_start, - ACTIONS(9860), 1, + ACTIONS(8939), 1, sym_word, - ACTIONS(9864), 1, + ACTIONS(8943), 1, sym_test_operator, - STATE(1803), 1, + STATE(2243), 1, aux_sym__literal_repeat1, - ACTIONS(7890), 2, + STATE(2385), 1, + sym_concatenation, + ACTIONS(2705), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9862), 2, + ACTIONS(8941), 2, sym_raw_string, sym_ansi_c_string, - STATE(629), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1325), 9, + STATE(1894), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -249028,48 +237841,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [206223] = 19, + [196730] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(7337), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, + ACTIONS(7339), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, - anon_sym_DOLLAR, - ACTIONS(377), 1, + ACTIONS(7345), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(7349), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(7351), 1, aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(7353), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(7355), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, + ACTIONS(7357), 1, + anon_sym_BQUOTE, + ACTIONS(7359), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, + ACTIONS(7369), 1, sym__brace_start, - ACTIONS(5375), 1, - anon_sym_BQUOTE, - ACTIONS(9676), 1, + ACTIONS(8945), 1, sym_word, - ACTIONS(9684), 1, - sym_test_operator, - ACTIONS(9952), 1, - anon_sym_RBRACK, - ACTIONS(393), 2, + ACTIONS(8947), 1, + anon_sym_DOLLAR, + ACTIONS(8953), 1, + sym__comment_word, + ACTIONS(7361), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9680), 2, + ACTIONS(8949), 2, + sym_test_operator, sym__special_character, - sym__comment_word, - ACTIONS(9682), 3, + ACTIONS(8951), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2517), 9, + STATE(3257), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -249079,49 +237890,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [206293] = 20, - ACTIONS(71), 1, + [196797] = 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(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9788), 1, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9790), 1, - sym__special_character, - ACTIONS(9792), 1, + ACTIONS(1109), 1, anon_sym_DQUOTE, - ACTIONS(9796), 1, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9798), 1, - anon_sym_BQUOTE, - ACTIONS(9800), 1, + ACTIONS(1115), 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(4951), 1, + anon_sym_BQUOTE, + ACTIONS(8955), 1, + sym_word, + ACTIONS(8957), 1, + anon_sym_DOLLAR, + ACTIONS(8963), 1, + sym__comment_word, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3350), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(4614), 9, + ACTIONS(8959), 2, + sym_test_operator, + sym__special_character, + ACTIONS(8961), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2073), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -249131,48 +237939,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [206365] = 19, + [196864] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(7075), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, + ACTIONS(7077), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, - anon_sym_DOLLAR, - ACTIONS(377), 1, + ACTIONS(7083), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(7087), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(7089), 1, aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(7091), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(7093), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, + ACTIONS(7095), 1, + anon_sym_BQUOTE, + ACTIONS(7097), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, + ACTIONS(7107), 1, sym__brace_start, - ACTIONS(5375), 1, - anon_sym_BQUOTE, - ACTIONS(9676), 1, + ACTIONS(8965), 1, sym_word, - ACTIONS(9684), 1, - sym_test_operator, - ACTIONS(9954), 1, - anon_sym_RBRACK, - ACTIONS(393), 2, + ACTIONS(8967), 1, + anon_sym_DOLLAR, + ACTIONS(8973), 1, + sym__comment_word, + ACTIONS(7099), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9680), 2, + ACTIONS(8969), 2, + sym_test_operator, sym__special_character, - sym__comment_word, - ACTIONS(9682), 3, + ACTIONS(8971), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2517), 9, + STATE(1062), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -249182,49 +237988,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [206435] = 20, - ACTIONS(71), 1, + [196931] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(9894), 1, - sym_word, - ACTIONS(9896), 1, + ACTIONS(7197), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9898), 1, + ACTIONS(7199), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9900), 1, + ACTIONS(7201), 1, anon_sym_DOLLAR, - ACTIONS(9902), 1, - sym__special_character, - ACTIONS(9904), 1, + ACTIONS(7205), 1, anon_sym_DQUOTE, - ACTIONS(9908), 1, + ACTIONS(7209), 1, aux_sym_number_token1, - ACTIONS(9910), 1, + ACTIONS(7211), 1, aux_sym_number_token2, - ACTIONS(9912), 1, + ACTIONS(7213), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9914), 1, + ACTIONS(7215), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9916), 1, + ACTIONS(7217), 1, anon_sym_BQUOTE, - ACTIONS(9918), 1, + ACTIONS(7219), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9922), 1, - sym_test_operator, - ACTIONS(9924), 1, + ACTIONS(7229), 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(8975), 1, + sym_word, + ACTIONS(8981), 1, + sym__comment_word, + ACTIONS(7221), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(794), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2283), 9, + ACTIONS(8977), 2, + sym_test_operator, + sym__special_character, + ACTIONS(8979), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1417), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -249234,49 +238037,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [206507] = 20, + [196998] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(4536), 1, + ACTIONS(3632), 1, sym_word, - ACTIONS(4538), 1, + 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(3658), 1, + sym_test_operator, + ACTIONS(3660), 1, + sym__brace_start, + ACTIONS(8983), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4540), 1, + ACTIONS(8985), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4542), 1, - anon_sym_DOLLAR, - ACTIONS(4544), 1, + ACTIONS(8987), 1, sym__special_character, - ACTIONS(4546), 1, + ACTIONS(8989), 1, anon_sym_DQUOTE, - ACTIONS(4550), 1, - aux_sym_number_token1, - ACTIONS(4552), 1, - aux_sym_number_token2, - ACTIONS(4554), 1, + ACTIONS(8993), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4556), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4558), 1, + ACTIONS(8995), 1, anon_sym_BQUOTE, - ACTIONS(4560), 1, + ACTIONS(8997), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4564), 1, - sym_test_operator, - ACTIONS(4566), 1, - sym__brace_start, - STATE(2975), 1, + STATE(4227), 1, aux_sym__literal_repeat1, - ACTIONS(4548), 2, + STATE(4639), 1, + sym_concatenation, + ACTIONS(8991), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4562), 2, + ACTIONS(8999), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(870), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2540), 9, + STATE(4356), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -249286,49 +238088,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [206579] = 20, + [197069] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(4536), 1, - sym_word, - ACTIONS(4538), 1, + ACTIONS(4197), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4540), 1, + ACTIONS(4199), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4542), 1, + ACTIONS(4201), 1, anon_sym_DOLLAR, - ACTIONS(4544), 1, - sym__special_character, - ACTIONS(4546), 1, + ACTIONS(4205), 1, anon_sym_DQUOTE, - ACTIONS(4550), 1, + ACTIONS(4209), 1, aux_sym_number_token1, - ACTIONS(4552), 1, + ACTIONS(4211), 1, aux_sym_number_token2, - ACTIONS(4554), 1, + ACTIONS(4213), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4556), 1, + ACTIONS(4215), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4558), 1, + ACTIONS(4217), 1, anon_sym_BQUOTE, - ACTIONS(4560), 1, + ACTIONS(4219), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4564), 1, - sym_test_operator, - ACTIONS(4566), 1, + ACTIONS(4225), 1, sym__brace_start, - STATE(2975), 1, + ACTIONS(8931), 1, + sym__special_character, + ACTIONS(9001), 1, + sym_word, + ACTIONS(9005), 1, + sym_test_operator, + STATE(4881), 1, aux_sym__literal_repeat1, - ACTIONS(4548), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4562), 2, + STATE(5186), 1, + sym_concatenation, + ACTIONS(4221), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(871), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2540), 9, + ACTIONS(9003), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(4798), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -249338,7 +238139,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [206651] = 20, + [197140] = 20, ACTIONS(71), 1, sym_comment, ACTIONS(3638), 1, @@ -249351,36 +238152,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(3660), 1, sym__brace_start, - ACTIONS(4056), 1, + ACTIONS(3662), 1, sym_word, - ACTIONS(4060), 1, + ACTIONS(3664), 1, sym_test_operator, - ACTIONS(9804), 1, + ACTIONS(8983), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9806), 1, + ACTIONS(8985), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9808), 1, + ACTIONS(8987), 1, sym__special_character, - ACTIONS(9810), 1, + ACTIONS(8989), 1, anon_sym_DQUOTE, - ACTIONS(9814), 1, + ACTIONS(8993), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9816), 1, + ACTIONS(8995), 1, anon_sym_BQUOTE, - ACTIONS(9818), 1, + ACTIONS(8997), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2253), 1, + STATE(4237), 1, aux_sym__literal_repeat1, - ACTIONS(9812), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(9820), 2, + STATE(4677), 1, + sym_concatenation, + ACTIONS(8999), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(758), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1931), 9, + ACTIONS(9007), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(4397), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -249390,49 +238190,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [206723] = 20, + [197211] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(4801), 1, - sym_word, - ACTIONS(4803), 1, + ACTIONS(4197), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4805), 1, + ACTIONS(4199), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4807), 1, + ACTIONS(4201), 1, anon_sym_DOLLAR, - ACTIONS(4811), 1, + ACTIONS(4205), 1, anon_sym_DQUOTE, - ACTIONS(4815), 1, + ACTIONS(4209), 1, aux_sym_number_token1, - ACTIONS(4817), 1, + ACTIONS(4211), 1, aux_sym_number_token2, - ACTIONS(4819), 1, + ACTIONS(4213), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4821), 1, + ACTIONS(4215), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4823), 1, + ACTIONS(4217), 1, anon_sym_BQUOTE, - ACTIONS(4825), 1, + ACTIONS(4219), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4829), 1, - sym_test_operator, - ACTIONS(4831), 1, + ACTIONS(4225), 1, sym__brace_start, - ACTIONS(9928), 1, + ACTIONS(8931), 1, sym__special_character, - STATE(2859), 1, + ACTIONS(9009), 1, + sym_word, + ACTIONS(9013), 1, + sym_test_operator, + STATE(4963), 1, aux_sym__literal_repeat1, - ACTIONS(4813), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4827), 2, + STATE(5153), 1, + sym_concatenation, + ACTIONS(4221), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(965), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2538), 9, + ACTIONS(9011), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(4786), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -249442,48 +238241,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [206795] = 19, + [197282] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(7337), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, + ACTIONS(7339), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, - anon_sym_DOLLAR, - ACTIONS(377), 1, + ACTIONS(7345), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(7349), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(7351), 1, aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(7353), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(7355), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, + ACTIONS(7357), 1, + anon_sym_BQUOTE, + ACTIONS(7359), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, + ACTIONS(7369), 1, sym__brace_start, - ACTIONS(5375), 1, - anon_sym_BQUOTE, - ACTIONS(9676), 1, + ACTIONS(8945), 1, sym_word, - ACTIONS(9684), 1, - sym_test_operator, - ACTIONS(9956), 1, - anon_sym_RBRACK, - ACTIONS(393), 2, + ACTIONS(8953), 1, + sym__comment_word, + ACTIONS(9015), 1, + anon_sym_DOLLAR, + ACTIONS(7361), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9680), 2, + ACTIONS(8949), 2, + sym_test_operator, sym__special_character, - sym__comment_word, - ACTIONS(9682), 3, + ACTIONS(8951), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2517), 9, + STATE(3257), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -249493,48 +238290,144 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [206865] = 19, + [197349] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(45), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, + ACTIONS(47), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, - anon_sym_DOLLAR, - ACTIONS(377), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(57), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(59), 1, aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(61), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(63), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, + ACTIONS(65), 1, + anon_sym_BQUOTE, + ACTIONS(67), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, + ACTIONS(79), 1, sym__brace_start, - ACTIONS(5375), 1, - anon_sym_BQUOTE, - ACTIONS(9676), 1, + ACTIONS(9017), 1, sym_word, - ACTIONS(9684), 1, + ACTIONS(9019), 1, + anon_sym_DOLLAR, + ACTIONS(9025), 1, + sym__comment_word, + ACTIONS(69), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9021), 2, sym_test_operator, - ACTIONS(9958), 1, - anon_sym_RBRACK, - ACTIONS(393), 2, + sym__special_character, + ACTIONS(9023), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(898), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [197416] = 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(1101), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1103), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1109), 1, + anon_sym_DQUOTE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1115), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4951), 1, + anon_sym_BQUOTE, + ACTIONS(8955), 1, + sym_word, + ACTIONS(8963), 1, + sym__comment_word, + ACTIONS(9027), 1, + anon_sym_DOLLAR, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9680), 2, + ACTIONS(8959), 2, + sym_test_operator, sym__special_character, + ACTIONS(8961), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2073), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [197483] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2168), 1, + anon_sym_DOLLAR, + ACTIONS(2174), 1, + aux_sym_number_token1, + ACTIONS(2176), 1, + aux_sym_number_token2, + ACTIONS(2180), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2194), 1, + sym__brace_start, + ACTIONS(6905), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6907), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6911), 1, + anon_sym_DQUOTE, + ACTIONS(6915), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6917), 1, + anon_sym_BQUOTE, + ACTIONS(6919), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9029), 1, + sym_word, + ACTIONS(9035), 1, sym__comment_word, - ACTIONS(9682), 3, + ACTIONS(6921), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9031), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9033), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2517), 9, + STATE(1429), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -249544,49 +238437,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [206935] = 20, + [197550] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(8300), 1, + ACTIONS(7299), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8302), 1, + ACTIONS(7301), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8304), 1, + ACTIONS(7303), 1, anon_sym_DOLLAR, - ACTIONS(8306), 1, + ACTIONS(7305), 1, sym__special_character, - ACTIONS(8308), 1, + ACTIONS(7307), 1, anon_sym_DQUOTE, - ACTIONS(8312), 1, + ACTIONS(7311), 1, aux_sym_number_token1, - ACTIONS(8314), 1, + ACTIONS(7313), 1, aux_sym_number_token2, - ACTIONS(8316), 1, + ACTIONS(7315), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, + ACTIONS(7317), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8320), 1, + ACTIONS(7319), 1, anon_sym_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(7321), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8332), 1, + ACTIONS(7331), 1, sym__brace_start, - ACTIONS(9960), 1, + ACTIONS(9037), 1, sym_word, - ACTIONS(9964), 1, + ACTIONS(9041), 1, sym_test_operator, - STATE(1814), 1, + STATE(2555), 1, aux_sym__literal_repeat1, - ACTIONS(8324), 2, + STATE(2850), 1, + sym_concatenation, + ACTIONS(7323), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9962), 2, + ACTIONS(9039), 2, sym_raw_string, sym_ansi_c_string, - STATE(676), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1663), 9, + STATE(2190), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -249596,49 +238488,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [207007] = 20, + [197621] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(8300), 1, + ACTIONS(7299), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8302), 1, + ACTIONS(7301), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8304), 1, + ACTIONS(7303), 1, anon_sym_DOLLAR, - ACTIONS(8306), 1, + ACTIONS(7305), 1, sym__special_character, - ACTIONS(8308), 1, + ACTIONS(7307), 1, anon_sym_DQUOTE, - ACTIONS(8312), 1, + ACTIONS(7311), 1, aux_sym_number_token1, - ACTIONS(8314), 1, + ACTIONS(7313), 1, aux_sym_number_token2, - ACTIONS(8316), 1, + ACTIONS(7315), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, + ACTIONS(7317), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8320), 1, + ACTIONS(7319), 1, anon_sym_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(7321), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8332), 1, + ACTIONS(7331), 1, sym__brace_start, - ACTIONS(9960), 1, + ACTIONS(9043), 1, sym_word, - ACTIONS(9964), 1, + ACTIONS(9047), 1, sym_test_operator, - STATE(1814), 1, + STATE(2565), 1, aux_sym__literal_repeat1, - ACTIONS(8324), 2, + STATE(2679), 1, + sym_concatenation, + ACTIONS(7323), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9962), 2, + ACTIONS(9045), 2, sym_raw_string, sym_ansi_c_string, - STATE(677), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1663), 9, + STATE(2211), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -249648,49 +238539,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [207079] = 20, + [197692] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(8114), 1, + ACTIONS(7299), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8116), 1, + ACTIONS(7301), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8118), 1, + ACTIONS(7303), 1, anon_sym_DOLLAR, - ACTIONS(8120), 1, + ACTIONS(7305), 1, sym__special_character, - ACTIONS(8122), 1, + ACTIONS(7307), 1, anon_sym_DQUOTE, - ACTIONS(8126), 1, + ACTIONS(7311), 1, aux_sym_number_token1, - ACTIONS(8128), 1, + ACTIONS(7313), 1, aux_sym_number_token2, - ACTIONS(8130), 1, + ACTIONS(7315), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8132), 1, + ACTIONS(7317), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8134), 1, + ACTIONS(7319), 1, anon_sym_BQUOTE, - ACTIONS(8136), 1, + ACTIONS(7321), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8146), 1, + ACTIONS(7331), 1, sym__brace_start, - ACTIONS(9966), 1, + ACTIONS(9049), 1, sym_word, - ACTIONS(9970), 1, + ACTIONS(9053), 1, sym_test_operator, - STATE(1320), 1, + STATE(2557), 1, aux_sym__literal_repeat1, - ACTIONS(8138), 2, + STATE(2863), 1, + sym_concatenation, + ACTIONS(7323), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9968), 2, + ACTIONS(9051), 2, sym_raw_string, sym_ansi_c_string, - STATE(569), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1021), 9, + STATE(2193), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -249700,50 +238590,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [207151] = 21, + [197763] = 20, ACTIONS(71), 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(9972), 1, - sym_word, - ACTIONS(9974), 1, + ACTIONS(7299), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9976), 1, + ACTIONS(7301), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9978), 1, + ACTIONS(7303), 1, + anon_sym_DOLLAR, + ACTIONS(7305), 1, sym__special_character, - ACTIONS(9980), 1, + ACTIONS(7307), 1, anon_sym_DQUOTE, - ACTIONS(9984), 1, + ACTIONS(7311), 1, + aux_sym_number_token1, + ACTIONS(7313), 1, + aux_sym_number_token2, + ACTIONS(7315), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9986), 1, + ACTIONS(7317), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7319), 1, anon_sym_BQUOTE, - ACTIONS(9988), 1, + ACTIONS(7321), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9992), 1, + ACTIONS(7331), 1, + sym__brace_start, + ACTIONS(9055), 1, + sym_word, + ACTIONS(9059), 1, sym_test_operator, - ACTIONS(9994), 1, - sym_regex, - STATE(1436), 1, + STATE(2566), 1, aux_sym__literal_repeat1, - STATE(1483), 1, + STATE(2683), 1, sym_concatenation, - ACTIONS(9982), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(9990), 2, + ACTIONS(7323), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1276), 9, + ACTIONS(9057), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2215), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -249753,49 +238641,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [207225] = 20, - ACTIONS(71), 1, + [197834] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(8114), 1, + ACTIONS(577), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8116), 1, + ACTIONS(579), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8118), 1, - anon_sym_DOLLAR, - ACTIONS(8120), 1, - sym__special_character, - ACTIONS(8122), 1, + ACTIONS(587), 1, anon_sym_DQUOTE, - ACTIONS(8126), 1, + ACTIONS(591), 1, aux_sym_number_token1, - ACTIONS(8128), 1, + ACTIONS(593), 1, aux_sym_number_token2, - ACTIONS(8130), 1, + ACTIONS(595), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8132), 1, + ACTIONS(597), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8134), 1, - anon_sym_BQUOTE, - ACTIONS(8136), 1, + ACTIONS(601), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8146), 1, + ACTIONS(607), 1, sym__brace_start, - ACTIONS(9966), 1, + ACTIONS(4667), 1, + anon_sym_BQUOTE, + ACTIONS(8655), 1, sym_word, - ACTIONS(9970), 1, - sym_test_operator, - STATE(1320), 1, - aux_sym__literal_repeat1, - ACTIONS(8138), 2, + ACTIONS(8659), 1, + sym__comment_word, + ACTIONS(9061), 1, + anon_sym_DOLLAR, + ACTIONS(603), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9968), 2, + ACTIONS(8663), 2, + sym_test_operator, + sym__special_character, + ACTIONS(8661), 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(2387), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -249805,129 +238690,146 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [207297] = 8, + [197901] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1191), 1, - sym_file_descriptor, - ACTIONS(9998), 1, + ACTIONS(577), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(579), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(587), 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, + ACTIONS(591), 1, + aux_sym_number_token1, + ACTIONS(593), 1, + aux_sym_number_token2, + ACTIONS(595), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(601), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(607), 1, + sym__brace_start, + ACTIONS(4667), 1, + anon_sym_BQUOTE, + ACTIONS(8655), 1, + sym_word, + ACTIONS(8659), 1, + sym__comment_word, + ACTIONS(9063), 1, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [207345] = 8, + ACTIONS(603), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8663), 2, + sym_test_operator, + sym__special_character, + ACTIONS(8661), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2387), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [197968] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1197), 1, - sym_file_descriptor, - ACTIONS(10006), 1, + ACTIONS(2985), 1, + anon_sym_DOLLAR, + ACTIONS(2991), 1, + aux_sym_number_token1, + ACTIONS(2993), 1, + aux_sym_number_token2, + ACTIONS(2997), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3009), 1, + sym__brace_start, + ACTIONS(9065), 1, + sym_word, + ACTIONS(9067), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9069), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9073), 1, anon_sym_DQUOTE, - ACTIONS(10010), 1, - sym_variable_name, - STATE(5422), 1, + ACTIONS(9077), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9079), 1, + anon_sym_BQUOTE, + ACTIONS(9081), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9085), 1, + sym__comment_word, + ACTIONS(9071), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9083), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9075), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1618), 9, + sym_arithmetic_expansion, + sym_brace_expression, 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, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [198035] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(3558), 1, + ACTIONS(4986), 1, + sym_word, + ACTIONS(4992), 1, anon_sym_DOLLAR, - ACTIONS(3564), 1, + ACTIONS(4998), 1, aux_sym_number_token1, - ACTIONS(3566), 1, + ACTIONS(5000), 1, aux_sym_number_token2, - ACTIONS(3570), 1, + ACTIONS(5004), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3582), 1, - sym__brace_start, - ACTIONS(7605), 1, - sym_word, - ACTIONS(7613), 1, + ACTIONS(5012), 1, sym_test_operator, - ACTIONS(9786), 1, + ACTIONS(5014), 1, + sym__brace_start, + ACTIONS(9087), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9788), 1, + ACTIONS(9089), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9790), 1, + ACTIONS(9091), 1, sym__special_character, - ACTIONS(9792), 1, + ACTIONS(9093), 1, anon_sym_DQUOTE, - ACTIONS(9796), 1, + ACTIONS(9097), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9798), 1, + ACTIONS(9099), 1, anon_sym_BQUOTE, - ACTIONS(9800), 1, + ACTIONS(9101), 1, anon_sym_DOLLAR_BQUOTE, - STATE(4982), 1, + STATE(5256), 1, aux_sym__literal_repeat1, - ACTIONS(9794), 2, + STATE(5322), 1, + sym_concatenation, + ACTIONS(9095), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(9802), 2, + ACTIONS(9103), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3365), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(4614), 9, + STATE(5212), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -249937,89 +238839,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [207465] = 8, - 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, + [198106] = 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(4992), 1, anon_sym_DOLLAR, - ACTIONS(8308), 1, - anon_sym_DQUOTE, - ACTIONS(8312), 1, + ACTIONS(4998), 1, aux_sym_number_token1, - ACTIONS(8314), 1, + ACTIONS(5000), 1, aux_sym_number_token2, - ACTIONS(8316), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, + ACTIONS(5004), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8320), 1, - anon_sym_BQUOTE, - ACTIONS(8322), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8332), 1, + ACTIONS(5014), 1, sym__brace_start, - ACTIONS(8344), 1, + ACTIONS(9087), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9089), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9091), 1, sym__special_character, - ACTIONS(10012), 1, + ACTIONS(9093), 1, + anon_sym_DQUOTE, + ACTIONS(9097), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9099), 1, + anon_sym_BQUOTE, + ACTIONS(9101), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9105), 1, sym_word, - ACTIONS(10016), 1, + ACTIONS(9109), 1, sym_test_operator, - STATE(1814), 1, + STATE(5296), 1, aux_sym__literal_repeat1, - ACTIONS(8324), 2, + STATE(5324), 1, + sym_concatenation, + ACTIONS(9103), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10014), 2, + ACTIONS(9107), 2, sym_raw_string, sym_ansi_c_string, - STATE(623), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1355), 9, + STATE(5219), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -250029,49 +238890,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [207585] = 20, + [198177] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(3004), 1, - sym_word, - ACTIONS(3010), 1, + ACTIONS(4992), 1, anon_sym_DOLLAR, - ACTIONS(3016), 1, + ACTIONS(4998), 1, aux_sym_number_token1, - ACTIONS(3018), 1, + ACTIONS(5000), 1, aux_sym_number_token2, - ACTIONS(3022), 1, + ACTIONS(5004), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3030), 1, - sym_test_operator, - ACTIONS(3032), 1, + ACTIONS(5014), 1, sym__brace_start, - ACTIONS(9686), 1, + ACTIONS(5016), 1, + sym_word, + ACTIONS(5018), 1, + sym_test_operator, + ACTIONS(9087), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9688), 1, + ACTIONS(9089), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9692), 1, + ACTIONS(9091), 1, + sym__special_character, + ACTIONS(9093), 1, anon_sym_DQUOTE, - ACTIONS(9696), 1, + ACTIONS(9097), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9698), 1, + ACTIONS(9099), 1, anon_sym_BQUOTE, - ACTIONS(9700), 1, + ACTIONS(9101), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10018), 1, - sym__special_character, - STATE(2112), 1, + STATE(5294), 1, aux_sym__literal_repeat1, - ACTIONS(9702), 2, + STATE(5321), 1, + sym_concatenation, + ACTIONS(9103), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10020), 2, + ACTIONS(9111), 2, sym_raw_string, sym_ansi_c_string, - STATE(645), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1653), 9, + STATE(5222), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -250081,49 +238941,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [207657] = 20, + [198248] = 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(4992), 1, anon_sym_DOLLAR, - ACTIONS(8308), 1, - anon_sym_DQUOTE, - ACTIONS(8312), 1, + ACTIONS(4998), 1, aux_sym_number_token1, - ACTIONS(8314), 1, + ACTIONS(5000), 1, aux_sym_number_token2, - ACTIONS(8316), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, + ACTIONS(5004), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8320), 1, - anon_sym_BQUOTE, - ACTIONS(8322), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8332), 1, + ACTIONS(5014), 1, sym__brace_start, - ACTIONS(8344), 1, + ACTIONS(9087), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9089), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9091), 1, sym__special_character, - ACTIONS(10012), 1, + ACTIONS(9093), 1, + anon_sym_DQUOTE, + ACTIONS(9097), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9099), 1, + anon_sym_BQUOTE, + ACTIONS(9101), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9113), 1, sym_word, - ACTIONS(10016), 1, + ACTIONS(9117), 1, sym_test_operator, - STATE(1814), 1, + STATE(5254), 1, aux_sym__literal_repeat1, - ACTIONS(8324), 2, + STATE(5325), 1, + sym_concatenation, + ACTIONS(9103), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10014), 2, + ACTIONS(9115), 2, sym_raw_string, sym_ansi_c_string, - STATE(615), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1355), 9, + STATE(5238), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -250133,49 +238992,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [207729] = 20, - ACTIONS(71), 1, + [198319] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3632), 1, - sym_word, - ACTIONS(3638), 1, - anon_sym_DOLLAR, - ACTIONS(3644), 1, + ACTIONS(1380), 1, aux_sym_number_token1, - ACTIONS(3646), 1, + ACTIONS(1382), 1, aux_sym_number_token2, - ACTIONS(3650), 1, + ACTIONS(1386), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3658), 1, - sym_test_operator, - ACTIONS(3660), 1, + ACTIONS(1398), 1, sym__brace_start, - ACTIONS(9804), 1, + ACTIONS(8669), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9806), 1, + ACTIONS(8671), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9810), 1, + ACTIONS(8675), 1, anon_sym_DQUOTE, - ACTIONS(9814), 1, + ACTIONS(8679), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9816), 1, + ACTIONS(8681), 1, anon_sym_BQUOTE, - ACTIONS(9818), 1, + ACTIONS(8683), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9948), 1, - sym__special_character, - STATE(2253), 1, - aux_sym__literal_repeat1, - ACTIONS(9820), 2, + ACTIONS(9119), 1, + sym_word, + ACTIONS(9121), 1, + anon_sym_DOLLAR, + ACTIONS(9127), 1, + sym__comment_word, + ACTIONS(8685), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9950), 2, + ACTIONS(9123), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9125), 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(811), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -250185,89 +239041,95 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [207801] = 8, + [198386] = 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, - 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(3970), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3972), 1, anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3978), 1, + anon_sym_DQUOTE, + ACTIONS(3982), 1, aux_sym_number_token1, + ACTIONS(3984), 1, aux_sym_number_token2, + ACTIONS(3986), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3988), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3990), 1, anon_sym_BQUOTE, + ACTIONS(3992), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4000), 1, + sym__brace_start, + ACTIONS(9129), 1, + sym_word, + ACTIONS(9131), 1, + anon_sym_DOLLAR, + ACTIONS(9137), 1, + sym__comment_word, + ACTIONS(3994), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [207849] = 20, - ACTIONS(71), 1, + ACTIONS(9133), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9135), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2830), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [198453] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3638), 1, + ACTIONS(1555), 1, anon_sym_DOLLAR, - ACTIONS(3644), 1, + ACTIONS(1561), 1, aux_sym_number_token1, - ACTIONS(3646), 1, + ACTIONS(1563), 1, aux_sym_number_token2, - ACTIONS(3650), 1, + ACTIONS(1567), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3660), 1, + ACTIONS(1579), 1, sym__brace_start, - ACTIONS(4771), 1, - sym_word, - ACTIONS(4775), 1, - sym_test_operator, - ACTIONS(9804), 1, + ACTIONS(8803), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9806), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9810), 1, + ACTIONS(8809), 1, anon_sym_DQUOTE, - ACTIONS(9814), 1, + ACTIONS(8813), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9816), 1, + ACTIONS(8815), 1, anon_sym_BQUOTE, - ACTIONS(9818), 1, + ACTIONS(8817), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10022), 1, - sym__special_character, - STATE(2253), 1, - aux_sym__literal_repeat1, - ACTIONS(9820), 2, + ACTIONS(9139), 1, + sym_word, + ACTIONS(9145), 1, + sym__comment_word, + ACTIONS(8819), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10024), 2, + ACTIONS(9141), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9143), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(946), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2556), 9, + STATE(1161), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -250277,49 +239139,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [207921] = 20, + [198520] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(3004), 1, + ACTIONS(4729), 1, sym_word, - ACTIONS(3010), 1, - anon_sym_DOLLAR, - ACTIONS(3016), 1, - aux_sym_number_token1, - ACTIONS(3018), 1, - aux_sym_number_token2, - ACTIONS(3022), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3030), 1, - sym_test_operator, - ACTIONS(3032), 1, - sym__brace_start, - ACTIONS(9686), 1, + ACTIONS(4731), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9688), 1, + ACTIONS(4733), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9692), 1, + ACTIONS(4735), 1, + anon_sym_DOLLAR, + ACTIONS(4737), 1, + sym__special_character, + ACTIONS(4739), 1, anon_sym_DQUOTE, - ACTIONS(9696), 1, + ACTIONS(4743), 1, + aux_sym_number_token1, + ACTIONS(4745), 1, + aux_sym_number_token2, + ACTIONS(4747), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9698), 1, + ACTIONS(4749), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4751), 1, anon_sym_BQUOTE, - ACTIONS(9700), 1, + ACTIONS(4753), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10018), 1, - sym__special_character, - STATE(2112), 1, + ACTIONS(4757), 1, + sym_test_operator, + ACTIONS(4759), 1, + sym__brace_start, + STATE(5163), 1, aux_sym__literal_repeat1, - ACTIONS(9702), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10020), 2, + STATE(5284), 1, + sym_concatenation, + ACTIONS(4741), 2, sym_raw_string, sym_ansi_c_string, - STATE(646), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1653), 9, + ACTIONS(4755), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(5040), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -250329,89 +239190,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, + [198591] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(8300), 1, + ACTIONS(4731), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8302), 1, + ACTIONS(4733), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8304), 1, + ACTIONS(4735), 1, anon_sym_DOLLAR, - ACTIONS(8308), 1, + ACTIONS(4737), 1, + sym__special_character, + ACTIONS(4739), 1, anon_sym_DQUOTE, - ACTIONS(8312), 1, + ACTIONS(4743), 1, aux_sym_number_token1, - ACTIONS(8314), 1, + ACTIONS(4745), 1, aux_sym_number_token2, - ACTIONS(8316), 1, + ACTIONS(4747), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, + ACTIONS(4749), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8320), 1, + ACTIONS(4751), 1, anon_sym_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(4753), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8332), 1, + ACTIONS(4759), 1, sym__brace_start, - ACTIONS(8352), 1, - sym__special_character, - ACTIONS(10026), 1, + ACTIONS(9147), 1, sym_word, - ACTIONS(10030), 1, + ACTIONS(9151), 1, sym_test_operator, - STATE(1814), 1, + STATE(5185), 1, aux_sym__literal_repeat1, - ACTIONS(8324), 2, + STATE(5307), 1, + sym_concatenation, + ACTIONS(4755), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10028), 2, + ACTIONS(9149), 2, sym_raw_string, sym_ansi_c_string, - STATE(795), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2287), 9, + STATE(5081), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -250421,49 +239241,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [208113] = 20, + [198662] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(8300), 1, + ACTIONS(4731), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8302), 1, + ACTIONS(4733), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8304), 1, + ACTIONS(4735), 1, anon_sym_DOLLAR, - ACTIONS(8308), 1, + ACTIONS(4737), 1, + sym__special_character, + ACTIONS(4739), 1, anon_sym_DQUOTE, - ACTIONS(8312), 1, + ACTIONS(4743), 1, aux_sym_number_token1, - ACTIONS(8314), 1, + ACTIONS(4745), 1, aux_sym_number_token2, - ACTIONS(8316), 1, + ACTIONS(4747), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, + ACTIONS(4749), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8320), 1, + ACTIONS(4751), 1, anon_sym_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(4753), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8332), 1, + ACTIONS(4759), 1, sym__brace_start, - ACTIONS(8352), 1, - sym__special_character, - ACTIONS(10026), 1, + ACTIONS(4761), 1, sym_word, - ACTIONS(10030), 1, + ACTIONS(4765), 1, sym_test_operator, - STATE(1814), 1, + STATE(5169), 1, aux_sym__literal_repeat1, - ACTIONS(8324), 2, + STATE(5270), 1, + sym_concatenation, + ACTIONS(4755), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10028), 2, + ACTIONS(4763), 2, sym_raw_string, sym_ansi_c_string, - STATE(797), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2287), 9, + STATE(5057), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -250473,49 +239292,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [208185] = 20, + [198733] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(7974), 1, + ACTIONS(4731), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7976), 1, + ACTIONS(4733), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7978), 1, + ACTIONS(4735), 1, anon_sym_DOLLAR, - ACTIONS(7980), 1, + ACTIONS(4737), 1, sym__special_character, - ACTIONS(7982), 1, + ACTIONS(4739), 1, anon_sym_DQUOTE, - ACTIONS(7986), 1, + ACTIONS(4743), 1, aux_sym_number_token1, - ACTIONS(7988), 1, + ACTIONS(4745), 1, aux_sym_number_token2, - ACTIONS(7990), 1, + ACTIONS(4747), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7992), 1, + ACTIONS(4749), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7994), 1, + ACTIONS(4751), 1, anon_sym_BQUOTE, - ACTIONS(7996), 1, + ACTIONS(4753), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8006), 1, + ACTIONS(4759), 1, sym__brace_start, - ACTIONS(9854), 1, + ACTIONS(9153), 1, sym_word, - ACTIONS(9858), 1, + ACTIONS(9157), 1, sym_test_operator, - STATE(3442), 1, + STATE(5188), 1, aux_sym__literal_repeat1, - ACTIONS(7998), 2, + STATE(5260), 1, + sym_concatenation, + ACTIONS(4755), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9856), 2, + ACTIONS(9155), 2, sym_raw_string, sym_ansi_c_string, - STATE(1746), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3373), 9, + STATE(5093), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -250525,50 +239343,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [208257] = 21, - ACTIONS(71), 1, + [198804] = 18, + 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, + ACTIONS(3970), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9976), 1, + ACTIONS(3972), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9980), 1, + ACTIONS(3978), 1, anon_sym_DQUOTE, - ACTIONS(9984), 1, + ACTIONS(3982), 1, + aux_sym_number_token1, + ACTIONS(3984), 1, + aux_sym_number_token2, + ACTIONS(3986), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9986), 1, + ACTIONS(3988), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3990), 1, anon_sym_BQUOTE, - ACTIONS(9988), 1, + ACTIONS(3992), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9994), 1, - sym_regex, - ACTIONS(10032), 1, + ACTIONS(4000), 1, + sym__brace_start, + ACTIONS(9129), 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(9137), 1, + sym__comment_word, + ACTIONS(9159), 1, + anon_sym_DOLLAR, + ACTIONS(3994), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10036), 2, + ACTIONS(9133), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9135), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1894), 9, + STATE(2830), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -250578,11 +239392,9 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [208331] = 21, - ACTIONS(71), 1, + [198871] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(1374), 1, - anon_sym_DOLLAR, ACTIONS(1380), 1, aux_sym_number_token1, ACTIONS(1382), 1, @@ -250591,37 +239403,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(1398), 1, sym__brace_start, - ACTIONS(10040), 1, - sym_word, - ACTIONS(10042), 1, + ACTIONS(8669), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10044), 1, + ACTIONS(8671), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10046), 1, - sym__special_character, - ACTIONS(10048), 1, + ACTIONS(8675), 1, anon_sym_DQUOTE, - ACTIONS(10052), 1, + ACTIONS(8679), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10054), 1, + ACTIONS(8681), 1, anon_sym_BQUOTE, - ACTIONS(10056), 1, + ACTIONS(8683), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10060), 1, + ACTIONS(9119), 1, + sym_word, + ACTIONS(9127), 1, + sym__comment_word, + ACTIONS(9161), 1, + anon_sym_DOLLAR, + ACTIONS(8685), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9123), 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(9125), 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(811), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -250631,49 +239441,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [208405] = 20, - ACTIONS(71), 1, + [198938] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3558), 1, + ACTIONS(7337), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7339), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7341), 1, anon_sym_DOLLAR, - ACTIONS(3564), 1, + ACTIONS(7345), 1, + anon_sym_DQUOTE, + ACTIONS(7349), 1, aux_sym_number_token1, - ACTIONS(3566), 1, + ACTIONS(7351), 1, aux_sym_number_token2, - ACTIONS(3570), 1, + ACTIONS(7353), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7355), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3582), 1, + ACTIONS(7357), 1, + anon_sym_BQUOTE, + ACTIONS(7359), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7369), 1, sym__brace_start, - ACTIONS(7605), 1, + ACTIONS(8945), 1, sym_word, - ACTIONS(7613), 1, + ACTIONS(8953), 1, + sym__comment_word, + ACTIONS(7361), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8949), 2, sym_test_operator, - ACTIONS(9786), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9788), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9790), 1, sym__special_character, - ACTIONS(9792), 1, - anon_sym_DQUOTE, - ACTIONS(9796), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9798), 1, - anon_sym_BQUOTE, - ACTIONS(9800), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(4982), 1, - aux_sym__literal_repeat1, - ACTIONS(9794), 2, + ACTIONS(8951), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - ACTIONS(9802), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3367), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(4614), 9, + STATE(3257), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -250683,49 +239490,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [208477] = 20, + [199005] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(3638), 1, + ACTIONS(3970), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3972), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3974), 1, anon_sym_DOLLAR, - ACTIONS(3644), 1, + ACTIONS(3976), 1, + sym__special_character, + ACTIONS(3978), 1, + anon_sym_DQUOTE, + ACTIONS(3982), 1, aux_sym_number_token1, - ACTIONS(3646), 1, + ACTIONS(3984), 1, aux_sym_number_token2, - ACTIONS(3650), 1, + ACTIONS(3986), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3988), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3660), 1, + ACTIONS(3990), 1, + anon_sym_BQUOTE, + ACTIONS(3992), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4000), 1, sym__brace_start, - ACTIONS(4771), 1, + ACTIONS(9163), 1, sym_word, - ACTIONS(4775), 1, + ACTIONS(9167), 1, sym_test_operator, - ACTIONS(9804), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9806), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9810), 1, - anon_sym_DQUOTE, - ACTIONS(9814), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9816), 1, - anon_sym_BQUOTE, - ACTIONS(9818), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10022), 1, - sym__special_character, - STATE(2253), 1, + STATE(2918), 1, aux_sym__literal_repeat1, - ACTIONS(9820), 2, + STATE(3209), 1, + sym_concatenation, + ACTIONS(3994), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10024), 2, + ACTIONS(9165), 2, sym_raw_string, sym_ansi_c_string, - STATE(947), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2556), 9, + STATE(2574), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -250735,49 +239541,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [208549] = 20, + [199076] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(3010), 1, + ACTIONS(4507), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4509), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4511), 1, anon_sym_DOLLAR, - ACTIONS(3016), 1, + ACTIONS(4513), 1, + sym__special_character, + ACTIONS(4515), 1, + anon_sym_DQUOTE, + ACTIONS(4519), 1, aux_sym_number_token1, - ACTIONS(3018), 1, + ACTIONS(4521), 1, aux_sym_number_token2, - ACTIONS(3022), 1, + ACTIONS(4523), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4525), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3032), 1, + ACTIONS(4527), 1, + anon_sym_BQUOTE, + ACTIONS(4529), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4535), 1, sym__brace_start, - ACTIONS(4362), 1, + ACTIONS(9169), 1, sym_word, - ACTIONS(4366), 1, + ACTIONS(9173), 1, sym_test_operator, - ACTIONS(9686), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9688), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9692), 1, - anon_sym_DQUOTE, - ACTIONS(9696), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9698), 1, - anon_sym_BQUOTE, - ACTIONS(9700), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10064), 1, - sym__special_character, - STATE(2112), 1, + STATE(5123), 1, aux_sym__literal_repeat1, - ACTIONS(9702), 2, + STATE(5229), 1, + sym_concatenation, + ACTIONS(4531), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10066), 2, + ACTIONS(9171), 2, sym_raw_string, sym_ansi_c_string, - STATE(854), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2413), 9, + STATE(4984), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -250787,49 +239592,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [208621] = 20, + [199147] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(3010), 1, + ACTIONS(3970), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3972), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3974), 1, anon_sym_DOLLAR, - ACTIONS(3016), 1, + ACTIONS(3976), 1, + sym__special_character, + ACTIONS(3978), 1, + anon_sym_DQUOTE, + ACTIONS(3982), 1, aux_sym_number_token1, - ACTIONS(3018), 1, + ACTIONS(3984), 1, aux_sym_number_token2, - ACTIONS(3022), 1, + ACTIONS(3986), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3988), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3032), 1, + ACTIONS(3990), 1, + anon_sym_BQUOTE, + ACTIONS(3992), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4000), 1, sym__brace_start, - ACTIONS(4362), 1, + ACTIONS(9175), 1, sym_word, - ACTIONS(4366), 1, + ACTIONS(9179), 1, sym_test_operator, - ACTIONS(9686), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9688), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9692), 1, - anon_sym_DQUOTE, - ACTIONS(9696), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9698), 1, - anon_sym_BQUOTE, - ACTIONS(9700), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10064), 1, - sym__special_character, - STATE(2112), 1, + STATE(2929), 1, aux_sym__literal_repeat1, - ACTIONS(9702), 2, + STATE(3178), 1, + sym_concatenation, + ACTIONS(3994), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10066), 2, + ACTIONS(9177), 2, sym_raw_string, sym_ansi_c_string, - STATE(827), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2413), 9, + STATE(2577), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -250839,50 +239643,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [208693] = 21, + [199218] = 20, ACTIONS(71), 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, + ACTIONS(4507), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9976), 1, + ACTIONS(4509), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9980), 1, + ACTIONS(4511), 1, + anon_sym_DOLLAR, + ACTIONS(4513), 1, + sym__special_character, + ACTIONS(4515), 1, anon_sym_DQUOTE, - ACTIONS(9984), 1, + ACTIONS(4519), 1, + aux_sym_number_token1, + ACTIONS(4521), 1, + aux_sym_number_token2, + ACTIONS(4523), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9986), 1, + ACTIONS(4525), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4527), 1, anon_sym_BQUOTE, - ACTIONS(9988), 1, + ACTIONS(4529), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9994), 1, - sym_regex, - ACTIONS(10068), 1, + ACTIONS(4535), 1, + sym__brace_start, + ACTIONS(9181), 1, sym_word, - ACTIONS(10070), 1, - sym__special_character, - ACTIONS(10074), 1, + ACTIONS(9185), 1, sym_test_operator, - STATE(1436), 1, + STATE(5136), 1, aux_sym__literal_repeat1, - STATE(1483), 1, + STATE(5234), 1, sym_concatenation, - ACTIONS(9990), 2, + ACTIONS(4531), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10072), 2, + ACTIONS(9183), 2, sym_raw_string, sym_ansi_c_string, - STATE(1028), 9, + STATE(4926), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -250892,86 +239694,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [208767] = 8, - ACTIONS(3), 1, + [199289] = 20, + ACTIONS(71), 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, + ACTIONS(7159), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7161), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(7163), 1, + anon_sym_DOLLAR, + ACTIONS(7165), 1, sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [208815] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7936), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7938), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7944), 1, + ACTIONS(7167), 1, anon_sym_DQUOTE, - ACTIONS(7948), 1, + ACTIONS(7171), 1, aux_sym_number_token1, - ACTIONS(7950), 1, + ACTIONS(7173), 1, aux_sym_number_token2, - ACTIONS(7952), 1, + ACTIONS(7175), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7954), 1, + ACTIONS(7177), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7956), 1, + ACTIONS(7179), 1, anon_sym_BQUOTE, - ACTIONS(7958), 1, + ACTIONS(7181), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7968), 1, + ACTIONS(7191), 1, sym__brace_start, - ACTIONS(10076), 1, + ACTIONS(9187), 1, sym_word, - ACTIONS(10078), 1, - anon_sym_DOLLAR, - ACTIONS(10084), 1, - sym__comment_word, - ACTIONS(7960), 2, + ACTIONS(9191), 1, + sym_test_operator, + STATE(1573), 1, + aux_sym__literal_repeat1, + STATE(1759), 1, + sym_concatenation, + ACTIONS(7183), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10080), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10082), 3, - sym__bare_dollar, + ACTIONS(9189), 2, sym_raw_string, sym_ansi_c_string, - STATE(4271), 9, + STATE(1208), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -250981,46 +239745,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [208882] = 18, + [199360] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5091), 1, + ACTIONS(7159), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5093), 1, + ACTIONS(7161), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5095), 1, - anon_sym_DOLLAR, - ACTIONS(5099), 1, + ACTIONS(7167), 1, anon_sym_DQUOTE, - ACTIONS(5103), 1, + ACTIONS(7171), 1, aux_sym_number_token1, - ACTIONS(5105), 1, + ACTIONS(7173), 1, aux_sym_number_token2, - ACTIONS(5107), 1, + ACTIONS(7175), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5109), 1, + ACTIONS(7177), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5111), 1, + ACTIONS(7179), 1, anon_sym_BQUOTE, - ACTIONS(5113), 1, + ACTIONS(7181), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5119), 1, + ACTIONS(7191), 1, sym__brace_start, - ACTIONS(10086), 1, + ACTIONS(9193), 1, sym_word, - ACTIONS(10092), 1, + ACTIONS(9195), 1, + anon_sym_DOLLAR, + ACTIONS(9201), 1, sym__comment_word, - ACTIONS(5115), 2, + ACTIONS(7183), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10088), 2, + ACTIONS(9197), 2, sym_test_operator, sym__special_character, - ACTIONS(10090), 3, + ACTIONS(9199), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5342), 9, + STATE(1463), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -251030,46 +239794,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [208949] = 18, + [199427] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8114), 1, + ACTIONS(9203), 1, + sym_word, + ACTIONS(9205), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8116), 1, + ACTIONS(9207), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8118), 1, + ACTIONS(9209), 1, anon_sym_DOLLAR, - ACTIONS(8122), 1, + ACTIONS(9213), 1, anon_sym_DQUOTE, - ACTIONS(8126), 1, + ACTIONS(9217), 1, aux_sym_number_token1, - ACTIONS(8128), 1, + ACTIONS(9219), 1, aux_sym_number_token2, - ACTIONS(8130), 1, + ACTIONS(9221), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8132), 1, + ACTIONS(9223), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8134), 1, + ACTIONS(9225), 1, anon_sym_BQUOTE, - ACTIONS(8136), 1, + ACTIONS(9227), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8146), 1, - sym__brace_start, - ACTIONS(10094), 1, - sym_word, - ACTIONS(10100), 1, + ACTIONS(9231), 1, sym__comment_word, - ACTIONS(8138), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10096), 2, + ACTIONS(9233), 1, + sym__brace_start, + ACTIONS(9211), 2, sym_test_operator, sym__special_character, - ACTIONS(10098), 3, + ACTIONS(9229), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9215), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1172), 9, + STATE(2252), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -251079,84 +239843,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, + [199494] = 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(4505), 1, + sym_word, + ACTIONS(4507), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8014), 1, + ACTIONS(4509), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8018), 1, + ACTIONS(4511), 1, + anon_sym_DOLLAR, + ACTIONS(4513), 1, + sym__special_character, + ACTIONS(4515), 1, anon_sym_DQUOTE, - ACTIONS(8022), 1, + ACTIONS(4519), 1, + aux_sym_number_token1, + ACTIONS(4521), 1, + aux_sym_number_token2, + ACTIONS(4523), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8024), 1, + ACTIONS(4525), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4527), 1, anon_sym_BQUOTE, - ACTIONS(8026), 1, + ACTIONS(4529), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10104), 1, - sym_word, - ACTIONS(10106), 1, - anon_sym_DOLLAR, - ACTIONS(10112), 1, - sym__comment_word, - ACTIONS(8028), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10108), 2, + ACTIONS(4533), 1, sym_test_operator, - sym__special_character, - ACTIONS(10110), 3, - sym__bare_dollar, + ACTIONS(4535), 1, + sym__brace_start, + STATE(5122), 1, + aux_sym__literal_repeat1, + STATE(5226), 1, + sym_concatenation, + ACTIONS(4517), 2, sym_raw_string, sym_ansi_c_string, - STATE(1703), 9, + ACTIONS(4531), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(4976), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -251166,46 +239894,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [209128] = 18, - ACTIONS(3), 1, + [199565] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(1591), 1, - 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(8160), 1, + ACTIONS(7075), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8162), 1, + ACTIONS(7077), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8166), 1, + ACTIONS(7079), 1, + anon_sym_DOLLAR, + ACTIONS(7081), 1, + sym__special_character, + ACTIONS(7083), 1, anon_sym_DQUOTE, - ACTIONS(8170), 1, + ACTIONS(7087), 1, + aux_sym_number_token1, + ACTIONS(7089), 1, + aux_sym_number_token2, + ACTIONS(7091), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8172), 1, + ACTIONS(7093), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7095), 1, anon_sym_BQUOTE, - ACTIONS(8174), 1, + ACTIONS(7097), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10114), 1, + ACTIONS(7107), 1, + sym__brace_start, + ACTIONS(9235), 1, sym_word, - ACTIONS(10120), 1, - sym__comment_word, - ACTIONS(8176), 2, + ACTIONS(9239), 1, + sym_test_operator, + STATE(1298), 1, + aux_sym__literal_repeat1, + STATE(1471), 1, + sym_concatenation, + ACTIONS(7099), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10116), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10118), 3, - sym__bare_dollar, + ACTIONS(9237), 2, sym_raw_string, sym_ansi_c_string, - STATE(1171), 9, + STATE(1009), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -251215,46 +239945,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [209195] = 18, - ACTIONS(3), 1, + [199636] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(8068), 1, + ACTIONS(4507), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8070), 1, + ACTIONS(4509), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8076), 1, + ACTIONS(4511), 1, + anon_sym_DOLLAR, + ACTIONS(4513), 1, + sym__special_character, + ACTIONS(4515), 1, anon_sym_DQUOTE, - ACTIONS(8080), 1, + ACTIONS(4519), 1, aux_sym_number_token1, - ACTIONS(8082), 1, + ACTIONS(4521), 1, aux_sym_number_token2, - ACTIONS(8084), 1, + ACTIONS(4523), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8086), 1, + ACTIONS(4525), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8088), 1, + ACTIONS(4527), 1, anon_sym_BQUOTE, - ACTIONS(8090), 1, + ACTIONS(4529), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8100), 1, + ACTIONS(4535), 1, sym__brace_start, - ACTIONS(10122), 1, + ACTIONS(4537), 1, sym_word, - ACTIONS(10124), 1, - anon_sym_DOLLAR, - ACTIONS(10130), 1, - sym__comment_word, - ACTIONS(8092), 2, + ACTIONS(4541), 1, + sym_test_operator, + STATE(5132), 1, + aux_sym__literal_repeat1, + STATE(5232), 1, + sym_concatenation, + ACTIONS(4531), 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(4539), 2, sym_raw_string, sym_ansi_c_string, - STATE(5281), 9, + STATE(4902), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -251264,46 +239996,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [209262] = 18, - ACTIONS(3), 1, + [199707] = 20, + ACTIONS(71), 1, sym_comment, - 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(7075), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9788), 1, + ACTIONS(7077), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9792), 1, + ACTIONS(7079), 1, + anon_sym_DOLLAR, + ACTIONS(7081), 1, + sym__special_character, + ACTIONS(7083), 1, anon_sym_DQUOTE, - ACTIONS(9796), 1, + ACTIONS(7087), 1, + aux_sym_number_token1, + ACTIONS(7089), 1, + aux_sym_number_token2, + ACTIONS(7091), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9798), 1, + ACTIONS(7093), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7095), 1, anon_sym_BQUOTE, - ACTIONS(9800), 1, + ACTIONS(7097), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10132), 1, + ACTIONS(7107), 1, + sym__brace_start, + ACTIONS(9241), 1, sym_word, - ACTIONS(10134), 1, - anon_sym_DOLLAR, - ACTIONS(10140), 1, - sym__comment_word, - ACTIONS(9802), 2, + ACTIONS(9245), 1, + sym_test_operator, + STATE(1301), 1, + aux_sym__literal_repeat1, + STATE(1483), 1, + sym_concatenation, + ACTIONS(7099), 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(9243), 2, sym_raw_string, sym_ansi_c_string, - STATE(4898), 9, + STATE(1013), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -251313,46 +240047,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [209329] = 18, - ACTIONS(3), 1, + [199778] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(2289), 1, - anon_sym_DOLLAR, - 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(7197), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10146), 1, + ACTIONS(7199), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10150), 1, + ACTIONS(7201), 1, + anon_sym_DOLLAR, + ACTIONS(7203), 1, + sym__special_character, + ACTIONS(7205), 1, anon_sym_DQUOTE, - ACTIONS(10154), 1, + ACTIONS(7209), 1, + aux_sym_number_token1, + ACTIONS(7211), 1, + aux_sym_number_token2, + ACTIONS(7213), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10156), 1, + ACTIONS(7215), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7217), 1, anon_sym_BQUOTE, - ACTIONS(10158), 1, + ACTIONS(7219), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10162), 1, - sym__comment_word, - ACTIONS(10148), 2, + ACTIONS(7229), 1, + sym__brace_start, + ACTIONS(9247), 1, + sym_word, + ACTIONS(9251), 1, sym_test_operator, - sym__special_character, - ACTIONS(10160), 2, + STATE(1663), 1, + aux_sym__literal_repeat1, + STATE(1760), 1, + sym_concatenation, + ACTIONS(7221), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10152), 3, - sym__bare_dollar, + ACTIONS(9249), 2, sym_raw_string, sym_ansi_c_string, - STATE(1304), 9, + STATE(1255), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -251362,46 +240098,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [209396] = 18, - ACTIONS(3), 1, + [199849] = 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(7197), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8014), 1, + ACTIONS(7199), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8018), 1, + ACTIONS(7201), 1, + anon_sym_DOLLAR, + ACTIONS(7203), 1, + sym__special_character, + ACTIONS(7205), 1, anon_sym_DQUOTE, - ACTIONS(8022), 1, + ACTIONS(7209), 1, + aux_sym_number_token1, + ACTIONS(7211), 1, + aux_sym_number_token2, + ACTIONS(7213), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8024), 1, + ACTIONS(7215), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7217), 1, anon_sym_BQUOTE, - ACTIONS(8026), 1, + ACTIONS(7219), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10104), 1, + ACTIONS(7229), 1, + sym__brace_start, + ACTIONS(9253), 1, sym_word, - ACTIONS(10112), 1, - sym__comment_word, - ACTIONS(10164), 1, - anon_sym_DOLLAR, - ACTIONS(8028), 2, + ACTIONS(9257), 1, + sym_test_operator, + STATE(1632), 1, + aux_sym__literal_repeat1, + STATE(1803), 1, + sym_concatenation, + ACTIONS(7221), 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(9255), 2, sym_raw_string, sym_ansi_c_string, - STATE(1703), 9, + STATE(1290), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -251411,46 +240149,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [209463] = 18, + [199920] = 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(107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10044), 1, + ACTIONS(109), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10048), 1, + ACTIONS(111), 1, + anon_sym_DOLLAR, + ACTIONS(115), 1, anon_sym_DQUOTE, - ACTIONS(10052), 1, + ACTIONS(119), 1, + aux_sym_number_token1, + ACTIONS(121), 1, + aux_sym_number_token2, + ACTIONS(123), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10054), 1, + ACTIONS(125), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(127), 1, anon_sym_BQUOTE, - ACTIONS(10056), 1, + ACTIONS(129), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10166), 1, + ACTIONS(139), 1, + sym__brace_start, + ACTIONS(9259), 1, sym_word, - ACTIONS(10172), 1, + ACTIONS(9265), 1, sym__comment_word, - ACTIONS(10058), 2, + ACTIONS(131), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10168), 2, + ACTIONS(9261), 2, sym_test_operator, sym__special_character, - ACTIONS(10170), 3, + ACTIONS(9263), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(889), 9, + STATE(449), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -251460,46 +240198,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [209530] = 18, - ACTIONS(3), 1, + [199987] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(4064), 1, + ACTIONS(7075), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4066), 1, + ACTIONS(7077), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4072), 1, + ACTIONS(7079), 1, + anon_sym_DOLLAR, + ACTIONS(7081), 1, + sym__special_character, + ACTIONS(7083), 1, anon_sym_DQUOTE, - ACTIONS(4076), 1, + ACTIONS(7087), 1, aux_sym_number_token1, - ACTIONS(4078), 1, + ACTIONS(7089), 1, aux_sym_number_token2, - ACTIONS(4080), 1, + ACTIONS(7091), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4082), 1, + ACTIONS(7093), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4084), 1, + ACTIONS(7095), 1, anon_sym_BQUOTE, - ACTIONS(4086), 1, + ACTIONS(7097), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4096), 1, + ACTIONS(7107), 1, sym__brace_start, - ACTIONS(10174), 1, + ACTIONS(9267), 1, sym_word, - ACTIONS(10176), 1, - anon_sym_DOLLAR, - ACTIONS(10182), 1, - sym__comment_word, - ACTIONS(4088), 2, + ACTIONS(9271), 1, + sym_test_operator, + STATE(1295), 1, + aux_sym__literal_repeat1, + STATE(1467), 1, + sym_concatenation, + ACTIONS(7099), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10178), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10180), 3, - sym__bare_dollar, + ACTIONS(9269), 2, sym_raw_string, sym_ansi_c_string, - STATE(2446), 9, + STATE(1007), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -251509,46 +240249,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [209597] = 18, - ACTIONS(3), 1, + [200058] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(2801), 1, + ACTIONS(3049), 1, anon_sym_DOLLAR, - ACTIONS(2807), 1, + ACTIONS(3055), 1, aux_sym_number_token1, - ACTIONS(2809), 1, + ACTIONS(3057), 1, aux_sym_number_token2, - ACTIONS(2813), 1, + ACTIONS(3061), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2823), 1, + ACTIONS(3071), 1, sym__brace_start, - ACTIONS(9930), 1, + ACTIONS(9273), 1, + sym_word, + ACTIONS(9275), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9932), 1, + ACTIONS(9277), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9936), 1, + ACTIONS(9279), 1, + sym__special_character, + ACTIONS(9281), 1, anon_sym_DQUOTE, - ACTIONS(9940), 1, + ACTIONS(9285), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9942), 1, + ACTIONS(9287), 1, anon_sym_BQUOTE, - ACTIONS(9944), 1, + ACTIONS(9289), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10184), 1, - sym_word, - ACTIONS(10190), 1, - sym__comment_word, - ACTIONS(9946), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10186), 2, + ACTIONS(9293), 1, sym_test_operator, - sym__special_character, - ACTIONS(10188), 3, - sym__bare_dollar, + STATE(4332), 1, + aux_sym__literal_repeat1, + STATE(4528), 1, + sym_concatenation, + ACTIONS(9283), 2, sym_raw_string, sym_ansi_c_string, - STATE(1467), 9, + ACTIONS(9291), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(4026), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -251558,46 +240300,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [209664] = 18, - ACTIONS(3), 1, + [200129] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(45), 1, + ACTIONS(7075), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(47), 1, + ACTIONS(7077), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(53), 1, + ACTIONS(7079), 1, + anon_sym_DOLLAR, + ACTIONS(7081), 1, + sym__special_character, + ACTIONS(7083), 1, anon_sym_DQUOTE, - ACTIONS(57), 1, + ACTIONS(7087), 1, aux_sym_number_token1, - ACTIONS(59), 1, + ACTIONS(7089), 1, aux_sym_number_token2, - ACTIONS(61), 1, + ACTIONS(7091), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(63), 1, + ACTIONS(7093), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(65), 1, + ACTIONS(7095), 1, anon_sym_BQUOTE, - ACTIONS(67), 1, + ACTIONS(7097), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(79), 1, + ACTIONS(7107), 1, sym__brace_start, - ACTIONS(10192), 1, + ACTIONS(9295), 1, sym_word, - ACTIONS(10194), 1, - anon_sym_DOLLAR, - ACTIONS(10200), 1, - sym__comment_word, - ACTIONS(69), 2, + ACTIONS(9299), 1, + sym_test_operator, + STATE(1300), 1, + aux_sym__literal_repeat1, + STATE(1480), 1, + sym_concatenation, + ACTIONS(7099), 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(9297), 2, sym_raw_string, sym_ansi_c_string, - STATE(1110), 9, + STATE(1011), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -251607,46 +240351,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [209731] = 18, - ACTIONS(3), 1, + [200200] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3049), 1, anon_sym_DOLLAR, - ACTIONS(3129), 1, + ACTIONS(3055), 1, aux_sym_number_token1, - ACTIONS(3131), 1, + ACTIONS(3057), 1, aux_sym_number_token2, - ACTIONS(3135), 1, + ACTIONS(3061), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3145), 1, + ACTIONS(3071), 1, sym__brace_start, - ACTIONS(10202), 1, - sym_word, - ACTIONS(10204), 1, + ACTIONS(9275), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10206), 1, + ACTIONS(9277), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10210), 1, + ACTIONS(9279), 1, + sym__special_character, + ACTIONS(9281), 1, anon_sym_DQUOTE, - ACTIONS(10214), 1, + ACTIONS(9285), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10216), 1, + ACTIONS(9287), 1, anon_sym_BQUOTE, - ACTIONS(10218), 1, + ACTIONS(9289), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10222), 1, - sym__comment_word, - ACTIONS(10208), 2, + ACTIONS(9301), 1, + sym_word, + ACTIONS(9305), 1, sym_test_operator, - sym__special_character, - ACTIONS(10220), 2, + STATE(4202), 1, + aux_sym__literal_repeat1, + STATE(4540), 1, + sym_concatenation, + ACTIONS(9291), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10212), 3, - sym__bare_dollar, + ACTIONS(9303), 2, sym_raw_string, sym_ansi_c_string, - STATE(4466), 9, + STATE(4112), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -251656,46 +240402,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [209798] = 18, + [200271] = 18, ACTIONS(3), 1, sym_comment, - 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(3528), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9788), 1, + ACTIONS(3530), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9792), 1, + ACTIONS(3532), 1, + anon_sym_DOLLAR, + ACTIONS(3536), 1, anon_sym_DQUOTE, - ACTIONS(9796), 1, + ACTIONS(3540), 1, + aux_sym_number_token1, + ACTIONS(3542), 1, + aux_sym_number_token2, + ACTIONS(3544), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9798), 1, + ACTIONS(3546), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3548), 1, anon_sym_BQUOTE, - ACTIONS(9800), 1, + ACTIONS(3550), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10132), 1, + ACTIONS(3560), 1, + sym__brace_start, + ACTIONS(9307), 1, sym_word, - ACTIONS(10140), 1, + ACTIONS(9313), 1, sym__comment_word, - ACTIONS(10224), 1, - anon_sym_DOLLAR, - ACTIONS(9802), 2, + ACTIONS(3552), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10136), 2, + ACTIONS(9309), 2, sym_test_operator, sym__special_character, - ACTIONS(10138), 3, + ACTIONS(9311), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4898), 9, + STATE(2442), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -251705,46 +240451,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [209865] = 18, - ACTIONS(3), 1, + [200338] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2790), 1, anon_sym_DOLLAR, - ACTIONS(2343), 1, + ACTIONS(2796), 1, aux_sym_number_token1, - ACTIONS(2345), 1, + ACTIONS(2798), 1, aux_sym_number_token2, - ACTIONS(2349), 1, + ACTIONS(2802), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2359), 1, + ACTIONS(2814), 1, sym__brace_start, - ACTIONS(9628), 1, + ACTIONS(9315), 1, + sym_word, + ACTIONS(9317), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9630), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9634), 1, + ACTIONS(9321), 1, + sym__special_character, + ACTIONS(9323), 1, anon_sym_DQUOTE, - ACTIONS(9638), 1, + ACTIONS(9327), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9640), 1, + ACTIONS(9329), 1, anon_sym_BQUOTE, - ACTIONS(9642), 1, + ACTIONS(9331), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10226), 1, - sym_word, - ACTIONS(10232), 1, - sym__comment_word, - ACTIONS(9644), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10228), 2, + ACTIONS(9335), 1, sym_test_operator, - sym__special_character, - ACTIONS(10230), 3, - sym__bare_dollar, + STATE(2109), 1, + aux_sym__literal_repeat1, + STATE(2232), 1, + sym_concatenation, + ACTIONS(9325), 2, sym_raw_string, sym_ansi_c_string, - STATE(1329), 9, + ACTIONS(9333), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2433), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -251754,46 +240502,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [209932] = 18, - ACTIONS(3), 1, + [200409] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(2928), 1, + ACTIONS(1374), 1, anon_sym_DOLLAR, - ACTIONS(2934), 1, + ACTIONS(1380), 1, aux_sym_number_token1, - ACTIONS(2936), 1, + ACTIONS(1382), 1, aux_sym_number_token2, - ACTIONS(2940), 1, + ACTIONS(1386), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2950), 1, + ACTIONS(1398), 1, sym__brace_start, - ACTIONS(10234), 1, - sym_word, - ACTIONS(10236), 1, + ACTIONS(8669), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10238), 1, + ACTIONS(8671), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10242), 1, + ACTIONS(8673), 1, + sym__special_character, + ACTIONS(8675), 1, anon_sym_DQUOTE, - ACTIONS(10246), 1, + ACTIONS(8679), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10248), 1, + ACTIONS(8681), 1, anon_sym_BQUOTE, - ACTIONS(10250), 1, + ACTIONS(8683), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10254), 1, - sym__comment_word, - ACTIONS(10240), 2, + ACTIONS(9337), 1, + sym_word, + ACTIONS(9341), 1, sym_test_operator, - sym__special_character, - ACTIONS(10252), 2, + STATE(1027), 1, + aux_sym__literal_repeat1, + STATE(1179), 1, + sym_concatenation, + ACTIONS(8685), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10244), 3, - sym__bare_dollar, + ACTIONS(9339), 2, sym_raw_string, sym_ansi_c_string, - STATE(4301), 9, + STATE(748), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -251803,46 +240553,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [209999] = 18, - ACTIONS(3), 1, + [200480] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(1420), 1, + ACTIONS(2790), 1, + anon_sym_DOLLAR, + ACTIONS(2796), 1, aux_sym_number_token1, - ACTIONS(1422), 1, + ACTIONS(2798), 1, aux_sym_number_token2, - ACTIONS(1426), 1, + ACTIONS(2802), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1438), 1, + ACTIONS(2814), 1, sym__brace_start, - ACTIONS(9762), 1, + ACTIONS(9317), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9764), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9768), 1, + ACTIONS(9321), 1, + sym__special_character, + ACTIONS(9323), 1, anon_sym_DQUOTE, - ACTIONS(9772), 1, + ACTIONS(9327), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9774), 1, + ACTIONS(9329), 1, anon_sym_BQUOTE, - ACTIONS(9776), 1, + ACTIONS(9331), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10256), 1, + ACTIONS(9343), 1, sym_word, - ACTIONS(10258), 1, - anon_sym_DOLLAR, - ACTIONS(10264), 1, - sym__comment_word, - ACTIONS(9778), 2, + ACTIONS(9347), 1, + sym_test_operator, + STATE(2121), 1, + aux_sym__literal_repeat1, + STATE(2242), 1, + sym_concatenation, + ACTIONS(9333), 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(9345), 2, sym_raw_string, sym_ansi_c_string, - STATE(1011), 9, + STATE(2437), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -251852,46 +240604,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [210066] = 18, - ACTIONS(3), 1, + [200551] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(701), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(703), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(705), 1, + ACTIONS(1374), 1, anon_sym_DOLLAR, - ACTIONS(709), 1, - anon_sym_DQUOTE, - ACTIONS(713), 1, + ACTIONS(1380), 1, aux_sym_number_token1, - ACTIONS(715), 1, + ACTIONS(1382), 1, aux_sym_number_token2, - ACTIONS(717), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(719), 1, + ACTIONS(1386), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(721), 1, + ACTIONS(1398), 1, + sym__brace_start, + ACTIONS(8669), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8671), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8673), 1, + sym__special_character, + ACTIONS(8675), 1, + anon_sym_DQUOTE, + ACTIONS(8679), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8681), 1, anon_sym_BQUOTE, - ACTIONS(723), 1, + ACTIONS(8683), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(733), 1, - sym__brace_start, - ACTIONS(10266), 1, + ACTIONS(9349), 1, sym_word, - ACTIONS(10272), 1, - sym__comment_word, - ACTIONS(725), 2, + ACTIONS(9353), 1, + sym_test_operator, + STATE(1032), 1, + aux_sym__literal_repeat1, + STATE(1187), 1, + sym_concatenation, + ACTIONS(8685), 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(9351), 2, sym_raw_string, sym_ansi_c_string, - STATE(897), 9, + STATE(773), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -251901,46 +240655,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [210133] = 18, + [200622] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8188), 1, + ACTIONS(4235), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8190), 1, + ACTIONS(4237), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8192), 1, + ACTIONS(4239), 1, anon_sym_DOLLAR, - ACTIONS(8196), 1, + ACTIONS(4243), 1, anon_sym_DQUOTE, - ACTIONS(8200), 1, + ACTIONS(4247), 1, aux_sym_number_token1, - ACTIONS(8202), 1, + ACTIONS(4249), 1, aux_sym_number_token2, - ACTIONS(8204), 1, + ACTIONS(4251), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8206), 1, + ACTIONS(4253), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8208), 1, + ACTIONS(4255), 1, anon_sym_BQUOTE, - ACTIONS(8210), 1, + ACTIONS(4257), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8220), 1, + ACTIONS(4265), 1, sym__brace_start, - ACTIONS(10274), 1, + ACTIONS(9355), 1, sym_word, - ACTIONS(10280), 1, + ACTIONS(9361), 1, sym__comment_word, - ACTIONS(8212), 2, + ACTIONS(4259), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10276), 2, + ACTIONS(9357), 2, sym_test_operator, sym__special_character, - ACTIONS(10278), 3, + ACTIONS(9359), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4200), 9, + STATE(2608), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -251950,95 +240704,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [210200] = 18, - ACTIONS(3), 1, + [200689] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(1420), 1, + ACTIONS(2051), 1, + anon_sym_DOLLAR, + ACTIONS(2057), 1, aux_sym_number_token1, - ACTIONS(1422), 1, + ACTIONS(2059), 1, aux_sym_number_token2, - ACTIONS(1426), 1, + ACTIONS(2063), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1438), 1, + ACTIONS(2075), 1, sym__brace_start, - ACTIONS(9762), 1, + ACTIONS(9363), 1, + sym_word, + ACTIONS(9365), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9764), 1, + ACTIONS(9367), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9768), 1, + ACTIONS(9369), 1, + sym__special_character, + ACTIONS(9371), 1, anon_sym_DQUOTE, - ACTIONS(9772), 1, + ACTIONS(9375), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9774), 1, + ACTIONS(9377), 1, anon_sym_BQUOTE, - ACTIONS(9776), 1, + ACTIONS(9379), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10256), 1, - sym_word, - ACTIONS(10264), 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(9383), 1, sym_test_operator, - sym__special_character, - ACTIONS(10262), 3, - sym__bare_dollar, + STATE(1590), 1, + aux_sym__literal_repeat1, + STATE(2000), 1, + sym_concatenation, + ACTIONS(9373), 2, sym_raw_string, sym_ansi_c_string, - STATE(1011), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [210267] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8226), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8228), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8230), 1, - anon_sym_DOLLAR, - ACTIONS(8234), 1, - anon_sym_DQUOTE, - ACTIONS(8238), 1, - aux_sym_number_token1, - ACTIONS(8240), 1, - aux_sym_number_token2, - ACTIONS(8242), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8244), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8246), 1, - anon_sym_BQUOTE, - ACTIONS(8248), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8258), 1, - sym__brace_start, - ACTIONS(10284), 1, - sym_word, - ACTIONS(10290), 1, - sym__comment_word, - ACTIONS(8250), 2, + ACTIONS(9381), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10286), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10288), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1441), 9, + STATE(1307), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252048,46 +240755,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [210334] = 18, - ACTIONS(3), 1, + [200760] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(3318), 1, + ACTIONS(2569), 1, + anon_sym_DOLLAR, + ACTIONS(2575), 1, aux_sym_number_token1, - ACTIONS(3320), 1, + ACTIONS(2577), 1, aux_sym_number_token2, - ACTIONS(3324), 1, + ACTIONS(2581), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3336), 1, + ACTIONS(2591), 1, sym__brace_start, - ACTIONS(10292), 1, + ACTIONS(9385), 1, sym_word, - ACTIONS(10294), 1, + ACTIONS(9387), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10296), 1, + ACTIONS(9389), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10298), 1, - anon_sym_DOLLAR, - ACTIONS(10302), 1, + ACTIONS(9391), 1, + sym__special_character, + ACTIONS(9393), 1, anon_sym_DQUOTE, - ACTIONS(10306), 1, + ACTIONS(9397), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10308), 1, + ACTIONS(9399), 1, anon_sym_BQUOTE, - ACTIONS(10310), 1, + ACTIONS(9401), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10314), 1, - sym__comment_word, - ACTIONS(10300), 2, + ACTIONS(9405), 1, sym_test_operator, - sym__special_character, - ACTIONS(10312), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10304), 3, - sym__bare_dollar, + STATE(4118), 1, + aux_sym__literal_repeat1, + STATE(4379), 1, + sym_concatenation, + ACTIONS(9395), 2, sym_raw_string, sym_ansi_c_string, - STATE(1841), 9, + ACTIONS(9403), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3979), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252097,46 +240806,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [210401] = 18, - ACTIONS(3), 1, + [200831] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(10316), 1, - sym_word, - ACTIONS(10318), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10320), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(10322), 1, + ACTIONS(2051), 1, anon_sym_DOLLAR, - ACTIONS(10326), 1, - anon_sym_DQUOTE, - ACTIONS(10330), 1, + ACTIONS(2057), 1, aux_sym_number_token1, - ACTIONS(10332), 1, + ACTIONS(2059), 1, aux_sym_number_token2, - ACTIONS(10334), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10336), 1, + ACTIONS(2063), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10338), 1, + ACTIONS(2075), 1, + sym__brace_start, + ACTIONS(9365), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9367), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9369), 1, + sym__special_character, + ACTIONS(9371), 1, + anon_sym_DQUOTE, + ACTIONS(9375), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9377), 1, anon_sym_BQUOTE, - ACTIONS(10340), 1, + ACTIONS(9379), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10344), 1, - sym__comment_word, - ACTIONS(10346), 1, - sym__brace_start, - ACTIONS(10324), 2, + ACTIONS(9407), 1, + sym_word, + ACTIONS(9411), 1, sym_test_operator, - sym__special_character, - ACTIONS(10342), 2, + STATE(1600), 1, + aux_sym__literal_repeat1, + STATE(2001), 1, + sym_concatenation, + ACTIONS(9381), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10328), 3, - sym__bare_dollar, + ACTIONS(9409), 2, sym_raw_string, sym_ansi_c_string, - STATE(6138), 9, + STATE(1309), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252146,46 +240857,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [210468] = 18, - ACTIONS(3), 1, + [200902] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(1883), 1, + ACTIONS(2569), 1, anon_sym_DOLLAR, - ACTIONS(1889), 1, + ACTIONS(2575), 1, aux_sym_number_token1, - ACTIONS(1891), 1, + ACTIONS(2577), 1, aux_sym_number_token2, - ACTIONS(1895), 1, + ACTIONS(2581), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1909), 1, + ACTIONS(2591), 1, sym__brace_start, - ACTIONS(8264), 1, + ACTIONS(9387), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8266), 1, + ACTIONS(9389), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8270), 1, + ACTIONS(9391), 1, + sym__special_character, + ACTIONS(9393), 1, anon_sym_DQUOTE, - ACTIONS(8274), 1, + ACTIONS(9397), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8276), 1, + ACTIONS(9399), 1, anon_sym_BQUOTE, - ACTIONS(8278), 1, + ACTIONS(9401), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10348), 1, + ACTIONS(9413), 1, sym_word, - ACTIONS(10354), 1, - sym__comment_word, - ACTIONS(8280), 2, + ACTIONS(9417), 1, + sym_test_operator, + STATE(4135), 1, + aux_sym__literal_repeat1, + STATE(4466), 1, + sym_concatenation, + ACTIONS(9403), 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(9415), 2, sym_raw_string, sym_ansi_c_string, - STATE(1309), 9, + STATE(3981), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252195,46 +240908,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [210535] = 18, + [200973] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5011), 1, + ACTIONS(2681), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5013), 1, + ACTIONS(2683), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5019), 1, + ACTIONS(2685), 1, + anon_sym_DOLLAR, + ACTIONS(2689), 1, anon_sym_DQUOTE, - ACTIONS(5023), 1, + ACTIONS(2693), 1, aux_sym_number_token1, - ACTIONS(5025), 1, + ACTIONS(2695), 1, aux_sym_number_token2, - ACTIONS(5027), 1, + ACTIONS(2697), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5029), 1, + ACTIONS(2699), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5031), 1, + ACTIONS(2701), 1, anon_sym_BQUOTE, - ACTIONS(5033), 1, + ACTIONS(2703), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5039), 1, + ACTIONS(2711), 1, sym__brace_start, - ACTIONS(10356), 1, + ACTIONS(9419), 1, sym_word, - ACTIONS(10358), 1, - anon_sym_DOLLAR, - ACTIONS(10364), 1, + ACTIONS(9425), 1, sym__comment_word, - ACTIONS(5035), 2, + ACTIONS(2705), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10360), 2, + ACTIONS(9421), 2, sym_test_operator, sym__special_character, - ACTIONS(10362), 3, + ACTIONS(9423), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2834), 9, + STATE(2137), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252244,46 +240957,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [210602] = 18, - ACTIONS(3), 1, + [201040] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2563), 1, + sym_word, + ACTIONS(2569), 1, anon_sym_DOLLAR, - ACTIONS(2546), 1, + ACTIONS(2575), 1, aux_sym_number_token1, - ACTIONS(2548), 1, + ACTIONS(2577), 1, aux_sym_number_token2, - ACTIONS(2552), 1, + ACTIONS(2581), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2564), 1, + ACTIONS(2589), 1, + sym_test_operator, + ACTIONS(2591), 1, sym__brace_start, - ACTIONS(10366), 1, - sym_word, - ACTIONS(10368), 1, + ACTIONS(9387), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10370), 1, + ACTIONS(9389), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10374), 1, + ACTIONS(9391), 1, + sym__special_character, + ACTIONS(9393), 1, anon_sym_DQUOTE, - ACTIONS(10378), 1, + ACTIONS(9397), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10380), 1, + ACTIONS(9399), 1, anon_sym_BQUOTE, - ACTIONS(10382), 1, + ACTIONS(9401), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10386), 1, - sym__comment_word, - ACTIONS(10372), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10384), 2, + STATE(4048), 1, + aux_sym__literal_repeat1, + STATE(4344), 1, + sym_concatenation, + ACTIONS(9403), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10376), 3, - sym__bare_dollar, + ACTIONS(9427), 2, sym_raw_string, sym_ansi_c_string, - STATE(1498), 9, + STATE(3974), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252293,46 +241008,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [210669] = 18, - ACTIONS(3), 1, + [201111] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(4538), 1, + ACTIONS(7437), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4540), 1, + ACTIONS(7439), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4546), 1, + ACTIONS(7441), 1, + anon_sym_DOLLAR, + ACTIONS(7443), 1, + sym__special_character, + ACTIONS(7445), 1, anon_sym_DQUOTE, - ACTIONS(4550), 1, + ACTIONS(7449), 1, aux_sym_number_token1, - ACTIONS(4552), 1, + ACTIONS(7451), 1, aux_sym_number_token2, - ACTIONS(4554), 1, + ACTIONS(7453), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4556), 1, + ACTIONS(7455), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4558), 1, + ACTIONS(7457), 1, anon_sym_BQUOTE, - ACTIONS(4560), 1, + ACTIONS(7459), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4566), 1, + ACTIONS(7469), 1, sym__brace_start, - ACTIONS(10388), 1, + ACTIONS(9429), 1, sym_word, - ACTIONS(10390), 1, - anon_sym_DOLLAR, - ACTIONS(10396), 1, - sym__comment_word, - ACTIONS(4562), 2, + ACTIONS(9433), 1, + sym_test_operator, + STATE(1418), 1, + aux_sym__literal_repeat1, + STATE(1688), 1, + sym_concatenation, + ACTIONS(7461), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10392), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10394), 3, - sym__bare_dollar, + ACTIONS(9431), 2, sym_raw_string, sym_ansi_c_string, - STATE(2580), 9, + STATE(1195), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252342,95 +241059,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [210736] = 18, - ACTIONS(3), 1, + [201182] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(1414), 1, + ACTIONS(2569), 1, anon_sym_DOLLAR, - ACTIONS(1420), 1, + ACTIONS(2575), 1, aux_sym_number_token1, - ACTIONS(1422), 1, + ACTIONS(2577), 1, aux_sym_number_token2, - ACTIONS(1426), 1, + ACTIONS(2581), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1438), 1, + ACTIONS(2591), 1, sym__brace_start, - ACTIONS(9762), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9764), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9768), 1, - anon_sym_DQUOTE, - ACTIONS(9772), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9774), 1, - anon_sym_BQUOTE, - ACTIONS(9776), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10256), 1, + ACTIONS(2629), 1, sym_word, - ACTIONS(10264), 1, - sym__comment_word, - ACTIONS(9778), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10260), 2, + ACTIONS(2631), 1, sym_test_operator, - sym__special_character, - ACTIONS(10262), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1011), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [210803] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3237), 1, - anon_sym_DOLLAR, - ACTIONS(3243), 1, - aux_sym_number_token1, - ACTIONS(3245), 1, - aux_sym_number_token2, - ACTIONS(3249), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3259), 1, - sym__brace_start, - ACTIONS(9724), 1, + ACTIONS(9387), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9726), 1, + ACTIONS(9389), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9730), 1, + ACTIONS(9391), 1, + sym__special_character, + ACTIONS(9393), 1, anon_sym_DQUOTE, - ACTIONS(9734), 1, + ACTIONS(9397), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9736), 1, + ACTIONS(9399), 1, anon_sym_BQUOTE, - ACTIONS(9738), 1, + ACTIONS(9401), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10398), 1, - sym_word, - ACTIONS(10404), 1, - sym__comment_word, - ACTIONS(9740), 2, + STATE(4067), 1, + aux_sym__literal_repeat1, + STATE(4421), 1, + sym_concatenation, + ACTIONS(9403), 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(9435), 2, sym_raw_string, sym_ansi_c_string, - STATE(1831), 9, + STATE(3976), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252440,46 +241110,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [210870] = 18, - ACTIONS(3), 1, + [201253] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(3478), 1, - anon_sym_DOLLAR, - 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(7437), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10410), 1, + ACTIONS(7439), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10414), 1, + ACTIONS(7441), 1, + anon_sym_DOLLAR, + ACTIONS(7443), 1, + sym__special_character, + ACTIONS(7445), 1, anon_sym_DQUOTE, - ACTIONS(10418), 1, + ACTIONS(7449), 1, + aux_sym_number_token1, + ACTIONS(7451), 1, + aux_sym_number_token2, + ACTIONS(7453), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10420), 1, + ACTIONS(7455), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7457), 1, anon_sym_BQUOTE, - ACTIONS(10422), 1, + ACTIONS(7459), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10426), 1, - sym__comment_word, - ACTIONS(10412), 2, + ACTIONS(7469), 1, + sym__brace_start, + ACTIONS(9437), 1, + sym_word, + ACTIONS(9441), 1, sym_test_operator, - sym__special_character, - ACTIONS(10424), 2, + STATE(1538), 1, + aux_sym__literal_repeat1, + STATE(1587), 1, + sym_concatenation, + ACTIONS(7461), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10416), 3, - sym__bare_dollar, + ACTIONS(9439), 2, sym_raw_string, sym_ansi_c_string, - STATE(4511), 9, + STATE(1201), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252489,46 +241161,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [210937] = 18, + [201324] = 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(1039), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9744), 1, + ACTIONS(1041), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9748), 1, + ACTIONS(1043), 1, + anon_sym_DOLLAR, + ACTIONS(1047), 1, anon_sym_DQUOTE, - ACTIONS(9752), 1, + ACTIONS(1051), 1, + aux_sym_number_token1, + ACTIONS(1053), 1, + aux_sym_number_token2, + ACTIONS(1055), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9754), 1, + ACTIONS(1057), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1059), 1, anon_sym_BQUOTE, - ACTIONS(9756), 1, + ACTIONS(1061), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10428), 1, + ACTIONS(1069), 1, + sym__brace_start, + ACTIONS(9443), 1, sym_word, - ACTIONS(10434), 1, + ACTIONS(9449), 1, sym__comment_word, - ACTIONS(9758), 2, + ACTIONS(1063), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10430), 2, + ACTIONS(9445), 2, sym_test_operator, sym__special_character, - ACTIONS(10432), 3, + ACTIONS(9447), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1526), 9, + STATE(2043), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252538,46 +241210,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [211004] = 18, - ACTIONS(3), 1, + [201391] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(3344), 1, - anon_sym_DOLLAR, - ACTIONS(3350), 1, - aux_sym_number_token1, - ACTIONS(3352), 1, - aux_sym_number_token2, - ACTIONS(3356), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3366), 1, - sym__brace_start, - ACTIONS(10436), 1, - sym_word, - ACTIONS(10438), 1, + ACTIONS(7437), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10440), 1, + ACTIONS(7439), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10444), 1, + ACTIONS(7441), 1, + anon_sym_DOLLAR, + ACTIONS(7443), 1, + sym__special_character, + ACTIONS(7445), 1, anon_sym_DQUOTE, - ACTIONS(10448), 1, + ACTIONS(7449), 1, + aux_sym_number_token1, + ACTIONS(7451), 1, + aux_sym_number_token2, + ACTIONS(7453), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10450), 1, + ACTIONS(7455), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7457), 1, anon_sym_BQUOTE, - ACTIONS(10452), 1, + ACTIONS(7459), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10456), 1, - sym__comment_word, - ACTIONS(10442), 2, + ACTIONS(7469), 1, + sym__brace_start, + ACTIONS(9451), 1, + sym_word, + ACTIONS(9455), 1, sym_test_operator, - sym__special_character, - ACTIONS(10454), 2, + STATE(1546), 1, + aux_sym__literal_repeat1, + STATE(1687), 1, + sym_concatenation, + ACTIONS(7461), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10446), 3, - sym__bare_dollar, + ACTIONS(9453), 2, sym_raw_string, sym_ansi_c_string, - STATE(4339), 9, + STATE(1198), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252587,46 +241261,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [211071] = 18, - ACTIONS(3), 1, + [201462] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(3243), 1, + ACTIONS(3337), 1, + anon_sym_DOLLAR, + ACTIONS(3343), 1, aux_sym_number_token1, - ACTIONS(3245), 1, + ACTIONS(3345), 1, aux_sym_number_token2, - ACTIONS(3249), 1, + ACTIONS(3349), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3259), 1, + ACTIONS(3359), 1, sym__brace_start, - ACTIONS(9724), 1, + ACTIONS(9457), 1, + sym_word, + ACTIONS(9459), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9726), 1, + ACTIONS(9461), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9730), 1, + ACTIONS(9463), 1, + sym__special_character, + ACTIONS(9465), 1, anon_sym_DQUOTE, - ACTIONS(9734), 1, + ACTIONS(9469), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9736), 1, + ACTIONS(9471), 1, anon_sym_BQUOTE, - ACTIONS(9738), 1, + ACTIONS(9473), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10398), 1, - sym_word, - ACTIONS(10404), 1, - sym__comment_word, - ACTIONS(10458), 1, - anon_sym_DOLLAR, - ACTIONS(9740), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10400), 2, + ACTIONS(9477), 1, sym_test_operator, - sym__special_character, - ACTIONS(10402), 3, - sym__bare_dollar, + STATE(4405), 1, + aux_sym__literal_repeat1, + STATE(4767), 1, + sym_concatenation, + ACTIONS(9467), 2, sym_raw_string, sym_ansi_c_string, - STATE(1831), 9, + ACTIONS(9475), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(4223), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252636,46 +241312,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [211138] = 18, - ACTIONS(3), 1, + [201533] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(8370), 1, + ACTIONS(7437), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8372), 1, + ACTIONS(7439), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8374), 1, + ACTIONS(7441), 1, anon_sym_DOLLAR, - ACTIONS(8378), 1, + ACTIONS(7443), 1, + sym__special_character, + ACTIONS(7445), 1, anon_sym_DQUOTE, - ACTIONS(8382), 1, + ACTIONS(7449), 1, aux_sym_number_token1, - ACTIONS(8384), 1, + ACTIONS(7451), 1, aux_sym_number_token2, - ACTIONS(8386), 1, + ACTIONS(7453), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8388), 1, + ACTIONS(7455), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8390), 1, + ACTIONS(7457), 1, anon_sym_BQUOTE, - ACTIONS(8392), 1, + ACTIONS(7459), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8402), 1, + ACTIONS(7469), 1, sym__brace_start, - ACTIONS(10460), 1, + ACTIONS(9479), 1, sym_word, - ACTIONS(10466), 1, - sym__comment_word, - ACTIONS(8394), 2, + ACTIONS(9483), 1, + sym_test_operator, + STATE(1556), 1, + aux_sym__literal_repeat1, + STATE(1708), 1, + sym_concatenation, + ACTIONS(7461), 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(9481), 2, sym_raw_string, sym_ansi_c_string, - STATE(4362), 9, + STATE(1204), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252685,46 +241363,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [211205] = 18, - ACTIONS(3), 1, + [201604] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(3243), 1, + ACTIONS(3337), 1, + anon_sym_DOLLAR, + ACTIONS(3343), 1, aux_sym_number_token1, - ACTIONS(3245), 1, + ACTIONS(3345), 1, aux_sym_number_token2, - ACTIONS(3249), 1, + ACTIONS(3349), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3259), 1, + ACTIONS(3359), 1, sym__brace_start, - ACTIONS(9724), 1, + ACTIONS(9459), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9726), 1, + ACTIONS(9461), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9730), 1, + ACTIONS(9463), 1, + sym__special_character, + ACTIONS(9465), 1, anon_sym_DQUOTE, - ACTIONS(9734), 1, + ACTIONS(9469), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9736), 1, + ACTIONS(9471), 1, anon_sym_BQUOTE, - ACTIONS(9738), 1, + ACTIONS(9473), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10398), 1, + ACTIONS(9485), 1, sym_word, - ACTIONS(10404), 1, - sym__comment_word, - ACTIONS(10468), 1, - anon_sym_DOLLAR, - ACTIONS(9740), 2, + ACTIONS(9489), 1, + sym_test_operator, + STATE(4339), 1, + aux_sym__literal_repeat1, + STATE(4722), 1, + sym_concatenation, + ACTIONS(9475), 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(9487), 2, sym_raw_string, sym_ansi_c_string, - STATE(1831), 9, + STATE(4258), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252734,95 +241414,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [211272] = 18, + [201675] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5631), 1, + ACTIONS(2645), 1, + anon_sym_DOLLAR, + ACTIONS(2651), 1, aux_sym_number_token1, - ACTIONS(5633), 1, + ACTIONS(2653), 1, aux_sym_number_token2, - ACTIONS(5637), 1, + ACTIONS(2657), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5647), 1, + ACTIONS(2669), 1, sym__brace_start, - ACTIONS(9874), 1, + ACTIONS(9491), 1, + sym_word, + ACTIONS(9493), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9876), 1, + ACTIONS(9495), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9880), 1, + ACTIONS(9499), 1, anon_sym_DQUOTE, - ACTIONS(9884), 1, + ACTIONS(9503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9886), 1, + ACTIONS(9505), 1, anon_sym_BQUOTE, - ACTIONS(9888), 1, + ACTIONS(9507), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10470), 1, - sym_word, - ACTIONS(10472), 1, - anon_sym_DOLLAR, - ACTIONS(10478), 1, + ACTIONS(9511), 1, sym__comment_word, - ACTIONS(9890), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10474), 2, + ACTIONS(9497), 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, - [211339] = 18, - 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(1109), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - ACTIONS(10480), 1, - sym_word, - ACTIONS(10486), 1, - sym__comment_word, - ACTIONS(1125), 2, + ACTIONS(9509), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10482), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10484), 3, + ACTIONS(9501), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2224), 9, + STATE(1724), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252832,46 +241463,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [211406] = 18, - ACTIONS(3), 1, + [201742] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(3952), 1, + ACTIONS(3043), 1, + sym_word, + ACTIONS(3049), 1, + anon_sym_DOLLAR, + ACTIONS(3055), 1, aux_sym_number_token1, - ACTIONS(3954), 1, + ACTIONS(3057), 1, aux_sym_number_token2, - ACTIONS(3958), 1, + ACTIONS(3061), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3968), 1, + ACTIONS(3069), 1, + sym_test_operator, + ACTIONS(3071), 1, sym__brace_start, - ACTIONS(10488), 1, - sym_word, - ACTIONS(10490), 1, + ACTIONS(9275), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10492), 1, + ACTIONS(9277), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10494), 1, - anon_sym_DOLLAR, - ACTIONS(10498), 1, + ACTIONS(9279), 1, + sym__special_character, + ACTIONS(9281), 1, anon_sym_DQUOTE, - ACTIONS(10502), 1, + ACTIONS(9285), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, + ACTIONS(9287), 1, anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(9289), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10510), 1, - sym__comment_word, - ACTIONS(10496), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10508), 2, + STATE(4160), 1, + aux_sym__literal_repeat1, + STATE(4632), 1, + sym_concatenation, + ACTIONS(9291), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10500), 3, - sym__bare_dollar, + ACTIONS(9513), 2, sym_raw_string, sym_ansi_c_string, - STATE(4352), 9, + STATE(4141), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252881,46 +241514,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [211473] = 18, - ACTIONS(3), 1, + [201813] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(3952), 1, + ACTIONS(1414), 1, + anon_sym_DOLLAR, + ACTIONS(1420), 1, aux_sym_number_token1, - ACTIONS(3954), 1, + ACTIONS(1422), 1, aux_sym_number_token2, - ACTIONS(3958), 1, + ACTIONS(1426), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3968), 1, + ACTIONS(1438), 1, sym__brace_start, - ACTIONS(10488), 1, - sym_word, - ACTIONS(10490), 1, + ACTIONS(8729), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10492), 1, + ACTIONS(8731), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10498), 1, + ACTIONS(8733), 1, + sym__special_character, + ACTIONS(8735), 1, anon_sym_DQUOTE, - ACTIONS(10502), 1, + ACTIONS(8739), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, + ACTIONS(8741), 1, anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(8743), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10510), 1, - sym__comment_word, - ACTIONS(10512), 1, - anon_sym_DOLLAR, - ACTIONS(10496), 2, + ACTIONS(9515), 1, + sym_word, + ACTIONS(9519), 1, sym_test_operator, - sym__special_character, - ACTIONS(10508), 2, + STATE(1050), 1, + aux_sym__literal_repeat1, + STATE(1312), 1, + sym_concatenation, + ACTIONS(8745), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10500), 3, - sym__bare_dollar, + ACTIONS(9517), 2, sym_raw_string, sym_ansi_c_string, - STATE(4352), 9, + STATE(801), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252930,46 +241565,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [211540] = 18, - ACTIONS(3), 1, + [201884] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(3514), 1, + ACTIONS(3049), 1, + anon_sym_DOLLAR, + ACTIONS(3055), 1, aux_sym_number_token1, - ACTIONS(3516), 1, + ACTIONS(3057), 1, aux_sym_number_token2, - ACTIONS(3520), 1, + ACTIONS(3061), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3530), 1, + ACTIONS(3071), 1, sym__brace_start, - ACTIONS(10514), 1, + ACTIONS(3073), 1, sym_word, - ACTIONS(10516), 1, + ACTIONS(3075), 1, + sym_test_operator, + ACTIONS(9275), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10518), 1, + ACTIONS(9277), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10520), 1, - anon_sym_DOLLAR, - ACTIONS(10524), 1, + ACTIONS(9279), 1, + sym__special_character, + ACTIONS(9281), 1, anon_sym_DQUOTE, - ACTIONS(10528), 1, + ACTIONS(9285), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, + ACTIONS(9287), 1, anon_sym_BQUOTE, - ACTIONS(10532), 1, + ACTIONS(9289), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10536), 1, - sym__comment_word, - ACTIONS(10522), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10534), 2, + STATE(4204), 1, + aux_sym__literal_repeat1, + STATE(4652), 1, + sym_concatenation, + ACTIONS(9291), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10526), 3, - sym__bare_dollar, + ACTIONS(9521), 2, sym_raw_string, sym_ansi_c_string, - STATE(4229), 9, + STATE(4012), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252979,46 +241616,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [211607] = 18, - ACTIONS(3), 1, + [201955] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(3514), 1, + ACTIONS(1414), 1, + anon_sym_DOLLAR, + ACTIONS(1420), 1, aux_sym_number_token1, - ACTIONS(3516), 1, + ACTIONS(1422), 1, aux_sym_number_token2, - ACTIONS(3520), 1, + ACTIONS(1426), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3530), 1, + ACTIONS(1438), 1, sym__brace_start, - ACTIONS(10514), 1, - sym_word, - ACTIONS(10516), 1, + ACTIONS(8729), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10518), 1, + ACTIONS(8731), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10524), 1, + ACTIONS(8733), 1, + sym__special_character, + ACTIONS(8735), 1, anon_sym_DQUOTE, - ACTIONS(10528), 1, + ACTIONS(8739), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, + ACTIONS(8741), 1, anon_sym_BQUOTE, - ACTIONS(10532), 1, + ACTIONS(8743), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10536), 1, - sym__comment_word, - ACTIONS(10538), 1, - anon_sym_DOLLAR, - ACTIONS(10522), 2, + ACTIONS(9523), 1, + sym_word, + ACTIONS(9527), 1, sym_test_operator, - sym__special_character, - ACTIONS(10534), 2, + STATE(1077), 1, + aux_sym__literal_repeat1, + STATE(1294), 1, + sym_concatenation, + ACTIONS(8745), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10526), 3, - sym__bare_dollar, + ACTIONS(9525), 2, sym_raw_string, sym_ansi_c_string, - STATE(4229), 9, + STATE(803), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253028,46 +241667,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [211674] = 18, + [202026] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7936), 1, + 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(8983), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7938), 1, + ACTIONS(8985), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7944), 1, + ACTIONS(8989), 1, anon_sym_DQUOTE, - ACTIONS(7948), 1, - aux_sym_number_token1, - ACTIONS(7950), 1, - aux_sym_number_token2, - ACTIONS(7952), 1, + ACTIONS(8993), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7954), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7956), 1, + ACTIONS(8995), 1, anon_sym_BQUOTE, - ACTIONS(7958), 1, + ACTIONS(8997), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7968), 1, - sym__brace_start, - ACTIONS(10076), 1, + ACTIONS(9529), 1, sym_word, - ACTIONS(10084), 1, + ACTIONS(9535), 1, sym__comment_word, - ACTIONS(10540), 1, - anon_sym_DOLLAR, - ACTIONS(7960), 2, + ACTIONS(8999), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10080), 2, + ACTIONS(9531), 2, sym_test_operator, sym__special_character, - ACTIONS(10082), 3, + ACTIONS(9533), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4271), 9, + STATE(4179), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253077,48 +241716,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [211741] = 20, + [202093] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(1454), 1, + ACTIONS(2397), 1, anon_sym_DOLLAR, - ACTIONS(1460), 1, + ACTIONS(2403), 1, aux_sym_number_token1, - ACTIONS(1462), 1, + ACTIONS(2405), 1, aux_sym_number_token2, - ACTIONS(1466), 1, + ACTIONS(2409), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1478), 1, + ACTIONS(2421), 1, sym__brace_start, - ACTIONS(9648), 1, + ACTIONS(9537), 1, + sym_word, + ACTIONS(9539), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9650), 1, + ACTIONS(9541), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9652), 1, + ACTIONS(9543), 1, sym__special_character, - ACTIONS(9654), 1, + ACTIONS(9545), 1, anon_sym_DQUOTE, - ACTIONS(9658), 1, + ACTIONS(9549), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9660), 1, + ACTIONS(9551), 1, anon_sym_BQUOTE, - ACTIONS(9662), 1, + ACTIONS(9553), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10542), 1, - sym_word, - ACTIONS(10546), 1, + ACTIONS(9557), 1, sym_test_operator, - STATE(1360), 1, + STATE(2036), 1, aux_sym__literal_repeat1, - STATE(1612), 1, + STATE(2144), 1, sym_concatenation, - ACTIONS(9664), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10544), 2, + ACTIONS(9547), 2, sym_raw_string, sym_ansi_c_string, - STATE(1100), 9, + ACTIONS(9555), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1364), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253128,46 +241767,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [211812] = 18, - ACTIONS(3), 1, + [202164] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(4629), 1, + ACTIONS(3083), 1, + anon_sym_DOLLAR, + ACTIONS(3089), 1, + aux_sym_number_token1, + ACTIONS(3091), 1, + aux_sym_number_token2, + ACTIONS(3095), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3105), 1, + sym__brace_start, + ACTIONS(8841), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4631), 1, + ACTIONS(8843), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4637), 1, + ACTIONS(8845), 1, + sym__special_character, + ACTIONS(8847), 1, anon_sym_DQUOTE, - ACTIONS(4641), 1, - aux_sym_number_token1, - ACTIONS(4643), 1, - aux_sym_number_token2, - ACTIONS(4645), 1, + ACTIONS(8851), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4647), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4649), 1, + ACTIONS(8853), 1, anon_sym_BQUOTE, - ACTIONS(4651), 1, + ACTIONS(8855), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4659), 1, - sym__brace_start, - ACTIONS(10548), 1, + ACTIONS(9559), 1, sym_word, - ACTIONS(10550), 1, - anon_sym_DOLLAR, - ACTIONS(10556), 1, - sym__comment_word, - ACTIONS(4653), 2, + ACTIONS(9563), 1, + sym_test_operator, + STATE(4169), 1, + aux_sym__literal_repeat1, + STATE(4509), 1, + sym_concatenation, + ACTIONS(8857), 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(9561), 2, sym_raw_string, sym_ansi_c_string, - STATE(2740), 9, + STATE(4050), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253177,46 +241818,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [211879] = 18, - ACTIONS(3), 1, + [202235] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(7936), 1, + ACTIONS(2397), 1, + anon_sym_DOLLAR, + ACTIONS(2403), 1, + aux_sym_number_token1, + ACTIONS(2405), 1, + aux_sym_number_token2, + ACTIONS(2409), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2421), 1, + sym__brace_start, + ACTIONS(9539), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7938), 1, + ACTIONS(9541), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7944), 1, + ACTIONS(9543), 1, + sym__special_character, + ACTIONS(9545), 1, anon_sym_DQUOTE, - ACTIONS(7948), 1, - aux_sym_number_token1, - ACTIONS(7950), 1, - aux_sym_number_token2, - ACTIONS(7952), 1, + ACTIONS(9549), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7954), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7956), 1, + ACTIONS(9551), 1, anon_sym_BQUOTE, - ACTIONS(7958), 1, + ACTIONS(9553), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7968), 1, - sym__brace_start, - ACTIONS(10076), 1, + ACTIONS(9565), 1, sym_word, - ACTIONS(10084), 1, - sym__comment_word, - ACTIONS(10558), 1, - anon_sym_DOLLAR, - ACTIONS(7960), 2, + ACTIONS(9569), 1, + sym_test_operator, + STATE(2041), 1, + aux_sym__literal_repeat1, + STATE(2160), 1, + sym_concatenation, + ACTIONS(9555), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10080), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10082), 3, - sym__bare_dollar, + ACTIONS(9567), 2, sym_raw_string, sym_ansi_c_string, - STATE(4271), 9, + STATE(1438), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253226,48 +241869,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [211946] = 20, + [202306] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(1454), 1, + ACTIONS(3083), 1, anon_sym_DOLLAR, - ACTIONS(1460), 1, + ACTIONS(3089), 1, aux_sym_number_token1, - ACTIONS(1462), 1, + ACTIONS(3091), 1, aux_sym_number_token2, - ACTIONS(1466), 1, + ACTIONS(3095), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1478), 1, + ACTIONS(3105), 1, sym__brace_start, - ACTIONS(9648), 1, + ACTIONS(8841), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9650), 1, + ACTIONS(8843), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9652), 1, + ACTIONS(8845), 1, sym__special_character, - ACTIONS(9654), 1, + ACTIONS(8847), 1, anon_sym_DQUOTE, - ACTIONS(9658), 1, + ACTIONS(8851), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9660), 1, + ACTIONS(8853), 1, anon_sym_BQUOTE, - ACTIONS(9662), 1, + ACTIONS(8855), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10560), 1, + ACTIONS(9571), 1, sym_word, - ACTIONS(10564), 1, + ACTIONS(9575), 1, sym_test_operator, - STATE(1366), 1, + STATE(4176), 1, aux_sym__literal_repeat1, - STATE(1613), 1, + STATE(4519), 1, sym_concatenation, - ACTIONS(9664), 2, + ACTIONS(8857), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10562), 2, + ACTIONS(9573), 2, sym_raw_string, sym_ansi_c_string, - STATE(1102), 9, + STATE(4057), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253277,46 +241920,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [212017] = 18, + [202377] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4629), 1, + ACTIONS(9203), 1, + sym_word, + ACTIONS(9205), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4631), 1, + ACTIONS(9207), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4637), 1, + ACTIONS(9213), 1, anon_sym_DQUOTE, - ACTIONS(4641), 1, + ACTIONS(9217), 1, aux_sym_number_token1, - ACTIONS(4643), 1, + ACTIONS(9219), 1, aux_sym_number_token2, - ACTIONS(4645), 1, + ACTIONS(9221), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4647), 1, + ACTIONS(9223), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4649), 1, + ACTIONS(9225), 1, anon_sym_BQUOTE, - ACTIONS(4651), 1, + ACTIONS(9227), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4659), 1, - sym__brace_start, - ACTIONS(10548), 1, - sym_word, - ACTIONS(10556), 1, + ACTIONS(9231), 1, sym__comment_word, - ACTIONS(10566), 1, + ACTIONS(9233), 1, + sym__brace_start, + ACTIONS(9577), 1, anon_sym_DOLLAR, - ACTIONS(4653), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10552), 2, + ACTIONS(9211), 2, sym_test_operator, sym__special_character, - ACTIONS(10554), 3, + ACTIONS(9229), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9215), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2740), 9, + STATE(2252), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253326,46 +241969,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [212084] = 18, + [202444] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3644), 1, + ACTIONS(3303), 1, + anon_sym_DOLLAR, + ACTIONS(3309), 1, aux_sym_number_token1, - ACTIONS(3646), 1, + ACTIONS(3311), 1, aux_sym_number_token2, - ACTIONS(3650), 1, + ACTIONS(3315), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3660), 1, + ACTIONS(3325), 1, sym__brace_start, - ACTIONS(9804), 1, + ACTIONS(9579), 1, + sym_word, + ACTIONS(9581), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9806), 1, + ACTIONS(9583), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9810), 1, + ACTIONS(9587), 1, anon_sym_DQUOTE, - ACTIONS(9814), 1, + ACTIONS(9591), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9816), 1, + ACTIONS(9593), 1, anon_sym_BQUOTE, - ACTIONS(9818), 1, + ACTIONS(9595), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10568), 1, - sym_word, - ACTIONS(10570), 1, - anon_sym_DOLLAR, - ACTIONS(10576), 1, + ACTIONS(9599), 1, sym__comment_word, - ACTIONS(9820), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10572), 2, + ACTIONS(9585), 2, sym_test_operator, sym__special_character, - ACTIONS(10574), 3, + ACTIONS(9597), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9589), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1924), 9, + STATE(4069), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253375,46 +242018,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [212151] = 18, + [202511] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7974), 1, + ACTIONS(6937), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7976), 1, + ACTIONS(6939), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7982), 1, + ACTIONS(6945), 1, anon_sym_DQUOTE, - ACTIONS(7986), 1, + ACTIONS(6949), 1, aux_sym_number_token1, - ACTIONS(7988), 1, + ACTIONS(6951), 1, aux_sym_number_token2, - ACTIONS(7990), 1, + ACTIONS(6953), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7992), 1, + ACTIONS(6955), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7994), 1, + ACTIONS(6957), 1, anon_sym_BQUOTE, - ACTIONS(7996), 1, + ACTIONS(6959), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8006), 1, + ACTIONS(6969), 1, sym__brace_start, - ACTIONS(10578), 1, + ACTIONS(9601), 1, sym_word, - ACTIONS(10580), 1, + ACTIONS(9603), 1, anon_sym_DOLLAR, - ACTIONS(10586), 1, + ACTIONS(9609), 1, sym__comment_word, - ACTIONS(7998), 2, + ACTIONS(6961), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10582), 2, + ACTIONS(9605), 2, sym_test_operator, sym__special_character, - ACTIONS(10584), 3, + ACTIONS(9607), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(3402), 9, + STATE(4129), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253424,46 +242067,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [212218] = 18, - ACTIONS(3), 1, + [202578] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(3644), 1, + ACTIONS(3083), 1, + anon_sym_DOLLAR, + ACTIONS(3089), 1, aux_sym_number_token1, - ACTIONS(3646), 1, + ACTIONS(3091), 1, aux_sym_number_token2, - ACTIONS(3650), 1, + ACTIONS(3095), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3660), 1, + ACTIONS(3105), 1, sym__brace_start, - ACTIONS(9804), 1, + ACTIONS(3107), 1, + sym_word, + ACTIONS(3109), 1, + sym_test_operator, + ACTIONS(8841), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9806), 1, + ACTIONS(8843), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9810), 1, + ACTIONS(8845), 1, + sym__special_character, + ACTIONS(8847), 1, anon_sym_DQUOTE, - ACTIONS(9814), 1, + ACTIONS(8851), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9816), 1, + ACTIONS(8853), 1, anon_sym_BQUOTE, - ACTIONS(9818), 1, + ACTIONS(8855), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10568), 1, - sym_word, - ACTIONS(10576), 1, - sym__comment_word, - ACTIONS(10588), 1, - anon_sym_DOLLAR, - ACTIONS(9820), 2, + STATE(4153), 1, + aux_sym__literal_repeat1, + STATE(4495), 1, + sym_concatenation, + ACTIONS(8857), 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(9611), 2, sym_raw_string, sym_ansi_c_string, - STATE(1924), 9, + STATE(4042), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253473,46 +242118,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [212285] = 18, + [202649] = 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(7926), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9876), 1, + ACTIONS(7928), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9880), 1, + ACTIONS(7930), 1, + anon_sym_DOLLAR, + ACTIONS(7934), 1, anon_sym_DQUOTE, - ACTIONS(9884), 1, + ACTIONS(7938), 1, + aux_sym_number_token1, + ACTIONS(7940), 1, + aux_sym_number_token2, + ACTIONS(7942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9886), 1, + ACTIONS(7944), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7946), 1, anon_sym_BQUOTE, - ACTIONS(9888), 1, + ACTIONS(7948), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10470), 1, + ACTIONS(7954), 1, + sym__brace_start, + ACTIONS(9613), 1, sym_word, - ACTIONS(10478), 1, + ACTIONS(9619), 1, sym__comment_word, - ACTIONS(10590), 1, - anon_sym_DOLLAR, - ACTIONS(9890), 2, + ACTIONS(7950), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10474), 2, + ACTIONS(9615), 2, sym_test_operator, sym__special_character, - ACTIONS(10476), 3, + ACTIONS(9617), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(3342), 9, + STATE(4904), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253522,46 +242167,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [212352] = 18, - ACTIONS(3), 1, + [202716] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(3484), 1, + ACTIONS(3331), 1, + sym_word, + ACTIONS(3337), 1, + anon_sym_DOLLAR, + ACTIONS(3343), 1, aux_sym_number_token1, - ACTIONS(3486), 1, + ACTIONS(3345), 1, aux_sym_number_token2, - ACTIONS(3490), 1, + ACTIONS(3349), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3500), 1, + ACTIONS(3357), 1, + sym_test_operator, + ACTIONS(3359), 1, sym__brace_start, - ACTIONS(10406), 1, - sym_word, - ACTIONS(10408), 1, + ACTIONS(9459), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10410), 1, + ACTIONS(9461), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10414), 1, + ACTIONS(9463), 1, + sym__special_character, + ACTIONS(9465), 1, anon_sym_DQUOTE, - ACTIONS(10418), 1, + ACTIONS(9469), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10420), 1, + ACTIONS(9471), 1, anon_sym_BQUOTE, - ACTIONS(10422), 1, + ACTIONS(9473), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10426), 1, - sym__comment_word, - ACTIONS(10592), 1, - anon_sym_DOLLAR, - ACTIONS(10412), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10424), 2, + STATE(4382), 1, + aux_sym__literal_repeat1, + STATE(4762), 1, + sym_concatenation, + ACTIONS(9475), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10416), 3, - sym__bare_dollar, + ACTIONS(9621), 2, sym_raw_string, sym_ansi_c_string, - STATE(4511), 9, + STATE(4164), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253571,48 +242218,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [212419] = 20, + [202787] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(7866), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7868), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7870), 1, + ACTIONS(3337), 1, anon_sym_DOLLAR, - ACTIONS(7872), 1, - sym__special_character, - ACTIONS(7874), 1, - anon_sym_DQUOTE, - ACTIONS(7878), 1, + ACTIONS(3343), 1, aux_sym_number_token1, - ACTIONS(7880), 1, + ACTIONS(3345), 1, aux_sym_number_token2, - ACTIONS(7882), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7884), 1, + ACTIONS(3349), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7886), 1, - anon_sym_BQUOTE, - ACTIONS(7888), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7898), 1, + ACTIONS(3359), 1, sym__brace_start, - ACTIONS(10594), 1, + ACTIONS(3361), 1, sym_word, - ACTIONS(10598), 1, + ACTIONS(3363), 1, sym_test_operator, - STATE(1790), 1, + ACTIONS(9459), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9461), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9463), 1, + sym__special_character, + ACTIONS(9465), 1, + anon_sym_DQUOTE, + ACTIONS(9469), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9471), 1, + anon_sym_BQUOTE, + ACTIONS(9473), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(4345), 1, aux_sym__literal_repeat1, - STATE(1987), 1, + STATE(4732), 1, sym_concatenation, - ACTIONS(7890), 2, + ACTIONS(9475), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10596), 2, + ACTIONS(9623), 2, sym_raw_string, sym_ansi_c_string, - STATE(1307), 9, + STATE(4174), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253622,46 +242269,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [212490] = 18, + [202858] = 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, + ACTIONS(9203), 1, sym_word, - ACTIONS(10602), 1, + ACTIONS(9205), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10604), 1, + ACTIONS(9207), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10606), 1, - anon_sym_DOLLAR, - ACTIONS(10610), 1, + ACTIONS(9213), 1, anon_sym_DQUOTE, - ACTIONS(10614), 1, + ACTIONS(9217), 1, + aux_sym_number_token1, + ACTIONS(9219), 1, + aux_sym_number_token2, + ACTIONS(9221), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10616), 1, + ACTIONS(9223), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9225), 1, anon_sym_BQUOTE, - ACTIONS(10618), 1, + ACTIONS(9227), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10622), 1, + ACTIONS(9231), 1, sym__comment_word, - ACTIONS(10608), 2, + ACTIONS(9233), 1, + sym__brace_start, + ACTIONS(9625), 1, + anon_sym_DOLLAR, + ACTIONS(9211), 2, sym_test_operator, sym__special_character, - ACTIONS(10620), 2, + ACTIONS(9229), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10612), 3, + ACTIONS(9215), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5559), 9, + STATE(2252), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253671,46 +242318,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [212557] = 18, + [202925] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3484), 1, + ACTIONS(3249), 1, + anon_sym_DOLLAR, + ACTIONS(3255), 1, aux_sym_number_token1, - ACTIONS(3486), 1, + ACTIONS(3257), 1, aux_sym_number_token2, - ACTIONS(3490), 1, + ACTIONS(3261), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3500), 1, + ACTIONS(3273), 1, sym__brace_start, - ACTIONS(10406), 1, - sym_word, - ACTIONS(10408), 1, + ACTIONS(8759), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10410), 1, + ACTIONS(8761), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10414), 1, + ACTIONS(8765), 1, anon_sym_DQUOTE, - ACTIONS(10418), 1, + ACTIONS(8769), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10420), 1, + ACTIONS(8771), 1, anon_sym_BQUOTE, - ACTIONS(10422), 1, + ACTIONS(8773), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10426), 1, + ACTIONS(9627), 1, + sym_word, + ACTIONS(9633), 1, sym__comment_word, - ACTIONS(10624), 1, - anon_sym_DOLLAR, - ACTIONS(10412), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10424), 2, + ACTIONS(8775), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10416), 3, + ACTIONS(9629), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9631), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4511), 9, + STATE(4585), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253720,46 +242367,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [212624] = 18, + [202992] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2073), 1, + ACTIONS(2790), 1, + anon_sym_DOLLAR, + ACTIONS(2796), 1, aux_sym_number_token1, - ACTIONS(2075), 1, + ACTIONS(2798), 1, aux_sym_number_token2, - ACTIONS(2079), 1, + ACTIONS(2802), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2093), 1, + ACTIONS(2814), 1, sym__brace_start, - ACTIONS(7908), 1, + ACTIONS(9317), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7910), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7914), 1, + ACTIONS(9323), 1, anon_sym_DQUOTE, - ACTIONS(7918), 1, + ACTIONS(9327), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7920), 1, + ACTIONS(9329), 1, anon_sym_BQUOTE, - ACTIONS(7922), 1, + ACTIONS(9331), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10626), 1, + ACTIONS(9635), 1, sym_word, - ACTIONS(10628), 1, - anon_sym_DOLLAR, - ACTIONS(10634), 1, + ACTIONS(9641), 1, sym__comment_word, - ACTIONS(7924), 2, + ACTIONS(9333), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10630), 2, + ACTIONS(9637), 2, sym_test_operator, sym__special_character, - ACTIONS(10632), 3, + ACTIONS(9639), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1618), 9, + STATE(1767), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253769,99 +242416,95 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [212691] = 22, + [203059] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(10640), 1, - anon_sym_LPAREN, - ACTIONS(10642), 1, - aux_sym__c_word_token1, - ACTIONS(10644), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(10646), 1, + ACTIONS(5518), 1, anon_sym_DOLLAR, - ACTIONS(10648), 1, - anon_sym_DQUOTE, - ACTIONS(10650), 1, + ACTIONS(5524), 1, aux_sym_number_token1, - ACTIONS(10652), 1, + ACTIONS(5526), 1, aux_sym_number_token2, - ACTIONS(10654), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10656), 1, + ACTIONS(5530), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10658), 1, + ACTIONS(5542), 1, + sym__brace_start, + ACTIONS(6454), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6456), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6460), 1, + anon_sym_DQUOTE, + ACTIONS(6464), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6466), 1, anon_sym_BQUOTE, - ACTIONS(10660), 1, + ACTIONS(6468), 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(9643), 1, + sym_word, + ACTIONS(9649), 1, + sym__comment_word, + ACTIONS(6470), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9645), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9647), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(6067), 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, + [203126] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(7299), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(109), 1, + ACTIONS(7301), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(115), 1, + ACTIONS(7303), 1, + anon_sym_DOLLAR, + ACTIONS(7307), 1, anon_sym_DQUOTE, - ACTIONS(119), 1, + ACTIONS(7311), 1, aux_sym_number_token1, - ACTIONS(121), 1, + ACTIONS(7313), 1, aux_sym_number_token2, - ACTIONS(123), 1, + ACTIONS(7315), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(125), 1, + ACTIONS(7317), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(127), 1, + ACTIONS(7319), 1, anon_sym_BQUOTE, - ACTIONS(129), 1, + ACTIONS(7321), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(139), 1, + ACTIONS(7331), 1, sym__brace_start, - ACTIONS(10662), 1, + ACTIONS(9651), 1, sym_word, - ACTIONS(10664), 1, - anon_sym_DOLLAR, - ACTIONS(10670), 1, + ACTIONS(9657), 1, sym__comment_word, - ACTIONS(131), 2, + ACTIONS(7323), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10666), 2, + ACTIONS(9653), 2, sym_test_operator, sym__special_character, - ACTIONS(10668), 3, + ACTIONS(9655), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(486), 9, + STATE(2403), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253871,48 +242514,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [212833] = 20, - ACTIONS(71), 1, + [203193] = 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(3732), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10492), 1, + ACTIONS(3734), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10498), 1, + ACTIONS(3736), 1, + anon_sym_DOLLAR, + ACTIONS(3740), 1, anon_sym_DQUOTE, - ACTIONS(10502), 1, + ACTIONS(3744), 1, + aux_sym_number_token1, + ACTIONS(3746), 1, + aux_sym_number_token2, + ACTIONS(3748), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, + ACTIONS(3750), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3752), 1, anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(3754), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10672), 1, + ACTIONS(3762), 1, + sym__brace_start, + ACTIONS(9659), 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(9665), 1, + sym__comment_word, + ACTIONS(3756), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10676), 2, + ACTIONS(9661), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9663), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4570), 9, + STATE(2540), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253922,48 +242563,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [212904] = 20, - ACTIONS(71), 1, + [203260] = 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(8877), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10492), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10498), 1, + ACTIONS(8881), 1, + anon_sym_DOLLAR, + ACTIONS(8885), 1, anon_sym_DQUOTE, - ACTIONS(10502), 1, + ACTIONS(8889), 1, + aux_sym_number_token1, + ACTIONS(8891), 1, + aux_sym_number_token2, + ACTIONS(8893), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, + ACTIONS(8895), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8897), 1, anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(8899), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10674), 1, - sym__special_character, - ACTIONS(10680), 1, + ACTIONS(8905), 1, + sym__brace_start, + ACTIONS(9667), 1, sym_word, - ACTIONS(10684), 1, - sym_test_operator, - STATE(4371), 1, - aux_sym__literal_repeat1, - STATE(4761), 1, - sym_concatenation, - ACTIONS(10508), 2, + ACTIONS(9673), 1, + sym__comment_word, + ACTIONS(8901), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10682), 2, + ACTIONS(9669), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9671), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4574), 9, + STATE(5127), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253973,48 +242612,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [212975] = 20, - ACTIONS(71), 1, + [203327] = 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(4197), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10518), 1, + ACTIONS(4199), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10524), 1, + ACTIONS(4201), 1, + anon_sym_DOLLAR, + ACTIONS(4205), 1, anon_sym_DQUOTE, - ACTIONS(10528), 1, + ACTIONS(4209), 1, + aux_sym_number_token1, + ACTIONS(4211), 1, + aux_sym_number_token2, + ACTIONS(4213), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, + ACTIONS(4215), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4217), 1, anon_sym_BQUOTE, - ACTIONS(10532), 1, + ACTIONS(4219), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10686), 1, + ACTIONS(4225), 1, + sym__brace_start, + ACTIONS(9675), 1, sym_word, - ACTIONS(10688), 1, - sym__special_character, - ACTIONS(10692), 1, - sym_test_operator, - STATE(4260), 1, - aux_sym__literal_repeat1, - STATE(4557), 1, - sym_concatenation, - ACTIONS(10534), 2, + ACTIONS(9681), 1, + sym__comment_word, + ACTIONS(4221), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10690), 2, + ACTIONS(9677), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9679), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4459), 9, + STATE(4943), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254024,48 +242661,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [213046] = 20, - ACTIONS(71), 1, + [203394] = 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(6937), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10518), 1, + ACTIONS(6939), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10524), 1, + ACTIONS(6941), 1, + anon_sym_DOLLAR, + ACTIONS(6945), 1, anon_sym_DQUOTE, - ACTIONS(10528), 1, + ACTIONS(6949), 1, + aux_sym_number_token1, + ACTIONS(6951), 1, + aux_sym_number_token2, + ACTIONS(6953), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, + ACTIONS(6955), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6957), 1, anon_sym_BQUOTE, - ACTIONS(10532), 1, + ACTIONS(6959), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10688), 1, - sym__special_character, - ACTIONS(10694), 1, + ACTIONS(6969), 1, + sym__brace_start, + ACTIONS(9601), 1, sym_word, - ACTIONS(10698), 1, - sym_test_operator, - STATE(4213), 1, - aux_sym__literal_repeat1, - STATE(4518), 1, - sym_concatenation, - ACTIONS(10534), 2, + ACTIONS(9609), 1, + sym__comment_word, + ACTIONS(6961), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10696), 2, + ACTIONS(9605), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9607), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4461), 9, + STATE(4129), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254075,48 +242710,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [213117] = 20, - ACTIONS(71), 1, + [203461] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(7974), 1, + ACTIONS(6975), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7976), 1, + ACTIONS(6977), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7978), 1, + ACTIONS(6979), 1, anon_sym_DOLLAR, - ACTIONS(7980), 1, - sym__special_character, - ACTIONS(7982), 1, + ACTIONS(6983), 1, anon_sym_DQUOTE, - ACTIONS(7986), 1, + ACTIONS(6987), 1, aux_sym_number_token1, - ACTIONS(7988), 1, + ACTIONS(6989), 1, aux_sym_number_token2, - ACTIONS(7990), 1, + ACTIONS(6991), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7992), 1, + ACTIONS(6993), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7994), 1, + ACTIONS(6995), 1, anon_sym_BQUOTE, - ACTIONS(7996), 1, + ACTIONS(6997), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8006), 1, + ACTIONS(7007), 1, sym__brace_start, - ACTIONS(10700), 1, + ACTIONS(9683), 1, sym_word, - ACTIONS(10704), 1, - sym_test_operator, - STATE(3449), 1, - aux_sym__literal_repeat1, - STATE(3696), 1, - sym_concatenation, - ACTIONS(7998), 2, + ACTIONS(9689), 1, + sym__comment_word, + ACTIONS(6999), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10702), 2, + ACTIONS(9685), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9687), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(3356), 9, + STATE(5145), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254126,46 +242759,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [213188] = 18, + [203528] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2073), 1, + ACTIONS(4992), 1, + anon_sym_DOLLAR, + ACTIONS(4998), 1, aux_sym_number_token1, - ACTIONS(2075), 1, + ACTIONS(5000), 1, aux_sym_number_token2, - ACTIONS(2079), 1, + ACTIONS(5004), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2093), 1, + ACTIONS(5014), 1, sym__brace_start, - ACTIONS(7908), 1, + ACTIONS(9087), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7910), 1, + ACTIONS(9089), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7914), 1, + ACTIONS(9093), 1, anon_sym_DQUOTE, - ACTIONS(7918), 1, + ACTIONS(9097), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7920), 1, + ACTIONS(9099), 1, anon_sym_BQUOTE, - ACTIONS(7922), 1, + ACTIONS(9101), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10626), 1, + ACTIONS(9691), 1, sym_word, - ACTIONS(10634), 1, + ACTIONS(9697), 1, sym__comment_word, - ACTIONS(10706), 1, - anon_sym_DOLLAR, - ACTIONS(7924), 2, + ACTIONS(9103), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10630), 2, + ACTIONS(9693), 2, sym_test_operator, sym__special_character, - ACTIONS(10632), 3, + ACTIONS(9695), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1618), 9, + STATE(5315), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254175,46 +242808,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [213255] = 18, + [203595] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7974), 1, + ACTIONS(402), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7976), 1, + ACTIONS(404), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7982), 1, + ACTIONS(406), 1, + anon_sym_DOLLAR, + ACTIONS(410), 1, anon_sym_DQUOTE, - ACTIONS(7986), 1, + ACTIONS(414), 1, aux_sym_number_token1, - ACTIONS(7988), 1, + ACTIONS(416), 1, aux_sym_number_token2, - ACTIONS(7990), 1, + ACTIONS(418), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7992), 1, + ACTIONS(420), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7994), 1, + ACTIONS(422), 1, anon_sym_BQUOTE, - ACTIONS(7996), 1, + ACTIONS(424), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8006), 1, + ACTIONS(434), 1, sym__brace_start, - ACTIONS(10578), 1, + ACTIONS(9699), 1, sym_word, - ACTIONS(10586), 1, + ACTIONS(9705), 1, sym__comment_word, - ACTIONS(10708), 1, - anon_sym_DOLLAR, - ACTIONS(7998), 2, + ACTIONS(426), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10582), 2, + ACTIONS(9701), 2, sym_test_operator, sym__special_character, - ACTIONS(10584), 3, + ACTIONS(9703), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(3402), 9, + STATE(792), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254224,48 +242857,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [213322] = 20, + [203662] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(7974), 1, + ACTIONS(7197), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7976), 1, + ACTIONS(7199), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7978), 1, + ACTIONS(7201), 1, anon_sym_DOLLAR, - ACTIONS(7980), 1, + ACTIONS(7203), 1, sym__special_character, - ACTIONS(7982), 1, + ACTIONS(7205), 1, anon_sym_DQUOTE, - ACTIONS(7986), 1, + ACTIONS(7209), 1, aux_sym_number_token1, - ACTIONS(7988), 1, + ACTIONS(7211), 1, aux_sym_number_token2, - ACTIONS(7990), 1, + ACTIONS(7213), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7992), 1, + ACTIONS(7215), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7994), 1, + ACTIONS(7217), 1, anon_sym_BQUOTE, - ACTIONS(7996), 1, + ACTIONS(7219), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8006), 1, + ACTIONS(7229), 1, sym__brace_start, - ACTIONS(10710), 1, + ACTIONS(9707), 1, sym_word, - ACTIONS(10714), 1, + ACTIONS(9711), 1, sym_test_operator, - STATE(3432), 1, + STATE(1643), 1, aux_sym__literal_repeat1, - STATE(3520), 1, + STATE(1807), 1, sym_concatenation, - ACTIONS(7998), 2, + ACTIONS(7221), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10712), 2, + ACTIONS(9709), 2, sym_raw_string, sym_ansi_c_string, - STATE(3351), 9, + STATE(1328), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254275,95 +242908,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [213393] = 18, + [203733] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2625), 1, - aux_sym_number_token1, - ACTIONS(2627), 1, - aux_sym_number_token2, - ACTIONS(2631), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2641), 1, - sym__brace_start, - ACTIONS(9742), 1, + ACTIONS(4731), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9744), 1, + ACTIONS(4733), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9748), 1, - anon_sym_DQUOTE, - ACTIONS(9752), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9754), 1, - anon_sym_BQUOTE, - ACTIONS(9756), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10428), 1, - sym_word, - ACTIONS(10434), 1, - sym__comment_word, - ACTIONS(10716), 1, + ACTIONS(4735), 1, anon_sym_DOLLAR, - ACTIONS(9758), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10430), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10432), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1526), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [213460] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2625), 1, + ACTIONS(4739), 1, + anon_sym_DQUOTE, + ACTIONS(4743), 1, aux_sym_number_token1, - ACTIONS(2627), 1, + ACTIONS(4745), 1, aux_sym_number_token2, - ACTIONS(2631), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2641), 1, - sym__brace_start, - ACTIONS(9742), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9744), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9748), 1, - anon_sym_DQUOTE, - ACTIONS(9752), 1, + ACTIONS(4747), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9754), 1, + ACTIONS(4749), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4751), 1, anon_sym_BQUOTE, - ACTIONS(9756), 1, + ACTIONS(4753), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10428), 1, + ACTIONS(4759), 1, + sym__brace_start, + ACTIONS(9713), 1, sym_word, - ACTIONS(10434), 1, + ACTIONS(9719), 1, sym__comment_word, - ACTIONS(10718), 1, - anon_sym_DOLLAR, - ACTIONS(9758), 2, + ACTIONS(4755), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10430), 2, + ACTIONS(9715), 2, sym_test_operator, sym__special_character, - ACTIONS(10432), 3, + ACTIONS(9717), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1526), 9, + STATE(5184), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254373,46 +242957,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [213527] = 18, + [203800] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2653), 1, + ACTIONS(3970), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2655), 1, + ACTIONS(3972), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2661), 1, + ACTIONS(3974), 1, + anon_sym_DOLLAR, + ACTIONS(3978), 1, anon_sym_DQUOTE, - ACTIONS(2665), 1, + ACTIONS(3982), 1, aux_sym_number_token1, - ACTIONS(2667), 1, + ACTIONS(3984), 1, aux_sym_number_token2, - ACTIONS(2669), 1, + ACTIONS(3986), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2671), 1, + ACTIONS(3988), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2673), 1, + ACTIONS(3990), 1, anon_sym_BQUOTE, - ACTIONS(2675), 1, + ACTIONS(3992), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2683), 1, + ACTIONS(4000), 1, sym__brace_start, - ACTIONS(10720), 1, + ACTIONS(9129), 1, sym_word, - ACTIONS(10722), 1, - anon_sym_DOLLAR, - ACTIONS(10728), 1, + ACTIONS(9137), 1, sym__comment_word, - ACTIONS(2677), 2, + ACTIONS(3994), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10724), 2, + ACTIONS(9133), 2, sym_test_operator, sym__special_character, - ACTIONS(10726), 3, + ACTIONS(9135), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2222), 9, + STATE(2830), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254422,46 +243006,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [213594] = 18, + [203867] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2067), 1, - 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, - sym__brace_start, - ACTIONS(7908), 1, + ACTIONS(4507), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7910), 1, + ACTIONS(4509), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7914), 1, + ACTIONS(4511), 1, + anon_sym_DOLLAR, + ACTIONS(4515), 1, anon_sym_DQUOTE, - ACTIONS(7918), 1, + ACTIONS(4519), 1, + aux_sym_number_token1, + ACTIONS(4521), 1, + aux_sym_number_token2, + ACTIONS(4523), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7920), 1, + ACTIONS(4525), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4527), 1, anon_sym_BQUOTE, - ACTIONS(7922), 1, + ACTIONS(4529), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10626), 1, + ACTIONS(4535), 1, + sym__brace_start, + ACTIONS(9721), 1, sym_word, - ACTIONS(10634), 1, + ACTIONS(9727), 1, sym__comment_word, - ACTIONS(7924), 2, + ACTIONS(4531), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10630), 2, + ACTIONS(9723), 2, sym_test_operator, sym__special_character, - ACTIONS(10632), 3, + ACTIONS(9725), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1618), 9, + STATE(5149), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254471,46 +243055,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [213661] = 18, + [203934] = 18, ACTIONS(3), 1, sym_comment, - 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(8160), 1, + ACTIONS(7075), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8162), 1, + ACTIONS(7077), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8166), 1, + ACTIONS(7079), 1, + anon_sym_DOLLAR, + ACTIONS(7083), 1, anon_sym_DQUOTE, - ACTIONS(8170), 1, + ACTIONS(7087), 1, + aux_sym_number_token1, + ACTIONS(7089), 1, + aux_sym_number_token2, + ACTIONS(7091), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8172), 1, + ACTIONS(7093), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7095), 1, anon_sym_BQUOTE, - ACTIONS(8174), 1, + ACTIONS(7097), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10114), 1, + ACTIONS(7107), 1, + sym__brace_start, + ACTIONS(8965), 1, sym_word, - ACTIONS(10120), 1, + ACTIONS(8973), 1, sym__comment_word, - ACTIONS(10730), 1, - anon_sym_DOLLAR, - ACTIONS(8176), 2, + ACTIONS(7099), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10116), 2, + ACTIONS(8969), 2, sym_test_operator, sym__special_character, - ACTIONS(10118), 3, + ACTIONS(8971), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1171), 9, + STATE(1062), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254520,7 +243104,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [213728] = 18, + [204001] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(107), 1, @@ -254543,23 +243127,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, ACTIONS(139), 1, sym__brace_start, - ACTIONS(10662), 1, + ACTIONS(9259), 1, sym_word, - ACTIONS(10670), 1, + ACTIONS(9265), 1, sym__comment_word, - ACTIONS(10732), 1, + ACTIONS(9729), 1, anon_sym_DOLLAR, ACTIONS(131), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10666), 2, + ACTIONS(9261), 2, sym_test_operator, sym__special_character, - ACTIONS(10668), 3, + ACTIONS(9263), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(486), 9, + STATE(449), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254569,46 +243153,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [213795] = 18, + [204068] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2653), 1, + ACTIONS(1591), 1, + 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(7047), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2655), 1, + ACTIONS(7049), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2661), 1, + ACTIONS(7053), 1, anon_sym_DQUOTE, - ACTIONS(2665), 1, - aux_sym_number_token1, - ACTIONS(2667), 1, - aux_sym_number_token2, - ACTIONS(2669), 1, + ACTIONS(7057), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2671), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2673), 1, + ACTIONS(7059), 1, anon_sym_BQUOTE, - ACTIONS(2675), 1, + ACTIONS(7061), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2683), 1, - sym__brace_start, - ACTIONS(10720), 1, + ACTIONS(9731), 1, sym_word, - ACTIONS(10728), 1, + ACTIONS(9737), 1, sym__comment_word, - ACTIONS(10734), 1, - anon_sym_DOLLAR, - ACTIONS(2677), 2, + ACTIONS(7063), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10724), 2, + ACTIONS(9733), 2, sym_test_operator, sym__special_character, - ACTIONS(10726), 3, + ACTIONS(9735), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2222), 9, + STATE(1068), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254618,99 +243202,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [213862] = 20, - ACTIONS(71), 1, + [204135] = 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(107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10518), 1, + ACTIONS(109), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10524), 1, + ACTIONS(115), 1, anon_sym_DQUOTE, - ACTIONS(10528), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, - anon_sym_BQUOTE, - ACTIONS(10532), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10736), 1, - sym_word, - ACTIONS(10738), 1, - sym__special_character, - ACTIONS(10742), 1, - sym_test_operator, - STATE(4260), 1, - aux_sym__literal_repeat1, - STATE(4557), 1, - sym_concatenation, - ACTIONS(10534), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10740), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(4382), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [213933] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(3508), 1, - anon_sym_DOLLAR, - ACTIONS(3514), 1, + ACTIONS(119), 1, aux_sym_number_token1, - ACTIONS(3516), 1, + ACTIONS(121), 1, aux_sym_number_token2, - ACTIONS(3520), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3530), 1, - sym__brace_start, - ACTIONS(10516), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10518), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(10524), 1, - anon_sym_DQUOTE, - ACTIONS(10528), 1, + ACTIONS(123), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, + ACTIONS(125), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(127), 1, anon_sym_BQUOTE, - ACTIONS(10532), 1, + ACTIONS(129), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10738), 1, - sym__special_character, - ACTIONS(10744), 1, + ACTIONS(139), 1, + sym__brace_start, + ACTIONS(9259), 1, sym_word, - ACTIONS(10748), 1, - sym_test_operator, - STATE(4213), 1, - aux_sym__literal_repeat1, - STATE(4518), 1, - sym_concatenation, - ACTIONS(10534), 2, + ACTIONS(9265), 1, + sym__comment_word, + ACTIONS(9739), 1, + anon_sym_DOLLAR, + ACTIONS(131), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10746), 2, + ACTIONS(9261), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9263), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4342), 9, + STATE(449), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254720,48 +243251,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [214004] = 20, - ACTIONS(71), 1, + [204202] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3946), 1, + ACTIONS(2433), 1, anon_sym_DOLLAR, - ACTIONS(3952), 1, + ACTIONS(2439), 1, aux_sym_number_token1, - ACTIONS(3954), 1, + ACTIONS(2441), 1, aux_sym_number_token2, - ACTIONS(3958), 1, + ACTIONS(2445), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3968), 1, + ACTIONS(2457), 1, sym__brace_start, - ACTIONS(10490), 1, + ACTIONS(9741), 1, + sym_word, + ACTIONS(9743), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10492), 1, + ACTIONS(9745), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10498), 1, + ACTIONS(9749), 1, anon_sym_DQUOTE, - ACTIONS(10502), 1, + ACTIONS(9753), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, + ACTIONS(9755), 1, anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(9757), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10750), 1, - sym_word, - ACTIONS(10752), 1, - sym__special_character, - ACTIONS(10756), 1, + ACTIONS(9761), 1, + sym__comment_word, + ACTIONS(9747), 2, sym_test_operator, - STATE(4353), 1, - aux_sym__literal_repeat1, - STATE(4901), 1, - sym_concatenation, - ACTIONS(10508), 2, + sym__special_character, + ACTIONS(9759), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10754), 2, + ACTIONS(9751), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4878), 9, + STATE(1283), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254771,48 +243300,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [214075] = 20, - ACTIONS(71), 1, + [204269] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3946), 1, + ACTIONS(1374), 1, anon_sym_DOLLAR, - ACTIONS(3952), 1, + ACTIONS(1380), 1, aux_sym_number_token1, - ACTIONS(3954), 1, + ACTIONS(1382), 1, aux_sym_number_token2, - ACTIONS(3958), 1, + ACTIONS(1386), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3968), 1, + ACTIONS(1398), 1, sym__brace_start, - ACTIONS(10490), 1, + ACTIONS(8669), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10492), 1, + ACTIONS(8671), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10498), 1, + ACTIONS(8675), 1, anon_sym_DQUOTE, - ACTIONS(10502), 1, + ACTIONS(8679), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, + ACTIONS(8681), 1, anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(8683), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10752), 1, - sym__special_character, - ACTIONS(10758), 1, + ACTIONS(9119), 1, sym_word, - ACTIONS(10762), 1, - sym_test_operator, - STATE(4371), 1, - aux_sym__literal_repeat1, - STATE(4761), 1, - sym_concatenation, - ACTIONS(10508), 2, + ACTIONS(9127), 1, + sym__comment_word, + ACTIONS(8685), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10760), 2, + ACTIONS(9123), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9125), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4882), 9, + STATE(811), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254822,48 +243349,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [214146] = 20, - ACTIONS(71), 1, + [204336] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3508), 1, + ACTIONS(2051), 1, anon_sym_DOLLAR, - ACTIONS(3514), 1, + ACTIONS(2057), 1, aux_sym_number_token1, - ACTIONS(3516), 1, + ACTIONS(2059), 1, aux_sym_number_token2, - ACTIONS(3520), 1, + ACTIONS(2063), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3530), 1, + ACTIONS(2075), 1, sym__brace_start, - ACTIONS(10516), 1, + ACTIONS(9365), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10518), 1, + ACTIONS(9367), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10524), 1, + ACTIONS(9371), 1, anon_sym_DQUOTE, - ACTIONS(10528), 1, + ACTIONS(9375), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, + ACTIONS(9377), 1, anon_sym_BQUOTE, - ACTIONS(10532), 1, + ACTIONS(9379), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10764), 1, + ACTIONS(9763), 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(9769), 1, + sym__comment_word, + ACTIONS(9381), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10768), 2, + ACTIONS(9765), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9767), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4630), 9, + STATE(1554), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254873,48 +243398,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [214217] = 20, - ACTIONS(71), 1, + [204403] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3508), 1, + ACTIONS(3049), 1, anon_sym_DOLLAR, - ACTIONS(3514), 1, + ACTIONS(3055), 1, aux_sym_number_token1, - ACTIONS(3516), 1, + ACTIONS(3057), 1, aux_sym_number_token2, - ACTIONS(3520), 1, + ACTIONS(3061), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3530), 1, + ACTIONS(3071), 1, sym__brace_start, - ACTIONS(10516), 1, + ACTIONS(9275), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10518), 1, + ACTIONS(9277), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10524), 1, + ACTIONS(9281), 1, anon_sym_DQUOTE, - ACTIONS(10528), 1, + ACTIONS(9285), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, + ACTIONS(9287), 1, anon_sym_BQUOTE, - ACTIONS(10532), 1, + ACTIONS(9289), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10766), 1, - sym__special_character, - ACTIONS(10772), 1, + ACTIONS(9771), 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(9777), 1, + sym__comment_word, + ACTIONS(9291), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10774), 2, + ACTIONS(9773), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9775), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4632), 9, + STATE(4183), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254924,46 +243447,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [214288] = 18, + [204470] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2343), 1, + ACTIONS(2569), 1, + anon_sym_DOLLAR, + ACTIONS(2575), 1, aux_sym_number_token1, - ACTIONS(2345), 1, + ACTIONS(2577), 1, aux_sym_number_token2, - ACTIONS(2349), 1, + ACTIONS(2581), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2359), 1, + ACTIONS(2591), 1, sym__brace_start, - ACTIONS(9628), 1, + ACTIONS(9387), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9630), 1, + ACTIONS(9389), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9634), 1, + ACTIONS(9393), 1, anon_sym_DQUOTE, - ACTIONS(9638), 1, + ACTIONS(9397), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9640), 1, + ACTIONS(9399), 1, anon_sym_BQUOTE, - ACTIONS(9642), 1, + ACTIONS(9401), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10226), 1, + ACTIONS(9779), 1, sym_word, - ACTIONS(10232), 1, + ACTIONS(9785), 1, sym__comment_word, - ACTIONS(10778), 1, - anon_sym_DOLLAR, - ACTIONS(9644), 2, + ACTIONS(9403), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10228), 2, + ACTIONS(9781), 2, sym_test_operator, sym__special_character, - ACTIONS(10230), 3, + ACTIONS(9783), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1329), 9, + STATE(4058), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254973,46 +243496,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [214355] = 18, + [204537] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, + ACTIONS(701), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(47), 1, + ACTIONS(703), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(53), 1, + ACTIONS(705), 1, + anon_sym_DOLLAR, + ACTIONS(709), 1, anon_sym_DQUOTE, - ACTIONS(57), 1, + ACTIONS(713), 1, aux_sym_number_token1, - ACTIONS(59), 1, + ACTIONS(715), 1, aux_sym_number_token2, - ACTIONS(61), 1, + ACTIONS(717), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(63), 1, + ACTIONS(719), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(65), 1, + ACTIONS(721), 1, anon_sym_BQUOTE, - ACTIONS(67), 1, + ACTIONS(723), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(79), 1, + ACTIONS(733), 1, sym__brace_start, - ACTIONS(10192), 1, + ACTIONS(9787), 1, sym_word, - ACTIONS(10200), 1, + ACTIONS(9793), 1, sym__comment_word, - ACTIONS(10780), 1, - anon_sym_DOLLAR, - ACTIONS(69), 2, + ACTIONS(725), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10196), 2, + ACTIONS(9789), 2, sym_test_operator, sym__special_character, - ACTIONS(10198), 3, + ACTIONS(9791), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1110), 9, + STATE(820), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255022,46 +243545,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [214422] = 18, + [204604] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8188), 1, + ACTIONS(7121), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8190), 1, + ACTIONS(7123), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8196), 1, + ACTIONS(7125), 1, + anon_sym_DOLLAR, + ACTIONS(7129), 1, anon_sym_DQUOTE, - ACTIONS(8200), 1, + ACTIONS(7133), 1, aux_sym_number_token1, - ACTIONS(8202), 1, + ACTIONS(7135), 1, aux_sym_number_token2, - ACTIONS(8204), 1, + ACTIONS(7137), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8206), 1, + ACTIONS(7139), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8208), 1, + ACTIONS(7141), 1, anon_sym_BQUOTE, - ACTIONS(8210), 1, + ACTIONS(7143), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8220), 1, + ACTIONS(7153), 1, sym__brace_start, - ACTIONS(10274), 1, + ACTIONS(9795), 1, sym_word, - ACTIONS(10280), 1, + ACTIONS(9801), 1, sym__comment_word, - ACTIONS(10782), 1, - anon_sym_DOLLAR, - ACTIONS(8212), 2, + ACTIONS(7145), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10276), 2, + ACTIONS(9797), 2, sym_test_operator, sym__special_character, - ACTIONS(10278), 3, + ACTIONS(9799), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4200), 9, + STATE(4120), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255071,46 +243594,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [214489] = 18, + [204671] = 18, ACTIONS(3), 1, sym_comment, - 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(8160), 1, + ACTIONS(7437), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8162), 1, + ACTIONS(7439), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8166), 1, + ACTIONS(7441), 1, + anon_sym_DOLLAR, + ACTIONS(7445), 1, anon_sym_DQUOTE, - ACTIONS(8170), 1, + ACTIONS(7449), 1, + aux_sym_number_token1, + ACTIONS(7451), 1, + aux_sym_number_token2, + ACTIONS(7453), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8172), 1, + ACTIONS(7455), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7457), 1, anon_sym_BQUOTE, - ACTIONS(8174), 1, + ACTIONS(7459), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10114), 1, + ACTIONS(7469), 1, + sym__brace_start, + ACTIONS(9803), 1, sym_word, - ACTIONS(10120), 1, + ACTIONS(9809), 1, sym__comment_word, - ACTIONS(10784), 1, - anon_sym_DOLLAR, - ACTIONS(8176), 2, + ACTIONS(7461), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10116), 2, + ACTIONS(9805), 2, sym_test_operator, sym__special_character, - ACTIONS(10118), 3, + ACTIONS(9807), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1171), 9, + STATE(1235), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255120,97 +243643,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [214556] = 18, + [204738] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3091), 1, + ACTIONS(1761), 1, + anon_sym_DOLLAR, + ACTIONS(1767), 1, aux_sym_number_token1, - ACTIONS(3093), 1, + ACTIONS(1769), 1, aux_sym_number_token2, - ACTIONS(3097), 1, + ACTIONS(1773), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3109), 1, + ACTIONS(1787), 1, sym__brace_start, - ACTIONS(10786), 1, - sym_word, - ACTIONS(10788), 1, + ACTIONS(7263), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10790), 1, + ACTIONS(7265), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10792), 1, - anon_sym_DOLLAR, - ACTIONS(10796), 1, + ACTIONS(7269), 1, anon_sym_DQUOTE, - ACTIONS(10800), 1, + ACTIONS(7273), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10802), 1, + ACTIONS(7275), 1, anon_sym_BQUOTE, - ACTIONS(10804), 1, + ACTIONS(7277), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10808), 1, + ACTIONS(9811), 1, + sym_word, + ACTIONS(9817), 1, sym__comment_word, - ACTIONS(10794), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10806), 2, + ACTIONS(7279), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10798), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1855), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [214623] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7866), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7868), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7870), 1, - anon_sym_DOLLAR, - ACTIONS(7872), 1, - sym__special_character, - ACTIONS(7874), 1, - anon_sym_DQUOTE, - ACTIONS(7878), 1, - aux_sym_number_token1, - ACTIONS(7880), 1, - aux_sym_number_token2, - ACTIONS(7882), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7884), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7886), 1, - anon_sym_BQUOTE, - ACTIONS(7888), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7898), 1, - sym__brace_start, - ACTIONS(10810), 1, - sym_word, - ACTIONS(10814), 1, + ACTIONS(9813), 2, sym_test_operator, - STATE(1818), 1, - aux_sym__literal_repeat1, - STATE(2034), 1, - sym_concatenation, - ACTIONS(7890), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10812), 2, + sym__special_character, + ACTIONS(9815), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1357), 9, + STATE(1276), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255220,46 +243692,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [214694] = 18, + [204805] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3350), 1, + ACTIONS(2603), 1, + anon_sym_DOLLAR, + ACTIONS(2609), 1, aux_sym_number_token1, - ACTIONS(3352), 1, + ACTIONS(2611), 1, aux_sym_number_token2, - ACTIONS(3356), 1, + ACTIONS(2615), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3366), 1, + ACTIONS(2627), 1, sym__brace_start, - ACTIONS(10436), 1, + ACTIONS(9819), 1, sym_word, - ACTIONS(10438), 1, + ACTIONS(9821), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10440), 1, + ACTIONS(9823), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10444), 1, + ACTIONS(9827), 1, anon_sym_DQUOTE, - ACTIONS(10448), 1, + ACTIONS(9831), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10450), 1, + ACTIONS(9833), 1, anon_sym_BQUOTE, - ACTIONS(10452), 1, + ACTIONS(9835), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10456), 1, + ACTIONS(9839), 1, sym__comment_word, - ACTIONS(10816), 1, - anon_sym_DOLLAR, - ACTIONS(10442), 2, + ACTIONS(9825), 2, sym_test_operator, sym__special_character, - ACTIONS(10454), 2, + ACTIONS(9837), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10446), 3, + ACTIONS(9829), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4339), 9, + STATE(1482), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255269,48 +243741,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [214761] = 20, - ACTIONS(71), 1, + [204872] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3946), 1, + ACTIONS(1414), 1, anon_sym_DOLLAR, - ACTIONS(3952), 1, + ACTIONS(1420), 1, aux_sym_number_token1, - ACTIONS(3954), 1, + ACTIONS(1422), 1, aux_sym_number_token2, - ACTIONS(3958), 1, + ACTIONS(1426), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3968), 1, + ACTIONS(1438), 1, sym__brace_start, - ACTIONS(10490), 1, + ACTIONS(8729), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10492), 1, + ACTIONS(8731), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10498), 1, + ACTIONS(8735), 1, anon_sym_DQUOTE, - ACTIONS(10502), 1, + ACTIONS(8739), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, + ACTIONS(8741), 1, anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(8743), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10818), 1, + ACTIONS(9841), 1, sym_word, - ACTIONS(10820), 1, - sym__special_character, - ACTIONS(10824), 1, - sym_test_operator, - STATE(4353), 1, - aux_sym__literal_repeat1, - STATE(4901), 1, - sym_concatenation, - ACTIONS(10508), 2, + ACTIONS(9847), 1, + sym__comment_word, + ACTIONS(8745), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10822), 2, + ACTIONS(9843), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9845), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4652), 9, + STATE(994), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255320,48 +243790,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [214832] = 20, - ACTIONS(71), 1, + [204939] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3946), 1, + ACTIONS(2397), 1, anon_sym_DOLLAR, - ACTIONS(3952), 1, + ACTIONS(2403), 1, aux_sym_number_token1, - ACTIONS(3954), 1, + ACTIONS(2405), 1, aux_sym_number_token2, - ACTIONS(3958), 1, + ACTIONS(2409), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3968), 1, + ACTIONS(2421), 1, sym__brace_start, - ACTIONS(10490), 1, + ACTIONS(9539), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10492), 1, + ACTIONS(9541), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10498), 1, + ACTIONS(9545), 1, anon_sym_DQUOTE, - ACTIONS(10502), 1, + ACTIONS(9549), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, + ACTIONS(9551), 1, anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(9553), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10820), 1, - sym__special_character, - ACTIONS(10826), 1, + ACTIONS(9849), 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(9855), 1, + sym__comment_word, + ACTIONS(9555), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10828), 2, + ACTIONS(9851), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9853), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4656), 9, + STATE(1686), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255371,48 +243839,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [214903] = 20, - ACTIONS(71), 1, + [205006] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3508), 1, + ACTIONS(3337), 1, anon_sym_DOLLAR, - ACTIONS(3514), 1, + ACTIONS(3343), 1, aux_sym_number_token1, - ACTIONS(3516), 1, + ACTIONS(3345), 1, aux_sym_number_token2, - ACTIONS(3520), 1, + ACTIONS(3349), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3530), 1, + ACTIONS(3359), 1, sym__brace_start, - ACTIONS(10516), 1, + ACTIONS(9459), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10518), 1, + ACTIONS(9461), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10524), 1, + ACTIONS(9465), 1, anon_sym_DQUOTE, - ACTIONS(10528), 1, + ACTIONS(9469), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, + ACTIONS(9471), 1, anon_sym_BQUOTE, - ACTIONS(10532), 1, + ACTIONS(9473), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10832), 1, + ACTIONS(9857), 1, sym_word, - ACTIONS(10834), 1, - sym__special_character, - ACTIONS(10838), 1, - sym_test_operator, - STATE(4260), 1, - aux_sym__literal_repeat1, - STATE(4557), 1, - sym_concatenation, - ACTIONS(10534), 2, + ACTIONS(9863), 1, + sym__comment_word, + ACTIONS(9475), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10836), 2, + ACTIONS(9859), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9861), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4499), 9, + STATE(4358), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255422,97 +243888,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [214974] = 20, - ACTIONS(71), 1, + [205073] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3508), 1, + ACTIONS(3083), 1, anon_sym_DOLLAR, - ACTIONS(3514), 1, + ACTIONS(3089), 1, aux_sym_number_token1, - ACTIONS(3516), 1, + ACTIONS(3091), 1, aux_sym_number_token2, - ACTIONS(3520), 1, + ACTIONS(3095), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3530), 1, - sym__brace_start, - ACTIONS(10516), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10518), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(10524), 1, - anon_sym_DQUOTE, - ACTIONS(10528), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, - anon_sym_BQUOTE, - ACTIONS(10532), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10834), 1, - sym__special_character, - ACTIONS(10840), 1, - sym_word, - ACTIONS(10844), 1, - sym_test_operator, - STATE(4213), 1, - aux_sym__literal_repeat1, - STATE(4518), 1, - sym_concatenation, - ACTIONS(10534), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10842), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(4501), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [215045] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7866), 1, + ACTIONS(3105), 1, + sym__brace_start, + ACTIONS(8841), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7868), 1, + ACTIONS(8843), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7870), 1, - anon_sym_DOLLAR, - ACTIONS(7874), 1, + ACTIONS(8847), 1, anon_sym_DQUOTE, - ACTIONS(7878), 1, - aux_sym_number_token1, - ACTIONS(7880), 1, - aux_sym_number_token2, - ACTIONS(7882), 1, + ACTIONS(8851), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7884), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7886), 1, + ACTIONS(8853), 1, anon_sym_BQUOTE, - ACTIONS(7888), 1, + ACTIONS(8855), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7898), 1, - sym__brace_start, - ACTIONS(10846), 1, + ACTIONS(9865), 1, sym_word, - ACTIONS(10852), 1, + ACTIONS(9871), 1, sym__comment_word, - ACTIONS(7890), 2, + ACTIONS(8857), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10848), 2, + ACTIONS(9867), 2, sym_test_operator, sym__special_character, - ACTIONS(10850), 3, + ACTIONS(9869), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1527), 9, + STATE(4303), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255522,46 +243937,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [215112] = 18, + [205140] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1039), 1, + ACTIONS(3528), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1041), 1, + ACTIONS(3530), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1047), 1, + ACTIONS(3536), 1, anon_sym_DQUOTE, - ACTIONS(1051), 1, + ACTIONS(3540), 1, aux_sym_number_token1, - ACTIONS(1053), 1, + ACTIONS(3542), 1, aux_sym_number_token2, - ACTIONS(1055), 1, + ACTIONS(3544), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1057), 1, + ACTIONS(3546), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1059), 1, + ACTIONS(3548), 1, anon_sym_BQUOTE, - ACTIONS(1061), 1, + ACTIONS(3550), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1069), 1, + ACTIONS(3560), 1, sym__brace_start, - ACTIONS(10854), 1, + ACTIONS(9307), 1, sym_word, - ACTIONS(10856), 1, - anon_sym_DOLLAR, - ACTIONS(10862), 1, + ACTIONS(9313), 1, sym__comment_word, - ACTIONS(1063), 2, + ACTIONS(9873), 1, + anon_sym_DOLLAR, + ACTIONS(3552), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10858), 2, + ACTIONS(9309), 2, sym_test_operator, sym__special_character, - ACTIONS(10860), 3, + ACTIONS(9311), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2144), 9, + STATE(2442), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255571,46 +243986,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [215179] = 18, + [205207] = 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(7375), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10296), 1, + ACTIONS(7377), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10302), 1, + ACTIONS(7379), 1, + anon_sym_DOLLAR, + ACTIONS(7383), 1, anon_sym_DQUOTE, - ACTIONS(10306), 1, + ACTIONS(7387), 1, + aux_sym_number_token1, + ACTIONS(7389), 1, + aux_sym_number_token2, + ACTIONS(7391), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10308), 1, + ACTIONS(7393), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7395), 1, anon_sym_BQUOTE, - ACTIONS(10310), 1, + ACTIONS(7397), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10314), 1, + ACTIONS(7407), 1, + sym__brace_start, + ACTIONS(8919), 1, + sym_word, + ACTIONS(8927), 1, sym__comment_word, - ACTIONS(10300), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10312), 2, + ACTIONS(7399), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10304), 3, + ACTIONS(8923), 2, + sym_test_operator, + sym__special_character, + ACTIONS(8925), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1841), 9, + STATE(4148), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255620,46 +244035,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [215246] = 18, + [205274] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(9896), 1, + ACTIONS(3528), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9898), 1, + ACTIONS(3530), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9904), 1, + ACTIONS(3536), 1, anon_sym_DQUOTE, - ACTIONS(9908), 1, + ACTIONS(3540), 1, aux_sym_number_token1, - ACTIONS(9910), 1, + ACTIONS(3542), 1, aux_sym_number_token2, - ACTIONS(9912), 1, + ACTIONS(3544), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9914), 1, + ACTIONS(3546), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9916), 1, + ACTIONS(3548), 1, anon_sym_BQUOTE, - ACTIONS(9918), 1, + ACTIONS(3550), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9924), 1, + ACTIONS(3560), 1, sym__brace_start, - ACTIONS(10864), 1, + ACTIONS(9307), 1, sym_word, - ACTIONS(10866), 1, - anon_sym_DOLLAR, - ACTIONS(10872), 1, + ACTIONS(9313), 1, sym__comment_word, - ACTIONS(9920), 2, + ACTIONS(9875), 1, + anon_sym_DOLLAR, + ACTIONS(3552), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10868), 2, + ACTIONS(9309), 2, sym_test_operator, sym__special_character, - ACTIONS(10870), 3, + ACTIONS(9311), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2333), 9, + STATE(2442), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255669,48 +244084,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [215313] = 20, + [205341] = 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(7197), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10492), 1, + ACTIONS(7199), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10498), 1, + ACTIONS(7201), 1, + anon_sym_DOLLAR, + ACTIONS(7203), 1, + sym__special_character, + ACTIONS(7205), 1, anon_sym_DQUOTE, - ACTIONS(10502), 1, + ACTIONS(7209), 1, + aux_sym_number_token1, + ACTIONS(7211), 1, + aux_sym_number_token2, + ACTIONS(7213), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, + ACTIONS(7215), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7217), 1, anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(7219), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10874), 1, + ACTIONS(7229), 1, + sym__brace_start, + ACTIONS(9877), 1, sym_word, - ACTIONS(10876), 1, - sym__special_character, - ACTIONS(10880), 1, + ACTIONS(9881), 1, sym_test_operator, - STATE(4353), 1, + STATE(1657), 1, aux_sym__literal_repeat1, - STATE(4901), 1, + STATE(1808), 1, sym_concatenation, - ACTIONS(10508), 2, + ACTIONS(7221), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10878), 2, + ACTIONS(9879), 2, sym_raw_string, sym_ansi_c_string, - STATE(5239), 9, + STATE(1330), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255720,48 +244135,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [215384] = 20, - ACTIONS(71), 1, + [205412] = 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(7159), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10492), 1, + ACTIONS(7161), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10498), 1, + ACTIONS(7167), 1, anon_sym_DQUOTE, - ACTIONS(10502), 1, + ACTIONS(7171), 1, + aux_sym_number_token1, + ACTIONS(7173), 1, + aux_sym_number_token2, + ACTIONS(7175), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, + ACTIONS(7177), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7179), 1, anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(7181), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10876), 1, - sym__special_character, - ACTIONS(10882), 1, + ACTIONS(7191), 1, + sym__brace_start, + ACTIONS(9193), 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(9201), 1, + sym__comment_word, + ACTIONS(9883), 1, + anon_sym_DOLLAR, + ACTIONS(7183), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10884), 2, + ACTIONS(9197), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9199), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5243), 9, + STATE(1463), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255771,48 +244184,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [215455] = 20, - ACTIONS(71), 1, + [205479] = 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(7197), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10518), 1, + ACTIONS(7199), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10524), 1, + ACTIONS(7205), 1, anon_sym_DQUOTE, - ACTIONS(10528), 1, + ACTIONS(7209), 1, + aux_sym_number_token1, + ACTIONS(7211), 1, + aux_sym_number_token2, + ACTIONS(7213), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, + ACTIONS(7215), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7217), 1, anon_sym_BQUOTE, - ACTIONS(10532), 1, + ACTIONS(7219), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10888), 1, + ACTIONS(7229), 1, + sym__brace_start, + ACTIONS(8975), 1, sym_word, - ACTIONS(10890), 1, - sym__special_character, - ACTIONS(10894), 1, - sym_test_operator, - STATE(4260), 1, - aux_sym__literal_repeat1, - STATE(4557), 1, - sym_concatenation, - ACTIONS(10534), 2, + ACTIONS(8981), 1, + sym__comment_word, + ACTIONS(9885), 1, + anon_sym_DOLLAR, + ACTIONS(7221), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10892), 2, + ACTIONS(8977), 2, + sym_test_operator, + sym__special_character, + ACTIONS(8979), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5112), 9, + STATE(1417), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255822,48 +244233,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [215526] = 20, - ACTIONS(71), 1, + [205546] = 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(7197), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10518), 1, + ACTIONS(7199), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10524), 1, + ACTIONS(7205), 1, anon_sym_DQUOTE, - ACTIONS(10528), 1, + ACTIONS(7209), 1, + aux_sym_number_token1, + ACTIONS(7211), 1, + aux_sym_number_token2, + ACTIONS(7213), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, + ACTIONS(7215), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7217), 1, anon_sym_BQUOTE, - ACTIONS(10532), 1, + ACTIONS(7219), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10890), 1, - sym__special_character, - ACTIONS(10896), 1, + ACTIONS(7229), 1, + sym__brace_start, + ACTIONS(8975), 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(8981), 1, + sym__comment_word, + ACTIONS(9887), 1, + anon_sym_DOLLAR, + ACTIONS(7221), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10898), 2, + ACTIONS(8977), 2, + sym_test_operator, + sym__special_character, + ACTIONS(8979), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5067), 9, + STATE(1417), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255873,48 +244282,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [215597] = 20, - ACTIONS(71), 1, + [205613] = 18, + 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, + ACTIONS(6975), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9976), 1, + ACTIONS(6977), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9980), 1, + ACTIONS(6983), 1, anon_sym_DQUOTE, - ACTIONS(9984), 1, + ACTIONS(6987), 1, + aux_sym_number_token1, + ACTIONS(6989), 1, + aux_sym_number_token2, + ACTIONS(6991), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9986), 1, + ACTIONS(6993), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6995), 1, anon_sym_BQUOTE, - ACTIONS(9988), 1, + ACTIONS(6997), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10070), 1, - sym__special_character, - ACTIONS(10902), 1, + ACTIONS(7007), 1, + sym__brace_start, + ACTIONS(9683), 1, sym_word, - ACTIONS(10906), 1, - sym_test_operator, - STATE(1463), 1, - aux_sym__literal_repeat1, - STATE(1628), 1, - sym_concatenation, - ACTIONS(9990), 2, + ACTIONS(9689), 1, + sym__comment_word, + ACTIONS(9889), 1, + anon_sym_DOLLAR, + ACTIONS(6999), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10904), 2, + ACTIONS(9685), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9687), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1106), 9, + STATE(5145), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255924,46 +244331,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [215668] = 18, + [205680] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1039), 1, + ACTIONS(4507), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1041), 1, + ACTIONS(4509), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1047), 1, + ACTIONS(4515), 1, anon_sym_DQUOTE, - ACTIONS(1051), 1, + ACTIONS(4519), 1, aux_sym_number_token1, - ACTIONS(1053), 1, + ACTIONS(4521), 1, aux_sym_number_token2, - ACTIONS(1055), 1, + ACTIONS(4523), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1057), 1, + ACTIONS(4525), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1059), 1, + ACTIONS(4527), 1, anon_sym_BQUOTE, - ACTIONS(1061), 1, + ACTIONS(4529), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1069), 1, + ACTIONS(4535), 1, sym__brace_start, - ACTIONS(10854), 1, + ACTIONS(9721), 1, sym_word, - ACTIONS(10862), 1, + ACTIONS(9727), 1, sym__comment_word, - ACTIONS(10908), 1, + ACTIONS(9891), 1, anon_sym_DOLLAR, - ACTIONS(1063), 2, + ACTIONS(4531), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10858), 2, + ACTIONS(9723), 2, sym_test_operator, sym__special_character, - ACTIONS(10860), 3, + ACTIONS(9725), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2144), 9, + STATE(5149), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255973,48 +244380,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [215735] = 20, - ACTIONS(71), 1, + [205747] = 18, + 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, + ACTIONS(4235), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9976), 1, + ACTIONS(4237), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9980), 1, + ACTIONS(4243), 1, anon_sym_DQUOTE, - ACTIONS(9984), 1, + ACTIONS(4247), 1, + aux_sym_number_token1, + ACTIONS(4249), 1, + aux_sym_number_token2, + ACTIONS(4251), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9986), 1, + ACTIONS(4253), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4255), 1, anon_sym_BQUOTE, - ACTIONS(9988), 1, + ACTIONS(4257), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10070), 1, - sym__special_character, - ACTIONS(10910), 1, + ACTIONS(4265), 1, + sym__brace_start, + ACTIONS(9355), 1, sym_word, - ACTIONS(10914), 1, - sym_test_operator, - STATE(1387), 1, - aux_sym__literal_repeat1, - STATE(1635), 1, - sym_concatenation, - ACTIONS(9990), 2, + ACTIONS(9361), 1, + sym__comment_word, + ACTIONS(9893), 1, + anon_sym_DOLLAR, + ACTIONS(4259), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10912), 2, + ACTIONS(9357), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9359), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1108), 9, + STATE(2608), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256024,46 +244429,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [215806] = 18, + [205814] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8188), 1, + ACTIONS(4507), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8190), 1, + ACTIONS(4509), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8196), 1, + ACTIONS(4515), 1, anon_sym_DQUOTE, - ACTIONS(8200), 1, + ACTIONS(4519), 1, aux_sym_number_token1, - ACTIONS(8202), 1, + ACTIONS(4521), 1, aux_sym_number_token2, - ACTIONS(8204), 1, + ACTIONS(4523), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8206), 1, + ACTIONS(4525), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8208), 1, + ACTIONS(4527), 1, anon_sym_BQUOTE, - ACTIONS(8210), 1, + ACTIONS(4529), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8220), 1, + ACTIONS(4535), 1, sym__brace_start, - ACTIONS(10274), 1, + ACTIONS(9721), 1, sym_word, - ACTIONS(10280), 1, + ACTIONS(9727), 1, sym__comment_word, - ACTIONS(10916), 1, + ACTIONS(9895), 1, anon_sym_DOLLAR, - ACTIONS(8212), 2, + ACTIONS(4531), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10276), 2, + ACTIONS(9723), 2, sym_test_operator, sym__special_character, - ACTIONS(10278), 3, + ACTIONS(9725), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4200), 9, + STATE(5149), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256073,46 +244478,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [215873] = 18, + [205881] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(9896), 1, + ACTIONS(4235), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9898), 1, + ACTIONS(4237), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9904), 1, + ACTIONS(4243), 1, anon_sym_DQUOTE, - ACTIONS(9908), 1, + ACTIONS(4247), 1, aux_sym_number_token1, - ACTIONS(9910), 1, + ACTIONS(4249), 1, aux_sym_number_token2, - ACTIONS(9912), 1, + ACTIONS(4251), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9914), 1, + ACTIONS(4253), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9916), 1, + ACTIONS(4255), 1, anon_sym_BQUOTE, - ACTIONS(9918), 1, + ACTIONS(4257), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9924), 1, + ACTIONS(4265), 1, sym__brace_start, - ACTIONS(10864), 1, + ACTIONS(9355), 1, sym_word, - ACTIONS(10872), 1, + ACTIONS(9361), 1, sym__comment_word, - ACTIONS(10918), 1, + ACTIONS(9897), 1, anon_sym_DOLLAR, - ACTIONS(9920), 2, + ACTIONS(4259), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10868), 2, + ACTIONS(9357), 2, sym_test_operator, sym__special_character, - ACTIONS(10870), 3, + ACTIONS(9359), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2333), 9, + STATE(2608), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256122,46 +244527,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [215940] = 18, - ACTIONS(3), 1, + [205948] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(308), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(310), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(312), 1, + ACTIONS(3638), 1, anon_sym_DOLLAR, - ACTIONS(316), 1, - anon_sym_DQUOTE, - ACTIONS(320), 1, + ACTIONS(3644), 1, aux_sym_number_token1, - ACTIONS(322), 1, + ACTIONS(3646), 1, aux_sym_number_token2, - ACTIONS(324), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(326), 1, + ACTIONS(3650), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(328), 1, + ACTIONS(3660), 1, + sym__brace_start, + ACTIONS(8983), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8985), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8989), 1, + anon_sym_DQUOTE, + ACTIONS(8993), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8995), 1, anon_sym_BQUOTE, - ACTIONS(330), 1, + ACTIONS(8997), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(340), 1, - sym__brace_start, - ACTIONS(10920), 1, + ACTIONS(9899), 1, sym_word, - ACTIONS(10926), 1, - sym__comment_word, - ACTIONS(332), 2, + ACTIONS(9901), 1, + sym__special_character, + ACTIONS(9905), 1, + sym_test_operator, + STATE(4285), 1, + aux_sym__literal_repeat1, + STATE(4641), 1, + sym_concatenation, + ACTIONS(8999), 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(9903), 2, sym_raw_string, sym_ansi_c_string, - STATE(997), 9, + STATE(4392), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256171,46 +244578,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [216007] = 18, - ACTIONS(3), 1, + [206019] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(2343), 1, + ACTIONS(3638), 1, + anon_sym_DOLLAR, + ACTIONS(3644), 1, aux_sym_number_token1, - ACTIONS(2345), 1, + ACTIONS(3646), 1, aux_sym_number_token2, - ACTIONS(2349), 1, + ACTIONS(3650), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2359), 1, + ACTIONS(3660), 1, sym__brace_start, - ACTIONS(9628), 1, + ACTIONS(8983), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9630), 1, + ACTIONS(8985), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9634), 1, + ACTIONS(8989), 1, anon_sym_DQUOTE, - ACTIONS(9638), 1, + ACTIONS(8993), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9640), 1, + ACTIONS(8995), 1, anon_sym_BQUOTE, - ACTIONS(9642), 1, + ACTIONS(8997), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10226), 1, + ACTIONS(9901), 1, + sym__special_character, + ACTIONS(9907), 1, sym_word, - ACTIONS(10232), 1, - sym__comment_word, - ACTIONS(10928), 1, - anon_sym_DOLLAR, - ACTIONS(9644), 2, + ACTIONS(9911), 1, + sym_test_operator, + STATE(4304), 1, + aux_sym__literal_repeat1, + STATE(4668), 1, + sym_concatenation, + ACTIONS(8999), 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(9909), 2, sym_raw_string, sym_ansi_c_string, - STATE(1329), 9, + STATE(4394), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256220,127 +244629,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, + [206090] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(1454), 1, + ACTIONS(3297), 1, + sym_word, + ACTIONS(3303), 1, anon_sym_DOLLAR, - ACTIONS(1460), 1, + ACTIONS(3309), 1, aux_sym_number_token1, - ACTIONS(1462), 1, + ACTIONS(3311), 1, aux_sym_number_token2, - ACTIONS(1466), 1, + ACTIONS(3315), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1478), 1, + ACTIONS(3323), 1, + sym_test_operator, + ACTIONS(3325), 1, sym__brace_start, - ACTIONS(9648), 1, + ACTIONS(9581), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9650), 1, + ACTIONS(9583), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9654), 1, + ACTIONS(9587), 1, anon_sym_DQUOTE, - ACTIONS(9658), 1, + ACTIONS(9591), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9660), 1, + ACTIONS(9593), 1, anon_sym_BQUOTE, - ACTIONS(9662), 1, + ACTIONS(9595), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10936), 1, - sym_word, - ACTIONS(10942), 1, - sym__comment_word, - ACTIONS(9664), 2, + ACTIONS(9913), 1, + sym__special_character, + STATE(4064), 1, + aux_sym__literal_repeat1, + STATE(4433), 1, + sym_concatenation, + ACTIONS(9597), 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(9915), 2, sym_raw_string, sym_ansi_c_string, - STATE(1249), 9, + STATE(4295), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256350,48 +244680,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [216241] = 20, + [206161] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(5216), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5218), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5220), 1, + ACTIONS(3303), 1, anon_sym_DOLLAR, - ACTIONS(5224), 1, - anon_sym_DQUOTE, - ACTIONS(5228), 1, + ACTIONS(3309), 1, aux_sym_number_token1, - ACTIONS(5230), 1, + ACTIONS(3311), 1, aux_sym_number_token2, - ACTIONS(5232), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5234), 1, + ACTIONS(3315), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5236), 1, - anon_sym_BQUOTE, - ACTIONS(5238), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5244), 1, + ACTIONS(3325), 1, sym__brace_start, - ACTIONS(10944), 1, + ACTIONS(3327), 1, sym_word, - ACTIONS(10946), 1, - sym__special_character, - ACTIONS(10950), 1, + ACTIONS(3329), 1, sym_test_operator, - STATE(5263), 1, + ACTIONS(9581), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9583), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9587), 1, + anon_sym_DQUOTE, + ACTIONS(9591), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9593), 1, + anon_sym_BQUOTE, + ACTIONS(9595), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9913), 1, + sym__special_character, + STATE(4121), 1, aux_sym__literal_repeat1, - STATE(5502), 1, + STATE(4375), 1, sym_concatenation, - ACTIONS(5240), 2, + ACTIONS(9597), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10948), 2, + ACTIONS(9917), 2, sym_raw_string, sym_ansi_c_string, - STATE(5118), 9, + STATE(4297), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256401,48 +244731,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [216312] = 20, + [206232] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(5216), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5218), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5220), 1, + ACTIONS(3303), 1, anon_sym_DOLLAR, - ACTIONS(5224), 1, - anon_sym_DQUOTE, - ACTIONS(5228), 1, + ACTIONS(3309), 1, aux_sym_number_token1, - ACTIONS(5230), 1, + ACTIONS(3311), 1, aux_sym_number_token2, - ACTIONS(5232), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5234), 1, + ACTIONS(3315), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5236), 1, + ACTIONS(3325), 1, + sym__brace_start, + ACTIONS(9581), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9583), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9587), 1, + anon_sym_DQUOTE, + ACTIONS(9591), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9593), 1, anon_sym_BQUOTE, - ACTIONS(5238), 1, + ACTIONS(9595), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5244), 1, - sym__brace_start, - ACTIONS(10946), 1, + ACTIONS(9913), 1, sym__special_character, - ACTIONS(10952), 1, + ACTIONS(9919), 1, sym_word, - ACTIONS(10956), 1, + ACTIONS(9923), 1, sym_test_operator, - STATE(5276), 1, + STATE(4052), 1, aux_sym__literal_repeat1, - STATE(5505), 1, + STATE(4370), 1, sym_concatenation, - ACTIONS(5240), 2, + ACTIONS(9597), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10954), 2, + ACTIONS(9921), 2, sym_raw_string, sym_ansi_c_string, - STATE(5122), 9, + STATE(4299), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256452,43 +244782,45 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [216383] = 18, - ACTIONS(3), 1, + [206303] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(2934), 1, + ACTIONS(3303), 1, + anon_sym_DOLLAR, + ACTIONS(3309), 1, aux_sym_number_token1, - ACTIONS(2936), 1, + ACTIONS(3311), 1, aux_sym_number_token2, - ACTIONS(2940), 1, + ACTIONS(3315), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2950), 1, + ACTIONS(3325), 1, sym__brace_start, - ACTIONS(10234), 1, - sym_word, - ACTIONS(10236), 1, + ACTIONS(9581), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10238), 1, + ACTIONS(9583), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10242), 1, + ACTIONS(9587), 1, anon_sym_DQUOTE, - ACTIONS(10246), 1, + ACTIONS(9591), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10248), 1, + ACTIONS(9593), 1, anon_sym_BQUOTE, - ACTIONS(10250), 1, + ACTIONS(9595), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10254), 1, - sym__comment_word, - ACTIONS(10958), 1, - anon_sym_DOLLAR, - ACTIONS(10240), 2, - sym_test_operator, + ACTIONS(9913), 1, sym__special_character, - ACTIONS(10252), 2, + ACTIONS(9925), 1, + sym_word, + ACTIONS(9929), 1, + sym_test_operator, + STATE(4134), 1, + aux_sym__literal_repeat1, + STATE(4361), 1, + sym_concatenation, + ACTIONS(9597), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10244), 3, - sym__bare_dollar, + ACTIONS(9927), 2, sym_raw_string, sym_ansi_c_string, STATE(4301), 9, @@ -256501,46 +244833,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [216450] = 18, - ACTIONS(3), 1, + [206374] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(2934), 1, + ACTIONS(3638), 1, + anon_sym_DOLLAR, + ACTIONS(3644), 1, aux_sym_number_token1, - ACTIONS(2936), 1, + ACTIONS(3646), 1, aux_sym_number_token2, - ACTIONS(2940), 1, + ACTIONS(3650), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2950), 1, + ACTIONS(3660), 1, sym__brace_start, - ACTIONS(10234), 1, + ACTIONS(3704), 1, sym_word, - ACTIONS(10236), 1, + ACTIONS(3708), 1, + sym_test_operator, + ACTIONS(8983), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10238), 1, + ACTIONS(8985), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10242), 1, + ACTIONS(8989), 1, anon_sym_DQUOTE, - ACTIONS(10246), 1, + ACTIONS(8993), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10248), 1, + ACTIONS(8995), 1, anon_sym_BQUOTE, - ACTIONS(10250), 1, + ACTIONS(8997), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10254), 1, - sym__comment_word, - ACTIONS(10960), 1, - anon_sym_DOLLAR, - ACTIONS(10240), 2, - sym_test_operator, + ACTIONS(9901), 1, sym__special_character, - ACTIONS(10252), 2, + STATE(4227), 1, + aux_sym__literal_repeat1, + STATE(4639), 1, + sym_concatenation, + ACTIONS(8999), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10244), 3, - sym__bare_dollar, + ACTIONS(9931), 2, sym_raw_string, sym_ansi_c_string, - STATE(4301), 9, + STATE(4407), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256550,46 +244884,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [216517] = 18, - ACTIONS(3), 1, + [206445] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(10316), 1, + 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(3710), 1, sym_word, - ACTIONS(10318), 1, + ACTIONS(3712), 1, + sym_test_operator, + ACTIONS(8983), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10320), 1, + ACTIONS(8985), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10326), 1, + ACTIONS(8989), 1, anon_sym_DQUOTE, - ACTIONS(10330), 1, - aux_sym_number_token1, - ACTIONS(10332), 1, - aux_sym_number_token2, - ACTIONS(10334), 1, + ACTIONS(8993), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10336), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(10338), 1, + ACTIONS(8995), 1, anon_sym_BQUOTE, - ACTIONS(10340), 1, + ACTIONS(8997), 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(9901), 1, sym__special_character, - ACTIONS(10342), 2, + STATE(4237), 1, + aux_sym__literal_repeat1, + STATE(4677), 1, + sym_concatenation, + ACTIONS(8999), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10328), 3, - sym__bare_dollar, + ACTIONS(9933), 2, sym_raw_string, sym_ansi_c_string, - STATE(6138), 9, + STATE(4409), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256599,46 +244935,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [216584] = 18, + [206516] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3350), 1, + ACTIONS(1597), 1, aux_sym_number_token1, - ACTIONS(3352), 1, + ACTIONS(1599), 1, aux_sym_number_token2, - ACTIONS(3356), 1, + ACTIONS(1603), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3366), 1, + ACTIONS(1617), 1, sym__brace_start, - ACTIONS(10436), 1, - sym_word, - ACTIONS(10438), 1, + ACTIONS(7047), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10440), 1, + ACTIONS(7049), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10444), 1, + ACTIONS(7053), 1, anon_sym_DQUOTE, - ACTIONS(10448), 1, + ACTIONS(7057), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10450), 1, + ACTIONS(7059), 1, anon_sym_BQUOTE, - ACTIONS(10452), 1, + ACTIONS(7061), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10456), 1, + ACTIONS(9731), 1, + sym_word, + ACTIONS(9737), 1, sym__comment_word, - ACTIONS(10964), 1, + ACTIONS(9935), 1, anon_sym_DOLLAR, - ACTIONS(10442), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10454), 2, + ACTIONS(7063), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10446), 3, + ACTIONS(9733), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9735), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4339), 9, + STATE(1068), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256648,48 +244984,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [216651] = 20, - ACTIONS(71), 1, + [206583] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(10318), 1, + ACTIONS(2796), 1, + aux_sym_number_token1, + ACTIONS(2798), 1, + aux_sym_number_token2, + ACTIONS(2802), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2814), 1, + sym__brace_start, + ACTIONS(9317), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10320), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10326), 1, + ACTIONS(9323), 1, anon_sym_DQUOTE, - ACTIONS(10330), 1, - aux_sym_number_token1, - ACTIONS(10332), 1, - aux_sym_number_token2, - ACTIONS(10334), 1, + ACTIONS(9327), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10336), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(10338), 1, + ACTIONS(9329), 1, anon_sym_BQUOTE, - ACTIONS(10340), 1, + ACTIONS(9331), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10346), 1, - sym__brace_start, - ACTIONS(10962), 1, - anon_sym_DOLLAR, - ACTIONS(10966), 1, + ACTIONS(9635), 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(9641), 1, + sym__comment_word, + ACTIONS(9937), 1, + anon_sym_DOLLAR, + ACTIONS(9333), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10970), 2, + ACTIONS(9637), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9639), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(6108), 9, + STATE(1767), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256699,46 +245033,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [216722] = 18, + [206650] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(308), 1, + ACTIONS(2796), 1, + aux_sym_number_token1, + ACTIONS(2798), 1, + aux_sym_number_token2, + ACTIONS(2802), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2814), 1, + sym__brace_start, + ACTIONS(9317), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(310), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(316), 1, + ACTIONS(9323), 1, anon_sym_DQUOTE, - ACTIONS(320), 1, - aux_sym_number_token1, - ACTIONS(322), 1, - aux_sym_number_token2, - ACTIONS(324), 1, + ACTIONS(9327), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(326), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(328), 1, + ACTIONS(9329), 1, anon_sym_BQUOTE, - ACTIONS(330), 1, + ACTIONS(9331), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(340), 1, - sym__brace_start, - ACTIONS(10920), 1, + ACTIONS(9635), 1, sym_word, - ACTIONS(10926), 1, + ACTIONS(9641), 1, sym__comment_word, - ACTIONS(10974), 1, + ACTIONS(9939), 1, anon_sym_DOLLAR, - ACTIONS(332), 2, + ACTIONS(9333), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10922), 2, + ACTIONS(9637), 2, sym_test_operator, sym__special_character, - ACTIONS(10924), 3, + ACTIONS(9639), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(997), 9, + STATE(1767), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256748,13 +245082,15 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [216789] = 18, + [206717] = 18, 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, @@ -256771,23 +245107,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, ACTIONS(340), 1, sym__brace_start, - ACTIONS(10920), 1, + ACTIONS(9941), 1, sym_word, - ACTIONS(10926), 1, + ACTIONS(9947), 1, sym__comment_word, - ACTIONS(10976), 1, - anon_sym_DOLLAR, ACTIONS(332), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10922), 2, + ACTIONS(9943), 2, sym_test_operator, sym__special_character, - ACTIONS(10924), 3, + ACTIONS(9945), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(997), 9, + STATE(1028), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256797,46 +245131,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [216856] = 18, + [206784] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(308), 1, + 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(7047), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(310), 1, + ACTIONS(7049), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(316), 1, + ACTIONS(7053), 1, anon_sym_DQUOTE, - ACTIONS(320), 1, - aux_sym_number_token1, - ACTIONS(322), 1, - aux_sym_number_token2, - ACTIONS(324), 1, + ACTIONS(7057), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(326), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(328), 1, + ACTIONS(7059), 1, anon_sym_BQUOTE, - ACTIONS(330), 1, + ACTIONS(7061), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(340), 1, - sym__brace_start, - ACTIONS(10920), 1, + ACTIONS(9731), 1, sym_word, - ACTIONS(10926), 1, + ACTIONS(9737), 1, sym__comment_word, - ACTIONS(10978), 1, + ACTIONS(9949), 1, anon_sym_DOLLAR, - ACTIONS(332), 2, + ACTIONS(7063), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10922), 2, + ACTIONS(9733), 2, sym_test_operator, sym__special_character, - ACTIONS(10924), 3, + ACTIONS(9735), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(997), 9, + STATE(1068), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256846,46 +245180,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [216923] = 18, + [206851] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(2681), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, + ACTIONS(2683), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, - anon_sym_DOLLAR, - ACTIONS(377), 1, + ACTIONS(2689), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(2693), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(2695), 1, aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(2697), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(2699), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, + ACTIONS(2701), 1, + anon_sym_BQUOTE, + ACTIONS(2703), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, + ACTIONS(2711), 1, sym__brace_start, - ACTIONS(5375), 1, - anon_sym_BQUOTE, - ACTIONS(9676), 1, + ACTIONS(9419), 1, sym_word, - ACTIONS(9680), 1, + ACTIONS(9425), 1, sym__comment_word, - ACTIONS(393), 2, + ACTIONS(9951), 1, + anon_sym_DOLLAR, + ACTIONS(2705), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9684), 2, + ACTIONS(9421), 2, sym_test_operator, sym__special_character, - ACTIONS(9682), 3, + ACTIONS(9423), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2517), 9, + STATE(2137), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256895,7 +245229,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [216990] = 18, + [206918] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(308), 1, @@ -256918,23 +245252,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, ACTIONS(340), 1, sym__brace_start, - ACTIONS(10920), 1, + ACTIONS(9941), 1, sym_word, - ACTIONS(10926), 1, + ACTIONS(9947), 1, sym__comment_word, - ACTIONS(10980), 1, + ACTIONS(9953), 1, anon_sym_DOLLAR, ACTIONS(332), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10922), 2, + ACTIONS(9943), 2, sym_test_operator, sym__special_character, - ACTIONS(10924), 3, + ACTIONS(9945), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(997), 9, + STATE(1028), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256944,48 +245278,95 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [217057] = 20, - ACTIONS(71), 1, + [206985] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(2653), 1, + ACTIONS(2681), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2655), 1, + ACTIONS(2683), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2657), 1, + ACTIONS(2689), 1, + anon_sym_DQUOTE, + ACTIONS(2693), 1, + aux_sym_number_token1, + ACTIONS(2695), 1, + aux_sym_number_token2, + ACTIONS(2697), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2699), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2701), 1, + anon_sym_BQUOTE, + ACTIONS(2703), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2711), 1, + sym__brace_start, + ACTIONS(9419), 1, + sym_word, + ACTIONS(9425), 1, + sym__comment_word, + ACTIONS(9955), 1, anon_sym_DOLLAR, - ACTIONS(2659), 1, + ACTIONS(2705), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9421), 2, + sym_test_operator, sym__special_character, - ACTIONS(2661), 1, + ACTIONS(9423), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + 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, + [207052] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9957), 1, + sym_word, + ACTIONS(9959), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9961), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9963), 1, + anon_sym_DOLLAR, + ACTIONS(9967), 1, anon_sym_DQUOTE, - ACTIONS(2665), 1, + ACTIONS(9971), 1, aux_sym_number_token1, - ACTIONS(2667), 1, + ACTIONS(9973), 1, aux_sym_number_token2, - ACTIONS(2669), 1, + ACTIONS(9975), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2671), 1, + ACTIONS(9977), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2673), 1, + ACTIONS(9979), 1, anon_sym_BQUOTE, - ACTIONS(2675), 1, + ACTIONS(9981), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2683), 1, + ACTIONS(9985), 1, + sym__comment_word, + ACTIONS(9987), 1, sym__brace_start, - ACTIONS(10982), 1, - sym_word, - ACTIONS(10986), 1, + ACTIONS(9965), 2, sym_test_operator, - STATE(2323), 1, - aux_sym__literal_repeat1, - STATE(2497), 1, - sym_concatenation, - ACTIONS(2677), 2, + sym__special_character, + ACTIONS(9983), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10984), 2, + ACTIONS(9969), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2114), 9, + STATE(5820), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256995,46 +245376,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [217128] = 18, - ACTIONS(3), 1, + [207119] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(262), 1, + ACTIONS(3638), 1, + anon_sym_DOLLAR, + ACTIONS(3644), 1, aux_sym_number_token1, - ACTIONS(264), 1, + ACTIONS(3646), 1, aux_sym_number_token2, - ACTIONS(268), 1, + ACTIONS(3650), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, + ACTIONS(3660), 1, sym__brace_start, - ACTIONS(1109), 1, + ACTIONS(8983), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(8985), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(8989), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(8993), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, + ACTIONS(8995), 1, anon_sym_BQUOTE, - ACTIONS(10480), 1, + ACTIONS(8997), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9989), 1, sym_word, - ACTIONS(10486), 1, - sym__comment_word, - ACTIONS(10988), 1, - anon_sym_DOLLAR, - ACTIONS(1125), 2, + ACTIONS(9991), 1, + sym__special_character, + ACTIONS(9995), 1, + sym_test_operator, + STATE(4285), 1, + aux_sym__literal_repeat1, + STATE(4641), 1, + sym_concatenation, + ACTIONS(8999), 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(9993), 2, sym_raw_string, sym_ansi_c_string, - STATE(2224), 9, + STATE(4688), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257044,48 +245427,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [217195] = 20, + [207190] = 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(3638), 1, anon_sym_DOLLAR, - ACTIONS(2659), 1, - sym__special_character, - ACTIONS(2661), 1, - anon_sym_DQUOTE, - ACTIONS(2665), 1, + ACTIONS(3644), 1, aux_sym_number_token1, - ACTIONS(2667), 1, + ACTIONS(3646), 1, aux_sym_number_token2, - ACTIONS(2669), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2671), 1, + ACTIONS(3650), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2673), 1, + ACTIONS(3660), 1, + sym__brace_start, + ACTIONS(8983), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8985), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8989), 1, + anon_sym_DQUOTE, + ACTIONS(8993), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8995), 1, anon_sym_BQUOTE, - ACTIONS(2675), 1, + ACTIONS(8997), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2683), 1, - sym__brace_start, - ACTIONS(10990), 1, + ACTIONS(9991), 1, + sym__special_character, + ACTIONS(9997), 1, sym_word, - ACTIONS(10994), 1, + ACTIONS(10001), 1, sym_test_operator, - STATE(2329), 1, + STATE(4304), 1, aux_sym__literal_repeat1, - STATE(2509), 1, + STATE(4668), 1, sym_concatenation, - ACTIONS(2677), 2, + ACTIONS(8999), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10992), 2, + ACTIONS(9999), 2, sym_raw_string, sym_ansi_c_string, - STATE(2117), 9, + STATE(4690), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257095,46 +245478,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [217266] = 18, - ACTIONS(3), 1, + [207261] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(262), 1, + ACTIONS(3303), 1, + anon_sym_DOLLAR, + ACTIONS(3309), 1, aux_sym_number_token1, - ACTIONS(264), 1, + ACTIONS(3311), 1, aux_sym_number_token2, - ACTIONS(268), 1, + ACTIONS(3315), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, + ACTIONS(3325), 1, sym__brace_start, - ACTIONS(1109), 1, + ACTIONS(3694), 1, + sym_word, + ACTIONS(3698), 1, + sym_test_operator, + ACTIONS(9581), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(9583), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(9587), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(9591), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, + ACTIONS(9593), 1, anon_sym_BQUOTE, - ACTIONS(10480), 1, - sym_word, - ACTIONS(10486), 1, - sym__comment_word, - ACTIONS(10996), 1, - anon_sym_DOLLAR, - ACTIONS(1125), 2, + ACTIONS(9595), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10003), 1, + sym__special_character, + STATE(4064), 1, + aux_sym__literal_repeat1, + STATE(4433), 1, + sym_concatenation, + ACTIONS(9597), 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(10005), 2, sym_raw_string, sym_ansi_c_string, - STATE(2224), 9, + STATE(4447), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257144,46 +245529,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [217333] = 18, - ACTIONS(3), 1, + [207332] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(3600), 1, + ACTIONS(3303), 1, + anon_sym_DOLLAR, + ACTIONS(3309), 1, aux_sym_number_token1, - ACTIONS(3602), 1, + ACTIONS(3311), 1, aux_sym_number_token2, - ACTIONS(3606), 1, + ACTIONS(3315), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3616), 1, + ACTIONS(3325), 1, sym__brace_start, - ACTIONS(9706), 1, + ACTIONS(3700), 1, + sym_word, + ACTIONS(3702), 1, + sym_test_operator, + ACTIONS(9581), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9708), 1, + ACTIONS(9583), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9712), 1, + ACTIONS(9587), 1, anon_sym_DQUOTE, - ACTIONS(9716), 1, + ACTIONS(9591), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9718), 1, + ACTIONS(9593), 1, anon_sym_BQUOTE, - ACTIONS(9720), 1, + ACTIONS(9595), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10998), 1, - sym_word, - ACTIONS(11000), 1, - anon_sym_DOLLAR, - ACTIONS(11006), 1, - sym__comment_word, - ACTIONS(9722), 2, + ACTIONS(10003), 1, + sym__special_character, + STATE(4121), 1, + aux_sym__literal_repeat1, + STATE(4375), 1, + sym_concatenation, + ACTIONS(9597), 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(10007), 2, sym_raw_string, sym_ansi_c_string, - STATE(1910), 9, + STATE(4449), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257193,46 +245580,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [217400] = 18, - ACTIONS(3), 1, + [207403] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(8300), 1, + ACTIONS(3303), 1, + anon_sym_DOLLAR, + ACTIONS(3309), 1, + aux_sym_number_token1, + ACTIONS(3311), 1, + aux_sym_number_token2, + ACTIONS(3315), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3325), 1, + sym__brace_start, + ACTIONS(9581), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8302), 1, + ACTIONS(9583), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8308), 1, + ACTIONS(9587), 1, anon_sym_DQUOTE, - ACTIONS(8312), 1, - aux_sym_number_token1, - ACTIONS(8314), 1, - aux_sym_number_token2, - ACTIONS(8316), 1, + ACTIONS(9591), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8320), 1, + ACTIONS(9593), 1, anon_sym_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(9595), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8332), 1, - sym__brace_start, - ACTIONS(11008), 1, + ACTIONS(10003), 1, + sym__special_character, + ACTIONS(10009), 1, sym_word, - ACTIONS(11010), 1, - anon_sym_DOLLAR, - ACTIONS(11016), 1, - sym__comment_word, - ACTIONS(8324), 2, + ACTIONS(10013), 1, + sym_test_operator, + STATE(4052), 1, + aux_sym__literal_repeat1, + STATE(4370), 1, + sym_concatenation, + ACTIONS(9597), 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(10011), 2, sym_raw_string, sym_ansi_c_string, - STATE(1664), 9, + STATE(4451), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257242,46 +245631,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [217467] = 18, - ACTIONS(3), 1, + [207474] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(8300), 1, + ACTIONS(3303), 1, + anon_sym_DOLLAR, + ACTIONS(3309), 1, + aux_sym_number_token1, + ACTIONS(3311), 1, + aux_sym_number_token2, + ACTIONS(3315), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3325), 1, + sym__brace_start, + ACTIONS(9581), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8302), 1, + ACTIONS(9583), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8308), 1, + ACTIONS(9587), 1, anon_sym_DQUOTE, - ACTIONS(8312), 1, - aux_sym_number_token1, - ACTIONS(8314), 1, - aux_sym_number_token2, - ACTIONS(8316), 1, + ACTIONS(9591), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8320), 1, + ACTIONS(9593), 1, anon_sym_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(9595), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8332), 1, - sym__brace_start, - ACTIONS(11008), 1, + ACTIONS(10003), 1, + sym__special_character, + ACTIONS(10015), 1, sym_word, - ACTIONS(11016), 1, - sym__comment_word, - ACTIONS(11018), 1, - anon_sym_DOLLAR, - ACTIONS(8324), 2, + ACTIONS(10019), 1, + sym_test_operator, + STATE(4134), 1, + aux_sym__literal_repeat1, + STATE(4361), 1, + sym_concatenation, + ACTIONS(9597), 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(10017), 2, sym_raw_string, sym_ansi_c_string, - STATE(1664), 9, + STATE(4453), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257291,46 +245682,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [217534] = 18, - ACTIONS(3), 1, + [207545] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(3091), 1, + ACTIONS(3638), 1, + anon_sym_DOLLAR, + ACTIONS(3644), 1, aux_sym_number_token1, - ACTIONS(3093), 1, + ACTIONS(3646), 1, aux_sym_number_token2, - ACTIONS(3097), 1, + ACTIONS(3650), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3109), 1, + ACTIONS(3660), 1, sym__brace_start, - ACTIONS(10786), 1, + ACTIONS(3772), 1, sym_word, - ACTIONS(10788), 1, + ACTIONS(3776), 1, + sym_test_operator, + ACTIONS(8983), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10790), 1, + ACTIONS(8985), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10796), 1, + ACTIONS(8989), 1, anon_sym_DQUOTE, - ACTIONS(10800), 1, + ACTIONS(8993), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10802), 1, + ACTIONS(8995), 1, anon_sym_BQUOTE, - ACTIONS(10804), 1, + ACTIONS(8997), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10808), 1, - sym__comment_word, - ACTIONS(11020), 1, - anon_sym_DOLLAR, - ACTIONS(10794), 2, - sym_test_operator, + ACTIONS(9991), 1, sym__special_character, - ACTIONS(10806), 2, + STATE(4227), 1, + aux_sym__literal_repeat1, + STATE(4639), 1, + sym_concatenation, + ACTIONS(8999), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10798), 3, - sym__bare_dollar, + ACTIONS(10021), 2, sym_raw_string, sym_ansi_c_string, - STATE(1855), 9, + STATE(4698), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257340,46 +245733,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [217601] = 18, - ACTIONS(3), 1, + [207616] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(3600), 1, + ACTIONS(3638), 1, + anon_sym_DOLLAR, + ACTIONS(3644), 1, aux_sym_number_token1, - ACTIONS(3602), 1, + ACTIONS(3646), 1, aux_sym_number_token2, - ACTIONS(3606), 1, + ACTIONS(3650), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3616), 1, + ACTIONS(3660), 1, sym__brace_start, - ACTIONS(9706), 1, + ACTIONS(3778), 1, + sym_word, + ACTIONS(3780), 1, + sym_test_operator, + ACTIONS(8983), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9708), 1, + ACTIONS(8985), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9712), 1, + ACTIONS(8989), 1, anon_sym_DQUOTE, - ACTIONS(9716), 1, + ACTIONS(8993), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9718), 1, + ACTIONS(8995), 1, anon_sym_BQUOTE, - ACTIONS(9720), 1, + ACTIONS(8997), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10998), 1, - sym_word, - ACTIONS(11006), 1, - sym__comment_word, - ACTIONS(11022), 1, - anon_sym_DOLLAR, - ACTIONS(9722), 2, + ACTIONS(9991), 1, + sym__special_character, + STATE(4237), 1, + aux_sym__literal_repeat1, + STATE(4677), 1, + sym_concatenation, + ACTIONS(8999), 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(10023), 2, sym_raw_string, sym_ansi_c_string, - STATE(1910), 9, + STATE(4700), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257389,46 +245784,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [217668] = 18, + [207687] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8300), 1, + ACTIONS(308), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8302), 1, + ACTIONS(310), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8304), 1, - anon_sym_DOLLAR, - ACTIONS(8308), 1, + ACTIONS(316), 1, anon_sym_DQUOTE, - ACTIONS(8312), 1, + ACTIONS(320), 1, aux_sym_number_token1, - ACTIONS(8314), 1, + ACTIONS(322), 1, aux_sym_number_token2, - ACTIONS(8316), 1, + ACTIONS(324), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, + ACTIONS(326), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8320), 1, + ACTIONS(328), 1, anon_sym_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(330), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8332), 1, + ACTIONS(340), 1, sym__brace_start, - ACTIONS(11008), 1, + ACTIONS(9941), 1, sym_word, - ACTIONS(11016), 1, + ACTIONS(9947), 1, sym__comment_word, - ACTIONS(8324), 2, + ACTIONS(10025), 1, + anon_sym_DOLLAR, + ACTIONS(332), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11012), 2, + ACTIONS(9943), 2, sym_test_operator, sym__special_character, - ACTIONS(11014), 3, + ACTIONS(9945), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1664), 9, + STATE(1028), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257438,46 +245833,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [217735] = 18, + [207754] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2039), 1, + ACTIONS(262), 1, aux_sym_number_token1, - ACTIONS(2041), 1, + ACTIONS(264), 1, aux_sym_number_token2, - ACTIONS(2045), 1, + ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2059), 1, + ACTIONS(282), 1, sym__brace_start, - ACTIONS(8012), 1, + ACTIONS(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8014), 1, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8018), 1, + ACTIONS(1109), 1, anon_sym_DQUOTE, - ACTIONS(8022), 1, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8024), 1, - anon_sym_BQUOTE, - ACTIONS(8026), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10104), 1, + ACTIONS(4951), 1, + anon_sym_BQUOTE, + ACTIONS(8955), 1, sym_word, - ACTIONS(10112), 1, + ACTIONS(8963), 1, sym__comment_word, - ACTIONS(11024), 1, + ACTIONS(10027), 1, anon_sym_DOLLAR, - ACTIONS(8028), 2, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10108), 2, + ACTIONS(8959), 2, sym_test_operator, sym__special_character, - ACTIONS(10110), 3, + ACTIONS(8961), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1703), 9, + STATE(2073), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257487,48 +245882,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [217802] = 20, - ACTIONS(71), 1, + [207821] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(4835), 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(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4837), 1, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4839), 1, - anon_sym_DOLLAR, - ACTIONS(4843), 1, + ACTIONS(1109), 1, anon_sym_DQUOTE, - ACTIONS(4847), 1, - aux_sym_number_token1, - ACTIONS(4849), 1, - aux_sym_number_token2, - ACTIONS(4851), 1, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4853), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4855), 1, - anon_sym_BQUOTE, - ACTIONS(4857), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4863), 1, - sym__brace_start, - ACTIONS(11026), 1, + ACTIONS(4951), 1, + anon_sym_BQUOTE, + ACTIONS(8955), 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(8963), 1, + sym__comment_word, + ACTIONS(10029), 1, + anon_sym_DOLLAR, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11030), 2, + ACTIONS(8959), 2, + sym_test_operator, + sym__special_character, + ACTIONS(8961), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5045), 9, + STATE(2073), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257538,46 +245931,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [217873] = 18, + [207888] = 18, ACTIONS(3), 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(577), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8014), 1, + ACTIONS(579), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8018), 1, + ACTIONS(587), 1, anon_sym_DQUOTE, - ACTIONS(8022), 1, + ACTIONS(591), 1, + aux_sym_number_token1, + ACTIONS(593), 1, + aux_sym_number_token2, + ACTIONS(595), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8024), 1, - anon_sym_BQUOTE, - ACTIONS(8026), 1, + ACTIONS(597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(601), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10104), 1, + ACTIONS(607), 1, + sym__brace_start, + ACTIONS(4667), 1, + anon_sym_BQUOTE, + ACTIONS(8655), 1, sym_word, - ACTIONS(10112), 1, + ACTIONS(8659), 1, sym__comment_word, - ACTIONS(11034), 1, + ACTIONS(10031), 1, anon_sym_DOLLAR, - ACTIONS(8028), 2, + ACTIONS(603), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10108), 2, + ACTIONS(8663), 2, sym_test_operator, sym__special_character, - ACTIONS(10110), 3, + ACTIONS(8661), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1703), 9, + STATE(2387), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257587,46 +245980,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [217940] = 18, + [207955] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7866), 1, + ACTIONS(1039), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7868), 1, + ACTIONS(1041), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7874), 1, + ACTIONS(1047), 1, anon_sym_DQUOTE, - ACTIONS(7878), 1, + ACTIONS(1051), 1, aux_sym_number_token1, - ACTIONS(7880), 1, + ACTIONS(1053), 1, aux_sym_number_token2, - ACTIONS(7882), 1, + ACTIONS(1055), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7884), 1, + ACTIONS(1057), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7886), 1, + ACTIONS(1059), 1, anon_sym_BQUOTE, - ACTIONS(7888), 1, + ACTIONS(1061), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7898), 1, + ACTIONS(1069), 1, sym__brace_start, - ACTIONS(10846), 1, + ACTIONS(9443), 1, sym_word, - ACTIONS(10852), 1, + ACTIONS(9449), 1, sym__comment_word, - ACTIONS(11036), 1, + ACTIONS(10033), 1, anon_sym_DOLLAR, - ACTIONS(7890), 2, + ACTIONS(1063), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10848), 2, + ACTIONS(9445), 2, sym_test_operator, sym__special_character, - ACTIONS(10850), 3, + ACTIONS(9447), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1527), 9, + STATE(2043), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257636,48 +246029,99 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [218007] = 20, + [208022] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(4835), 1, + 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(8983), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4837), 1, + ACTIONS(8985), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4839), 1, - anon_sym_DOLLAR, - ACTIONS(4843), 1, + ACTIONS(8989), 1, anon_sym_DQUOTE, - ACTIONS(4847), 1, + ACTIONS(8993), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8995), 1, + anon_sym_BQUOTE, + ACTIONS(8997), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10035), 1, + sym_word, + ACTIONS(10037), 1, + sym__special_character, + ACTIONS(10041), 1, + sym_test_operator, + STATE(4285), 1, + aux_sym__literal_repeat1, + STATE(4641), 1, + sym_concatenation, + ACTIONS(8999), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10039), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(4472), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [208093] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3638), 1, + anon_sym_DOLLAR, + ACTIONS(3644), 1, aux_sym_number_token1, - ACTIONS(4849), 1, + ACTIONS(3646), 1, aux_sym_number_token2, - ACTIONS(4851), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4853), 1, + ACTIONS(3650), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4855), 1, + ACTIONS(3660), 1, + sym__brace_start, + ACTIONS(8983), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8985), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8989), 1, + anon_sym_DQUOTE, + ACTIONS(8993), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8995), 1, anon_sym_BQUOTE, - ACTIONS(4857), 1, + ACTIONS(8997), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4863), 1, - sym__brace_start, - ACTIONS(11028), 1, + ACTIONS(10037), 1, sym__special_character, - ACTIONS(11038), 1, + ACTIONS(10043), 1, sym_word, - ACTIONS(11042), 1, + ACTIONS(10047), 1, sym_test_operator, - STATE(5137), 1, + STATE(4304), 1, aux_sym__literal_repeat1, - STATE(5415), 1, + STATE(4668), 1, sym_concatenation, - ACTIONS(4859), 2, + ACTIONS(8999), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11040), 2, + ACTIONS(10045), 2, sym_raw_string, sym_ansi_c_string, - STATE(5048), 9, + STATE(4474), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257687,46 +246131,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [218078] = 18, - ACTIONS(3), 1, + [208164] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(3091), 1, + ACTIONS(3303), 1, + anon_sym_DOLLAR, + ACTIONS(3309), 1, aux_sym_number_token1, - ACTIONS(3093), 1, + ACTIONS(3311), 1, aux_sym_number_token2, - ACTIONS(3097), 1, + ACTIONS(3315), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3109), 1, + ACTIONS(3325), 1, sym__brace_start, - ACTIONS(10786), 1, + ACTIONS(3628), 1, sym_word, - ACTIONS(10788), 1, + ACTIONS(3630), 1, + sym_test_operator, + ACTIONS(9581), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10790), 1, + ACTIONS(9583), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10796), 1, + ACTIONS(9587), 1, anon_sym_DQUOTE, - ACTIONS(10800), 1, + ACTIONS(9591), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10802), 1, + ACTIONS(9593), 1, anon_sym_BQUOTE, - ACTIONS(10804), 1, + ACTIONS(9595), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10808), 1, - sym__comment_word, - ACTIONS(11044), 1, - anon_sym_DOLLAR, - ACTIONS(10794), 2, - sym_test_operator, + ACTIONS(10049), 1, sym__special_character, - ACTIONS(10806), 2, + STATE(4064), 1, + aux_sym__literal_repeat1, + STATE(4433), 1, + sym_concatenation, + ACTIONS(9597), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10798), 3, - sym__bare_dollar, + ACTIONS(10051), 2, sym_raw_string, sym_ansi_c_string, - STATE(1855), 9, + STATE(4325), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257736,46 +246182,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [218145] = 18, - ACTIONS(3), 1, + [208235] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(3091), 1, + ACTIONS(3303), 1, + anon_sym_DOLLAR, + ACTIONS(3309), 1, aux_sym_number_token1, - ACTIONS(3093), 1, + ACTIONS(3311), 1, aux_sym_number_token2, - ACTIONS(3097), 1, + ACTIONS(3315), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3109), 1, + ACTIONS(3325), 1, sym__brace_start, - ACTIONS(10786), 1, + ACTIONS(3520), 1, sym_word, - ACTIONS(10788), 1, + ACTIONS(3524), 1, + sym_test_operator, + ACTIONS(9581), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10790), 1, + ACTIONS(9583), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10796), 1, + ACTIONS(9587), 1, anon_sym_DQUOTE, - ACTIONS(10800), 1, + ACTIONS(9591), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10802), 1, + ACTIONS(9593), 1, anon_sym_BQUOTE, - ACTIONS(10804), 1, + ACTIONS(9595), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10808), 1, - sym__comment_word, - ACTIONS(11046), 1, - anon_sym_DOLLAR, - ACTIONS(10794), 2, - sym_test_operator, + ACTIONS(10049), 1, sym__special_character, - ACTIONS(10806), 2, + STATE(4121), 1, + aux_sym__literal_repeat1, + STATE(4375), 1, + sym_concatenation, + ACTIONS(9597), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10798), 3, - sym__bare_dollar, + ACTIONS(10053), 2, sym_raw_string, sym_ansi_c_string, - STATE(1855), 9, + STATE(4327), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257785,46 +246233,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [218212] = 18, - ACTIONS(3), 1, + [208306] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(1557), 1, + ACTIONS(3303), 1, + anon_sym_DOLLAR, + ACTIONS(3309), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(3311), 1, aux_sym_number_token2, - ACTIONS(1563), 1, + ACTIONS(3315), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1575), 1, + ACTIONS(3325), 1, sym__brace_start, - ACTIONS(9974), 1, + ACTIONS(9581), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9976), 1, + ACTIONS(9583), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9980), 1, + ACTIONS(9587), 1, anon_sym_DQUOTE, - ACTIONS(9984), 1, + ACTIONS(9591), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9986), 1, + ACTIONS(9593), 1, anon_sym_BQUOTE, - ACTIONS(9988), 1, + ACTIONS(9595), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11048), 1, + ACTIONS(10049), 1, + sym__special_character, + ACTIONS(10055), 1, sym_word, - ACTIONS(11050), 1, - anon_sym_DOLLAR, - ACTIONS(11056), 1, - sym__comment_word, - ACTIONS(9990), 2, + ACTIONS(10059), 1, + sym_test_operator, + STATE(4052), 1, + aux_sym__literal_repeat1, + STATE(4370), 1, + sym_concatenation, + ACTIONS(9597), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11052), 2, - sym_test_operator, - sym__special_character, - ACTIONS(11054), 3, - sym__bare_dollar, + ACTIONS(10057), 2, sym_raw_string, sym_ansi_c_string, - STATE(1154), 9, + STATE(4329), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257834,46 +246284,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [218279] = 18, - ACTIONS(3), 1, + [208377] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(1557), 1, + ACTIONS(3303), 1, + anon_sym_DOLLAR, + ACTIONS(3309), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(3311), 1, aux_sym_number_token2, - ACTIONS(1563), 1, + ACTIONS(3315), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1575), 1, + ACTIONS(3325), 1, sym__brace_start, - ACTIONS(9974), 1, + ACTIONS(9581), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9976), 1, + ACTIONS(9583), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9980), 1, + ACTIONS(9587), 1, anon_sym_DQUOTE, - ACTIONS(9984), 1, + ACTIONS(9591), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9986), 1, + ACTIONS(9593), 1, anon_sym_BQUOTE, - ACTIONS(9988), 1, + ACTIONS(9595), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11048), 1, + ACTIONS(10049), 1, + sym__special_character, + ACTIONS(10061), 1, sym_word, - ACTIONS(11056), 1, - sym__comment_word, - ACTIONS(11058), 1, - anon_sym_DOLLAR, - ACTIONS(9990), 2, + ACTIONS(10065), 1, + sym_test_operator, + STATE(4134), 1, + aux_sym__literal_repeat1, + STATE(4361), 1, + sym_concatenation, + ACTIONS(9597), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11052), 2, - sym_test_operator, - sym__special_character, - ACTIONS(11054), 3, - sym__bare_dollar, + ACTIONS(10063), 2, sym_raw_string, sym_ansi_c_string, - STATE(1154), 9, + STATE(4331), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257883,46 +246335,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [218346] = 18, - ACTIONS(3), 1, + [208448] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(2033), 1, + ACTIONS(3638), 1, anon_sym_DOLLAR, - ACTIONS(2039), 1, + ACTIONS(3644), 1, aux_sym_number_token1, - ACTIONS(2041), 1, + ACTIONS(3646), 1, aux_sym_number_token2, - ACTIONS(2045), 1, + ACTIONS(3650), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2059), 1, + ACTIONS(3660), 1, sym__brace_start, - ACTIONS(8012), 1, + ACTIONS(3891), 1, + sym_word, + ACTIONS(3893), 1, + sym_test_operator, + ACTIONS(8983), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8014), 1, + ACTIONS(8985), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8018), 1, + ACTIONS(8989), 1, anon_sym_DQUOTE, - ACTIONS(8022), 1, + ACTIONS(8993), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8024), 1, + ACTIONS(8995), 1, anon_sym_BQUOTE, - ACTIONS(8026), 1, + ACTIONS(8997), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10104), 1, - sym_word, - ACTIONS(10112), 1, - sym__comment_word, - ACTIONS(8028), 2, + ACTIONS(10037), 1, + sym__special_character, + STATE(4227), 1, + aux_sym__literal_repeat1, + STATE(4639), 1, + sym_concatenation, + ACTIONS(8999), 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(10067), 2, sym_raw_string, sym_ansi_c_string, - STATE(1703), 9, + STATE(4484), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257932,46 +246386,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [218413] = 18, - ACTIONS(3), 1, + [208519] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(262), 1, + ACTIONS(3638), 1, + anon_sym_DOLLAR, + ACTIONS(3644), 1, aux_sym_number_token1, - ACTIONS(264), 1, + ACTIONS(3646), 1, aux_sym_number_token2, - ACTIONS(268), 1, + ACTIONS(3650), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, + ACTIONS(3660), 1, sym__brace_start, - ACTIONS(1109), 1, + ACTIONS(3855), 1, + sym_word, + ACTIONS(3859), 1, + sym_test_operator, + ACTIONS(8983), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(8985), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(8989), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(8993), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, + ACTIONS(8995), 1, anon_sym_BQUOTE, - ACTIONS(10480), 1, - sym_word, - ACTIONS(10486), 1, - sym__comment_word, - ACTIONS(11060), 1, - anon_sym_DOLLAR, - ACTIONS(1125), 2, + ACTIONS(8997), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10037), 1, + sym__special_character, + STATE(4237), 1, + aux_sym__literal_repeat1, + STATE(4677), 1, + sym_concatenation, + ACTIONS(8999), 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(10069), 2, sym_raw_string, sym_ansi_c_string, - STATE(2224), 9, + STATE(4486), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257981,48 +246437,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [218480] = 20, - ACTIONS(71), 1, + [208590] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(7828), 1, + ACTIONS(1039), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7830), 1, + ACTIONS(1041), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7832), 1, - anon_sym_DOLLAR, - ACTIONS(7834), 1, - sym__special_character, - ACTIONS(7836), 1, + ACTIONS(1047), 1, anon_sym_DQUOTE, - ACTIONS(7840), 1, + ACTIONS(1051), 1, aux_sym_number_token1, - ACTIONS(7842), 1, + ACTIONS(1053), 1, aux_sym_number_token2, - ACTIONS(7844), 1, + ACTIONS(1055), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7846), 1, + ACTIONS(1057), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7848), 1, + ACTIONS(1059), 1, anon_sym_BQUOTE, - ACTIONS(7850), 1, + ACTIONS(1061), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7860), 1, + ACTIONS(1069), 1, sym__brace_start, - ACTIONS(11062), 1, + ACTIONS(9443), 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(9449), 1, + sym__comment_word, + ACTIONS(10071), 1, + anon_sym_DOLLAR, + ACTIONS(1063), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11064), 2, + ACTIONS(9445), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9447), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2391), 9, + STATE(2043), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258032,46 +246486,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [218551] = 18, + [208657] = 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(577), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(579), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(587), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(591), 1, + aux_sym_number_token1, + ACTIONS(593), 1, + aux_sym_number_token2, + ACTIONS(595), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(601), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, + ACTIONS(607), 1, + sym__brace_start, + ACTIONS(4667), 1, anon_sym_BQUOTE, - ACTIONS(10480), 1, + ACTIONS(8655), 1, sym_word, - ACTIONS(10486), 1, + ACTIONS(8659), 1, sym__comment_word, - ACTIONS(11068), 1, + ACTIONS(10073), 1, anon_sym_DOLLAR, - ACTIONS(1125), 2, + ACTIONS(603), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10482), 2, + ACTIONS(8663), 2, sym_test_operator, sym__special_character, - ACTIONS(10484), 3, + ACTIONS(8661), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2224), 9, + STATE(2387), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258081,48 +246535,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [218618] = 20, - ACTIONS(71), 1, + [208724] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(7828), 1, + ACTIONS(7197), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7830), 1, + ACTIONS(7199), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7832), 1, - anon_sym_DOLLAR, - ACTIONS(7834), 1, - sym__special_character, - ACTIONS(7836), 1, + ACTIONS(7205), 1, anon_sym_DQUOTE, - ACTIONS(7840), 1, + ACTIONS(7209), 1, aux_sym_number_token1, - ACTIONS(7842), 1, + ACTIONS(7211), 1, aux_sym_number_token2, - ACTIONS(7844), 1, + ACTIONS(7213), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7846), 1, + ACTIONS(7215), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7848), 1, + ACTIONS(7217), 1, anon_sym_BQUOTE, - ACTIONS(7850), 1, + ACTIONS(7219), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7860), 1, + ACTIONS(7229), 1, sym__brace_start, - ACTIONS(11070), 1, + ACTIONS(8975), 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(8981), 1, + sym__comment_word, + ACTIONS(10075), 1, + anon_sym_DOLLAR, + ACTIONS(7221), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11072), 2, + ACTIONS(8977), 2, + sym_test_operator, + sym__special_character, + ACTIONS(8979), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2423), 9, + STATE(1417), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258132,46 +246584,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [218689] = 18, + [208791] = 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, + ACTIONS(9957), 1, sym_word, - ACTIONS(10490), 1, + ACTIONS(9959), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10492), 1, + ACTIONS(9961), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10498), 1, + ACTIONS(9967), 1, anon_sym_DQUOTE, - ACTIONS(10502), 1, + ACTIONS(9971), 1, + aux_sym_number_token1, + ACTIONS(9973), 1, + aux_sym_number_token2, + ACTIONS(9975), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, + ACTIONS(9977), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9979), 1, anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(9981), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10510), 1, + ACTIONS(9985), 1, sym__comment_word, - ACTIONS(11076), 1, + ACTIONS(9987), 1, + sym__brace_start, + ACTIONS(10077), 1, anon_sym_DOLLAR, - ACTIONS(10496), 2, + ACTIONS(9965), 2, sym_test_operator, sym__special_character, - ACTIONS(10508), 2, + ACTIONS(9983), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10500), 3, + ACTIONS(9969), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4352), 9, + STATE(5820), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258181,46 +246633,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [218756] = 18, + [208858] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5091), 1, + ACTIONS(7197), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5093), 1, + ACTIONS(7199), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5099), 1, + ACTIONS(7205), 1, anon_sym_DQUOTE, - ACTIONS(5103), 1, + ACTIONS(7209), 1, aux_sym_number_token1, - ACTIONS(5105), 1, + ACTIONS(7211), 1, aux_sym_number_token2, - ACTIONS(5107), 1, + ACTIONS(7213), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5109), 1, + ACTIONS(7215), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5111), 1, + ACTIONS(7217), 1, anon_sym_BQUOTE, - ACTIONS(5113), 1, + ACTIONS(7219), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5119), 1, + ACTIONS(7229), 1, sym__brace_start, - ACTIONS(10086), 1, + ACTIONS(8975), 1, sym_word, - ACTIONS(10092), 1, + ACTIONS(8981), 1, sym__comment_word, - ACTIONS(11078), 1, + ACTIONS(10079), 1, anon_sym_DOLLAR, - ACTIONS(5115), 2, + ACTIONS(7221), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10088), 2, + ACTIONS(8977), 2, sym_test_operator, sym__special_character, - ACTIONS(10090), 3, + ACTIONS(8979), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5342), 9, + STATE(1417), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258230,46 +246682,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [218823] = 18, + [208925] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3952), 1, + ACTIONS(2174), 1, aux_sym_number_token1, - ACTIONS(3954), 1, + ACTIONS(2176), 1, aux_sym_number_token2, - ACTIONS(3958), 1, + ACTIONS(2180), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3968), 1, + ACTIONS(2194), 1, sym__brace_start, - ACTIONS(10488), 1, - sym_word, - ACTIONS(10490), 1, + ACTIONS(6905), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10492), 1, + ACTIONS(6907), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10498), 1, + ACTIONS(6911), 1, anon_sym_DQUOTE, - ACTIONS(10502), 1, + ACTIONS(6915), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, + ACTIONS(6917), 1, anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(6919), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10510), 1, + ACTIONS(9029), 1, + sym_word, + ACTIONS(9035), 1, sym__comment_word, - ACTIONS(11080), 1, + ACTIONS(10081), 1, anon_sym_DOLLAR, - ACTIONS(10496), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10508), 2, + ACTIONS(6921), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10500), 3, + ACTIONS(9031), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9033), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4352), 9, + STATE(1429), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258279,46 +246731,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [218890] = 18, - ACTIONS(3), 1, + [208992] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(3514), 1, + ACTIONS(3638), 1, + anon_sym_DOLLAR, + ACTIONS(3644), 1, aux_sym_number_token1, - ACTIONS(3516), 1, + ACTIONS(3646), 1, aux_sym_number_token2, - ACTIONS(3520), 1, + ACTIONS(3650), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3530), 1, + ACTIONS(3660), 1, sym__brace_start, - ACTIONS(10514), 1, - sym_word, - ACTIONS(10516), 1, + ACTIONS(8983), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10518), 1, + ACTIONS(8985), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10524), 1, + ACTIONS(8989), 1, anon_sym_DQUOTE, - ACTIONS(10528), 1, + ACTIONS(8993), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, + ACTIONS(8995), 1, anon_sym_BQUOTE, - ACTIONS(10532), 1, + ACTIONS(8997), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10536), 1, - sym__comment_word, - ACTIONS(11082), 1, - anon_sym_DOLLAR, - ACTIONS(10522), 2, - sym_test_operator, + ACTIONS(10083), 1, + sym_word, + ACTIONS(10085), 1, sym__special_character, - ACTIONS(10534), 2, + ACTIONS(10089), 1, + sym_test_operator, + STATE(4285), 1, + aux_sym__literal_repeat1, + STATE(4641), 1, + sym_concatenation, + ACTIONS(8999), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10526), 3, - sym__bare_dollar, + ACTIONS(10087), 2, sym_raw_string, sym_ansi_c_string, - STATE(4229), 9, + STATE(4967), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258328,46 +246782,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [218957] = 18, - ACTIONS(3), 1, + [209063] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(3952), 1, + ACTIONS(3638), 1, + anon_sym_DOLLAR, + ACTIONS(3644), 1, aux_sym_number_token1, - ACTIONS(3954), 1, + ACTIONS(3646), 1, aux_sym_number_token2, - ACTIONS(3958), 1, + ACTIONS(3650), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3968), 1, + ACTIONS(3660), 1, sym__brace_start, - ACTIONS(10488), 1, - sym_word, - ACTIONS(10490), 1, + ACTIONS(8983), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10492), 1, + ACTIONS(8985), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10498), 1, + ACTIONS(8989), 1, anon_sym_DQUOTE, - ACTIONS(10502), 1, + ACTIONS(8993), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, + ACTIONS(8995), 1, anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(8997), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10510), 1, - sym__comment_word, - ACTIONS(11084), 1, - anon_sym_DOLLAR, - ACTIONS(10496), 2, - sym_test_operator, + ACTIONS(10085), 1, sym__special_character, - ACTIONS(10508), 2, + ACTIONS(10091), 1, + sym_word, + ACTIONS(10095), 1, + sym_test_operator, + STATE(4304), 1, + aux_sym__literal_repeat1, + STATE(4668), 1, + sym_concatenation, + ACTIONS(8999), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10500), 3, - sym__bare_dollar, + ACTIONS(10093), 2, sym_raw_string, sym_ansi_c_string, - STATE(4352), 9, + STATE(4969), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258377,46 +246833,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [219024] = 18, - ACTIONS(3), 1, + [209134] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(3085), 1, + ACTIONS(3303), 1, anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(3309), 1, aux_sym_number_token1, - ACTIONS(3093), 1, + ACTIONS(3311), 1, aux_sym_number_token2, - ACTIONS(3097), 1, + ACTIONS(3315), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3109), 1, + ACTIONS(3325), 1, sym__brace_start, - ACTIONS(10786), 1, + ACTIONS(4347), 1, sym_word, - ACTIONS(10788), 1, + ACTIONS(4351), 1, + sym_test_operator, + ACTIONS(9581), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10790), 1, + ACTIONS(9583), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10796), 1, + ACTIONS(9587), 1, anon_sym_DQUOTE, - ACTIONS(10800), 1, + ACTIONS(9591), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10802), 1, + ACTIONS(9593), 1, anon_sym_BQUOTE, - ACTIONS(10804), 1, + ACTIONS(9595), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10808), 1, - sym__comment_word, - ACTIONS(10794), 2, - sym_test_operator, + ACTIONS(10097), 1, sym__special_character, - ACTIONS(10806), 2, + STATE(4064), 1, + aux_sym__literal_repeat1, + STATE(4433), 1, + sym_concatenation, + ACTIONS(9597), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10798), 3, - sym__bare_dollar, + ACTIONS(10099), 2, sym_raw_string, sym_ansi_c_string, - STATE(1855), 9, + STATE(4859), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258426,46 +246884,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [219091] = 18, - ACTIONS(3), 1, + [209205] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(3514), 1, + ACTIONS(3303), 1, + anon_sym_DOLLAR, + ACTIONS(3309), 1, aux_sym_number_token1, - ACTIONS(3516), 1, + ACTIONS(3311), 1, aux_sym_number_token2, - ACTIONS(3520), 1, + ACTIONS(3315), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3530), 1, + ACTIONS(3325), 1, sym__brace_start, - ACTIONS(10514), 1, + ACTIONS(4353), 1, sym_word, - ACTIONS(10516), 1, + ACTIONS(4355), 1, + sym_test_operator, + ACTIONS(9581), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10518), 1, + ACTIONS(9583), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10524), 1, + ACTIONS(9587), 1, anon_sym_DQUOTE, - ACTIONS(10528), 1, + ACTIONS(9591), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, + ACTIONS(9593), 1, anon_sym_BQUOTE, - ACTIONS(10532), 1, + ACTIONS(9595), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10536), 1, - sym__comment_word, - ACTIONS(11086), 1, - anon_sym_DOLLAR, - ACTIONS(10522), 2, - sym_test_operator, + ACTIONS(10097), 1, sym__special_character, - ACTIONS(10534), 2, + STATE(4121), 1, + aux_sym__literal_repeat1, + STATE(4375), 1, + sym_concatenation, + ACTIONS(9597), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10526), 3, - sym__bare_dollar, + ACTIONS(10101), 2, sym_raw_string, sym_ansi_c_string, - STATE(4229), 9, + STATE(4861), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258475,46 +246935,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [219158] = 18, - ACTIONS(3), 1, + [209276] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(3952), 1, + ACTIONS(3303), 1, + anon_sym_DOLLAR, + ACTIONS(3309), 1, aux_sym_number_token1, - ACTIONS(3954), 1, + ACTIONS(3311), 1, aux_sym_number_token2, - ACTIONS(3958), 1, + ACTIONS(3315), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3968), 1, + ACTIONS(3325), 1, sym__brace_start, - ACTIONS(10488), 1, - sym_word, - ACTIONS(10490), 1, + ACTIONS(9581), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10492), 1, + ACTIONS(9583), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10498), 1, + ACTIONS(9587), 1, anon_sym_DQUOTE, - ACTIONS(10502), 1, + ACTIONS(9591), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, + ACTIONS(9593), 1, anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(9595), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10510), 1, - sym__comment_word, - ACTIONS(11088), 1, - anon_sym_DOLLAR, - ACTIONS(10496), 2, - sym_test_operator, + ACTIONS(10097), 1, sym__special_character, - ACTIONS(10508), 2, + ACTIONS(10103), 1, + sym_word, + ACTIONS(10107), 1, + sym_test_operator, + STATE(4052), 1, + aux_sym__literal_repeat1, + STATE(4370), 1, + sym_concatenation, + ACTIONS(9597), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10500), 3, - sym__bare_dollar, + ACTIONS(10105), 2, sym_raw_string, sym_ansi_c_string, - STATE(4352), 9, + STATE(4863), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258524,95 +246986,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [219225] = 18, - ACTIONS(3), 1, + [209347] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(8370), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8372), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8378), 1, - anon_sym_DQUOTE, - ACTIONS(8382), 1, + ACTIONS(3303), 1, + anon_sym_DOLLAR, + ACTIONS(3309), 1, aux_sym_number_token1, - ACTIONS(8384), 1, + ACTIONS(3311), 1, aux_sym_number_token2, - ACTIONS(8386), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8388), 1, + ACTIONS(3315), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8390), 1, - anon_sym_BQUOTE, - ACTIONS(8392), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8402), 1, + ACTIONS(3325), 1, sym__brace_start, - ACTIONS(10460), 1, - sym_word, - ACTIONS(10466), 1, - sym__comment_word, - ACTIONS(11090), 1, - anon_sym_DOLLAR, - ACTIONS(8394), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10462), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10464), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(4362), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [219292] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8370), 1, + ACTIONS(9581), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8372), 1, + ACTIONS(9583), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8378), 1, + ACTIONS(9587), 1, anon_sym_DQUOTE, - ACTIONS(8382), 1, - aux_sym_number_token1, - ACTIONS(8384), 1, - aux_sym_number_token2, - ACTIONS(8386), 1, + ACTIONS(9591), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8388), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8390), 1, + ACTIONS(9593), 1, anon_sym_BQUOTE, - ACTIONS(8392), 1, + ACTIONS(9595), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8402), 1, - sym__brace_start, - ACTIONS(10460), 1, + ACTIONS(10097), 1, + sym__special_character, + ACTIONS(10109), 1, sym_word, - ACTIONS(10466), 1, - sym__comment_word, - ACTIONS(11092), 1, - anon_sym_DOLLAR, - ACTIONS(8394), 2, + ACTIONS(10113), 1, + sym_test_operator, + STATE(4134), 1, + aux_sym__literal_repeat1, + STATE(4361), 1, + sym_concatenation, + ACTIONS(9597), 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(10111), 2, sym_raw_string, sym_ansi_c_string, - STATE(4362), 9, + STATE(4865), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258622,48 +247037,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [219359] = 20, + [209418] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(5767), 1, + ACTIONS(3638), 1, anon_sym_DOLLAR, - ACTIONS(5773), 1, + ACTIONS(3644), 1, aux_sym_number_token1, - ACTIONS(5775), 1, + ACTIONS(3646), 1, aux_sym_number_token2, - ACTIONS(5779), 1, + ACTIONS(3650), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5789), 1, + ACTIONS(3660), 1, sym__brace_start, - ACTIONS(10602), 1, + ACTIONS(4556), 1, + sym_word, + ACTIONS(4560), 1, + sym_test_operator, + ACTIONS(8983), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10604), 1, + ACTIONS(8985), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10610), 1, + ACTIONS(8989), 1, anon_sym_DQUOTE, - ACTIONS(10614), 1, + ACTIONS(8993), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10616), 1, + ACTIONS(8995), 1, anon_sym_BQUOTE, - ACTIONS(10618), 1, + ACTIONS(8997), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11094), 1, - sym_word, - ACTIONS(11096), 1, + ACTIONS(10085), 1, sym__special_character, - ACTIONS(11100), 1, - sym_test_operator, - STATE(5596), 1, + STATE(4227), 1, aux_sym__literal_repeat1, - STATE(5614), 1, + STATE(4639), 1, sym_concatenation, - ACTIONS(10620), 2, + ACTIONS(8999), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11098), 2, + ACTIONS(10115), 2, sym_raw_string, sym_ansi_c_string, - STATE(5525), 9, + STATE(4979), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258673,96 +247088,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [219430] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7732), 1, - anon_sym_SLASH, - ACTIONS(7734), 1, - anon_sym_PERCENT, - ACTIONS(7736), 1, - anon_sym_COLON, - ACTIONS(7822), 1, - anon_sym_AT, - ACTIONS(8880), 1, - anon_sym_LBRACK, - STATE(7037), 1, - sym__expansion_max_length, - STATE(7105), 1, - sym__expansion_operator, - STATE(7315), 1, - sym__expansion_expression, - STATE(7344), 1, - sym__expansion_regex, - STATE(7405), 1, - sym__expansion_regex_replacement, - STATE(7507), 1, - sym__expansion_regex_removal, - ACTIONS(7730), 2, - anon_sym_COMMA, - anon_sym_CARET, - ACTIONS(7750), 2, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - ACTIONS(7738), 3, - sym__immediate_double_hash, - anon_sym_POUND, - anon_sym_PERCENT_PERCENT, - ACTIONS(7748), 3, - anon_sym_SLASH_SLASH, - anon_sym_SLASH_POUND, - anon_sym_SLASH_PERCENT, - ACTIONS(7746), 8, - anon_sym_EQ2, - anon_sym_COLON_EQ, - anon_sym_DASH3, - anon_sym_COLON_DASH, - anon_sym_PLUS3, - anon_sym_COLON_PLUS, - anon_sym_QMARK2, - anon_sym_COLON_QMARK, - [219495] = 20, + [209489] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(5767), 1, + ACTIONS(3638), 1, anon_sym_DOLLAR, - ACTIONS(5773), 1, + ACTIONS(3644), 1, aux_sym_number_token1, - ACTIONS(5775), 1, + ACTIONS(3646), 1, aux_sym_number_token2, - ACTIONS(5779), 1, + ACTIONS(3650), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5789), 1, + ACTIONS(3660), 1, sym__brace_start, - ACTIONS(10602), 1, + ACTIONS(4562), 1, + sym_word, + ACTIONS(4564), 1, + sym_test_operator, + ACTIONS(8983), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10604), 1, + ACTIONS(8985), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10610), 1, + ACTIONS(8989), 1, anon_sym_DQUOTE, - ACTIONS(10614), 1, + ACTIONS(8993), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10616), 1, + ACTIONS(8995), 1, anon_sym_BQUOTE, - ACTIONS(10618), 1, + ACTIONS(8997), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11096), 1, + ACTIONS(10085), 1, sym__special_character, - ACTIONS(11102), 1, - sym_word, - ACTIONS(11106), 1, - sym_test_operator, - STATE(5600), 1, + STATE(4237), 1, aux_sym__literal_repeat1, - STATE(5611), 1, + STATE(4677), 1, sym_concatenation, - ACTIONS(10620), 2, + ACTIONS(8999), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11104), 2, + ACTIONS(10117), 2, sym_raw_string, sym_ansi_c_string, - STATE(5513), 9, + STATE(4981), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258772,46 +247139,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [219566] = 18, + [209560] = 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(2174), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(2176), 1, aux_sym_number_token2, - ACTIONS(385), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(2180), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, + ACTIONS(2194), 1, sym__brace_start, - ACTIONS(5375), 1, + ACTIONS(6905), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6907), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6911), 1, + anon_sym_DQUOTE, + ACTIONS(6915), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6917), 1, anon_sym_BQUOTE, - ACTIONS(9676), 1, + ACTIONS(6919), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9029), 1, sym_word, - ACTIONS(9680), 1, + ACTIONS(9035), 1, sym__comment_word, - ACTIONS(11108), 1, + ACTIONS(10119), 1, anon_sym_DOLLAR, - ACTIONS(393), 2, + ACTIONS(6921), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9684), 2, + ACTIONS(9031), 2, sym_test_operator, sym__special_character, - ACTIONS(9682), 3, + ACTIONS(9033), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2517), 9, + STATE(1429), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258821,46 +247188,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [219633] = 18, + [209627] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8300), 1, + ACTIONS(2991), 1, + aux_sym_number_token1, + ACTIONS(2993), 1, + aux_sym_number_token2, + ACTIONS(2997), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3009), 1, + sym__brace_start, + ACTIONS(9065), 1, + sym_word, + ACTIONS(9067), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8302), 1, + ACTIONS(9069), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8308), 1, + ACTIONS(9073), 1, anon_sym_DQUOTE, - ACTIONS(8312), 1, - aux_sym_number_token1, - ACTIONS(8314), 1, - aux_sym_number_token2, - ACTIONS(8316), 1, + ACTIONS(9077), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8320), 1, + ACTIONS(9079), 1, anon_sym_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(9081), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8332), 1, - sym__brace_start, - ACTIONS(11008), 1, - sym_word, - ACTIONS(11016), 1, + ACTIONS(9085), 1, sym__comment_word, - ACTIONS(11110), 1, + ACTIONS(10121), 1, anon_sym_DOLLAR, - ACTIONS(8324), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(11012), 2, + ACTIONS(9071), 2, sym_test_operator, sym__special_character, - ACTIONS(11014), 3, + ACTIONS(9083), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9075), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1664), 9, + STATE(1618), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258870,46 +247237,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [219700] = 18, + [209694] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, + ACTIONS(2991), 1, + aux_sym_number_token1, + ACTIONS(2993), 1, + aux_sym_number_token2, + ACTIONS(2997), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3009), 1, + sym__brace_start, + ACTIONS(9065), 1, + sym_word, + ACTIONS(9067), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(47), 1, + ACTIONS(9069), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(49), 1, - anon_sym_DOLLAR, - ACTIONS(53), 1, + ACTIONS(9073), 1, anon_sym_DQUOTE, - ACTIONS(57), 1, - aux_sym_number_token1, - ACTIONS(59), 1, - aux_sym_number_token2, - ACTIONS(61), 1, + ACTIONS(9077), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(63), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(65), 1, + ACTIONS(9079), 1, anon_sym_BQUOTE, - ACTIONS(67), 1, + ACTIONS(9081), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(79), 1, - sym__brace_start, - ACTIONS(10192), 1, - sym_word, - ACTIONS(10200), 1, + ACTIONS(9085), 1, sym__comment_word, - ACTIONS(69), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10196), 2, + ACTIONS(10123), 1, + anon_sym_DOLLAR, + ACTIONS(9071), 2, sym_test_operator, sym__special_character, - ACTIONS(10198), 3, + ACTIONS(9083), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9075), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1110), 9, + STATE(1618), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258919,46 +247286,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [219767] = 18, + [209761] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7936), 1, + ACTIONS(1561), 1, + aux_sym_number_token1, + ACTIONS(1563), 1, + aux_sym_number_token2, + ACTIONS(1567), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1579), 1, + sym__brace_start, + ACTIONS(8803), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7938), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7944), 1, + ACTIONS(8809), 1, anon_sym_DQUOTE, - ACTIONS(7948), 1, - aux_sym_number_token1, - ACTIONS(7950), 1, - aux_sym_number_token2, - ACTIONS(7952), 1, + ACTIONS(8813), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7954), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7956), 1, + ACTIONS(8815), 1, anon_sym_BQUOTE, - ACTIONS(7958), 1, + ACTIONS(8817), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7968), 1, - sym__brace_start, - ACTIONS(10076), 1, + ACTIONS(9139), 1, sym_word, - ACTIONS(10084), 1, + ACTIONS(9145), 1, sym__comment_word, - ACTIONS(11112), 1, + ACTIONS(10125), 1, anon_sym_DOLLAR, - ACTIONS(7960), 2, + ACTIONS(8819), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10080), 2, + ACTIONS(9141), 2, sym_test_operator, sym__special_character, - ACTIONS(10082), 3, + ACTIONS(9143), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4271), 9, + STATE(1161), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258968,46 +247335,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [219834] = 18, + [209828] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1551), 1, - anon_sym_DOLLAR, - ACTIONS(1557), 1, + ACTIONS(1561), 1, aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, ACTIONS(1563), 1, + aux_sym_number_token2, + ACTIONS(1567), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1575), 1, + ACTIONS(1579), 1, sym__brace_start, - ACTIONS(9974), 1, + ACTIONS(8803), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9976), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9980), 1, + ACTIONS(8809), 1, anon_sym_DQUOTE, - ACTIONS(9984), 1, + ACTIONS(8813), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9986), 1, + ACTIONS(8815), 1, anon_sym_BQUOTE, - ACTIONS(9988), 1, + ACTIONS(8817), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11048), 1, + ACTIONS(9139), 1, sym_word, - ACTIONS(11056), 1, + ACTIONS(9145), 1, sym__comment_word, - ACTIONS(9990), 2, + ACTIONS(10127), 1, + anon_sym_DOLLAR, + ACTIONS(8819), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11052), 2, + ACTIONS(9141), 2, sym_test_operator, sym__special_character, - ACTIONS(11054), 3, + ACTIONS(9143), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1154), 9, + STATE(1161), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259017,46 +247384,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [219901] = 18, + [209895] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7936), 1, + ACTIONS(402), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7938), 1, + ACTIONS(404), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7944), 1, + ACTIONS(410), 1, anon_sym_DQUOTE, - ACTIONS(7948), 1, + ACTIONS(414), 1, aux_sym_number_token1, - ACTIONS(7950), 1, + ACTIONS(416), 1, aux_sym_number_token2, - ACTIONS(7952), 1, + ACTIONS(418), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7954), 1, + ACTIONS(420), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7956), 1, + ACTIONS(422), 1, anon_sym_BQUOTE, - ACTIONS(7958), 1, + ACTIONS(424), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7968), 1, + ACTIONS(434), 1, sym__brace_start, - ACTIONS(10076), 1, + ACTIONS(9699), 1, sym_word, - ACTIONS(10084), 1, + ACTIONS(9705), 1, sym__comment_word, - ACTIONS(11114), 1, + ACTIONS(10129), 1, anon_sym_DOLLAR, - ACTIONS(7960), 2, + ACTIONS(426), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10080), 2, + ACTIONS(9701), 2, sym_test_operator, sym__special_character, - ACTIONS(10082), 3, + ACTIONS(9703), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4271), 9, + STATE(792), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259066,48 +247433,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [219968] = 20, + [209962] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(5319), 1, + ACTIONS(7159), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5321), 1, + ACTIONS(7161), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5323), 1, + ACTIONS(7163), 1, anon_sym_DOLLAR, - ACTIONS(5325), 1, + ACTIONS(7165), 1, sym__special_character, - ACTIONS(5327), 1, + ACTIONS(7167), 1, anon_sym_DQUOTE, - ACTIONS(5331), 1, + ACTIONS(7171), 1, aux_sym_number_token1, - ACTIONS(5333), 1, + ACTIONS(7173), 1, aux_sym_number_token2, - ACTIONS(5335), 1, + ACTIONS(7175), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5337), 1, + ACTIONS(7177), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5339), 1, + ACTIONS(7179), 1, anon_sym_BQUOTE, - ACTIONS(5341), 1, + ACTIONS(7181), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5347), 1, + ACTIONS(7191), 1, sym__brace_start, - ACTIONS(11116), 1, + ACTIONS(10131), 1, sym_word, - ACTIONS(11120), 1, + ACTIONS(10135), 1, sym_test_operator, - STATE(5434), 1, + STATE(1713), 1, aux_sym__literal_repeat1, - STATE(5543), 1, + STATE(1780), 1, sym_concatenation, - ACTIONS(5343), 2, + ACTIONS(7183), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11118), 2, + ACTIONS(10133), 2, sym_raw_string, sym_ansi_c_string, - STATE(5253), 9, + STATE(1291), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259117,46 +247484,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [220039] = 18, + [210033] = 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(2174), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(2176), 1, aux_sym_number_token2, - ACTIONS(385), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(2180), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, + ACTIONS(2194), 1, sym__brace_start, - ACTIONS(5375), 1, + ACTIONS(6905), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6907), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6911), 1, + anon_sym_DQUOTE, + ACTIONS(6915), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6917), 1, anon_sym_BQUOTE, - ACTIONS(9676), 1, + ACTIONS(6919), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9029), 1, sym_word, - ACTIONS(9680), 1, + ACTIONS(9035), 1, sym__comment_word, - ACTIONS(11122), 1, + ACTIONS(10137), 1, anon_sym_DOLLAR, - ACTIONS(393), 2, + ACTIONS(6921), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9684), 2, + ACTIONS(9031), 2, sym_test_operator, sym__special_character, - ACTIONS(9682), 3, + ACTIONS(9033), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2517), 9, + STATE(1429), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259166,97 +247533,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [220106] = 20, - ACTIONS(71), 1, + [210100] = 18, + 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(5325), 1, - sym__special_character, - ACTIONS(5327), 1, - anon_sym_DQUOTE, - ACTIONS(5331), 1, + ACTIONS(2057), 1, aux_sym_number_token1, - ACTIONS(5333), 1, + ACTIONS(2059), 1, aux_sym_number_token2, - ACTIONS(5335), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5337), 1, + ACTIONS(2063), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5339), 1, - anon_sym_BQUOTE, - ACTIONS(5341), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5347), 1, + ACTIONS(2075), 1, sym__brace_start, - ACTIONS(11124), 1, - sym_word, - ACTIONS(11128), 1, - sym_test_operator, - STATE(5444), 1, - aux_sym__literal_repeat1, - STATE(5581), 1, - sym_concatenation, - ACTIONS(5343), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(11126), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(5271), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [220177] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8300), 1, + ACTIONS(9365), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8302), 1, + ACTIONS(9367), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8308), 1, + ACTIONS(9371), 1, anon_sym_DQUOTE, - ACTIONS(8312), 1, - aux_sym_number_token1, - ACTIONS(8314), 1, - aux_sym_number_token2, - ACTIONS(8316), 1, + ACTIONS(9375), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8320), 1, + ACTIONS(9377), 1, anon_sym_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(9379), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8332), 1, - sym__brace_start, - ACTIONS(11008), 1, + ACTIONS(9763), 1, sym_word, - ACTIONS(11016), 1, + ACTIONS(9769), 1, sym__comment_word, - ACTIONS(11130), 1, + ACTIONS(10139), 1, anon_sym_DOLLAR, - ACTIONS(8324), 2, + ACTIONS(9381), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11012), 2, + ACTIONS(9765), 2, sym_test_operator, sym__special_character, - ACTIONS(11014), 3, + ACTIONS(9767), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1664), 9, + STATE(1554), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259266,46 +247582,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [220244] = 18, + [210167] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8226), 1, + ACTIONS(6975), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8228), 1, + ACTIONS(6977), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8234), 1, + ACTIONS(6983), 1, anon_sym_DQUOTE, - ACTIONS(8238), 1, + ACTIONS(6987), 1, aux_sym_number_token1, - ACTIONS(8240), 1, + ACTIONS(6989), 1, aux_sym_number_token2, - ACTIONS(8242), 1, + ACTIONS(6991), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8244), 1, + ACTIONS(6993), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8246), 1, + ACTIONS(6995), 1, anon_sym_BQUOTE, - ACTIONS(8248), 1, + ACTIONS(6997), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8258), 1, + ACTIONS(7007), 1, sym__brace_start, - ACTIONS(10284), 1, + ACTIONS(9683), 1, sym_word, - ACTIONS(10290), 1, + ACTIONS(9689), 1, sym__comment_word, - ACTIONS(11132), 1, + ACTIONS(10141), 1, anon_sym_DOLLAR, - ACTIONS(8250), 2, + ACTIONS(6999), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10286), 2, + ACTIONS(9685), 2, sym_test_operator, sym__special_character, - ACTIONS(10288), 3, + ACTIONS(9687), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1441), 9, + STATE(5145), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259315,46 +247631,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [220311] = 18, + [210234] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3016), 1, + ACTIONS(3644), 1, aux_sym_number_token1, - ACTIONS(3018), 1, + ACTIONS(3646), 1, aux_sym_number_token2, - ACTIONS(3022), 1, + ACTIONS(3650), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3032), 1, + ACTIONS(3660), 1, sym__brace_start, - ACTIONS(9686), 1, + ACTIONS(8983), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9688), 1, + ACTIONS(8985), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9692), 1, + ACTIONS(8989), 1, anon_sym_DQUOTE, - ACTIONS(9696), 1, + ACTIONS(8993), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9698), 1, + ACTIONS(8995), 1, anon_sym_BQUOTE, - ACTIONS(9700), 1, + ACTIONS(8997), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11134), 1, + ACTIONS(9529), 1, sym_word, - ACTIONS(11136), 1, - anon_sym_DOLLAR, - ACTIONS(11142), 1, + ACTIONS(9535), 1, sym__comment_word, - ACTIONS(9702), 2, + ACTIONS(10143), 1, + anon_sym_DOLLAR, + ACTIONS(8999), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11138), 2, + ACTIONS(9531), 2, sym_test_operator, sym__special_character, - ACTIONS(11140), 3, + ACTIONS(9533), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1783), 9, + STATE(4179), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259364,97 +247680,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [220378] = 20, - ACTIONS(71), 1, + [210301] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(9896), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9898), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9900), 1, - anon_sym_DOLLAR, - ACTIONS(9902), 1, - sym__special_character, - ACTIONS(9904), 1, - anon_sym_DQUOTE, - ACTIONS(9908), 1, + ACTIONS(2651), 1, aux_sym_number_token1, - ACTIONS(9910), 1, + ACTIONS(2653), 1, aux_sym_number_token2, - ACTIONS(9912), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9914), 1, + ACTIONS(2657), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9916), 1, - anon_sym_BQUOTE, - ACTIONS(9918), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9924), 1, + ACTIONS(2669), 1, sym__brace_start, - ACTIONS(11144), 1, + ACTIONS(9491), 1, sym_word, - ACTIONS(11148), 1, - sym_test_operator, - STATE(2436), 1, - aux_sym__literal_repeat1, - STATE(2665), 1, - sym_concatenation, - ACTIONS(9920), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(11146), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2238), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [220449] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8300), 1, + ACTIONS(9493), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8302), 1, + ACTIONS(9495), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8308), 1, + ACTIONS(9499), 1, anon_sym_DQUOTE, - ACTIONS(8312), 1, - aux_sym_number_token1, - ACTIONS(8314), 1, - aux_sym_number_token2, - ACTIONS(8316), 1, + ACTIONS(9503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8320), 1, + ACTIONS(9505), 1, anon_sym_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(9507), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8332), 1, - sym__brace_start, - ACTIONS(11008), 1, - sym_word, - ACTIONS(11016), 1, + ACTIONS(9511), 1, sym__comment_word, - ACTIONS(11150), 1, + ACTIONS(10145), 1, anon_sym_DOLLAR, - ACTIONS(8324), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(11012), 2, + ACTIONS(9497), 2, sym_test_operator, sym__special_character, - ACTIONS(11014), 3, + ACTIONS(9509), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9501), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1664), 9, + STATE(1724), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259464,46 +247729,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [220516] = 18, + [210368] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3213), 1, + ACTIONS(3309), 1, aux_sym_number_token1, - ACTIONS(3215), 1, + ACTIONS(3311), 1, aux_sym_number_token2, - ACTIONS(3219), 1, + ACTIONS(3315), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3229), 1, + ACTIONS(3325), 1, sym__brace_start, - ACTIONS(9834), 1, + ACTIONS(9579), 1, + sym_word, + ACTIONS(9581), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9836), 1, + ACTIONS(9583), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9840), 1, + ACTIONS(9587), 1, anon_sym_DQUOTE, - ACTIONS(9844), 1, + ACTIONS(9591), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9846), 1, + ACTIONS(9593), 1, anon_sym_BQUOTE, - ACTIONS(9848), 1, + ACTIONS(9595), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11152), 1, - sym_word, - ACTIONS(11154), 1, - anon_sym_DOLLAR, - ACTIONS(11160), 1, + ACTIONS(9599), 1, sym__comment_word, - ACTIONS(9850), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(11156), 2, + ACTIONS(10147), 1, + anon_sym_DOLLAR, + ACTIONS(9585), 2, sym_test_operator, sym__special_character, - ACTIONS(11158), 3, + ACTIONS(9597), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9589), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1740), 9, + STATE(4069), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259513,97 +247778,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [220583] = 18, + [210435] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7974), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7976), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7978), 1, - anon_sym_DOLLAR, - ACTIONS(7982), 1, - anon_sym_DQUOTE, - ACTIONS(7986), 1, + ACTIONS(3309), 1, aux_sym_number_token1, - ACTIONS(7988), 1, + ACTIONS(3311), 1, aux_sym_number_token2, - ACTIONS(7990), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7992), 1, + ACTIONS(3315), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7994), 1, - anon_sym_BQUOTE, - ACTIONS(7996), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8006), 1, + ACTIONS(3325), 1, sym__brace_start, - ACTIONS(10578), 1, + ACTIONS(9579), 1, sym_word, - ACTIONS(10586), 1, - sym__comment_word, - ACTIONS(7998), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10582), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10584), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(3402), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [220650] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(9896), 1, + ACTIONS(9581), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9898), 1, + ACTIONS(9583), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9900), 1, - anon_sym_DOLLAR, - ACTIONS(9902), 1, - sym__special_character, - ACTIONS(9904), 1, + ACTIONS(9587), 1, anon_sym_DQUOTE, - ACTIONS(9908), 1, - aux_sym_number_token1, - ACTIONS(9910), 1, - aux_sym_number_token2, - ACTIONS(9912), 1, + ACTIONS(9591), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9914), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9916), 1, + ACTIONS(9593), 1, anon_sym_BQUOTE, - ACTIONS(9918), 1, + ACTIONS(9595), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9924), 1, - sym__brace_start, - ACTIONS(11162), 1, - sym_word, - ACTIONS(11166), 1, + ACTIONS(9599), 1, + sym__comment_word, + ACTIONS(10149), 1, + anon_sym_DOLLAR, + ACTIONS(9585), 2, sym_test_operator, - STATE(2569), 1, - aux_sym__literal_repeat1, - STATE(2686), 1, - sym_concatenation, - ACTIONS(9920), 2, + sym__special_character, + ACTIONS(9597), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11164), 2, + ACTIONS(9589), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2306), 9, + STATE(4069), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259613,46 +247827,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [220721] = 18, + [210502] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2039), 1, + ACTIONS(2651), 1, aux_sym_number_token1, - ACTIONS(2041), 1, + ACTIONS(2653), 1, aux_sym_number_token2, - ACTIONS(2045), 1, + ACTIONS(2657), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2059), 1, + ACTIONS(2669), 1, sym__brace_start, - ACTIONS(8012), 1, + ACTIONS(9491), 1, + sym_word, + ACTIONS(9493), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8014), 1, + ACTIONS(9495), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8018), 1, + ACTIONS(9499), 1, anon_sym_DQUOTE, - ACTIONS(8022), 1, + ACTIONS(9503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8024), 1, + ACTIONS(9505), 1, anon_sym_BQUOTE, - ACTIONS(8026), 1, + ACTIONS(9507), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10104), 1, - sym_word, - ACTIONS(10112), 1, + ACTIONS(9511), 1, sym__comment_word, - ACTIONS(11168), 1, + ACTIONS(10151), 1, anon_sym_DOLLAR, - ACTIONS(8028), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10108), 2, + ACTIONS(9497), 2, sym_test_operator, sym__special_character, - ACTIONS(10110), 3, + ACTIONS(9509), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9501), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1703), 9, + STATE(1724), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259662,46 +247876,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [220788] = 18, + [210569] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3213), 1, + ACTIONS(3255), 1, aux_sym_number_token1, - ACTIONS(3215), 1, + ACTIONS(3257), 1, aux_sym_number_token2, - ACTIONS(3219), 1, + ACTIONS(3261), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3229), 1, + ACTIONS(3273), 1, sym__brace_start, - ACTIONS(9834), 1, + ACTIONS(8759), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9836), 1, + ACTIONS(8761), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9840), 1, + ACTIONS(8765), 1, anon_sym_DQUOTE, - ACTIONS(9844), 1, + ACTIONS(8769), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9846), 1, + ACTIONS(8771), 1, anon_sym_BQUOTE, - ACTIONS(9848), 1, + ACTIONS(8773), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11152), 1, + ACTIONS(9627), 1, sym_word, - ACTIONS(11160), 1, + ACTIONS(9633), 1, sym__comment_word, - ACTIONS(11170), 1, + ACTIONS(10153), 1, anon_sym_DOLLAR, - ACTIONS(9850), 2, + ACTIONS(8775), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11156), 2, + ACTIONS(9629), 2, sym_test_operator, sym__special_character, - ACTIONS(11158), 3, + ACTIONS(9631), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1740), 9, + STATE(4585), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259711,48 +247925,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [220855] = 20, - ACTIONS(71), 1, + [210636] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(5091), 1, + ACTIONS(3255), 1, + aux_sym_number_token1, + ACTIONS(3257), 1, + aux_sym_number_token2, + ACTIONS(3261), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3273), 1, + sym__brace_start, + ACTIONS(8759), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5093), 1, + ACTIONS(8761), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5095), 1, - anon_sym_DOLLAR, - ACTIONS(5097), 1, - sym__special_character, - ACTIONS(5099), 1, + ACTIONS(8765), 1, anon_sym_DQUOTE, - ACTIONS(5103), 1, - aux_sym_number_token1, - ACTIONS(5105), 1, - aux_sym_number_token2, - ACTIONS(5107), 1, + ACTIONS(8769), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5109), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5111), 1, + ACTIONS(8771), 1, anon_sym_BQUOTE, - ACTIONS(5113), 1, + ACTIONS(8773), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5119), 1, - sym__brace_start, - ACTIONS(11172), 1, + ACTIONS(9627), 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(9633), 1, + sym__comment_word, + ACTIONS(10155), 1, + anon_sym_DOLLAR, + ACTIONS(8775), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11174), 2, + ACTIONS(9629), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9631), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5202), 9, + STATE(4585), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259762,46 +247974,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [220926] = 18, + [210703] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3318), 1, + ACTIONS(2174), 1, aux_sym_number_token1, - ACTIONS(3320), 1, + ACTIONS(2176), 1, aux_sym_number_token2, - ACTIONS(3324), 1, + ACTIONS(2180), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3336), 1, + ACTIONS(2194), 1, sym__brace_start, - ACTIONS(10292), 1, - sym_word, - ACTIONS(10294), 1, + ACTIONS(6905), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10296), 1, + ACTIONS(6907), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10302), 1, + ACTIONS(6911), 1, anon_sym_DQUOTE, - ACTIONS(10306), 1, + ACTIONS(6915), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10308), 1, + ACTIONS(6917), 1, anon_sym_BQUOTE, - ACTIONS(10310), 1, + ACTIONS(6919), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10314), 1, + ACTIONS(9029), 1, + sym_word, + ACTIONS(9035), 1, sym__comment_word, - ACTIONS(11178), 1, + ACTIONS(10157), 1, anon_sym_DOLLAR, - ACTIONS(10300), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10312), 2, + ACTIONS(6921), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10304), 3, + ACTIONS(9031), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9033), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1841), 9, + STATE(1429), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259811,46 +248023,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [220993] = 18, + [210770] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8226), 1, + ACTIONS(6937), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8228), 1, + ACTIONS(6939), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8234), 1, + ACTIONS(6945), 1, anon_sym_DQUOTE, - ACTIONS(8238), 1, + ACTIONS(6949), 1, aux_sym_number_token1, - ACTIONS(8240), 1, + ACTIONS(6951), 1, aux_sym_number_token2, - ACTIONS(8242), 1, + ACTIONS(6953), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8244), 1, + ACTIONS(6955), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8246), 1, + ACTIONS(6957), 1, anon_sym_BQUOTE, - ACTIONS(8248), 1, + ACTIONS(6959), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8258), 1, + ACTIONS(6969), 1, sym__brace_start, - ACTIONS(10284), 1, + ACTIONS(9601), 1, sym_word, - ACTIONS(10290), 1, + ACTIONS(9609), 1, sym__comment_word, - ACTIONS(11180), 1, + ACTIONS(10159), 1, anon_sym_DOLLAR, - ACTIONS(8250), 2, + ACTIONS(6961), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10286), 2, + ACTIONS(9605), 2, sym_test_operator, sym__special_character, - ACTIONS(10288), 3, + ACTIONS(9607), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1441), 9, + STATE(4129), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259860,46 +248072,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [221060] = 18, + [210837] = 18, ACTIONS(3), 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(6937), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8014), 1, + ACTIONS(6939), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8018), 1, + ACTIONS(6945), 1, anon_sym_DQUOTE, - ACTIONS(8022), 1, + ACTIONS(6949), 1, + aux_sym_number_token1, + ACTIONS(6951), 1, + aux_sym_number_token2, + ACTIONS(6953), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8024), 1, + ACTIONS(6955), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6957), 1, anon_sym_BQUOTE, - ACTIONS(8026), 1, + ACTIONS(6959), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10104), 1, + ACTIONS(6969), 1, + sym__brace_start, + ACTIONS(9601), 1, sym_word, - ACTIONS(10112), 1, + ACTIONS(9609), 1, sym__comment_word, - ACTIONS(11182), 1, + ACTIONS(10161), 1, anon_sym_DOLLAR, - ACTIONS(8028), 2, + ACTIONS(6961), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10108), 2, + ACTIONS(9605), 2, sym_test_operator, sym__special_character, - ACTIONS(10110), 3, + ACTIONS(9607), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1703), 9, + STATE(4129), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259909,46 +248121,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [221127] = 18, - ACTIONS(3), 1, + [210904] = 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(7337), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10790), 1, + ACTIONS(7339), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10796), 1, + ACTIONS(7341), 1, + anon_sym_DOLLAR, + ACTIONS(7343), 1, + sym__special_character, + ACTIONS(7345), 1, anon_sym_DQUOTE, - ACTIONS(10800), 1, + ACTIONS(7349), 1, + aux_sym_number_token1, + ACTIONS(7351), 1, + aux_sym_number_token2, + ACTIONS(7353), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10802), 1, + ACTIONS(7355), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7357), 1, anon_sym_BQUOTE, - ACTIONS(10804), 1, + ACTIONS(7359), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10808), 1, - sym__comment_word, - ACTIONS(11184), 1, - anon_sym_DOLLAR, - ACTIONS(10794), 2, + ACTIONS(7369), 1, + sym__brace_start, + ACTIONS(10163), 1, + sym_word, + ACTIONS(10167), 1, sym_test_operator, - sym__special_character, - ACTIONS(10806), 2, + STATE(3310), 1, + aux_sym__literal_repeat1, + STATE(3372), 1, + sym_concatenation, + ACTIONS(7361), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10798), 3, - sym__bare_dollar, + ACTIONS(10165), 2, sym_raw_string, sym_ansi_c_string, - STATE(1855), 9, + STATE(3228), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259958,46 +248172,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [221194] = 18, - ACTIONS(3), 1, + [210975] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(9896), 1, + ACTIONS(7337), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9898), 1, + ACTIONS(7339), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9900), 1, + ACTIONS(7341), 1, anon_sym_DOLLAR, - ACTIONS(9904), 1, + ACTIONS(7343), 1, + sym__special_character, + ACTIONS(7345), 1, anon_sym_DQUOTE, - ACTIONS(9908), 1, + ACTIONS(7349), 1, aux_sym_number_token1, - ACTIONS(9910), 1, + ACTIONS(7351), 1, aux_sym_number_token2, - ACTIONS(9912), 1, + ACTIONS(7353), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9914), 1, + ACTIONS(7355), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9916), 1, + ACTIONS(7357), 1, anon_sym_BQUOTE, - ACTIONS(9918), 1, + ACTIONS(7359), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9924), 1, + ACTIONS(7369), 1, sym__brace_start, - ACTIONS(10864), 1, + ACTIONS(10169), 1, sym_word, - ACTIONS(10872), 1, - sym__comment_word, - ACTIONS(9920), 2, + ACTIONS(10173), 1, + sym_test_operator, + STATE(3312), 1, + aux_sym__literal_repeat1, + STATE(3375), 1, + sym_concatenation, + ACTIONS(7361), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10868), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10870), 3, - sym__bare_dollar, + ACTIONS(10171), 2, sym_raw_string, sym_ansi_c_string, - STATE(2333), 9, + STATE(3227), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260007,46 +248223,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [221261] = 18, - ACTIONS(3), 1, + [211046] = 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(7337), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10790), 1, + ACTIONS(7339), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10796), 1, + ACTIONS(7341), 1, + anon_sym_DOLLAR, + ACTIONS(7343), 1, + sym__special_character, + ACTIONS(7345), 1, anon_sym_DQUOTE, - ACTIONS(10800), 1, + ACTIONS(7349), 1, + aux_sym_number_token1, + ACTIONS(7351), 1, + aux_sym_number_token2, + ACTIONS(7353), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10802), 1, + ACTIONS(7355), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7357), 1, anon_sym_BQUOTE, - ACTIONS(10804), 1, + ACTIONS(7359), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10808), 1, - sym__comment_word, - ACTIONS(11186), 1, - anon_sym_DOLLAR, - ACTIONS(10794), 2, + ACTIONS(7369), 1, + sym__brace_start, + ACTIONS(10175), 1, + sym_word, + ACTIONS(10179), 1, sym_test_operator, - sym__special_character, - ACTIONS(10806), 2, + STATE(3313), 1, + aux_sym__literal_repeat1, + STATE(3379), 1, + sym_concatenation, + ACTIONS(7361), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10798), 3, - sym__bare_dollar, + ACTIONS(10177), 2, sym_raw_string, sym_ansi_c_string, - STATE(1855), 9, + STATE(3225), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260056,48 +248274,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [221328] = 20, + [211117] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(8114), 1, + ACTIONS(7337), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8116), 1, + ACTIONS(7339), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8118), 1, + ACTIONS(7341), 1, anon_sym_DOLLAR, - ACTIONS(8120), 1, + ACTIONS(7343), 1, sym__special_character, - ACTIONS(8122), 1, + ACTIONS(7345), 1, anon_sym_DQUOTE, - ACTIONS(8126), 1, + ACTIONS(7349), 1, aux_sym_number_token1, - ACTIONS(8128), 1, + ACTIONS(7351), 1, aux_sym_number_token2, - ACTIONS(8130), 1, + ACTIONS(7353), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8132), 1, + ACTIONS(7355), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8134), 1, + ACTIONS(7357), 1, anon_sym_BQUOTE, - ACTIONS(8136), 1, + ACTIONS(7359), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8146), 1, + ACTIONS(7369), 1, sym__brace_start, - ACTIONS(11188), 1, + ACTIONS(10181), 1, sym_word, - ACTIONS(11192), 1, + ACTIONS(10185), 1, sym_test_operator, - STATE(1391), 1, + STATE(3311), 1, aux_sym__literal_repeat1, - STATE(1547), 1, + STATE(3381), 1, sym_concatenation, - ACTIONS(8138), 2, + ACTIONS(7361), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11190), 2, + ACTIONS(10183), 2, sym_raw_string, sym_ansi_c_string, - STATE(1009), 9, + STATE(3241), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260107,46 +248325,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [221399] = 18, + [211188] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5773), 1, + ACTIONS(2057), 1, aux_sym_number_token1, - ACTIONS(5775), 1, + ACTIONS(2059), 1, aux_sym_number_token2, - ACTIONS(5779), 1, + ACTIONS(2063), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5789), 1, + ACTIONS(2075), 1, sym__brace_start, - ACTIONS(10600), 1, - sym_word, - ACTIONS(10602), 1, + ACTIONS(9365), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10604), 1, + ACTIONS(9367), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10610), 1, + ACTIONS(9371), 1, anon_sym_DQUOTE, - ACTIONS(10614), 1, + ACTIONS(9375), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10616), 1, + ACTIONS(9377), 1, anon_sym_BQUOTE, - ACTIONS(10618), 1, + ACTIONS(9379), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10622), 1, + ACTIONS(9763), 1, + sym_word, + ACTIONS(9769), 1, sym__comment_word, - ACTIONS(11194), 1, + ACTIONS(10187), 1, anon_sym_DOLLAR, - ACTIONS(10608), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10620), 2, + ACTIONS(9381), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10612), 3, + ACTIONS(9765), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9767), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5559), 9, + STATE(1554), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260156,48 +248374,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [221466] = 20, - ACTIONS(71), 1, + [211255] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(8114), 1, + ACTIONS(308), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8116), 1, + ACTIONS(310), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8118), 1, - anon_sym_DOLLAR, - ACTIONS(8120), 1, - sym__special_character, - ACTIONS(8122), 1, + ACTIONS(316), 1, anon_sym_DQUOTE, - ACTIONS(8126), 1, + ACTIONS(320), 1, aux_sym_number_token1, - ACTIONS(8128), 1, + ACTIONS(322), 1, aux_sym_number_token2, - ACTIONS(8130), 1, + ACTIONS(324), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8132), 1, + ACTIONS(326), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8134), 1, + ACTIONS(328), 1, anon_sym_BQUOTE, - ACTIONS(8136), 1, + ACTIONS(330), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8146), 1, + ACTIONS(340), 1, sym__brace_start, - ACTIONS(11196), 1, + ACTIONS(9941), 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(9947), 1, + sym__comment_word, + ACTIONS(10189), 1, + anon_sym_DOLLAR, + ACTIONS(332), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11198), 2, + ACTIONS(9943), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9945), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1019), 9, + STATE(1028), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260207,46 +248423,83 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [221537] = 18, + [211322] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10191), 1, + aux_sym_concatenation_token1, + ACTIONS(10193), 1, + sym__concat, + STATE(3984), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1231), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1229), 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, + [211365] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4538), 1, + ACTIONS(3055), 1, + aux_sym_number_token1, + ACTIONS(3057), 1, + aux_sym_number_token2, + ACTIONS(3061), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3071), 1, + sym__brace_start, + ACTIONS(9275), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4540), 1, + ACTIONS(9277), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4546), 1, + ACTIONS(9281), 1, anon_sym_DQUOTE, - ACTIONS(4550), 1, - aux_sym_number_token1, - ACTIONS(4552), 1, - aux_sym_number_token2, - ACTIONS(4554), 1, + ACTIONS(9285), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4556), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4558), 1, + ACTIONS(9287), 1, anon_sym_BQUOTE, - ACTIONS(4560), 1, + ACTIONS(9289), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4566), 1, - sym__brace_start, - ACTIONS(10388), 1, + ACTIONS(9771), 1, sym_word, - ACTIONS(10396), 1, + ACTIONS(9777), 1, sym__comment_word, - ACTIONS(11202), 1, + ACTIONS(10195), 1, anon_sym_DOLLAR, - ACTIONS(4562), 2, + ACTIONS(9291), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10392), 2, + ACTIONS(9773), 2, sym_test_operator, sym__special_character, - ACTIONS(10394), 3, + ACTIONS(9775), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2580), 9, + STATE(4183), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260256,46 +248509,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [221604] = 18, + [211432] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1557), 1, + ACTIONS(3055), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(3057), 1, aux_sym_number_token2, - ACTIONS(1563), 1, + ACTIONS(3061), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1575), 1, + ACTIONS(3071), 1, sym__brace_start, - ACTIONS(9974), 1, + ACTIONS(9275), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9976), 1, + ACTIONS(9277), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9980), 1, + ACTIONS(9281), 1, anon_sym_DQUOTE, - ACTIONS(9984), 1, + ACTIONS(9285), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9986), 1, + ACTIONS(9287), 1, anon_sym_BQUOTE, - ACTIONS(9988), 1, + ACTIONS(9289), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11048), 1, + ACTIONS(9771), 1, sym_word, - ACTIONS(11056), 1, + ACTIONS(9777), 1, sym__comment_word, - ACTIONS(11204), 1, + ACTIONS(10197), 1, anon_sym_DOLLAR, - ACTIONS(9990), 2, + ACTIONS(9291), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11052), 2, + ACTIONS(9773), 2, sym_test_operator, sym__special_character, - ACTIONS(11054), 3, + ACTIONS(9775), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1154), 9, + STATE(4183), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260305,46 +248558,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [221671] = 18, + [211499] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3514), 1, + ACTIONS(2575), 1, aux_sym_number_token1, - ACTIONS(3516), 1, + ACTIONS(2577), 1, aux_sym_number_token2, - ACTIONS(3520), 1, + ACTIONS(2581), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3530), 1, + ACTIONS(2591), 1, sym__brace_start, - ACTIONS(10514), 1, - sym_word, - ACTIONS(10516), 1, + ACTIONS(9387), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10518), 1, + ACTIONS(9389), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10524), 1, + ACTIONS(9393), 1, anon_sym_DQUOTE, - ACTIONS(10528), 1, + ACTIONS(9397), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, + ACTIONS(9399), 1, anon_sym_BQUOTE, - ACTIONS(10532), 1, + ACTIONS(9401), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10536), 1, + ACTIONS(9779), 1, + sym_word, + ACTIONS(9785), 1, sym__comment_word, - ACTIONS(11206), 1, + ACTIONS(10199), 1, anon_sym_DOLLAR, - ACTIONS(10522), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10534), 2, + ACTIONS(9403), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10526), 3, + ACTIONS(9781), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9783), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4229), 9, + STATE(4058), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260354,46 +248607,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [221738] = 18, + [211566] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1557), 1, + ACTIONS(2575), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(2577), 1, aux_sym_number_token2, - ACTIONS(1563), 1, + ACTIONS(2581), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1575), 1, + ACTIONS(2591), 1, sym__brace_start, - ACTIONS(9974), 1, + ACTIONS(9387), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9976), 1, + ACTIONS(9389), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9980), 1, + ACTIONS(9393), 1, anon_sym_DQUOTE, - ACTIONS(9984), 1, + ACTIONS(9397), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9986), 1, + ACTIONS(9399), 1, anon_sym_BQUOTE, - ACTIONS(9988), 1, + ACTIONS(9401), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11048), 1, + ACTIONS(9779), 1, sym_word, - ACTIONS(11056), 1, + ACTIONS(9785), 1, sym__comment_word, - ACTIONS(11208), 1, + ACTIONS(10201), 1, anon_sym_DOLLAR, - ACTIONS(9990), 2, + ACTIONS(9403), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11052), 2, + ACTIONS(9781), 2, sym_test_operator, sym__special_character, - ACTIONS(11054), 3, + ACTIONS(9783), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1154), 9, + STATE(4058), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260403,46 +248656,83 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [221805] = 18, + [211633] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(10203), 1, + aux_sym_concatenation_token1, + ACTIONS(10205), 1, + sym__concat, + STATE(3995), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1231), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1229), 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, + [211676] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(701), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(109), 1, + ACTIONS(703), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(111), 1, - anon_sym_DOLLAR, - ACTIONS(115), 1, + ACTIONS(709), 1, anon_sym_DQUOTE, - ACTIONS(119), 1, + ACTIONS(713), 1, aux_sym_number_token1, - ACTIONS(121), 1, + ACTIONS(715), 1, aux_sym_number_token2, - ACTIONS(123), 1, + ACTIONS(717), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(125), 1, + ACTIONS(719), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(127), 1, + ACTIONS(721), 1, anon_sym_BQUOTE, - ACTIONS(129), 1, + ACTIONS(723), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(139), 1, + ACTIONS(733), 1, sym__brace_start, - ACTIONS(10662), 1, + ACTIONS(9787), 1, sym_word, - ACTIONS(10670), 1, + ACTIONS(9793), 1, sym__comment_word, - ACTIONS(131), 2, + ACTIONS(10207), 1, + anon_sym_DOLLAR, + ACTIONS(725), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10666), 2, + ACTIONS(9789), 2, sym_test_operator, sym__special_character, - ACTIONS(10668), 3, + ACTIONS(9791), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(486), 9, + STATE(820), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260452,46 +248742,95 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [221872] = 18, + [211743] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3514), 1, + ACTIONS(701), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(703), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(709), 1, + anon_sym_DQUOTE, + ACTIONS(713), 1, aux_sym_number_token1, - ACTIONS(3516), 1, + ACTIONS(715), 1, aux_sym_number_token2, - ACTIONS(3520), 1, + ACTIONS(717), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(719), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3530), 1, + ACTIONS(721), 1, + anon_sym_BQUOTE, + ACTIONS(723), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(733), 1, sym__brace_start, - ACTIONS(10514), 1, + ACTIONS(9787), 1, sym_word, - ACTIONS(10516), 1, + ACTIONS(9793), 1, + sym__comment_word, + ACTIONS(10209), 1, + anon_sym_DOLLAR, + ACTIONS(725), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9789), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9791), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(820), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [211810] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2089), 1, + aux_sym_number_token1, + ACTIONS(2091), 1, + aux_sym_number_token2, + ACTIONS(2095), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2109), 1, + sym__brace_start, + ACTIONS(7019), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10518), 1, + ACTIONS(7021), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10524), 1, + ACTIONS(7025), 1, anon_sym_DQUOTE, - ACTIONS(10528), 1, + ACTIONS(7029), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, + ACTIONS(7031), 1, anon_sym_BQUOTE, - ACTIONS(10532), 1, + ACTIONS(7033), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10536), 1, - sym__comment_word, - ACTIONS(11210), 1, + ACTIONS(10211), 1, + sym_word, + ACTIONS(10213), 1, anon_sym_DOLLAR, - ACTIONS(10522), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10534), 2, + ACTIONS(10219), 1, + sym__comment_word, + ACTIONS(7035), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10526), 3, + ACTIONS(10215), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10217), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4229), 9, + STATE(1361), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260501,46 +248840,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [221939] = 18, + [211877] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(187), 1, + ACTIONS(7121), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(189), 1, + ACTIONS(7123), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(195), 1, + ACTIONS(7129), 1, anon_sym_DQUOTE, - ACTIONS(199), 1, + ACTIONS(7133), 1, aux_sym_number_token1, - ACTIONS(201), 1, + ACTIONS(7135), 1, aux_sym_number_token2, - ACTIONS(203), 1, + ACTIONS(7137), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(205), 1, + ACTIONS(7139), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(207), 1, + ACTIONS(7141), 1, anon_sym_BQUOTE, - ACTIONS(209), 1, + ACTIONS(7143), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(219), 1, + ACTIONS(7153), 1, sym__brace_start, - ACTIONS(11212), 1, + ACTIONS(9795), 1, sym_word, - ACTIONS(11214), 1, - anon_sym_DOLLAR, - ACTIONS(11220), 1, + ACTIONS(9801), 1, sym__comment_word, - ACTIONS(211), 2, + ACTIONS(10221), 1, + anon_sym_DOLLAR, + ACTIONS(7145), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11216), 2, + ACTIONS(9797), 2, sym_test_operator, sym__special_character, - ACTIONS(11218), 3, + ACTIONS(9799), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(508), 9, + STATE(4120), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260550,48 +248889,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [222006] = 20, - ACTIONS(71), 1, + [211944] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3123), 1, - anon_sym_DOLLAR, - ACTIONS(3129), 1, + ACTIONS(3644), 1, aux_sym_number_token1, - ACTIONS(3131), 1, + ACTIONS(3646), 1, aux_sym_number_token2, - ACTIONS(3135), 1, + ACTIONS(3650), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3145), 1, + ACTIONS(3660), 1, sym__brace_start, - ACTIONS(10204), 1, + ACTIONS(8983), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10206), 1, + ACTIONS(8985), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10210), 1, + ACTIONS(8989), 1, anon_sym_DQUOTE, - ACTIONS(10214), 1, + ACTIONS(8993), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10216), 1, + ACTIONS(8995), 1, anon_sym_BQUOTE, - ACTIONS(10218), 1, + ACTIONS(8997), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11222), 1, + ACTIONS(9529), 1, sym_word, - ACTIONS(11224), 1, - sym__special_character, - ACTIONS(11228), 1, - sym_test_operator, - STATE(4429), 1, - aux_sym__literal_repeat1, - STATE(4714), 1, - sym_concatenation, - ACTIONS(10220), 2, + ACTIONS(9535), 1, + sym__comment_word, + ACTIONS(10223), 1, + anon_sym_DOLLAR, + ACTIONS(8999), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11226), 2, + ACTIONS(9531), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9533), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4258), 9, + STATE(4179), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260601,48 +248938,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [222077] = 20, - ACTIONS(71), 1, + [212011] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3123), 1, - anon_sym_DOLLAR, - ACTIONS(3129), 1, - aux_sym_number_token1, - ACTIONS(3131), 1, - aux_sym_number_token2, - ACTIONS(3135), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3145), 1, - sym__brace_start, - ACTIONS(10204), 1, + ACTIONS(9957), 1, + sym_word, + ACTIONS(9959), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10206), 1, + ACTIONS(9961), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10210), 1, + ACTIONS(9967), 1, anon_sym_DQUOTE, - ACTIONS(10214), 1, + ACTIONS(9971), 1, + aux_sym_number_token1, + ACTIONS(9973), 1, + aux_sym_number_token2, + ACTIONS(9975), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10216), 1, + ACTIONS(9977), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9979), 1, anon_sym_BQUOTE, - ACTIONS(10218), 1, + ACTIONS(9981), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11224), 1, - sym__special_character, - ACTIONS(11230), 1, - sym_word, - ACTIONS(11234), 1, + ACTIONS(9985), 1, + sym__comment_word, + ACTIONS(9987), 1, + sym__brace_start, + ACTIONS(10225), 1, + anon_sym_DOLLAR, + ACTIONS(9965), 2, sym_test_operator, - STATE(4356), 1, - aux_sym__literal_repeat1, - STATE(4935), 1, - sym_concatenation, - ACTIONS(10220), 2, + sym__special_character, + ACTIONS(9983), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11232), 2, + ACTIONS(9969), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4235), 9, + STATE(5820), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260652,46 +248987,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [222148] = 18, + [212078] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8300), 1, + ACTIONS(308), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8302), 1, + ACTIONS(310), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8308), 1, + ACTIONS(316), 1, anon_sym_DQUOTE, - ACTIONS(8312), 1, + ACTIONS(320), 1, aux_sym_number_token1, - ACTIONS(8314), 1, + ACTIONS(322), 1, aux_sym_number_token2, - ACTIONS(8316), 1, + ACTIONS(324), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, + ACTIONS(326), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8320), 1, + ACTIONS(328), 1, anon_sym_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(330), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8332), 1, + ACTIONS(340), 1, sym__brace_start, - ACTIONS(11008), 1, + ACTIONS(9941), 1, sym_word, - ACTIONS(11016), 1, + ACTIONS(9947), 1, sym__comment_word, - ACTIONS(11236), 1, + ACTIONS(10227), 1, anon_sym_DOLLAR, - ACTIONS(8324), 2, + ACTIONS(332), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11012), 2, + ACTIONS(9943), 2, sym_test_operator, sym__special_character, - ACTIONS(11014), 3, + ACTIONS(9945), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1664), 9, + STATE(1028), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260701,46 +249036,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [222215] = 18, + [212145] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1380), 1, + ACTIONS(3644), 1, aux_sym_number_token1, - ACTIONS(1382), 1, + ACTIONS(3646), 1, aux_sym_number_token2, - ACTIONS(1386), 1, + ACTIONS(3650), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1398), 1, + ACTIONS(3660), 1, sym__brace_start, - ACTIONS(10042), 1, + ACTIONS(8983), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10044), 1, + ACTIONS(8985), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10048), 1, + ACTIONS(8989), 1, anon_sym_DQUOTE, - ACTIONS(10052), 1, + ACTIONS(8993), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10054), 1, + ACTIONS(8995), 1, anon_sym_BQUOTE, - ACTIONS(10056), 1, + ACTIONS(8997), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10166), 1, + ACTIONS(9529), 1, sym_word, - ACTIONS(10172), 1, + ACTIONS(9535), 1, sym__comment_word, - ACTIONS(11238), 1, + ACTIONS(10229), 1, anon_sym_DOLLAR, - ACTIONS(10058), 2, + ACTIONS(8999), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10168), 2, + ACTIONS(9531), 2, sym_test_operator, sym__special_character, - ACTIONS(10170), 3, + ACTIONS(9533), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(889), 9, + STATE(4179), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260750,46 +249085,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [222282] = 18, + [212212] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4064), 1, + ACTIONS(308), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4066), 1, + ACTIONS(310), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4068), 1, - anon_sym_DOLLAR, - ACTIONS(4072), 1, + ACTIONS(316), 1, anon_sym_DQUOTE, - ACTIONS(4076), 1, + ACTIONS(320), 1, aux_sym_number_token1, - ACTIONS(4078), 1, + ACTIONS(322), 1, aux_sym_number_token2, - ACTIONS(4080), 1, + ACTIONS(324), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4082), 1, + ACTIONS(326), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4084), 1, + ACTIONS(328), 1, anon_sym_BQUOTE, - ACTIONS(4086), 1, + ACTIONS(330), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4096), 1, + ACTIONS(340), 1, sym__brace_start, - ACTIONS(10174), 1, + ACTIONS(9941), 1, sym_word, - ACTIONS(10182), 1, + ACTIONS(9947), 1, sym__comment_word, - ACTIONS(4088), 2, + ACTIONS(10231), 1, + anon_sym_DOLLAR, + ACTIONS(332), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10178), 2, + ACTIONS(9943), 2, sym_test_operator, sym__special_character, - ACTIONS(10180), 3, + ACTIONS(9945), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2446), 9, + STATE(1028), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260799,46 +249134,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [222349] = 18, + [212279] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3016), 1, + ACTIONS(262), 1, aux_sym_number_token1, - ACTIONS(3018), 1, + ACTIONS(264), 1, aux_sym_number_token2, - ACTIONS(3022), 1, + ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3032), 1, + ACTIONS(282), 1, sym__brace_start, - ACTIONS(9686), 1, + ACTIONS(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9688), 1, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9692), 1, + ACTIONS(1109), 1, anon_sym_DQUOTE, - ACTIONS(9696), 1, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9698), 1, - anon_sym_BQUOTE, - ACTIONS(9700), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11134), 1, + ACTIONS(4951), 1, + anon_sym_BQUOTE, + ACTIONS(8955), 1, sym_word, - ACTIONS(11142), 1, + ACTIONS(8963), 1, sym__comment_word, - ACTIONS(11240), 1, + ACTIONS(10233), 1, anon_sym_DOLLAR, - ACTIONS(9702), 2, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11138), 2, + ACTIONS(8959), 2, sym_test_operator, sym__special_character, - ACTIONS(11140), 3, + ACTIONS(8961), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1783), 9, + STATE(2073), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260848,48 +249183,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [222416] = 20, - ACTIONS(71), 1, + [212346] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(1374), 1, - anon_sym_DOLLAR, - ACTIONS(1380), 1, + ACTIONS(262), 1, aux_sym_number_token1, - ACTIONS(1382), 1, + ACTIONS(264), 1, aux_sym_number_token2, - ACTIONS(1386), 1, + ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1398), 1, + ACTIONS(282), 1, sym__brace_start, - ACTIONS(10042), 1, + ACTIONS(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10044), 1, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10046), 1, - sym__special_character, - ACTIONS(10048), 1, + ACTIONS(1109), 1, anon_sym_DQUOTE, - ACTIONS(10052), 1, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10054), 1, - anon_sym_BQUOTE, - ACTIONS(10056), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11242), 1, + ACTIONS(4951), 1, + anon_sym_BQUOTE, + ACTIONS(8955), 1, sym_word, - ACTIONS(11246), 1, - sym_test_operator, - STATE(1027), 1, - aux_sym__literal_repeat1, - STATE(1150), 1, - sym_concatenation, - ACTIONS(10058), 2, + ACTIONS(8963), 1, + sym__comment_word, + ACTIONS(10235), 1, + anon_sym_DOLLAR, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11244), 2, + ACTIONS(8959), 2, + sym_test_operator, + sym__special_character, + ACTIONS(8961), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(838), 9, + STATE(2073), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260899,46 +249232,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [222487] = 18, + [212413] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(187), 1, + ACTIONS(7197), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(189), 1, + ACTIONS(7199), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(195), 1, + ACTIONS(7205), 1, anon_sym_DQUOTE, - ACTIONS(199), 1, + ACTIONS(7209), 1, aux_sym_number_token1, - ACTIONS(201), 1, + ACTIONS(7211), 1, aux_sym_number_token2, - ACTIONS(203), 1, + ACTIONS(7213), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(205), 1, + ACTIONS(7215), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(207), 1, + ACTIONS(7217), 1, anon_sym_BQUOTE, - ACTIONS(209), 1, + ACTIONS(7219), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(219), 1, + ACTIONS(7229), 1, sym__brace_start, - ACTIONS(11212), 1, + ACTIONS(8975), 1, sym_word, - ACTIONS(11220), 1, + ACTIONS(8981), 1, sym__comment_word, - ACTIONS(11248), 1, + ACTIONS(10237), 1, anon_sym_DOLLAR, - ACTIONS(211), 2, + ACTIONS(7221), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11216), 2, + ACTIONS(8977), 2, sym_test_operator, sym__special_character, - ACTIONS(11218), 3, + ACTIONS(8979), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(508), 9, + STATE(1417), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260948,46 +249281,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [222554] = 18, + [212480] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5319), 1, + ACTIONS(7197), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5321), 1, + ACTIONS(7199), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5327), 1, + ACTIONS(7205), 1, anon_sym_DQUOTE, - ACTIONS(5331), 1, + ACTIONS(7209), 1, aux_sym_number_token1, - ACTIONS(5333), 1, + ACTIONS(7211), 1, aux_sym_number_token2, - ACTIONS(5335), 1, + ACTIONS(7213), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5337), 1, + ACTIONS(7215), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5339), 1, + ACTIONS(7217), 1, anon_sym_BQUOTE, - ACTIONS(5341), 1, + ACTIONS(7219), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5347), 1, + ACTIONS(7229), 1, sym__brace_start, - ACTIONS(11250), 1, + ACTIONS(8975), 1, sym_word, - ACTIONS(11252), 1, - anon_sym_DOLLAR, - ACTIONS(11258), 1, + ACTIONS(8981), 1, sym__comment_word, - ACTIONS(5343), 2, + ACTIONS(10239), 1, + anon_sym_DOLLAR, + ACTIONS(7221), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11254), 2, + ACTIONS(8977), 2, sym_test_operator, sym__special_character, - ACTIONS(11256), 3, + ACTIONS(8979), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5420), 9, + STATE(1417), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260997,48 +249330,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [222621] = 20, - ACTIONS(71), 1, + [212547] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(1374), 1, - anon_sym_DOLLAR, - ACTIONS(1380), 1, + ACTIONS(2174), 1, aux_sym_number_token1, - ACTIONS(1382), 1, + ACTIONS(2176), 1, aux_sym_number_token2, - ACTIONS(1386), 1, + ACTIONS(2180), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1398), 1, + ACTIONS(2194), 1, sym__brace_start, - ACTIONS(10042), 1, + ACTIONS(6905), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10044), 1, + ACTIONS(6907), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10046), 1, - sym__special_character, - ACTIONS(10048), 1, + ACTIONS(6911), 1, anon_sym_DQUOTE, - ACTIONS(10052), 1, + ACTIONS(6915), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10054), 1, + ACTIONS(6917), 1, anon_sym_BQUOTE, - ACTIONS(10056), 1, + ACTIONS(6919), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11260), 1, + ACTIONS(9029), 1, sym_word, - ACTIONS(11264), 1, - sym_test_operator, - STATE(1029), 1, - aux_sym__literal_repeat1, - STATE(1153), 1, - sym_concatenation, - ACTIONS(10058), 2, + ACTIONS(9035), 1, + sym__comment_word, + ACTIONS(10241), 1, + anon_sym_DOLLAR, + ACTIONS(6921), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11262), 2, + ACTIONS(9031), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9033), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(818), 9, + STATE(1429), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261048,83 +249379,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [222692] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11266), 1, - aux_sym_concatenation_token1, - ACTIONS(11268), 1, - sym__concat, - STATE(4136), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1225), 3, - sym_file_descriptor, - sym_variable_name, - aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 23, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - sym__special_character, - [222735] = 18, + [212614] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3952), 1, + ACTIONS(2174), 1, aux_sym_number_token1, - ACTIONS(3954), 1, + ACTIONS(2176), 1, aux_sym_number_token2, - ACTIONS(3958), 1, + ACTIONS(2180), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3968), 1, + ACTIONS(2194), 1, sym__brace_start, - ACTIONS(10488), 1, - sym_word, - ACTIONS(10490), 1, + ACTIONS(6905), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10492), 1, + ACTIONS(6907), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10498), 1, + ACTIONS(6911), 1, anon_sym_DQUOTE, - ACTIONS(10502), 1, + ACTIONS(6915), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, + ACTIONS(6917), 1, anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(6919), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10510), 1, + ACTIONS(9029), 1, + sym_word, + ACTIONS(9035), 1, sym__comment_word, - ACTIONS(11270), 1, + ACTIONS(10243), 1, anon_sym_DOLLAR, - ACTIONS(10496), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10508), 2, + ACTIONS(6921), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10500), 3, + ACTIONS(9031), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9033), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4352), 9, + STATE(1429), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261134,46 +249428,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [222802] = 18, + [212681] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8637), 1, + ACTIONS(2991), 1, + aux_sym_number_token1, + ACTIONS(2993), 1, + aux_sym_number_token2, + ACTIONS(2997), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3009), 1, + sym__brace_start, + ACTIONS(9065), 1, + sym_word, + ACTIONS(9067), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, + ACTIONS(9069), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8645), 1, + ACTIONS(9073), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, - aux_sym_number_token1, - ACTIONS(8651), 1, - aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(9077), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(9079), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(9081), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8665), 1, - sym__brace_start, - ACTIONS(11272), 1, - sym_word, - ACTIONS(11274), 1, - anon_sym_DOLLAR, - ACTIONS(11280), 1, + ACTIONS(9085), 1, sym__comment_word, - ACTIONS(8661), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(11276), 2, + ACTIONS(10245), 1, + anon_sym_DOLLAR, + ACTIONS(9071), 2, sym_test_operator, sym__special_character, - ACTIONS(11278), 3, + ACTIONS(9083), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9075), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5127), 9, + STATE(1618), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261183,46 +249477,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [222869] = 18, + [212748] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4629), 1, + ACTIONS(2991), 1, + aux_sym_number_token1, + ACTIONS(2993), 1, + aux_sym_number_token2, + ACTIONS(2997), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3009), 1, + sym__brace_start, + ACTIONS(9065), 1, + sym_word, + ACTIONS(9067), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4631), 1, + ACTIONS(9069), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4633), 1, - anon_sym_DOLLAR, - ACTIONS(4637), 1, + ACTIONS(9073), 1, anon_sym_DQUOTE, - ACTIONS(4641), 1, - aux_sym_number_token1, - ACTIONS(4643), 1, - aux_sym_number_token2, - ACTIONS(4645), 1, + ACTIONS(9077), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4647), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4649), 1, + ACTIONS(9079), 1, anon_sym_BQUOTE, - ACTIONS(4651), 1, + ACTIONS(9081), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4659), 1, - sym__brace_start, - ACTIONS(10548), 1, - sym_word, - ACTIONS(10556), 1, + ACTIONS(9085), 1, sym__comment_word, - ACTIONS(4653), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10552), 2, + ACTIONS(10247), 1, + anon_sym_DOLLAR, + ACTIONS(9071), 2, sym_test_operator, sym__special_character, - ACTIONS(10554), 3, + ACTIONS(9083), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9075), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2740), 9, + STATE(1618), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261232,46 +249526,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [222936] = 18, + [212815] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(7121), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, + ACTIONS(7123), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(377), 1, + ACTIONS(7129), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(7133), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(7135), 1, aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(7137), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(7139), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, + ACTIONS(7141), 1, + anon_sym_BQUOTE, + ACTIONS(7143), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, + ACTIONS(7153), 1, sym__brace_start, - ACTIONS(5375), 1, - anon_sym_BQUOTE, - ACTIONS(9676), 1, + ACTIONS(9795), 1, sym_word, - ACTIONS(9680), 1, + ACTIONS(9801), 1, sym__comment_word, - ACTIONS(11282), 1, + ACTIONS(10249), 1, anon_sym_DOLLAR, - ACTIONS(393), 2, + ACTIONS(7145), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9684), 2, + ACTIONS(9797), 2, sym_test_operator, sym__special_character, - ACTIONS(9682), 3, + ACTIONS(9799), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2517), 9, + STATE(4120), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261281,46 +249575,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [223003] = 18, + [212882] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8637), 1, + ACTIONS(1561), 1, + aux_sym_number_token1, + ACTIONS(1563), 1, + aux_sym_number_token2, + ACTIONS(1567), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1579), 1, + sym__brace_start, + ACTIONS(8803), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8645), 1, + ACTIONS(8809), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, - aux_sym_number_token1, - ACTIONS(8651), 1, - aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(8813), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(8815), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(8817), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8665), 1, - sym__brace_start, - ACTIONS(11272), 1, + ACTIONS(9139), 1, sym_word, - ACTIONS(11280), 1, + ACTIONS(9145), 1, sym__comment_word, - ACTIONS(11284), 1, + ACTIONS(10251), 1, anon_sym_DOLLAR, - ACTIONS(8661), 2, + ACTIONS(8819), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11276), 2, + ACTIONS(9141), 2, sym_test_operator, sym__special_character, - ACTIONS(11278), 3, + ACTIONS(9143), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5127), 9, + STATE(1161), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261330,48 +249624,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [223070] = 20, - ACTIONS(71), 1, + [212949] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(2928), 1, - anon_sym_DOLLAR, - ACTIONS(2934), 1, + ACTIONS(1561), 1, aux_sym_number_token1, - ACTIONS(2936), 1, + ACTIONS(1563), 1, aux_sym_number_token2, - ACTIONS(2940), 1, + ACTIONS(1567), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2950), 1, + ACTIONS(1579), 1, sym__brace_start, - ACTIONS(10236), 1, + ACTIONS(8803), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10238), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10242), 1, + ACTIONS(8809), 1, anon_sym_DQUOTE, - ACTIONS(10246), 1, + ACTIONS(8813), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10248), 1, + ACTIONS(8815), 1, anon_sym_BQUOTE, - ACTIONS(10250), 1, + ACTIONS(8817), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11286), 1, + ACTIONS(9139), 1, sym_word, - ACTIONS(11288), 1, - sym__special_character, - ACTIONS(11292), 1, - sym_test_operator, - STATE(4291), 1, - aux_sym__literal_repeat1, - STATE(4579), 1, - sym_concatenation, - ACTIONS(10252), 2, + ACTIONS(9145), 1, + sym__comment_word, + ACTIONS(10253), 1, + anon_sym_DOLLAR, + ACTIONS(8819), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11290), 2, + ACTIONS(9141), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9143), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4158), 9, + STATE(1161), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261381,48 +249673,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [223141] = 20, - ACTIONS(71), 1, + [213016] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(2928), 1, - anon_sym_DOLLAR, - ACTIONS(2934), 1, + ACTIONS(2089), 1, aux_sym_number_token1, - ACTIONS(2936), 1, + ACTIONS(2091), 1, aux_sym_number_token2, - ACTIONS(2940), 1, + ACTIONS(2095), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2950), 1, + ACTIONS(2109), 1, sym__brace_start, - ACTIONS(10236), 1, + ACTIONS(7019), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10238), 1, + ACTIONS(7021), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10242), 1, + ACTIONS(7025), 1, anon_sym_DQUOTE, - ACTIONS(10246), 1, + ACTIONS(7029), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10248), 1, + ACTIONS(7031), 1, anon_sym_BQUOTE, - ACTIONS(10250), 1, + ACTIONS(7033), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11288), 1, - sym__special_character, - ACTIONS(11294), 1, + ACTIONS(10211), 1, sym_word, - ACTIONS(11298), 1, - sym_test_operator, - STATE(4175), 1, - aux_sym__literal_repeat1, - STATE(4616), 1, - sym_concatenation, - ACTIONS(10252), 2, + ACTIONS(10219), 1, + sym__comment_word, + ACTIONS(10255), 1, + anon_sym_DOLLAR, + ACTIONS(7035), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11296), 2, + ACTIONS(10215), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10217), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4138), 9, + STATE(1361), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261432,46 +249722,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [223212] = 18, + [213083] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(701), 1, + ACTIONS(402), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(703), 1, + ACTIONS(404), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(709), 1, + ACTIONS(410), 1, anon_sym_DQUOTE, - ACTIONS(713), 1, + ACTIONS(414), 1, aux_sym_number_token1, - ACTIONS(715), 1, + ACTIONS(416), 1, aux_sym_number_token2, - ACTIONS(717), 1, + ACTIONS(418), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(719), 1, + ACTIONS(420), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(721), 1, + ACTIONS(422), 1, anon_sym_BQUOTE, - ACTIONS(723), 1, + ACTIONS(424), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(733), 1, + ACTIONS(434), 1, sym__brace_start, - ACTIONS(10266), 1, + ACTIONS(9699), 1, sym_word, - ACTIONS(10272), 1, + ACTIONS(9705), 1, sym__comment_word, - ACTIONS(11300), 1, + ACTIONS(10257), 1, anon_sym_DOLLAR, - ACTIONS(725), 2, + ACTIONS(426), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10268), 2, + ACTIONS(9701), 2, sym_test_operator, sym__special_character, - ACTIONS(10270), 3, + ACTIONS(9703), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(897), 9, + STATE(792), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261481,46 +249771,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [223279] = 18, + [213150] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2653), 1, + ACTIONS(3309), 1, + aux_sym_number_token1, + ACTIONS(3311), 1, + aux_sym_number_token2, + ACTIONS(3315), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3325), 1, + sym__brace_start, + ACTIONS(9579), 1, + sym_word, + ACTIONS(9581), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2655), 1, + ACTIONS(9583), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2657), 1, - anon_sym_DOLLAR, - ACTIONS(2661), 1, + ACTIONS(9587), 1, anon_sym_DQUOTE, - ACTIONS(2665), 1, - aux_sym_number_token1, - ACTIONS(2667), 1, - aux_sym_number_token2, - ACTIONS(2669), 1, + ACTIONS(9591), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2671), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2673), 1, + ACTIONS(9593), 1, anon_sym_BQUOTE, - ACTIONS(2675), 1, + ACTIONS(9595), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2683), 1, - sym__brace_start, - ACTIONS(10720), 1, - sym_word, - ACTIONS(10728), 1, + ACTIONS(9599), 1, sym__comment_word, - ACTIONS(2677), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10724), 2, + ACTIONS(10259), 1, + anon_sym_DOLLAR, + ACTIONS(9585), 2, sym_test_operator, sym__special_character, - ACTIONS(10726), 3, + ACTIONS(9597), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9589), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2222), 9, + STATE(4069), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261530,46 +249820,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [223346] = 18, + [213217] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(308), 1, + ACTIONS(2439), 1, + aux_sym_number_token1, + ACTIONS(2441), 1, + aux_sym_number_token2, + ACTIONS(2445), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2457), 1, + sym__brace_start, + ACTIONS(9741), 1, + sym_word, + ACTIONS(9743), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(310), 1, + ACTIONS(9745), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(316), 1, + ACTIONS(9749), 1, anon_sym_DQUOTE, - ACTIONS(320), 1, - aux_sym_number_token1, - ACTIONS(322), 1, - aux_sym_number_token2, - ACTIONS(324), 1, + ACTIONS(9753), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(326), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(328), 1, + ACTIONS(9755), 1, anon_sym_BQUOTE, - ACTIONS(330), 1, + ACTIONS(9757), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(340), 1, - sym__brace_start, - ACTIONS(10920), 1, - sym_word, - ACTIONS(10926), 1, + ACTIONS(9761), 1, sym__comment_word, - ACTIONS(11302), 1, + ACTIONS(10261), 1, anon_sym_DOLLAR, - ACTIONS(332), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10922), 2, + ACTIONS(9747), 2, sym_test_operator, sym__special_character, - ACTIONS(10924), 3, + ACTIONS(9759), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9751), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(997), 9, + STATE(1283), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261579,48 +249869,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [223413] = 20, - ACTIONS(71), 1, + [213284] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(8226), 1, + ACTIONS(2439), 1, + aux_sym_number_token1, + ACTIONS(2441), 1, + aux_sym_number_token2, + ACTIONS(2445), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2457), 1, + sym__brace_start, + ACTIONS(9741), 1, + sym_word, + ACTIONS(9743), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8228), 1, + ACTIONS(9745), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8230), 1, - anon_sym_DOLLAR, - ACTIONS(8232), 1, - sym__special_character, - ACTIONS(8234), 1, + ACTIONS(9749), 1, anon_sym_DQUOTE, - ACTIONS(8238), 1, - aux_sym_number_token1, - ACTIONS(8240), 1, - aux_sym_number_token2, - ACTIONS(8242), 1, + ACTIONS(9753), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8244), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8246), 1, + ACTIONS(9755), 1, anon_sym_BQUOTE, - ACTIONS(8248), 1, + ACTIONS(9757), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8258), 1, - sym__brace_start, - ACTIONS(11304), 1, - sym_word, - ACTIONS(11308), 1, + ACTIONS(9761), 1, + sym__comment_word, + ACTIONS(10263), 1, + anon_sym_DOLLAR, + ACTIONS(9747), 2, sym_test_operator, - STATE(1502), 1, - aux_sym__literal_repeat1, - STATE(1765), 1, - sym_concatenation, - ACTIONS(8250), 2, + sym__special_character, + ACTIONS(9759), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11306), 2, + ACTIONS(9751), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1291), 9, + STATE(1283), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261630,92 +249918,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [223484] = 13, + [213351] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(10102), 1, - anon_sym_LT_LT_LT, - ACTIONS(10934), 1, - sym_file_descriptor, - STATE(4815), 1, - sym_herestring_redirect, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4171), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(4173), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4253), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(10932), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4182), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4255), 4, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(10930), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [223541] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(8226), 1, + ACTIONS(3309), 1, + aux_sym_number_token1, + ACTIONS(3311), 1, + aux_sym_number_token2, + ACTIONS(3315), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3325), 1, + sym__brace_start, + ACTIONS(9579), 1, + sym_word, + ACTIONS(9581), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8228), 1, + ACTIONS(9583), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8230), 1, - anon_sym_DOLLAR, - ACTIONS(8232), 1, - sym__special_character, - ACTIONS(8234), 1, + ACTIONS(9587), 1, anon_sym_DQUOTE, - ACTIONS(8238), 1, - aux_sym_number_token1, - ACTIONS(8240), 1, - aux_sym_number_token2, - ACTIONS(8242), 1, + ACTIONS(9591), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8244), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8246), 1, + ACTIONS(9593), 1, anon_sym_BQUOTE, - ACTIONS(8248), 1, + ACTIONS(9595), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8258), 1, - sym__brace_start, - ACTIONS(11310), 1, - sym_word, - ACTIONS(11314), 1, + ACTIONS(9599), 1, + sym__comment_word, + ACTIONS(10265), 1, + anon_sym_DOLLAR, + ACTIONS(9585), 2, sym_test_operator, - STATE(1508), 1, - aux_sym__literal_repeat1, - STATE(1802), 1, - sym_concatenation, - ACTIONS(8250), 2, + sym__special_character, + ACTIONS(9597), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11312), 2, + ACTIONS(9589), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1223), 9, + STATE(4069), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261725,46 +249967,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [223612] = 18, + [213418] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1039), 1, + 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(8983), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1041), 1, + ACTIONS(8985), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1043), 1, - anon_sym_DOLLAR, - ACTIONS(1047), 1, + ACTIONS(8989), 1, anon_sym_DQUOTE, - ACTIONS(1051), 1, - aux_sym_number_token1, - ACTIONS(1053), 1, - aux_sym_number_token2, - ACTIONS(1055), 1, + ACTIONS(8993), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1057), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1059), 1, + ACTIONS(8995), 1, anon_sym_BQUOTE, - ACTIONS(1061), 1, + ACTIONS(8997), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1069), 1, - sym__brace_start, - ACTIONS(10854), 1, + ACTIONS(9529), 1, sym_word, - ACTIONS(10862), 1, + ACTIONS(9535), 1, sym__comment_word, - ACTIONS(1063), 2, + ACTIONS(10267), 1, + anon_sym_DOLLAR, + ACTIONS(8999), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10858), 2, + ACTIONS(9531), 2, sym_test_operator, sym__special_character, - ACTIONS(10860), 3, + ACTIONS(9533), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2144), 9, + STATE(4179), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261774,46 +250016,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [223679] = 18, + [213485] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(701), 1, + 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(8983), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(703), 1, + ACTIONS(8985), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(709), 1, + ACTIONS(8989), 1, anon_sym_DQUOTE, - ACTIONS(713), 1, - aux_sym_number_token1, - ACTIONS(715), 1, - aux_sym_number_token2, - ACTIONS(717), 1, + ACTIONS(8993), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(719), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(721), 1, + ACTIONS(8995), 1, anon_sym_BQUOTE, - ACTIONS(723), 1, + ACTIONS(8997), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(733), 1, - sym__brace_start, - ACTIONS(10266), 1, + ACTIONS(9529), 1, sym_word, - ACTIONS(10272), 1, + ACTIONS(9535), 1, sym__comment_word, - ACTIONS(11316), 1, + ACTIONS(10269), 1, anon_sym_DOLLAR, - ACTIONS(725), 2, + ACTIONS(8999), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10268), 2, + ACTIONS(9531), 2, sym_test_operator, sym__special_character, - ACTIONS(10270), 3, + ACTIONS(9533), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(897), 9, + STATE(4179), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261823,48 +250065,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [223746] = 20, - ACTIONS(71), 1, + [213552] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3478), 1, - anon_sym_DOLLAR, - ACTIONS(3484), 1, + ACTIONS(3309), 1, aux_sym_number_token1, - ACTIONS(3486), 1, + ACTIONS(3311), 1, aux_sym_number_token2, - ACTIONS(3490), 1, + ACTIONS(3315), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3500), 1, + ACTIONS(3325), 1, sym__brace_start, - ACTIONS(10408), 1, + ACTIONS(9579), 1, + sym_word, + ACTIONS(9581), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10410), 1, + ACTIONS(9583), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10414), 1, + ACTIONS(9587), 1, anon_sym_DQUOTE, - ACTIONS(10418), 1, + ACTIONS(9591), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10420), 1, + ACTIONS(9593), 1, anon_sym_BQUOTE, - ACTIONS(10422), 1, + ACTIONS(9595), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11318), 1, - sym_word, - ACTIONS(11320), 1, - sym__special_character, - ACTIONS(11324), 1, + ACTIONS(9599), 1, + sym__comment_word, + ACTIONS(10271), 1, + anon_sym_DOLLAR, + ACTIONS(9585), 2, sym_test_operator, - STATE(4640), 1, - aux_sym__literal_repeat1, - STATE(4970), 1, - sym_concatenation, - ACTIONS(10424), 2, + sym__special_character, + ACTIONS(9597), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11322), 2, + ACTIONS(9589), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4489), 9, + STATE(4069), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261874,46 +250114,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [223817] = 18, + [213619] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3564), 1, + ACTIONS(3309), 1, aux_sym_number_token1, - ACTIONS(3566), 1, + ACTIONS(3311), 1, aux_sym_number_token2, - ACTIONS(3570), 1, + ACTIONS(3315), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3582), 1, + ACTIONS(3325), 1, sym__brace_start, - ACTIONS(9786), 1, + ACTIONS(9579), 1, + sym_word, + ACTIONS(9581), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9788), 1, + ACTIONS(9583), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9792), 1, + ACTIONS(9587), 1, anon_sym_DQUOTE, - ACTIONS(9796), 1, + ACTIONS(9591), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9798), 1, + ACTIONS(9593), 1, anon_sym_BQUOTE, - ACTIONS(9800), 1, + ACTIONS(9595), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10132), 1, - sym_word, - ACTIONS(10140), 1, + ACTIONS(9599), 1, sym__comment_word, - ACTIONS(11326), 1, + ACTIONS(10273), 1, anon_sym_DOLLAR, - ACTIONS(9802), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10136), 2, + ACTIONS(9585), 2, sym_test_operator, sym__special_character, - ACTIONS(10138), 3, + ACTIONS(9597), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9589), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4898), 9, + STATE(4069), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261923,46 +250163,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [223884] = 18, + [213686] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3564), 1, + ACTIONS(4998), 1, aux_sym_number_token1, - ACTIONS(3566), 1, + ACTIONS(5000), 1, aux_sym_number_token2, - ACTIONS(3570), 1, + ACTIONS(5004), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3582), 1, + ACTIONS(5014), 1, sym__brace_start, - ACTIONS(9786), 1, + ACTIONS(9087), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9788), 1, + ACTIONS(9089), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9792), 1, + ACTIONS(9093), 1, anon_sym_DQUOTE, - ACTIONS(9796), 1, + ACTIONS(9097), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9798), 1, + ACTIONS(9099), 1, anon_sym_BQUOTE, - ACTIONS(9800), 1, + ACTIONS(9101), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10132), 1, + ACTIONS(9691), 1, sym_word, - ACTIONS(10140), 1, + ACTIONS(9697), 1, sym__comment_word, - ACTIONS(11328), 1, + ACTIONS(10275), 1, anon_sym_DOLLAR, - ACTIONS(9802), 2, + ACTIONS(9103), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10136), 2, + ACTIONS(9693), 2, sym_test_operator, sym__special_character, - ACTIONS(10138), 3, + ACTIONS(9695), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4898), 9, + STATE(5315), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261972,46 +250212,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [223951] = 18, + [213753] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2295), 1, + ACTIONS(2991), 1, aux_sym_number_token1, - ACTIONS(2297), 1, + ACTIONS(2993), 1, aux_sym_number_token2, - ACTIONS(2301), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2313), 1, + ACTIONS(3009), 1, sym__brace_start, - ACTIONS(10142), 1, + ACTIONS(9065), 1, sym_word, - ACTIONS(10144), 1, + ACTIONS(9067), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10146), 1, + ACTIONS(9069), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10150), 1, + ACTIONS(9073), 1, anon_sym_DQUOTE, - ACTIONS(10154), 1, + ACTIONS(9077), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10156), 1, + ACTIONS(9079), 1, anon_sym_BQUOTE, - ACTIONS(10158), 1, + ACTIONS(9081), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10162), 1, + ACTIONS(9085), 1, sym__comment_word, - ACTIONS(11330), 1, + ACTIONS(10277), 1, anon_sym_DOLLAR, - ACTIONS(10148), 2, + ACTIONS(9071), 2, sym_test_operator, sym__special_character, - ACTIONS(10160), 2, + ACTIONS(9083), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10152), 3, + ACTIONS(9075), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1304), 9, + STATE(1618), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262021,48 +250261,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [224018] = 20, - ACTIONS(71), 1, + [213820] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3478), 1, - anon_sym_DOLLAR, - 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(10408), 1, + ACTIONS(7437), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10410), 1, + ACTIONS(7439), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10414), 1, + ACTIONS(7445), 1, anon_sym_DQUOTE, - ACTIONS(10418), 1, + ACTIONS(7449), 1, + aux_sym_number_token1, + ACTIONS(7451), 1, + aux_sym_number_token2, + ACTIONS(7453), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10420), 1, + ACTIONS(7455), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7457), 1, anon_sym_BQUOTE, - ACTIONS(10422), 1, + ACTIONS(7459), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11320), 1, - sym__special_character, - ACTIONS(11332), 1, + ACTIONS(7469), 1, + sym__brace_start, + ACTIONS(9803), 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(9809), 1, + sym__comment_word, + ACTIONS(10279), 1, + anon_sym_DOLLAR, + ACTIONS(7461), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11334), 2, + ACTIONS(9805), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9807), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4325), 9, + STATE(1235), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262072,46 +250310,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [224089] = 18, + [213887] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3594), 1, - anon_sym_DOLLAR, - 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(6937), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9708), 1, + ACTIONS(6939), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9712), 1, + ACTIONS(6945), 1, anon_sym_DQUOTE, - ACTIONS(9716), 1, + ACTIONS(6949), 1, + aux_sym_number_token1, + ACTIONS(6951), 1, + aux_sym_number_token2, + ACTIONS(6953), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9718), 1, + ACTIONS(6955), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6957), 1, anon_sym_BQUOTE, - ACTIONS(9720), 1, + ACTIONS(6959), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10998), 1, + ACTIONS(6969), 1, + sym__brace_start, + ACTIONS(9601), 1, sym_word, - ACTIONS(11006), 1, + ACTIONS(9609), 1, sym__comment_word, - ACTIONS(9722), 2, + ACTIONS(10281), 1, + anon_sym_DOLLAR, + ACTIONS(6961), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11002), 2, + ACTIONS(9605), 2, sym_test_operator, sym__special_character, - ACTIONS(11004), 3, + ACTIONS(9607), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1910), 9, + STATE(4129), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262121,46 +250359,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [224156] = 18, + [213954] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(187), 1, + ACTIONS(6937), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(189), 1, + ACTIONS(6939), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(191), 1, - anon_sym_DOLLAR, - ACTIONS(195), 1, + ACTIONS(6945), 1, anon_sym_DQUOTE, - ACTIONS(199), 1, + ACTIONS(6949), 1, aux_sym_number_token1, - ACTIONS(201), 1, + ACTIONS(6951), 1, aux_sym_number_token2, - ACTIONS(203), 1, + ACTIONS(6953), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(205), 1, + ACTIONS(6955), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(207), 1, + ACTIONS(6957), 1, anon_sym_BQUOTE, - ACTIONS(209), 1, + ACTIONS(6959), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(219), 1, + ACTIONS(6969), 1, sym__brace_start, - ACTIONS(11212), 1, + ACTIONS(9601), 1, sym_word, - ACTIONS(11220), 1, + ACTIONS(9609), 1, sym__comment_word, - ACTIONS(211), 2, + ACTIONS(10283), 1, + anon_sym_DOLLAR, + ACTIONS(6961), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11216), 2, + ACTIONS(9605), 2, sym_test_operator, sym__special_character, - ACTIONS(11218), 3, + ACTIONS(9607), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(508), 9, + STATE(4129), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262170,85 +250408,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [224223] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11338), 1, - aux_sym_concatenation_token1, - ACTIONS(11340), 1, - sym__concat, - STATE(4162), 1, - aux_sym_concatenation_repeat1, - ACTIONS(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, + [214021] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(1414), 1, - anon_sym_DOLLAR, - ACTIONS(1420), 1, - aux_sym_number_token1, - ACTIONS(1422), 1, - aux_sym_number_token2, - ACTIONS(1426), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1438), 1, - sym__brace_start, - ACTIONS(9762), 1, + ACTIONS(9205), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9764), 1, + ACTIONS(9207), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9766), 1, - sym__special_character, - ACTIONS(9768), 1, + ACTIONS(9209), 1, + anon_sym_DOLLAR, + ACTIONS(9213), 1, anon_sym_DQUOTE, - ACTIONS(9772), 1, + ACTIONS(9217), 1, + aux_sym_number_token1, + ACTIONS(9219), 1, + aux_sym_number_token2, + ACTIONS(9221), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9774), 1, + ACTIONS(9223), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9225), 1, anon_sym_BQUOTE, - ACTIONS(9776), 1, + ACTIONS(9227), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11342), 1, + ACTIONS(9233), 1, + sym__brace_start, + ACTIONS(10285), 1, sym_word, - ACTIONS(11346), 1, + ACTIONS(10287), 1, + sym__special_character, + ACTIONS(10291), 1, sym_test_operator, - STATE(1245), 1, + STATE(2382), 1, aux_sym__literal_repeat1, - STATE(1369), 1, + STATE(2619), 1, sym_concatenation, - ACTIONS(9778), 2, + ACTIONS(9229), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11344), 2, + ACTIONS(10289), 2, sym_raw_string, sym_ansi_c_string, - STATE(879), 9, + STATE(2135), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262258,46 +250459,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [224337] = 18, + [214092] = 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(7437), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(7439), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(7445), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(7449), 1, + aux_sym_number_token1, + ACTIONS(7451), 1, + aux_sym_number_token2, + ACTIONS(7453), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, + ACTIONS(7455), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7457), 1, anon_sym_BQUOTE, - ACTIONS(10480), 1, + ACTIONS(7459), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7469), 1, + sym__brace_start, + ACTIONS(9803), 1, sym_word, - ACTIONS(10486), 1, + ACTIONS(9809), 1, sym__comment_word, - ACTIONS(11348), 1, + ACTIONS(10293), 1, anon_sym_DOLLAR, - ACTIONS(1125), 2, + ACTIONS(7461), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10482), 2, + ACTIONS(9805), 2, sym_test_operator, sym__special_character, - ACTIONS(10484), 3, + ACTIONS(9807), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2224), 9, + STATE(1235), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262307,48 +250508,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [224404] = 20, - ACTIONS(71), 1, + [214159] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(1414), 1, - anon_sym_DOLLAR, - ACTIONS(1420), 1, + ACTIONS(4998), 1, aux_sym_number_token1, - ACTIONS(1422), 1, + ACTIONS(5000), 1, aux_sym_number_token2, - ACTIONS(1426), 1, + ACTIONS(5004), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1438), 1, + ACTIONS(5014), 1, sym__brace_start, - ACTIONS(9762), 1, + ACTIONS(9087), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9764), 1, + ACTIONS(9089), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9766), 1, - sym__special_character, - ACTIONS(9768), 1, + ACTIONS(9093), 1, anon_sym_DQUOTE, - ACTIONS(9772), 1, + ACTIONS(9097), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9774), 1, + ACTIONS(9099), 1, anon_sym_BQUOTE, - ACTIONS(9776), 1, + ACTIONS(9101), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11350), 1, + ACTIONS(9691), 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(9697), 1, + sym__comment_word, + ACTIONS(10295), 1, + anon_sym_DOLLAR, + ACTIONS(9103), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11352), 2, + ACTIONS(9693), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9695), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(882), 9, + STATE(5315), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262358,46 +250557,97 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [224475] = 18, + [214226] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3946), 1, - anon_sym_DOLLAR, - ACTIONS(3952), 1, + ACTIONS(7926), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7928), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7934), 1, + anon_sym_DQUOTE, + ACTIONS(7938), 1, aux_sym_number_token1, - ACTIONS(3954), 1, + ACTIONS(7940), 1, aux_sym_number_token2, - ACTIONS(3958), 1, + ACTIONS(7942), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3968), 1, + ACTIONS(7946), 1, + anon_sym_BQUOTE, + ACTIONS(7948), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7954), 1, sym__brace_start, - ACTIONS(10488), 1, + ACTIONS(9613), 1, sym_word, - ACTIONS(10490), 1, + ACTIONS(9619), 1, + sym__comment_word, + ACTIONS(10297), 1, + anon_sym_DOLLAR, + ACTIONS(7950), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9615), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9617), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4904), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [214293] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9205), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10492), 1, + ACTIONS(9207), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10498), 1, + ACTIONS(9209), 1, + anon_sym_DOLLAR, + ACTIONS(9213), 1, anon_sym_DQUOTE, - ACTIONS(10502), 1, + ACTIONS(9217), 1, + aux_sym_number_token1, + ACTIONS(9219), 1, + aux_sym_number_token2, + ACTIONS(9221), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, + ACTIONS(9223), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9225), 1, anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(9227), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10510), 1, - sym__comment_word, - ACTIONS(10496), 2, - sym_test_operator, + ACTIONS(9233), 1, + sym__brace_start, + ACTIONS(10287), 1, sym__special_character, - ACTIONS(10508), 2, + ACTIONS(10299), 1, + sym_word, + ACTIONS(10303), 1, + sym_test_operator, + STATE(2440), 1, + aux_sym__literal_repeat1, + STATE(2644), 1, + sym_concatenation, + ACTIONS(9229), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10500), 3, - sym__bare_dollar, + ACTIONS(10301), 2, sym_raw_string, sym_ansi_c_string, - STATE(4352), 9, + STATE(2162), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262407,46 +250657,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [224542] = 18, - ACTIONS(3), 1, + [214364] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(8114), 1, + ACTIONS(9205), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8116), 1, + ACTIONS(9207), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8122), 1, + ACTIONS(9209), 1, + anon_sym_DOLLAR, + ACTIONS(9213), 1, anon_sym_DQUOTE, - ACTIONS(8126), 1, + ACTIONS(9217), 1, aux_sym_number_token1, - ACTIONS(8128), 1, + ACTIONS(9219), 1, aux_sym_number_token2, - ACTIONS(8130), 1, + ACTIONS(9221), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8132), 1, + ACTIONS(9223), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8134), 1, + ACTIONS(9225), 1, anon_sym_BQUOTE, - ACTIONS(8136), 1, + ACTIONS(9227), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8146), 1, + ACTIONS(9233), 1, sym__brace_start, - ACTIONS(10094), 1, + ACTIONS(10287), 1, + sym__special_character, + ACTIONS(10305), 1, sym_word, - ACTIONS(10100), 1, - sym__comment_word, - ACTIONS(11356), 1, - anon_sym_DOLLAR, - ACTIONS(8138), 2, + ACTIONS(10309), 1, + sym_test_operator, + STATE(2450), 1, + aux_sym__literal_repeat1, + STATE(2545), 1, + sym_concatenation, + ACTIONS(9229), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10096), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10098), 3, - sym__bare_dollar, + ACTIONS(10307), 2, sym_raw_string, sym_ansi_c_string, - STATE(1172), 9, + STATE(2056), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262456,46 +250708,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [224609] = 18, + [214435] = 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(7926), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(7928), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(7934), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(7938), 1, + aux_sym_number_token1, + ACTIONS(7940), 1, + aux_sym_number_token2, + ACTIONS(7942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, + ACTIONS(7944), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7946), 1, anon_sym_BQUOTE, - ACTIONS(10480), 1, + ACTIONS(7948), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7954), 1, + sym__brace_start, + ACTIONS(9613), 1, sym_word, - ACTIONS(10486), 1, + ACTIONS(9619), 1, sym__comment_word, - ACTIONS(11358), 1, + ACTIONS(10311), 1, anon_sym_DOLLAR, - ACTIONS(1125), 2, + ACTIONS(7950), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10482), 2, + ACTIONS(9615), 2, sym_test_operator, sym__special_character, - ACTIONS(10484), 3, + ACTIONS(9617), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2224), 9, + STATE(4904), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262505,48 +250757,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [224676] = 20, + [214502] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(3344), 1, - anon_sym_DOLLAR, - ACTIONS(3350), 1, - aux_sym_number_token1, - ACTIONS(3352), 1, - aux_sym_number_token2, - ACTIONS(3356), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3366), 1, - sym__brace_start, - ACTIONS(10438), 1, + ACTIONS(9205), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10440), 1, + ACTIONS(9207), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10444), 1, + ACTIONS(9209), 1, + anon_sym_DOLLAR, + ACTIONS(9213), 1, anon_sym_DQUOTE, - ACTIONS(10448), 1, + ACTIONS(9217), 1, + aux_sym_number_token1, + ACTIONS(9219), 1, + aux_sym_number_token2, + ACTIONS(9221), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10450), 1, + ACTIONS(9223), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9225), 1, anon_sym_BQUOTE, - ACTIONS(10452), 1, + ACTIONS(9227), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11360), 1, - sym_word, - ACTIONS(11362), 1, + ACTIONS(9233), 1, + sym__brace_start, + ACTIONS(10287), 1, sym__special_character, - ACTIONS(11366), 1, + ACTIONS(10313), 1, + sym_word, + ACTIONS(10317), 1, sym_test_operator, - STATE(4347), 1, + STATE(2426), 1, aux_sym__literal_repeat1, - STATE(4848), 1, + STATE(2481), 1, sym_concatenation, - ACTIONS(10454), 2, + ACTIONS(9229), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11364), 2, + ACTIONS(10315), 2, sym_raw_string, sym_ansi_c_string, - STATE(4300), 9, + STATE(2059), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262556,46 +250808,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [224747] = 18, + [214573] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3952), 1, + ACTIONS(2991), 1, aux_sym_number_token1, - ACTIONS(3954), 1, + ACTIONS(2993), 1, aux_sym_number_token2, - ACTIONS(3958), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3968), 1, + ACTIONS(3009), 1, sym__brace_start, - ACTIONS(10488), 1, + ACTIONS(9065), 1, sym_word, - ACTIONS(10490), 1, + ACTIONS(9067), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10492), 1, + ACTIONS(9069), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10498), 1, + ACTIONS(9073), 1, anon_sym_DQUOTE, - ACTIONS(10502), 1, + ACTIONS(9077), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, + ACTIONS(9079), 1, anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(9081), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10510), 1, + ACTIONS(9085), 1, sym__comment_word, - ACTIONS(11368), 1, + ACTIONS(10319), 1, anon_sym_DOLLAR, - ACTIONS(10496), 2, + ACTIONS(9071), 2, sym_test_operator, sym__special_character, - ACTIONS(10508), 2, + ACTIONS(9083), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10500), 3, + ACTIONS(9075), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4352), 9, + STATE(1618), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262605,48 +250857,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [224814] = 20, + [214640] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(3344), 1, - anon_sym_DOLLAR, - ACTIONS(3350), 1, - aux_sym_number_token1, - ACTIONS(3352), 1, - aux_sym_number_token2, - ACTIONS(3356), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3366), 1, - sym__brace_start, - ACTIONS(10438), 1, + ACTIONS(9959), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10440), 1, + ACTIONS(9961), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10444), 1, + ACTIONS(9967), 1, anon_sym_DQUOTE, - ACTIONS(10448), 1, + ACTIONS(9971), 1, + aux_sym_number_token1, + ACTIONS(9973), 1, + aux_sym_number_token2, + ACTIONS(9975), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10450), 1, + ACTIONS(9977), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9979), 1, anon_sym_BQUOTE, - ACTIONS(10452), 1, + ACTIONS(9981), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11362), 1, - sym__special_character, - ACTIONS(11370), 1, + ACTIONS(9987), 1, + sym__brace_start, + ACTIONS(10225), 1, + anon_sym_DOLLAR, + ACTIONS(10321), 1, sym_word, - ACTIONS(11374), 1, + ACTIONS(10323), 1, + sym__special_character, + ACTIONS(10327), 1, sym_test_operator, - STATE(4350), 1, + STATE(5791), 1, aux_sym__literal_repeat1, - STATE(4915), 1, + STATE(5965), 1, sym_concatenation, - ACTIONS(10454), 2, + ACTIONS(9983), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11372), 2, + ACTIONS(10325), 2, sym_raw_string, sym_ansi_c_string, - STATE(4193), 9, + STATE(5771), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262656,46 +250908,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [224885] = 18, + [214711] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1380), 1, + ACTIONS(1767), 1, aux_sym_number_token1, - ACTIONS(1382), 1, + ACTIONS(1769), 1, aux_sym_number_token2, - ACTIONS(1386), 1, + ACTIONS(1773), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1398), 1, + ACTIONS(1787), 1, sym__brace_start, - ACTIONS(10042), 1, + ACTIONS(7263), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10044), 1, + ACTIONS(7265), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10048), 1, + ACTIONS(7269), 1, anon_sym_DQUOTE, - ACTIONS(10052), 1, + ACTIONS(7273), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10054), 1, + ACTIONS(7275), 1, anon_sym_BQUOTE, - ACTIONS(10056), 1, + ACTIONS(7277), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10166), 1, + ACTIONS(9811), 1, sym_word, - ACTIONS(10172), 1, + ACTIONS(9817), 1, sym__comment_word, - ACTIONS(11376), 1, + ACTIONS(10329), 1, anon_sym_DOLLAR, - ACTIONS(10058), 2, + ACTIONS(7279), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10168), 2, + ACTIONS(9813), 2, sym_test_operator, sym__special_character, - ACTIONS(10170), 3, + ACTIONS(9815), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(889), 9, + STATE(1276), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262705,46 +250957,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [224952] = 18, + [214778] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3644), 1, + ACTIONS(1767), 1, aux_sym_number_token1, - ACTIONS(3646), 1, + ACTIONS(1769), 1, aux_sym_number_token2, - ACTIONS(3650), 1, + ACTIONS(1773), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3660), 1, + ACTIONS(1787), 1, sym__brace_start, - ACTIONS(9804), 1, + ACTIONS(7263), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9806), 1, + ACTIONS(7265), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9810), 1, + ACTIONS(7269), 1, anon_sym_DQUOTE, - ACTIONS(9814), 1, + ACTIONS(7273), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9816), 1, + ACTIONS(7275), 1, anon_sym_BQUOTE, - ACTIONS(9818), 1, + ACTIONS(7277), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10568), 1, + ACTIONS(9811), 1, sym_word, - ACTIONS(10576), 1, + ACTIONS(9817), 1, sym__comment_word, - ACTIONS(11378), 1, + ACTIONS(10331), 1, anon_sym_DOLLAR, - ACTIONS(9820), 2, + ACTIONS(7279), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10572), 2, + ACTIONS(9813), 2, sym_test_operator, sym__special_character, - ACTIONS(10574), 3, + ACTIONS(9815), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1924), 9, + STATE(1276), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262754,46 +251006,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [225019] = 18, + [214845] = 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(4731), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10492), 1, + ACTIONS(4733), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10498), 1, + ACTIONS(4739), 1, anon_sym_DQUOTE, - ACTIONS(10502), 1, + ACTIONS(4743), 1, + aux_sym_number_token1, + ACTIONS(4745), 1, + aux_sym_number_token2, + ACTIONS(4747), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, + ACTIONS(4749), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4751), 1, anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(4753), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10510), 1, + ACTIONS(4759), 1, + sym__brace_start, + ACTIONS(9713), 1, + sym_word, + ACTIONS(9719), 1, sym__comment_word, - ACTIONS(11380), 1, + ACTIONS(10333), 1, anon_sym_DOLLAR, - ACTIONS(10496), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10508), 2, + ACTIONS(4755), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10500), 3, + ACTIONS(9715), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9717), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4352), 9, + STATE(5184), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262803,46 +251055,94 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [225086] = 18, + [214912] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3207), 1, - anon_sym_DOLLAR, - ACTIONS(3213), 1, + ACTIONS(6859), 1, + anon_sym_SLASH, + ACTIONS(6861), 1, + anon_sym_PERCENT, + ACTIONS(6863), 1, + anon_sym_COLON, + ACTIONS(6931), 1, + anon_sym_AT, + ACTIONS(8149), 1, + anon_sym_LBRACK, + STATE(6383), 1, + sym__expansion_regex, + STATE(6385), 1, + sym__expansion_regex_replacement, + STATE(6524), 1, + sym__expansion_regex_removal, + STATE(6525), 1, + sym__expansion_max_length, + STATE(6616), 1, + sym__expansion_expression, + STATE(6782), 1, + sym__expansion_operator, + ACTIONS(6857), 2, + anon_sym_COMMA, + anon_sym_CARET, + ACTIONS(6877), 2, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + ACTIONS(6865), 3, + sym__immediate_double_hash, + anon_sym_POUND, + anon_sym_PERCENT_PERCENT, + ACTIONS(6875), 3, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + ACTIONS(6873), 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, + [214977] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2609), 1, aux_sym_number_token1, - ACTIONS(3215), 1, + ACTIONS(2611), 1, aux_sym_number_token2, - ACTIONS(3219), 1, + ACTIONS(2615), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3229), 1, + ACTIONS(2627), 1, sym__brace_start, - ACTIONS(9834), 1, + ACTIONS(9819), 1, + sym_word, + ACTIONS(9821), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9836), 1, + ACTIONS(9823), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9840), 1, + ACTIONS(9827), 1, anon_sym_DQUOTE, - ACTIONS(9844), 1, + ACTIONS(9831), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9846), 1, + ACTIONS(9833), 1, anon_sym_BQUOTE, - ACTIONS(9848), 1, + ACTIONS(9835), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11152), 1, - sym_word, - ACTIONS(11160), 1, + ACTIONS(9839), 1, sym__comment_word, - ACTIONS(9850), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(11156), 2, + ACTIONS(10335), 1, + anon_sym_DOLLAR, + ACTIONS(9825), 2, sym_test_operator, sym__special_character, - ACTIONS(11158), 3, + ACTIONS(9837), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9829), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1740), 9, + STATE(1482), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262852,46 +251152,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [225153] = 18, + [215044] = 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(187), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9806), 1, + ACTIONS(189), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9810), 1, + ACTIONS(191), 1, + anon_sym_DOLLAR, + ACTIONS(195), 1, anon_sym_DQUOTE, - ACTIONS(9814), 1, + ACTIONS(199), 1, + aux_sym_number_token1, + ACTIONS(201), 1, + aux_sym_number_token2, + ACTIONS(203), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9816), 1, + ACTIONS(205), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(207), 1, anon_sym_BQUOTE, - ACTIONS(9818), 1, + ACTIONS(209), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10568), 1, + ACTIONS(219), 1, + sym__brace_start, + ACTIONS(10337), 1, sym_word, - ACTIONS(10576), 1, + ACTIONS(10343), 1, sym__comment_word, - ACTIONS(11382), 1, - anon_sym_DOLLAR, - ACTIONS(9820), 2, + ACTIONS(211), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10572), 2, + ACTIONS(10339), 2, sym_test_operator, sym__special_character, - ACTIONS(10574), 3, + ACTIONS(10341), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1924), 9, + STATE(475), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262901,46 +251201,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [225220] = 18, + [215111] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8114), 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(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8116), 1, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8122), 1, + ACTIONS(1109), 1, anon_sym_DQUOTE, - ACTIONS(8126), 1, - aux_sym_number_token1, - ACTIONS(8128), 1, - aux_sym_number_token2, - ACTIONS(8130), 1, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8132), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8134), 1, - anon_sym_BQUOTE, - ACTIONS(8136), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8146), 1, - sym__brace_start, - ACTIONS(10094), 1, + ACTIONS(4951), 1, + anon_sym_BQUOTE, + ACTIONS(8955), 1, sym_word, - ACTIONS(10100), 1, + ACTIONS(8963), 1, sym__comment_word, - ACTIONS(11384), 1, + ACTIONS(10345), 1, anon_sym_DOLLAR, - ACTIONS(8138), 2, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10096), 2, + ACTIONS(8959), 2, sym_test_operator, sym__special_character, - ACTIONS(10098), 3, + ACTIONS(8961), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1172), 9, + STATE(2073), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262950,46 +251250,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [225287] = 18, + [215178] = 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(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10518), 1, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10524), 1, + ACTIONS(1109), 1, anon_sym_DQUOTE, - ACTIONS(10528), 1, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, - anon_sym_BQUOTE, - ACTIONS(10532), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10536), 1, + ACTIONS(4951), 1, + anon_sym_BQUOTE, + ACTIONS(8955), 1, + sym_word, + ACTIONS(8963), 1, sym__comment_word, - ACTIONS(11386), 1, + ACTIONS(10347), 1, anon_sym_DOLLAR, - ACTIONS(10522), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10534), 2, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10526), 3, + ACTIONS(8959), 2, + sym_test_operator, + sym__special_character, + ACTIONS(8961), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4229), 9, + STATE(2073), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262999,46 +251299,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [225354] = 18, + [215245] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3514), 1, + ACTIONS(3644), 1, aux_sym_number_token1, - ACTIONS(3516), 1, + ACTIONS(3646), 1, aux_sym_number_token2, - ACTIONS(3520), 1, + ACTIONS(3650), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3530), 1, + ACTIONS(3660), 1, sym__brace_start, - ACTIONS(10514), 1, - sym_word, - ACTIONS(10516), 1, + ACTIONS(8983), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10518), 1, + ACTIONS(8985), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10524), 1, + ACTIONS(8989), 1, anon_sym_DQUOTE, - ACTIONS(10528), 1, + ACTIONS(8993), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, + ACTIONS(8995), 1, anon_sym_BQUOTE, - ACTIONS(10532), 1, + ACTIONS(8997), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10536), 1, + ACTIONS(9529), 1, + sym_word, + ACTIONS(9535), 1, sym__comment_word, - ACTIONS(11388), 1, + ACTIONS(10349), 1, anon_sym_DOLLAR, - ACTIONS(10522), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10534), 2, + ACTIONS(8999), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10526), 3, + ACTIONS(9531), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9533), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4229), 9, + STATE(4179), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263048,46 +251348,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [225421] = 18, + [215312] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7936), 1, + 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(8983), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7938), 1, + ACTIONS(8985), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7944), 1, + ACTIONS(8989), 1, anon_sym_DQUOTE, - ACTIONS(7948), 1, - aux_sym_number_token1, - ACTIONS(7950), 1, - aux_sym_number_token2, - ACTIONS(7952), 1, + ACTIONS(8993), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7954), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7956), 1, + ACTIONS(8995), 1, anon_sym_BQUOTE, - ACTIONS(7958), 1, + ACTIONS(8997), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7968), 1, - sym__brace_start, - ACTIONS(10076), 1, + ACTIONS(9529), 1, sym_word, - ACTIONS(10084), 1, + ACTIONS(9535), 1, sym__comment_word, - ACTIONS(11390), 1, + ACTIONS(10351), 1, anon_sym_DOLLAR, - ACTIONS(7960), 2, + ACTIONS(8999), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10080), 2, + ACTIONS(9531), 2, sym_test_operator, sym__special_character, - ACTIONS(10082), 3, + ACTIONS(9533), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4271), 9, + STATE(4179), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263097,46 +251397,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [225488] = 18, + [215379] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3508), 1, - anon_sym_DOLLAR, - ACTIONS(3514), 1, + ACTIONS(3309), 1, aux_sym_number_token1, - ACTIONS(3516), 1, + ACTIONS(3311), 1, aux_sym_number_token2, - ACTIONS(3520), 1, + ACTIONS(3315), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3530), 1, + ACTIONS(3325), 1, sym__brace_start, - ACTIONS(10514), 1, + ACTIONS(9579), 1, sym_word, - ACTIONS(10516), 1, + ACTIONS(9581), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10518), 1, + ACTIONS(9583), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10524), 1, + ACTIONS(9587), 1, anon_sym_DQUOTE, - ACTIONS(10528), 1, + ACTIONS(9591), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, + ACTIONS(9593), 1, anon_sym_BQUOTE, - ACTIONS(10532), 1, + ACTIONS(9595), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10536), 1, + ACTIONS(9599), 1, sym__comment_word, - ACTIONS(10522), 2, + ACTIONS(10353), 1, + anon_sym_DOLLAR, + ACTIONS(9585), 2, sym_test_operator, sym__special_character, - ACTIONS(10534), 2, + ACTIONS(9597), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10526), 3, + ACTIONS(9589), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4229), 9, + STATE(4069), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263146,46 +251446,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [225555] = 18, + [215446] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7936), 1, + ACTIONS(3255), 1, + aux_sym_number_token1, + ACTIONS(3257), 1, + aux_sym_number_token2, + ACTIONS(3261), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3273), 1, + sym__brace_start, + ACTIONS(8759), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7938), 1, + ACTIONS(8761), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7944), 1, + ACTIONS(8765), 1, anon_sym_DQUOTE, - ACTIONS(7948), 1, - aux_sym_number_token1, - ACTIONS(7950), 1, - aux_sym_number_token2, - ACTIONS(7952), 1, + ACTIONS(8769), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7954), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7956), 1, + ACTIONS(8771), 1, anon_sym_BQUOTE, - ACTIONS(7958), 1, + ACTIONS(8773), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7968), 1, - sym__brace_start, - ACTIONS(10076), 1, + ACTIONS(9627), 1, sym_word, - ACTIONS(10084), 1, + ACTIONS(9633), 1, sym__comment_word, - ACTIONS(11392), 1, + ACTIONS(10355), 1, anon_sym_DOLLAR, - ACTIONS(7960), 2, + ACTIONS(8775), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10080), 2, + ACTIONS(9629), 2, sym_test_operator, sym__special_character, - ACTIONS(10082), 3, + ACTIONS(9631), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4271), 9, + STATE(4585), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263195,46 +251495,95 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [225622] = 18, + [215513] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3952), 1, + ACTIONS(3309), 1, aux_sym_number_token1, - ACTIONS(3954), 1, + ACTIONS(3311), 1, aux_sym_number_token2, - ACTIONS(3958), 1, + ACTIONS(3315), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3968), 1, + ACTIONS(3325), 1, sym__brace_start, - ACTIONS(10488), 1, + ACTIONS(9579), 1, sym_word, - ACTIONS(10490), 1, + ACTIONS(9581), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10492), 1, + ACTIONS(9583), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10498), 1, + ACTIONS(9587), 1, anon_sym_DQUOTE, - ACTIONS(10502), 1, + ACTIONS(9591), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, + ACTIONS(9593), 1, anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(9595), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10510), 1, + ACTIONS(9599), 1, sym__comment_word, - ACTIONS(11394), 1, + ACTIONS(10357), 1, anon_sym_DOLLAR, - ACTIONS(10496), 2, + ACTIONS(9585), 2, sym_test_operator, sym__special_character, - ACTIONS(10508), 2, + ACTIONS(9597), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9589), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4069), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [215580] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6937), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6939), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6945), 1, + anon_sym_DQUOTE, + ACTIONS(6949), 1, + aux_sym_number_token1, + ACTIONS(6951), 1, + aux_sym_number_token2, + ACTIONS(6953), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6955), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6957), 1, + anon_sym_BQUOTE, + ACTIONS(6959), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6969), 1, + sym__brace_start, + ACTIONS(9601), 1, + sym_word, + ACTIONS(9609), 1, + sym__comment_word, + ACTIONS(10359), 1, + anon_sym_DOLLAR, + ACTIONS(6961), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10500), 3, + ACTIONS(9605), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9607), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4352), 9, + STATE(4129), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263244,46 +251593,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [225689] = 18, + [215647] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1889), 1, + ACTIONS(3255), 1, aux_sym_number_token1, - ACTIONS(1891), 1, + ACTIONS(3257), 1, aux_sym_number_token2, - ACTIONS(1895), 1, + ACTIONS(3261), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1909), 1, + ACTIONS(3273), 1, sym__brace_start, - ACTIONS(8264), 1, + ACTIONS(8759), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8266), 1, + ACTIONS(8761), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8270), 1, + ACTIONS(8765), 1, anon_sym_DQUOTE, - ACTIONS(8274), 1, + ACTIONS(8769), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8276), 1, + ACTIONS(8771), 1, anon_sym_BQUOTE, - ACTIONS(8278), 1, + ACTIONS(8773), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10348), 1, + ACTIONS(9627), 1, sym_word, - ACTIONS(10354), 1, + ACTIONS(9633), 1, sym__comment_word, - ACTIONS(11396), 1, + ACTIONS(10361), 1, anon_sym_DOLLAR, - ACTIONS(8280), 2, + ACTIONS(8775), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10350), 2, + ACTIONS(9629), 2, sym_test_operator, sym__special_character, - ACTIONS(10352), 3, + ACTIONS(9631), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1309), 9, + STATE(4585), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263293,46 +251642,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [225756] = 18, + [215714] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8637), 1, + ACTIONS(6937), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, + ACTIONS(6939), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8641), 1, - anon_sym_DOLLAR, - ACTIONS(8645), 1, + ACTIONS(6945), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(6949), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(6951), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(6953), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(6955), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(6957), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(6959), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8665), 1, + ACTIONS(6969), 1, sym__brace_start, - ACTIONS(11272), 1, + ACTIONS(9601), 1, sym_word, - ACTIONS(11280), 1, + ACTIONS(9609), 1, sym__comment_word, - ACTIONS(8661), 2, + ACTIONS(10363), 1, + anon_sym_DOLLAR, + ACTIONS(6961), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11276), 2, + ACTIONS(9605), 2, sym_test_operator, sym__special_character, - ACTIONS(11278), 3, + ACTIONS(9607), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5127), 9, + STATE(4129), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263342,48 +251691,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [225823] = 20, + [215781] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(3946), 1, + ACTIONS(2645), 1, anon_sym_DOLLAR, - ACTIONS(3952), 1, + ACTIONS(2651), 1, aux_sym_number_token1, - ACTIONS(3954), 1, + ACTIONS(2653), 1, aux_sym_number_token2, - ACTIONS(3958), 1, + ACTIONS(2657), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3968), 1, + ACTIONS(2669), 1, sym__brace_start, - ACTIONS(10490), 1, + ACTIONS(9493), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10492), 1, + ACTIONS(9495), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10498), 1, + ACTIONS(9499), 1, anon_sym_DQUOTE, - ACTIONS(10502), 1, + ACTIONS(9503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, + ACTIONS(9505), 1, anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(9507), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11398), 1, + ACTIONS(10365), 1, sym_word, - ACTIONS(11400), 1, + ACTIONS(10367), 1, sym__special_character, - ACTIONS(11404), 1, + ACTIONS(10371), 1, sym_test_operator, - STATE(4353), 1, + STATE(2053), 1, aux_sym__literal_repeat1, - STATE(4901), 1, + STATE(2303), 1, sym_concatenation, - ACTIONS(10508), 2, + ACTIONS(9509), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11402), 2, + ACTIONS(10369), 2, sym_raw_string, sym_ansi_c_string, - STATE(4535), 9, + STATE(1622), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263393,46 +251742,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [225894] = 18, - ACTIONS(3), 1, + [215852] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(10316), 1, - sym_word, - ACTIONS(10318), 1, + 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(8983), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10320), 1, + ACTIONS(8985), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10326), 1, + ACTIONS(8987), 1, + sym__special_character, + ACTIONS(8989), 1, anon_sym_DQUOTE, - ACTIONS(10330), 1, - aux_sym_number_token1, - ACTIONS(10332), 1, - aux_sym_number_token2, - ACTIONS(10334), 1, + ACTIONS(8993), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10336), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(10338), 1, + ACTIONS(8995), 1, anon_sym_BQUOTE, - ACTIONS(10340), 1, + ACTIONS(8997), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10344), 1, - sym__comment_word, - ACTIONS(10346), 1, - sym__brace_start, - ACTIONS(11406), 1, - anon_sym_DOLLAR, - ACTIONS(10324), 2, + ACTIONS(10373), 1, + sym_word, + ACTIONS(10377), 1, sym_test_operator, - sym__special_character, - ACTIONS(10342), 2, + STATE(4285), 1, + aux_sym__literal_repeat1, + STATE(4641), 1, + sym_concatenation, + ACTIONS(8999), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10328), 3, - sym__bare_dollar, + ACTIONS(10375), 2, sym_raw_string, sym_ansi_c_string, - STATE(6138), 9, + STATE(4372), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263442,46 +251793,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [225961] = 18, - ACTIONS(3), 1, + [215923] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(3016), 1, + ACTIONS(2645), 1, + anon_sym_DOLLAR, + ACTIONS(2651), 1, aux_sym_number_token1, - ACTIONS(3018), 1, + ACTIONS(2653), 1, aux_sym_number_token2, - ACTIONS(3022), 1, + ACTIONS(2657), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3032), 1, + ACTIONS(2669), 1, sym__brace_start, - ACTIONS(9686), 1, + ACTIONS(9493), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9688), 1, + ACTIONS(9495), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9692), 1, + ACTIONS(9499), 1, anon_sym_DQUOTE, - ACTIONS(9696), 1, + ACTIONS(9503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9698), 1, + ACTIONS(9505), 1, anon_sym_BQUOTE, - ACTIONS(9700), 1, + ACTIONS(9507), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11134), 1, + ACTIONS(10367), 1, + sym__special_character, + ACTIONS(10379), 1, sym_word, - ACTIONS(11142), 1, - sym__comment_word, - ACTIONS(11408), 1, - anon_sym_DOLLAR, - ACTIONS(9702), 2, + ACTIONS(10383), 1, + sym_test_operator, + STATE(2060), 1, + aux_sym__literal_repeat1, + STATE(2266), 1, + sym_concatenation, + ACTIONS(9509), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11138), 2, - sym_test_operator, - sym__special_character, - ACTIONS(11140), 3, - sym__bare_dollar, + ACTIONS(10381), 2, sym_raw_string, sym_ansi_c_string, - STATE(1783), 9, + STATE(1564), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263491,46 +251844,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [226028] = 18, - ACTIONS(3), 1, + [215994] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(3558), 1, + ACTIONS(3638), 1, anon_sym_DOLLAR, - ACTIONS(3564), 1, + ACTIONS(3644), 1, aux_sym_number_token1, - ACTIONS(3566), 1, + ACTIONS(3646), 1, aux_sym_number_token2, - ACTIONS(3570), 1, + ACTIONS(3650), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3582), 1, + ACTIONS(3660), 1, sym__brace_start, - ACTIONS(9786), 1, + ACTIONS(8983), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9788), 1, + ACTIONS(8985), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9792), 1, + ACTIONS(8987), 1, + sym__special_character, + ACTIONS(8989), 1, anon_sym_DQUOTE, - ACTIONS(9796), 1, + ACTIONS(8993), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9798), 1, + ACTIONS(8995), 1, anon_sym_BQUOTE, - ACTIONS(9800), 1, + ACTIONS(8997), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10132), 1, + ACTIONS(10385), 1, sym_word, - ACTIONS(10140), 1, - sym__comment_word, - ACTIONS(9802), 2, + ACTIONS(10389), 1, + sym_test_operator, + STATE(4304), 1, + aux_sym__literal_repeat1, + STATE(4668), 1, + sym_concatenation, + ACTIONS(8999), 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(10387), 2, sym_raw_string, sym_ansi_c_string, - STATE(4898), 9, + STATE(4410), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263540,46 +251895,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [226095] = 18, + [216065] = 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(9941), 1, sym_word, - ACTIONS(10354), 1, + ACTIONS(9947), 1, sym__comment_word, - ACTIONS(11410), 1, + ACTIONS(10391), 1, anon_sym_DOLLAR, - ACTIONS(8280), 2, + ACTIONS(332), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10350), 2, + ACTIONS(9943), 2, sym_test_operator, sym__special_character, - ACTIONS(10352), 3, + ACTIONS(9945), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1309), 9, + STATE(1028), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263589,46 +251944,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [226162] = 18, + [216132] = 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(4731), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9688), 1, + ACTIONS(4733), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9692), 1, + ACTIONS(4739), 1, anon_sym_DQUOTE, - ACTIONS(9696), 1, + ACTIONS(4743), 1, + aux_sym_number_token1, + ACTIONS(4745), 1, + aux_sym_number_token2, + ACTIONS(4747), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9698), 1, + ACTIONS(4749), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4751), 1, anon_sym_BQUOTE, - ACTIONS(9700), 1, + ACTIONS(4753), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11134), 1, + ACTIONS(4759), 1, + sym__brace_start, + ACTIONS(9713), 1, sym_word, - ACTIONS(11142), 1, + ACTIONS(9719), 1, sym__comment_word, - ACTIONS(11412), 1, + ACTIONS(10393), 1, anon_sym_DOLLAR, - ACTIONS(9702), 2, + ACTIONS(4755), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11138), 2, + ACTIONS(9715), 2, sym_test_operator, sym__special_character, - ACTIONS(11140), 3, + ACTIONS(9717), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1783), 9, + STATE(5184), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263638,46 +251993,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [226229] = 18, + [216199] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3514), 1, + ACTIONS(2609), 1, aux_sym_number_token1, - ACTIONS(3516), 1, + ACTIONS(2611), 1, aux_sym_number_token2, - ACTIONS(3520), 1, + ACTIONS(2615), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3530), 1, + ACTIONS(2627), 1, sym__brace_start, - ACTIONS(10514), 1, + ACTIONS(9819), 1, sym_word, - ACTIONS(10516), 1, + ACTIONS(9821), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10518), 1, + ACTIONS(9823), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10524), 1, + ACTIONS(9827), 1, anon_sym_DQUOTE, - ACTIONS(10528), 1, + ACTIONS(9831), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, + ACTIONS(9833), 1, anon_sym_BQUOTE, - ACTIONS(10532), 1, + ACTIONS(9835), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10536), 1, + ACTIONS(9839), 1, sym__comment_word, - ACTIONS(11414), 1, + ACTIONS(10395), 1, anon_sym_DOLLAR, - ACTIONS(10522), 2, + ACTIONS(9825), 2, sym_test_operator, sym__special_character, - ACTIONS(10534), 2, + ACTIONS(9837), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10526), 3, + ACTIONS(9829), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4229), 9, + STATE(1482), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263687,46 +252042,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [226296] = 18, + [216266] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3638), 1, - anon_sym_DOLLAR, - ACTIONS(3644), 1, + ACTIONS(3023), 1, aux_sym_number_token1, - ACTIONS(3646), 1, + ACTIONS(3025), 1, aux_sym_number_token2, - ACTIONS(3650), 1, + ACTIONS(3029), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3660), 1, + ACTIONS(3041), 1, sym__brace_start, - ACTIONS(9804), 1, + ACTIONS(10397), 1, + sym_word, + ACTIONS(10399), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9806), 1, + ACTIONS(10401), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9810), 1, + ACTIONS(10403), 1, + anon_sym_DOLLAR, + ACTIONS(10407), 1, anon_sym_DQUOTE, - ACTIONS(9814), 1, + ACTIONS(10411), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9816), 1, + ACTIONS(10413), 1, anon_sym_BQUOTE, - ACTIONS(9818), 1, + ACTIONS(10415), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10568), 1, - sym_word, - ACTIONS(10576), 1, + ACTIONS(10419), 1, sym__comment_word, - ACTIONS(9820), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10572), 2, + ACTIONS(10405), 2, sym_test_operator, sym__special_character, - ACTIONS(10574), 3, + ACTIONS(10417), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10409), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1924), 9, + STATE(1598), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263736,46 +252091,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [226363] = 18, + [216333] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3644), 1, + ACTIONS(3023), 1, aux_sym_number_token1, - ACTIONS(3646), 1, + ACTIONS(3025), 1, aux_sym_number_token2, - ACTIONS(3650), 1, + ACTIONS(3029), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3660), 1, + ACTIONS(3041), 1, sym__brace_start, - ACTIONS(9804), 1, + ACTIONS(10397), 1, + sym_word, + ACTIONS(10399), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9806), 1, + ACTIONS(10401), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9810), 1, + ACTIONS(10407), 1, anon_sym_DQUOTE, - ACTIONS(9814), 1, + ACTIONS(10411), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9816), 1, + ACTIONS(10413), 1, anon_sym_BQUOTE, - ACTIONS(9818), 1, + ACTIONS(10415), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10568), 1, - sym_word, - ACTIONS(10576), 1, + ACTIONS(10419), 1, sym__comment_word, - ACTIONS(11416), 1, + ACTIONS(10421), 1, anon_sym_DOLLAR, - ACTIONS(9820), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10572), 2, + ACTIONS(10405), 2, sym_test_operator, sym__special_character, - ACTIONS(10574), 3, + ACTIONS(10417), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10409), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1924), 9, + STATE(1598), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263785,97 +252140,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [226430] = 18, + [216400] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3644), 1, + ACTIONS(1420), 1, aux_sym_number_token1, - ACTIONS(3646), 1, + ACTIONS(1422), 1, aux_sym_number_token2, - ACTIONS(3650), 1, + ACTIONS(1426), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3660), 1, + ACTIONS(1438), 1, sym__brace_start, - ACTIONS(9804), 1, + ACTIONS(8729), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9806), 1, + ACTIONS(8731), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9810), 1, + ACTIONS(8735), 1, anon_sym_DQUOTE, - ACTIONS(9814), 1, + ACTIONS(8739), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9816), 1, + ACTIONS(8741), 1, anon_sym_BQUOTE, - ACTIONS(9818), 1, + ACTIONS(8743), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10568), 1, + ACTIONS(9841), 1, sym_word, - ACTIONS(10576), 1, + ACTIONS(9847), 1, sym__comment_word, - ACTIONS(11418), 1, + ACTIONS(10423), 1, anon_sym_DOLLAR, - ACTIONS(9820), 2, + ACTIONS(8745), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10572), 2, + ACTIONS(9843), 2, sym_test_operator, sym__special_character, - ACTIONS(10574), 3, + ACTIONS(9845), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1924), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [226497] = 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, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10492), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(10498), 1, - anon_sym_DQUOTE, - ACTIONS(10502), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, - anon_sym_BQUOTE, - ACTIONS(10506), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11400), 1, - sym__special_character, - ACTIONS(11420), 1, - sym_word, - ACTIONS(11424), 1, - sym_test_operator, - STATE(4371), 1, - aux_sym__literal_repeat1, - STATE(4761), 1, - sym_concatenation, - ACTIONS(10508), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(11422), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(4646), 9, + STATE(994), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263885,46 +252189,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [226568] = 18, + [216467] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5319), 1, + ACTIONS(7075), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5321), 1, + ACTIONS(7077), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5327), 1, + ACTIONS(7083), 1, anon_sym_DQUOTE, - ACTIONS(5331), 1, + ACTIONS(7087), 1, aux_sym_number_token1, - ACTIONS(5333), 1, + ACTIONS(7089), 1, aux_sym_number_token2, - ACTIONS(5335), 1, + ACTIONS(7091), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5337), 1, + ACTIONS(7093), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5339), 1, + ACTIONS(7095), 1, anon_sym_BQUOTE, - ACTIONS(5341), 1, + ACTIONS(7097), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5347), 1, + ACTIONS(7107), 1, sym__brace_start, - ACTIONS(11250), 1, + ACTIONS(8965), 1, sym_word, - ACTIONS(11258), 1, + ACTIONS(8973), 1, sym__comment_word, - ACTIONS(11426), 1, + ACTIONS(10425), 1, anon_sym_DOLLAR, - ACTIONS(5343), 2, + ACTIONS(7099), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11254), 2, + ACTIONS(8969), 2, sym_test_operator, sym__special_character, - ACTIONS(11256), 3, + ACTIONS(8971), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5420), 9, + STATE(1062), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263934,46 +252238,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [226635] = 18, + [216534] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3010), 1, + ACTIONS(256), 1, anon_sym_DOLLAR, - ACTIONS(3016), 1, + ACTIONS(262), 1, aux_sym_number_token1, - ACTIONS(3018), 1, + ACTIONS(264), 1, aux_sym_number_token2, - ACTIONS(3022), 1, + ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3032), 1, + ACTIONS(282), 1, sym__brace_start, - ACTIONS(9686), 1, + ACTIONS(1101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9688), 1, + ACTIONS(1103), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9692), 1, + ACTIONS(1109), 1, anon_sym_DQUOTE, - ACTIONS(9696), 1, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9698), 1, - anon_sym_BQUOTE, - ACTIONS(9700), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11134), 1, + ACTIONS(4951), 1, + anon_sym_BQUOTE, + ACTIONS(8955), 1, sym_word, - ACTIONS(11142), 1, + ACTIONS(8963), 1, sym__comment_word, - ACTIONS(9702), 2, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11138), 2, + ACTIONS(8959), 2, sym_test_operator, sym__special_character, - ACTIONS(11140), 3, + ACTIONS(8961), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1783), 9, + STATE(2073), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263983,46 +252287,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [226702] = 18, + [216601] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2807), 1, + ACTIONS(3644), 1, aux_sym_number_token1, - ACTIONS(2809), 1, + ACTIONS(3646), 1, aux_sym_number_token2, - ACTIONS(2813), 1, + ACTIONS(3650), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2823), 1, + ACTIONS(3660), 1, sym__brace_start, - ACTIONS(9930), 1, + ACTIONS(8983), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9932), 1, + ACTIONS(8985), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9936), 1, + ACTIONS(8989), 1, anon_sym_DQUOTE, - ACTIONS(9940), 1, + ACTIONS(8993), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9942), 1, + ACTIONS(8995), 1, anon_sym_BQUOTE, - ACTIONS(9944), 1, + ACTIONS(8997), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10184), 1, + ACTIONS(9529), 1, sym_word, - ACTIONS(10190), 1, + ACTIONS(9535), 1, sym__comment_word, - ACTIONS(11428), 1, + ACTIONS(10427), 1, anon_sym_DOLLAR, - ACTIONS(9946), 2, + ACTIONS(8999), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10186), 2, + ACTIONS(9531), 2, sym_test_operator, sym__special_character, - ACTIONS(10188), 3, + ACTIONS(9533), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1467), 9, + STATE(4179), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -264032,46 +252336,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [226769] = 18, + [216668] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6390), 1, - anon_sym_DOLLAR, - ACTIONS(6396), 1, + ACTIONS(2796), 1, aux_sym_number_token1, - ACTIONS(6398), 1, + ACTIONS(2798), 1, aux_sym_number_token2, - ACTIONS(6402), 1, + ACTIONS(2802), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6414), 1, + ACTIONS(2814), 1, sym__brace_start, - ACTIONS(7508), 1, + ACTIONS(9317), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7514), 1, + ACTIONS(9323), 1, anon_sym_DQUOTE, - ACTIONS(7518), 1, + ACTIONS(9327), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, + ACTIONS(9329), 1, anon_sym_BQUOTE, - ACTIONS(7522), 1, + ACTIONS(9331), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11430), 1, + ACTIONS(9635), 1, sym_word, - ACTIONS(11436), 1, + ACTIONS(9641), 1, sym__comment_word, - ACTIONS(7524), 2, + ACTIONS(10429), 1, + anon_sym_DOLLAR, + ACTIONS(9333), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11432), 2, + ACTIONS(9637), 2, sym_test_operator, sym__special_character, - ACTIONS(11434), 3, + ACTIONS(9639), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(6447), 9, + STATE(1767), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -264081,46 +252385,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [226836] = 18, + [216735] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3514), 1, + ACTIONS(3644), 1, aux_sym_number_token1, - ACTIONS(3516), 1, + ACTIONS(3646), 1, aux_sym_number_token2, - ACTIONS(3520), 1, + ACTIONS(3650), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3530), 1, + ACTIONS(3660), 1, sym__brace_start, - ACTIONS(10514), 1, - sym_word, - ACTIONS(10516), 1, + ACTIONS(8983), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10518), 1, + ACTIONS(8985), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10524), 1, + ACTIONS(8989), 1, anon_sym_DQUOTE, - ACTIONS(10528), 1, + ACTIONS(8993), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, + ACTIONS(8995), 1, anon_sym_BQUOTE, - ACTIONS(10532), 1, + ACTIONS(8997), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10536), 1, + ACTIONS(9529), 1, + sym_word, + ACTIONS(9535), 1, sym__comment_word, - ACTIONS(11438), 1, + ACTIONS(10431), 1, anon_sym_DOLLAR, - ACTIONS(10522), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10534), 2, + ACTIONS(8999), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10526), 3, + ACTIONS(9531), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9533), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4229), 9, + STATE(4179), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -264130,46 +252434,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [226903] = 18, + [216802] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3016), 1, + ACTIONS(3309), 1, aux_sym_number_token1, - ACTIONS(3018), 1, + ACTIONS(3311), 1, aux_sym_number_token2, - ACTIONS(3022), 1, + ACTIONS(3315), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3032), 1, + ACTIONS(3325), 1, sym__brace_start, - ACTIONS(9686), 1, + ACTIONS(9579), 1, + sym_word, + ACTIONS(9581), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9688), 1, + ACTIONS(9583), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9692), 1, + ACTIONS(9587), 1, anon_sym_DQUOTE, - ACTIONS(9696), 1, + ACTIONS(9591), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9698), 1, + ACTIONS(9593), 1, anon_sym_BQUOTE, - ACTIONS(9700), 1, + ACTIONS(9595), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11134), 1, - sym_word, - ACTIONS(11142), 1, + ACTIONS(9599), 1, sym__comment_word, - ACTIONS(11440), 1, + ACTIONS(10433), 1, anon_sym_DOLLAR, - ACTIONS(9702), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(11138), 2, + ACTIONS(9585), 2, sym_test_operator, sym__special_character, - ACTIONS(11140), 3, + ACTIONS(9597), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9589), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1783), 9, + STATE(4069), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -264179,46 +252483,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [226970] = 18, + [216869] = 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(2796), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(2798), 1, aux_sym_number_token2, - ACTIONS(385), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(2802), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, + ACTIONS(2814), 1, sym__brace_start, - ACTIONS(5375), 1, + ACTIONS(9317), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9319), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9323), 1, + anon_sym_DQUOTE, + ACTIONS(9327), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9329), 1, anon_sym_BQUOTE, - ACTIONS(9676), 1, + ACTIONS(9331), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9635), 1, sym_word, - ACTIONS(9680), 1, + ACTIONS(9641), 1, sym__comment_word, - ACTIONS(11442), 1, + ACTIONS(10435), 1, anon_sym_DOLLAR, - ACTIONS(393), 2, + ACTIONS(9333), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9684), 2, + ACTIONS(9637), 2, sym_test_operator, sym__special_character, - ACTIONS(9682), 3, + ACTIONS(9639), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2517), 9, + STATE(1767), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -264228,46 +252532,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [227037] = 18, + [216936] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3016), 1, + ACTIONS(3309), 1, aux_sym_number_token1, - ACTIONS(3018), 1, + ACTIONS(3311), 1, aux_sym_number_token2, - ACTIONS(3022), 1, + ACTIONS(3315), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3032), 1, + ACTIONS(3325), 1, sym__brace_start, - ACTIONS(9686), 1, + ACTIONS(9579), 1, + sym_word, + ACTIONS(9581), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9688), 1, + ACTIONS(9583), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9692), 1, + ACTIONS(9587), 1, anon_sym_DQUOTE, - ACTIONS(9696), 1, + ACTIONS(9591), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9698), 1, + ACTIONS(9593), 1, anon_sym_BQUOTE, - ACTIONS(9700), 1, + ACTIONS(9595), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11134), 1, - sym_word, - ACTIONS(11142), 1, + ACTIONS(9599), 1, sym__comment_word, - ACTIONS(11444), 1, + ACTIONS(10437), 1, anon_sym_DOLLAR, - ACTIONS(9702), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(11138), 2, + ACTIONS(9585), 2, sym_test_operator, sym__special_character, - ACTIONS(11140), 3, + ACTIONS(9597), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9589), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1783), 9, + STATE(4069), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -264277,48 +252581,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [227104] = 20, + [217003] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(10318), 1, + ACTIONS(3303), 1, + anon_sym_DOLLAR, + ACTIONS(3309), 1, + aux_sym_number_token1, + ACTIONS(3311), 1, + aux_sym_number_token2, + ACTIONS(3315), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3325), 1, + sym__brace_start, + ACTIONS(3459), 1, + sym_word, + ACTIONS(3463), 1, + sym_test_operator, + ACTIONS(9581), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10320), 1, + ACTIONS(9583), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10326), 1, + ACTIONS(9587), 1, anon_sym_DQUOTE, - ACTIONS(10330), 1, - aux_sym_number_token1, - ACTIONS(10332), 1, - aux_sym_number_token2, - ACTIONS(10334), 1, + ACTIONS(9591), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10336), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(10338), 1, + ACTIONS(9593), 1, anon_sym_BQUOTE, - ACTIONS(10340), 1, + ACTIONS(9595), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10346), 1, - sym__brace_start, - ACTIONS(10962), 1, - anon_sym_DOLLAR, - ACTIONS(10968), 1, + ACTIONS(10439), 1, sym__special_character, - ACTIONS(11446), 1, - sym_word, - ACTIONS(11450), 1, - sym_test_operator, - STATE(6112), 1, + STATE(4064), 1, aux_sym__literal_repeat1, - STATE(6331), 1, + STATE(4433), 1, sym_concatenation, - ACTIONS(10342), 2, + ACTIONS(9597), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11448), 2, + ACTIONS(10441), 2, sym_raw_string, sym_ansi_c_string, - STATE(6103), 9, + STATE(4319), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -264328,99 +252632,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [227175] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10640), 1, - anon_sym_LPAREN, - ACTIONS(10642), 1, - aux_sym__c_word_token1, - ACTIONS(10644), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(10646), 1, - anon_sym_DOLLAR, - ACTIONS(10648), 1, - anon_sym_DQUOTE, - ACTIONS(10650), 1, - aux_sym_number_token1, - ACTIONS(10652), 1, - aux_sym_number_token2, - ACTIONS(10654), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10656), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(10658), 1, - anon_sym_BQUOTE, - ACTIONS(10660), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2838), 1, - sym__c_postfix_expression, - STATE(2905), 1, - sym__c_unary_expression, - STATE(2906), 1, - sym__c_binary_expression, - STATE(4149), 1, - sym__c_terminator, - STATE(6267), 1, - sym__c_expression, - STATE(6395), 1, - sym__c_variable_assignment, - STATE(7360), 1, - sym__for_body, - ACTIONS(10636), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(10638), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2902), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [227250] = 18, - ACTIONS(3), 1, + [217074] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(7828), 1, + ACTIONS(7159), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7830), 1, + ACTIONS(7161), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7832), 1, + ACTIONS(7163), 1, anon_sym_DOLLAR, - ACTIONS(7836), 1, + ACTIONS(7165), 1, + sym__special_character, + ACTIONS(7167), 1, anon_sym_DQUOTE, - ACTIONS(7840), 1, + ACTIONS(7171), 1, aux_sym_number_token1, - ACTIONS(7842), 1, + ACTIONS(7173), 1, aux_sym_number_token2, - ACTIONS(7844), 1, + ACTIONS(7175), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7846), 1, + ACTIONS(7177), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7848), 1, + ACTIONS(7179), 1, anon_sym_BQUOTE, - ACTIONS(7850), 1, + ACTIONS(7181), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7860), 1, + ACTIONS(7191), 1, sym__brace_start, - ACTIONS(11452), 1, + ACTIONS(10443), 1, sym_word, - ACTIONS(11458), 1, - sym__comment_word, - ACTIONS(7852), 2, + ACTIONS(10447), 1, + sym_test_operator, + STATE(1685), 1, + aux_sym__literal_repeat1, + STATE(1793), 1, + sym_concatenation, + ACTIONS(7183), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11454), 2, - sym_test_operator, - sym__special_character, - ACTIONS(11456), 3, - sym__bare_dollar, + ACTIONS(10445), 2, sym_raw_string, sym_ansi_c_string, - STATE(2468), 9, + STATE(1350), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -264430,46 +252683,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [227317] = 18, + [217145] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1557), 1, + ACTIONS(1561), 1, aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, ACTIONS(1563), 1, + aux_sym_number_token2, + ACTIONS(1567), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1575), 1, + ACTIONS(1579), 1, sym__brace_start, - ACTIONS(9974), 1, + ACTIONS(8803), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9976), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9980), 1, + ACTIONS(8809), 1, anon_sym_DQUOTE, - ACTIONS(9984), 1, + ACTIONS(8813), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9986), 1, + ACTIONS(8815), 1, anon_sym_BQUOTE, - ACTIONS(9988), 1, + ACTIONS(8817), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11048), 1, + ACTIONS(9139), 1, sym_word, - ACTIONS(11056), 1, + ACTIONS(9145), 1, sym__comment_word, - ACTIONS(11460), 1, + ACTIONS(10449), 1, anon_sym_DOLLAR, - ACTIONS(9990), 2, + ACTIONS(8819), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11052), 2, + ACTIONS(9141), 2, sym_test_operator, sym__special_character, - ACTIONS(11054), 3, + ACTIONS(9143), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1154), 9, + STATE(1161), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -264479,46 +252732,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [227384] = 18, - ACTIONS(3), 1, + [217212] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(2295), 1, + ACTIONS(1511), 1, + anon_sym_DOLLAR, + ACTIONS(1517), 1, aux_sym_number_token1, - ACTIONS(2297), 1, + ACTIONS(1519), 1, aux_sym_number_token2, - ACTIONS(2301), 1, + ACTIONS(1523), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2313), 1, + ACTIONS(1535), 1, sym__brace_start, - ACTIONS(10142), 1, - sym_word, - ACTIONS(10144), 1, + ACTIONS(8701), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10146), 1, + ACTIONS(8703), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10150), 1, + ACTIONS(8705), 1, + sym__special_character, + ACTIONS(8707), 1, anon_sym_DQUOTE, - ACTIONS(10154), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10156), 1, + ACTIONS(8713), 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, + ACTIONS(8715), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10451), 1, + sym_word, + ACTIONS(10455), 1, sym_test_operator, - sym__special_character, - ACTIONS(10160), 2, + STATE(1334), 1, + aux_sym__literal_repeat1, + STATE(1466), 1, + sym_concatenation, + ACTIONS(8717), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10152), 3, - sym__bare_dollar, + ACTIONS(10453), 2, sym_raw_string, sym_ansi_c_string, - STATE(1304), 9, + STATE(956), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -264528,46 +252783,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [227451] = 18, - ACTIONS(3), 1, + [217283] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(1557), 1, + ACTIONS(3303), 1, + anon_sym_DOLLAR, + ACTIONS(3309), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(3311), 1, aux_sym_number_token2, - ACTIONS(1563), 1, + ACTIONS(3315), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1575), 1, + ACTIONS(3325), 1, sym__brace_start, - ACTIONS(9974), 1, + ACTIONS(3467), 1, + sym_word, + ACTIONS(3469), 1, + sym_test_operator, + ACTIONS(9581), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9976), 1, + ACTIONS(9583), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9980), 1, + ACTIONS(9587), 1, anon_sym_DQUOTE, - ACTIONS(9984), 1, + ACTIONS(9591), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9986), 1, + ACTIONS(9593), 1, anon_sym_BQUOTE, - ACTIONS(9988), 1, + ACTIONS(9595), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11048), 1, - sym_word, - ACTIONS(11056), 1, - sym__comment_word, - ACTIONS(11464), 1, - anon_sym_DOLLAR, - ACTIONS(9990), 2, + ACTIONS(10439), 1, + sym__special_character, + STATE(4121), 1, + aux_sym__literal_repeat1, + STATE(4375), 1, + sym_concatenation, + ACTIONS(9597), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11052), 2, - sym_test_operator, - sym__special_character, - ACTIONS(11054), 3, - sym__bare_dollar, + ACTIONS(10457), 2, sym_raw_string, sym_ansi_c_string, - STATE(1154), 9, + STATE(4246), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -264577,46 +252834,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [227518] = 18, - ACTIONS(3), 1, + [217354] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(2807), 1, + ACTIONS(1511), 1, + anon_sym_DOLLAR, + ACTIONS(1517), 1, aux_sym_number_token1, - ACTIONS(2809), 1, + ACTIONS(1519), 1, aux_sym_number_token2, - ACTIONS(2813), 1, + ACTIONS(1523), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2823), 1, + ACTIONS(1535), 1, sym__brace_start, - ACTIONS(9930), 1, + ACTIONS(8701), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9932), 1, + ACTIONS(8703), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9936), 1, + ACTIONS(8705), 1, + sym__special_character, + ACTIONS(8707), 1, anon_sym_DQUOTE, - ACTIONS(9940), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9942), 1, + ACTIONS(8713), 1, anon_sym_BQUOTE, - ACTIONS(9944), 1, + ACTIONS(8715), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10184), 1, + ACTIONS(10459), 1, sym_word, - ACTIONS(10190), 1, - sym__comment_word, - ACTIONS(11466), 1, - anon_sym_DOLLAR, - ACTIONS(9946), 2, + ACTIONS(10463), 1, + sym_test_operator, + STATE(1349), 1, + aux_sym__literal_repeat1, + STATE(1509), 1, + sym_concatenation, + ACTIONS(8717), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10186), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10188), 3, - sym__bare_dollar, + ACTIONS(10461), 2, sym_raw_string, sym_ansi_c_string, - STATE(1467), 9, + STATE(962), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -264626,46 +252885,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [227585] = 18, + [217425] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6396), 1, + ACTIONS(1561), 1, aux_sym_number_token1, - ACTIONS(6398), 1, + ACTIONS(1563), 1, aux_sym_number_token2, - ACTIONS(6402), 1, + ACTIONS(1567), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6414), 1, + ACTIONS(1579), 1, sym__brace_start, - ACTIONS(7508), 1, + ACTIONS(8803), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7514), 1, + ACTIONS(8809), 1, anon_sym_DQUOTE, - ACTIONS(7518), 1, + ACTIONS(8813), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, + ACTIONS(8815), 1, anon_sym_BQUOTE, - ACTIONS(7522), 1, + ACTIONS(8817), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11430), 1, + ACTIONS(9139), 1, sym_word, - ACTIONS(11436), 1, + ACTIONS(9145), 1, sym__comment_word, - ACTIONS(11468), 1, + ACTIONS(10465), 1, anon_sym_DOLLAR, - ACTIONS(7524), 2, + ACTIONS(8819), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11432), 2, + ACTIONS(9141), 2, sym_test_operator, sym__special_character, - ACTIONS(11434), 3, + ACTIONS(9143), 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, @@ -264675,46 +252934,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [227652] = 18, + [217492] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7866), 1, + ACTIONS(45), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7868), 1, + ACTIONS(47), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7874), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(7878), 1, + ACTIONS(57), 1, aux_sym_number_token1, - ACTIONS(7880), 1, + ACTIONS(59), 1, aux_sym_number_token2, - ACTIONS(7882), 1, + ACTIONS(61), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7884), 1, + ACTIONS(63), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7886), 1, + ACTIONS(65), 1, anon_sym_BQUOTE, - ACTIONS(7888), 1, + ACTIONS(67), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7898), 1, + ACTIONS(79), 1, sym__brace_start, - ACTIONS(10846), 1, + ACTIONS(9017), 1, sym_word, - ACTIONS(10852), 1, + ACTIONS(9025), 1, sym__comment_word, - ACTIONS(11470), 1, + ACTIONS(10467), 1, anon_sym_DOLLAR, - ACTIONS(7890), 2, + ACTIONS(69), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10848), 2, + ACTIONS(9021), 2, sym_test_operator, sym__special_character, - ACTIONS(10850), 3, + ACTIONS(9023), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1527), 9, + STATE(898), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -264724,46 +252983,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [227719] = 18, + [217559] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6396), 1, + ACTIONS(1420), 1, aux_sym_number_token1, - ACTIONS(6398), 1, + ACTIONS(1422), 1, aux_sym_number_token2, - ACTIONS(6402), 1, + ACTIONS(1426), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6414), 1, + ACTIONS(1438), 1, sym__brace_start, - ACTIONS(7508), 1, + ACTIONS(8729), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, + ACTIONS(8731), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7514), 1, + ACTIONS(8735), 1, anon_sym_DQUOTE, - ACTIONS(7518), 1, + ACTIONS(8739), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, + ACTIONS(8741), 1, anon_sym_BQUOTE, - ACTIONS(7522), 1, + ACTIONS(8743), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11430), 1, + ACTIONS(9841), 1, sym_word, - ACTIONS(11436), 1, + ACTIONS(9847), 1, sym__comment_word, - ACTIONS(11472), 1, + ACTIONS(10469), 1, anon_sym_DOLLAR, - ACTIONS(7524), 2, + ACTIONS(8745), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11432), 2, + ACTIONS(9843), 2, sym_test_operator, sym__special_character, - ACTIONS(11434), 3, + ACTIONS(9845), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(6447), 9, + STATE(994), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -264773,46 +253032,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [227786] = 18, + [217626] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5011), 1, + ACTIONS(2403), 1, + aux_sym_number_token1, + ACTIONS(2405), 1, + aux_sym_number_token2, + ACTIONS(2409), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2421), 1, + sym__brace_start, + ACTIONS(9539), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5013), 1, + ACTIONS(9541), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5019), 1, + ACTIONS(9545), 1, anon_sym_DQUOTE, - ACTIONS(5023), 1, - aux_sym_number_token1, - ACTIONS(5025), 1, - aux_sym_number_token2, - ACTIONS(5027), 1, + ACTIONS(9549), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5029), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5031), 1, + ACTIONS(9551), 1, anon_sym_BQUOTE, - ACTIONS(5033), 1, + ACTIONS(9553), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5039), 1, - sym__brace_start, - ACTIONS(10356), 1, + ACTIONS(9849), 1, sym_word, - ACTIONS(10364), 1, + ACTIONS(9855), 1, sym__comment_word, - ACTIONS(11474), 1, + ACTIONS(10471), 1, anon_sym_DOLLAR, - ACTIONS(5035), 2, + ACTIONS(9555), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10360), 2, + ACTIONS(9851), 2, sym_test_operator, sym__special_character, - ACTIONS(10362), 3, + ACTIONS(9853), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2834), 9, + STATE(1686), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -264822,95 +253081,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [227853] = 18, + [217693] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4803), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4805), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4807), 1, - anon_sym_DOLLAR, - ACTIONS(4811), 1, - anon_sym_DQUOTE, - ACTIONS(4815), 1, + ACTIONS(2796), 1, aux_sym_number_token1, - ACTIONS(4817), 1, + ACTIONS(2798), 1, aux_sym_number_token2, - ACTIONS(4819), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4821), 1, + ACTIONS(2802), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4823), 1, - anon_sym_BQUOTE, - ACTIONS(4825), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4831), 1, + ACTIONS(2814), 1, sym__brace_start, - ACTIONS(11476), 1, - sym_word, - ACTIONS(11482), 1, - sym__comment_word, - 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, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [227920] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7828), 1, + ACTIONS(9317), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7830), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7836), 1, + ACTIONS(9323), 1, anon_sym_DQUOTE, - ACTIONS(7840), 1, - aux_sym_number_token1, - ACTIONS(7842), 1, - aux_sym_number_token2, - ACTIONS(7844), 1, + ACTIONS(9327), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7846), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7848), 1, + ACTIONS(9329), 1, anon_sym_BQUOTE, - ACTIONS(7850), 1, + ACTIONS(9331), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7860), 1, - sym__brace_start, - ACTIONS(11452), 1, + ACTIONS(9635), 1, sym_word, - ACTIONS(11458), 1, + ACTIONS(9641), 1, sym__comment_word, - ACTIONS(11484), 1, + ACTIONS(10473), 1, anon_sym_DOLLAR, - ACTIONS(7852), 2, + ACTIONS(9333), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11454), 2, + ACTIONS(9637), 2, sym_test_operator, sym__special_character, - ACTIONS(11456), 3, + ACTIONS(9639), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2468), 9, + STATE(1767), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -264920,46 +253130,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [227987] = 18, + [217760] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7828), 1, + ACTIONS(2796), 1, + aux_sym_number_token1, + ACTIONS(2798), 1, + aux_sym_number_token2, + ACTIONS(2802), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2814), 1, + sym__brace_start, + ACTIONS(9317), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7830), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7836), 1, + ACTIONS(9323), 1, anon_sym_DQUOTE, - ACTIONS(7840), 1, - aux_sym_number_token1, - ACTIONS(7842), 1, - aux_sym_number_token2, - ACTIONS(7844), 1, + ACTIONS(9327), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7846), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7848), 1, + ACTIONS(9329), 1, anon_sym_BQUOTE, - ACTIONS(7850), 1, + ACTIONS(9331), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7860), 1, - sym__brace_start, - ACTIONS(11452), 1, + ACTIONS(9635), 1, sym_word, - ACTIONS(11458), 1, + ACTIONS(9641), 1, sym__comment_word, - ACTIONS(11486), 1, + ACTIONS(10475), 1, anon_sym_DOLLAR, - ACTIONS(7852), 2, + ACTIONS(9333), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11454), 2, + ACTIONS(9637), 2, sym_test_operator, sym__special_character, - ACTIONS(11456), 3, + ACTIONS(9639), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2468), 9, + STATE(1767), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -264969,46 +253179,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [228054] = 18, - ACTIONS(3), 1, + [217827] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(445), 1, + ACTIONS(7159), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(447), 1, + ACTIONS(7161), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(453), 1, + ACTIONS(7163), 1, + anon_sym_DOLLAR, + ACTIONS(7165), 1, + sym__special_character, + ACTIONS(7167), 1, anon_sym_DQUOTE, - ACTIONS(457), 1, + ACTIONS(7171), 1, aux_sym_number_token1, - ACTIONS(459), 1, + ACTIONS(7173), 1, aux_sym_number_token2, - ACTIONS(461), 1, + ACTIONS(7175), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(463), 1, + ACTIONS(7177), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(465), 1, + ACTIONS(7179), 1, anon_sym_BQUOTE, - ACTIONS(467), 1, + ACTIONS(7181), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(477), 1, + ACTIONS(7191), 1, sym__brace_start, - ACTIONS(11488), 1, + ACTIONS(10477), 1, sym_word, - ACTIONS(11490), 1, - anon_sym_DOLLAR, - ACTIONS(11496), 1, - sym__comment_word, - ACTIONS(469), 2, + ACTIONS(10481), 1, + sym_test_operator, + STATE(1603), 1, + aux_sym__literal_repeat1, + STATE(1720), 1, + sym_concatenation, + ACTIONS(7183), 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(10479), 2, sym_raw_string, sym_ansi_c_string, - STATE(853), 9, + STATE(1316), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -265018,46 +253230,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [228121] = 18, + [217898] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8068), 1, + ACTIONS(7159), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8070), 1, + ACTIONS(7161), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8076), 1, + ACTIONS(7163), 1, + anon_sym_DOLLAR, + ACTIONS(7167), 1, anon_sym_DQUOTE, - ACTIONS(8080), 1, + ACTIONS(7171), 1, aux_sym_number_token1, - ACTIONS(8082), 1, + ACTIONS(7173), 1, aux_sym_number_token2, - ACTIONS(8084), 1, + ACTIONS(7175), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8086), 1, + ACTIONS(7177), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8088), 1, + ACTIONS(7179), 1, anon_sym_BQUOTE, - ACTIONS(8090), 1, + ACTIONS(7181), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8100), 1, + ACTIONS(7191), 1, sym__brace_start, - ACTIONS(10122), 1, + ACTIONS(9193), 1, sym_word, - ACTIONS(10130), 1, + ACTIONS(9201), 1, sym__comment_word, - ACTIONS(11498), 1, - anon_sym_DOLLAR, - ACTIONS(8092), 2, + ACTIONS(7183), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10126), 2, + ACTIONS(9197), 2, sym_test_operator, sym__special_character, - ACTIONS(10128), 3, + ACTIONS(9199), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5281), 9, + STATE(1463), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -265067,46 +253279,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [228188] = 18, + [217965] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5216), 1, + ACTIONS(45), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5218), 1, + ACTIONS(47), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5220), 1, + ACTIONS(49), 1, anon_sym_DOLLAR, - ACTIONS(5224), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(5228), 1, + ACTIONS(57), 1, aux_sym_number_token1, - ACTIONS(5230), 1, + ACTIONS(59), 1, aux_sym_number_token2, - ACTIONS(5232), 1, + ACTIONS(61), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5234), 1, + ACTIONS(63), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5236), 1, + ACTIONS(65), 1, anon_sym_BQUOTE, - ACTIONS(5238), 1, + ACTIONS(67), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5244), 1, + ACTIONS(79), 1, sym__brace_start, - ACTIONS(11500), 1, + ACTIONS(9017), 1, sym_word, - ACTIONS(11506), 1, + ACTIONS(9025), 1, sym__comment_word, - ACTIONS(5240), 2, + ACTIONS(69), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11502), 2, + ACTIONS(9021), 2, sym_test_operator, sym__special_character, - ACTIONS(11504), 3, + ACTIONS(9023), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5328), 9, + STATE(898), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -265116,46 +253328,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [228255] = 18, + [218032] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(308), 1, + ACTIONS(2403), 1, + aux_sym_number_token1, + ACTIONS(2405), 1, + aux_sym_number_token2, + ACTIONS(2409), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2421), 1, + sym__brace_start, + ACTIONS(9539), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(310), 1, + ACTIONS(9541), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(316), 1, + ACTIONS(9545), 1, anon_sym_DQUOTE, - ACTIONS(320), 1, - aux_sym_number_token1, - ACTIONS(322), 1, - aux_sym_number_token2, - ACTIONS(324), 1, + ACTIONS(9549), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(326), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(328), 1, + ACTIONS(9551), 1, anon_sym_BQUOTE, - ACTIONS(330), 1, + ACTIONS(9553), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(340), 1, - sym__brace_start, - ACTIONS(10920), 1, + ACTIONS(9849), 1, sym_word, - ACTIONS(10926), 1, + ACTIONS(9855), 1, sym__comment_word, - ACTIONS(11508), 1, + ACTIONS(10483), 1, anon_sym_DOLLAR, - ACTIONS(332), 2, + ACTIONS(9555), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10922), 2, + ACTIONS(9851), 2, sym_test_operator, sym__special_character, - ACTIONS(10924), 3, + ACTIONS(9853), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(997), 9, + STATE(1686), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -265165,46 +253377,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [228322] = 18, + [218099] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(445), 1, + ACTIONS(3343), 1, + aux_sym_number_token1, + ACTIONS(3345), 1, + aux_sym_number_token2, + ACTIONS(3349), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3359), 1, + sym__brace_start, + ACTIONS(9459), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(447), 1, + ACTIONS(9461), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(453), 1, + ACTIONS(9465), 1, anon_sym_DQUOTE, - ACTIONS(457), 1, - aux_sym_number_token1, - ACTIONS(459), 1, - aux_sym_number_token2, - ACTIONS(461), 1, + ACTIONS(9469), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(463), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(465), 1, + ACTIONS(9471), 1, anon_sym_BQUOTE, - ACTIONS(467), 1, + ACTIONS(9473), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(477), 1, - sym__brace_start, - ACTIONS(11488), 1, + ACTIONS(9857), 1, sym_word, - ACTIONS(11496), 1, + ACTIONS(9863), 1, sym__comment_word, - ACTIONS(11510), 1, + ACTIONS(10485), 1, anon_sym_DOLLAR, - ACTIONS(469), 2, + ACTIONS(9475), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11492), 2, + ACTIONS(9859), 2, sym_test_operator, sym__special_character, - ACTIONS(11494), 3, + ACTIONS(9861), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(853), 9, + STATE(4358), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -265214,46 +253426,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [228389] = 18, + [218166] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1460), 1, + ACTIONS(2083), 1, + anon_sym_DOLLAR, + ACTIONS(2089), 1, aux_sym_number_token1, - ACTIONS(1462), 1, + ACTIONS(2091), 1, aux_sym_number_token2, - ACTIONS(1466), 1, + ACTIONS(2095), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1478), 1, + ACTIONS(2109), 1, sym__brace_start, - ACTIONS(9648), 1, + ACTIONS(7019), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9650), 1, + ACTIONS(7021), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9654), 1, + ACTIONS(7025), 1, anon_sym_DQUOTE, - ACTIONS(9658), 1, + ACTIONS(7029), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9660), 1, + ACTIONS(7031), 1, anon_sym_BQUOTE, - ACTIONS(9662), 1, + ACTIONS(7033), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10936), 1, + ACTIONS(10211), 1, sym_word, - ACTIONS(10942), 1, + ACTIONS(10219), 1, sym__comment_word, - ACTIONS(11512), 1, - anon_sym_DOLLAR, - ACTIONS(9664), 2, + ACTIONS(7035), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10938), 2, + ACTIONS(10215), 2, sym_test_operator, sym__special_character, - ACTIONS(10940), 3, + ACTIONS(10217), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1249), 9, + STATE(1361), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -265263,95 +253475,99 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [228456] = 18, + [218233] = 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(10491), 1, + anon_sym_LPAREN, + ACTIONS(10493), 1, + aux_sym__c_word_token1, + ACTIONS(10495), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(10497), 1, + anon_sym_DOLLAR, + ACTIONS(10499), 1, anon_sym_DQUOTE, - ACTIONS(4815), 1, + ACTIONS(10501), 1, aux_sym_number_token1, - ACTIONS(4817), 1, + ACTIONS(10503), 1, aux_sym_number_token2, - ACTIONS(4819), 1, + ACTIONS(10505), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4821), 1, + ACTIONS(10507), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4823), 1, + ACTIONS(10509), 1, anon_sym_BQUOTE, - ACTIONS(4825), 1, + ACTIONS(10511), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4831), 1, - sym__brace_start, - ACTIONS(11476), 1, - sym_word, - ACTIONS(11482), 1, - sym__comment_word, - ACTIONS(11514), 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(2760), 1, + sym__c_binary_expression, + STATE(2765), 1, + sym__c_postfix_expression, + STATE(2780), 1, + sym__c_unary_expression, + STATE(3983), 1, + sym__c_terminator, + STATE(5826), 1, + sym__c_expression, + STATE(6105), 1, + sym__c_variable_assignment, + STATE(6868), 1, + sym__for_body, + ACTIONS(10487), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(10489), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2871), 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, - [228523] = 18, + [218308] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(5524), 1, + aux_sym_number_token1, + ACTIONS(5526), 1, + aux_sym_number_token2, + ACTIONS(5530), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5542), 1, + sym__brace_start, + ACTIONS(6454), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4805), 1, + ACTIONS(6456), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4811), 1, + ACTIONS(6460), 1, anon_sym_DQUOTE, - ACTIONS(4815), 1, - aux_sym_number_token1, - ACTIONS(4817), 1, - aux_sym_number_token2, - ACTIONS(4819), 1, + ACTIONS(6464), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4821), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4823), 1, + ACTIONS(6466), 1, anon_sym_BQUOTE, - ACTIONS(4825), 1, + ACTIONS(6468), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4831), 1, - sym__brace_start, - ACTIONS(11476), 1, + ACTIONS(9643), 1, sym_word, - ACTIONS(11482), 1, + ACTIONS(9649), 1, sym__comment_word, - ACTIONS(11516), 1, + ACTIONS(10513), 1, anon_sym_DOLLAR, - ACTIONS(4827), 2, + ACTIONS(6470), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11478), 2, + ACTIONS(9645), 2, sym_test_operator, sym__special_character, - ACTIONS(11480), 3, + ACTIONS(9647), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2780), 9, + STATE(6067), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -265361,48 +253577,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [228590] = 20, - ACTIONS(71), 1, + [218375] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(8300), 1, + ACTIONS(5524), 1, + aux_sym_number_token1, + ACTIONS(5526), 1, + aux_sym_number_token2, + ACTIONS(5530), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5542), 1, + sym__brace_start, + ACTIONS(6454), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8302), 1, + ACTIONS(6456), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8304), 1, - anon_sym_DOLLAR, - ACTIONS(8306), 1, - sym__special_character, - ACTIONS(8308), 1, + ACTIONS(6460), 1, anon_sym_DQUOTE, - ACTIONS(8312), 1, - aux_sym_number_token1, - ACTIONS(8314), 1, - aux_sym_number_token2, - ACTIONS(8316), 1, + ACTIONS(6464), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8320), 1, + ACTIONS(6466), 1, anon_sym_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(6468), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8332), 1, - sym__brace_start, - ACTIONS(11518), 1, + ACTIONS(9643), 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(9649), 1, + sym__comment_word, + ACTIONS(10515), 1, + anon_sym_DOLLAR, + ACTIONS(6470), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11520), 2, + ACTIONS(9645), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9647), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1669), 9, + STATE(6067), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -265412,46 +253626,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [228661] = 18, - ACTIONS(3), 1, + [218442] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(4323), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4325), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4327), 1, + ACTIONS(2790), 1, anon_sym_DOLLAR, - ACTIONS(4331), 1, - anon_sym_DQUOTE, - ACTIONS(4335), 1, + ACTIONS(2796), 1, aux_sym_number_token1, - ACTIONS(4337), 1, + ACTIONS(2798), 1, aux_sym_number_token2, - ACTIONS(4339), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4341), 1, + ACTIONS(2802), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4343), 1, + ACTIONS(2814), 1, + sym__brace_start, + ACTIONS(9317), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9319), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9323), 1, + anon_sym_DQUOTE, + ACTIONS(9327), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9329), 1, anon_sym_BQUOTE, - ACTIONS(4345), 1, + ACTIONS(9331), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4351), 1, - sym__brace_start, - ACTIONS(11524), 1, + ACTIONS(10517), 1, sym_word, - ACTIONS(11530), 1, - sym__comment_word, - ACTIONS(4347), 2, + ACTIONS(10519), 1, + sym__special_character, + ACTIONS(10523), 1, + sym_test_operator, + STATE(2109), 1, + aux_sym__literal_repeat1, + STATE(2232), 1, + sym_concatenation, + ACTIONS(9333), 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(10521), 2, sym_raw_string, sym_ansi_c_string, - STATE(2521), 9, + STATE(1562), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -265461,48 +253677,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [228728] = 20, + [218513] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(8300), 1, + ACTIONS(9959), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8302), 1, + ACTIONS(9961), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8304), 1, - anon_sym_DOLLAR, - ACTIONS(8306), 1, - sym__special_character, - ACTIONS(8308), 1, + ACTIONS(9967), 1, anon_sym_DQUOTE, - ACTIONS(8312), 1, + ACTIONS(9971), 1, aux_sym_number_token1, - ACTIONS(8314), 1, + ACTIONS(9973), 1, aux_sym_number_token2, - ACTIONS(8316), 1, + ACTIONS(9975), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, + ACTIONS(9977), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8320), 1, + ACTIONS(9979), 1, anon_sym_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(9981), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8332), 1, + ACTIONS(9987), 1, sym__brace_start, - ACTIONS(11532), 1, + ACTIONS(10225), 1, + anon_sym_DOLLAR, + ACTIONS(10323), 1, + sym__special_character, + ACTIONS(10525), 1, sym_word, - ACTIONS(11536), 1, + ACTIONS(10529), 1, sym_test_operator, - STATE(1905), 1, + STATE(5814), 1, aux_sym__literal_repeat1, - STATE(2210), 1, + STATE(6015), 1, sym_concatenation, - ACTIONS(8324), 2, + ACTIONS(9983), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11534), 2, + ACTIONS(10527), 2, sym_raw_string, sym_ansi_c_string, - STATE(1676), 9, + STATE(5775), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -265512,97 +253728,101 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [228799] = 18, + [218584] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(4835), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4837), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4839), 1, + ACTIONS(10491), 1, + anon_sym_LPAREN, + ACTIONS(10493), 1, + aux_sym__c_word_token1, + ACTIONS(10495), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(10497), 1, anon_sym_DOLLAR, - ACTIONS(4843), 1, + ACTIONS(10499), 1, anon_sym_DQUOTE, - ACTIONS(4847), 1, + ACTIONS(10501), 1, aux_sym_number_token1, - ACTIONS(4849), 1, + ACTIONS(10503), 1, aux_sym_number_token2, - ACTIONS(4851), 1, + ACTIONS(10505), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4853), 1, + ACTIONS(10507), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4855), 1, + ACTIONS(10509), 1, anon_sym_BQUOTE, - ACTIONS(4857), 1, + ACTIONS(10511), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4863), 1, - sym__brace_start, - ACTIONS(11538), 1, - sym_word, - ACTIONS(11544), 1, - sym__comment_word, - 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, + STATE(2760), 1, + sym__c_binary_expression, + STATE(2765), 1, + sym__c_postfix_expression, + STATE(2780), 1, + sym__c_unary_expression, + STATE(3983), 1, + sym__c_terminator, + STATE(5826), 1, + sym__c_expression, + STATE(6105), 1, + sym__c_variable_assignment, + STATE(6827), 1, + sym__for_body, + ACTIONS(10487), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(10489), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2871), 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, - [228866] = 20, + [218659] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(1551), 1, + ACTIONS(3303), 1, anon_sym_DOLLAR, - ACTIONS(1557), 1, + ACTIONS(3309), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(3311), 1, aux_sym_number_token2, - ACTIONS(1563), 1, + ACTIONS(3315), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1575), 1, + ACTIONS(3325), 1, sym__brace_start, - ACTIONS(9974), 1, + ACTIONS(9581), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9976), 1, + ACTIONS(9583), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9978), 1, - sym__special_character, - ACTIONS(9980), 1, + ACTIONS(9587), 1, anon_sym_DQUOTE, - ACTIONS(9984), 1, + ACTIONS(9591), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9986), 1, + ACTIONS(9593), 1, anon_sym_BQUOTE, - ACTIONS(9988), 1, + ACTIONS(9595), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11546), 1, + ACTIONS(10439), 1, + sym__special_character, + ACTIONS(10531), 1, sym_word, - ACTIONS(11550), 1, + ACTIONS(10535), 1, sym_test_operator, - STATE(1463), 1, + STATE(4052), 1, aux_sym__literal_repeat1, - STATE(1628), 1, + STATE(4370), 1, sym_concatenation, - ACTIONS(9990), 2, + ACTIONS(9597), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11548), 2, + ACTIONS(10533), 2, sym_raw_string, sym_ansi_c_string, - STATE(1280), 9, + STATE(4318), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -265612,48 +253832,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [228937] = 20, + [218730] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(1551), 1, + ACTIONS(2790), 1, anon_sym_DOLLAR, - ACTIONS(1557), 1, + ACTIONS(2796), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(2798), 1, aux_sym_number_token2, - ACTIONS(1563), 1, + ACTIONS(2802), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1575), 1, + ACTIONS(2814), 1, sym__brace_start, - ACTIONS(9974), 1, + ACTIONS(9317), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9976), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9978), 1, - sym__special_character, - ACTIONS(9980), 1, + ACTIONS(9323), 1, anon_sym_DQUOTE, - ACTIONS(9984), 1, + ACTIONS(9327), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9986), 1, + ACTIONS(9329), 1, anon_sym_BQUOTE, - ACTIONS(9988), 1, + ACTIONS(9331), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11552), 1, + ACTIONS(10519), 1, + sym__special_character, + ACTIONS(10537), 1, sym_word, - ACTIONS(11556), 1, + ACTIONS(10541), 1, sym_test_operator, - STATE(1387), 1, + STATE(2121), 1, aux_sym__literal_repeat1, - STATE(1635), 1, + STATE(2242), 1, sym_concatenation, - ACTIONS(9990), 2, + ACTIONS(9333), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11554), 2, + ACTIONS(10539), 2, sym_raw_string, sym_ansi_c_string, - STATE(1282), 9, + STATE(1676), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -265663,46 +253883,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [229008] = 18, + [218801] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7936), 1, + ACTIONS(7299), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7938), 1, + ACTIONS(7301), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7940), 1, - anon_sym_DOLLAR, - ACTIONS(7944), 1, + ACTIONS(7307), 1, anon_sym_DQUOTE, - ACTIONS(7948), 1, + ACTIONS(7311), 1, aux_sym_number_token1, - ACTIONS(7950), 1, + ACTIONS(7313), 1, aux_sym_number_token2, - ACTIONS(7952), 1, + ACTIONS(7315), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7954), 1, + ACTIONS(7317), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7956), 1, + ACTIONS(7319), 1, anon_sym_BQUOTE, - ACTIONS(7958), 1, + ACTIONS(7321), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7968), 1, + ACTIONS(7331), 1, sym__brace_start, - ACTIONS(10076), 1, + ACTIONS(9651), 1, sym_word, - ACTIONS(10084), 1, + ACTIONS(9657), 1, sym__comment_word, - ACTIONS(7960), 2, + ACTIONS(10543), 1, + anon_sym_DOLLAR, + ACTIONS(7323), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10080), 2, + ACTIONS(9653), 2, sym_test_operator, sym__special_character, - ACTIONS(10082), 3, + ACTIONS(9655), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4271), 9, + STATE(2403), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -265712,46 +253932,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [229075] = 18, + [218868] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3129), 1, - aux_sym_number_token1, - ACTIONS(3131), 1, - aux_sym_number_token2, - ACTIONS(3135), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3145), 1, - sym__brace_start, - ACTIONS(10202), 1, - sym_word, - ACTIONS(10204), 1, + ACTIONS(7299), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10206), 1, + ACTIONS(7301), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10210), 1, + ACTIONS(7307), 1, anon_sym_DQUOTE, - ACTIONS(10214), 1, + ACTIONS(7311), 1, + aux_sym_number_token1, + ACTIONS(7313), 1, + aux_sym_number_token2, + ACTIONS(7315), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10216), 1, + ACTIONS(7317), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7319), 1, anon_sym_BQUOTE, - ACTIONS(10218), 1, + ACTIONS(7321), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10222), 1, + ACTIONS(7331), 1, + sym__brace_start, + ACTIONS(9651), 1, + sym_word, + ACTIONS(9657), 1, sym__comment_word, - ACTIONS(11558), 1, + ACTIONS(10545), 1, anon_sym_DOLLAR, - ACTIONS(10208), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10220), 2, + ACTIONS(7323), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10212), 3, + ACTIONS(9653), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9655), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4466), 9, + STATE(2403), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -265761,48 +253981,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [229142] = 20, + [218935] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(10318), 1, + ACTIONS(3303), 1, + anon_sym_DOLLAR, + ACTIONS(3309), 1, + aux_sym_number_token1, + ACTIONS(3311), 1, + aux_sym_number_token2, + ACTIONS(3315), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3325), 1, + sym__brace_start, + ACTIONS(9581), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10320), 1, + ACTIONS(9583), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10326), 1, + ACTIONS(9587), 1, anon_sym_DQUOTE, - ACTIONS(10330), 1, - aux_sym_number_token1, - ACTIONS(10332), 1, - aux_sym_number_token2, - ACTIONS(10334), 1, + ACTIONS(9591), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10336), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(10338), 1, + ACTIONS(9593), 1, anon_sym_BQUOTE, - ACTIONS(10340), 1, + ACTIONS(9595), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10346), 1, - sym__brace_start, - ACTIONS(10962), 1, - anon_sym_DOLLAR, - ACTIONS(10968), 1, + ACTIONS(10439), 1, sym__special_character, - ACTIONS(11560), 1, + ACTIONS(10547), 1, sym_word, - ACTIONS(11564), 1, + ACTIONS(10551), 1, sym_test_operator, - STATE(6117), 1, + STATE(4134), 1, aux_sym__literal_repeat1, - STATE(6359), 1, + STATE(4361), 1, sym_concatenation, - ACTIONS(10342), 2, + ACTIONS(9597), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11562), 2, + ACTIONS(10549), 2, sym_raw_string, sym_ansi_c_string, - STATE(6093), 9, + STATE(4208), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -265812,99 +254032,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [229213] = 22, + [219006] = 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(3343), 1, aux_sym_number_token1, - ACTIONS(10652), 1, + ACTIONS(3345), 1, aux_sym_number_token2, - ACTIONS(10654), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10656), 1, + ACTIONS(3349), 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(3359), 1, + sym__brace_start, + ACTIONS(9459), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5218), 1, + ACTIONS(9461), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5224), 1, + ACTIONS(9465), 1, anon_sym_DQUOTE, - ACTIONS(5228), 1, - aux_sym_number_token1, - ACTIONS(5230), 1, - aux_sym_number_token2, - ACTIONS(5232), 1, + ACTIONS(9469), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5234), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5236), 1, + ACTIONS(9471), 1, anon_sym_BQUOTE, - ACTIONS(5238), 1, + ACTIONS(9473), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5244), 1, - sym__brace_start, - ACTIONS(11500), 1, + ACTIONS(9857), 1, sym_word, - ACTIONS(11506), 1, + ACTIONS(9863), 1, sym__comment_word, - ACTIONS(11566), 1, + ACTIONS(10553), 1, anon_sym_DOLLAR, - ACTIONS(5240), 2, + ACTIONS(9475), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11502), 2, + ACTIONS(9859), 2, sym_test_operator, sym__special_character, - ACTIONS(11504), 3, + ACTIONS(9861), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5328), 9, + STATE(4358), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -265914,46 +254081,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [229355] = 18, + [219073] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5216), 1, + ACTIONS(3732), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5218), 1, + ACTIONS(3734), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5224), 1, + ACTIONS(3740), 1, anon_sym_DQUOTE, - ACTIONS(5228), 1, + ACTIONS(3744), 1, aux_sym_number_token1, - ACTIONS(5230), 1, + ACTIONS(3746), 1, aux_sym_number_token2, - ACTIONS(5232), 1, + ACTIONS(3748), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5234), 1, + ACTIONS(3750), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5236), 1, + ACTIONS(3752), 1, anon_sym_BQUOTE, - ACTIONS(5238), 1, + ACTIONS(3754), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5244), 1, + ACTIONS(3762), 1, sym__brace_start, - ACTIONS(11500), 1, + ACTIONS(9659), 1, sym_word, - ACTIONS(11506), 1, + ACTIONS(9665), 1, sym__comment_word, - ACTIONS(11568), 1, + ACTIONS(10555), 1, anon_sym_DOLLAR, - ACTIONS(5240), 2, + ACTIONS(3756), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11502), 2, + ACTIONS(9661), 2, sym_test_operator, sym__special_character, - ACTIONS(11504), 3, + ACTIONS(9663), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5328), 9, + STATE(2540), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -265963,46 +254130,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [229422] = 18, + [219140] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3129), 1, - aux_sym_number_token1, - ACTIONS(3131), 1, - aux_sym_number_token2, - ACTIONS(3135), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3145), 1, - sym__brace_start, - ACTIONS(10202), 1, - sym_word, - ACTIONS(10204), 1, + ACTIONS(3732), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10206), 1, + ACTIONS(3734), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10210), 1, + ACTIONS(3740), 1, anon_sym_DQUOTE, - ACTIONS(10214), 1, + ACTIONS(3744), 1, + aux_sym_number_token1, + ACTIONS(3746), 1, + aux_sym_number_token2, + ACTIONS(3748), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10216), 1, + ACTIONS(3750), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3752), 1, anon_sym_BQUOTE, - ACTIONS(10218), 1, + ACTIONS(3754), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10222), 1, + ACTIONS(3762), 1, + sym__brace_start, + ACTIONS(9659), 1, + sym_word, + ACTIONS(9665), 1, sym__comment_word, - ACTIONS(11570), 1, + ACTIONS(10557), 1, anon_sym_DOLLAR, - ACTIONS(10208), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10220), 2, + ACTIONS(3756), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10212), 3, + ACTIONS(9661), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9663), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4466), 9, + STATE(2540), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -266012,46 +254179,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [229489] = 18, + [219207] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8068), 1, + ACTIONS(3089), 1, + aux_sym_number_token1, + ACTIONS(3091), 1, + aux_sym_number_token2, + ACTIONS(3095), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3105), 1, + sym__brace_start, + ACTIONS(8841), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8070), 1, + ACTIONS(8843), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8072), 1, - anon_sym_DOLLAR, - ACTIONS(8076), 1, + ACTIONS(8847), 1, anon_sym_DQUOTE, - ACTIONS(8080), 1, - aux_sym_number_token1, - ACTIONS(8082), 1, - aux_sym_number_token2, - ACTIONS(8084), 1, + ACTIONS(8851), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8086), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8088), 1, + ACTIONS(8853), 1, anon_sym_BQUOTE, - ACTIONS(8090), 1, + ACTIONS(8855), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8100), 1, - sym__brace_start, - ACTIONS(10122), 1, + ACTIONS(9865), 1, sym_word, - ACTIONS(10130), 1, + ACTIONS(9871), 1, sym__comment_word, - ACTIONS(8092), 2, + ACTIONS(10559), 1, + anon_sym_DOLLAR, + ACTIONS(8857), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10126), 2, + ACTIONS(9867), 2, sym_test_operator, sym__special_character, - ACTIONS(10128), 3, + ACTIONS(9869), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5281), 9, + STATE(4303), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -266061,46 +254228,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [229556] = 18, + [219274] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4323), 1, + ACTIONS(3017), 1, + anon_sym_DOLLAR, + ACTIONS(3023), 1, + aux_sym_number_token1, + ACTIONS(3025), 1, + aux_sym_number_token2, + ACTIONS(3029), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3041), 1, + sym__brace_start, + ACTIONS(10397), 1, + sym_word, + ACTIONS(10399), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4325), 1, + ACTIONS(10401), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4331), 1, + ACTIONS(10407), 1, anon_sym_DQUOTE, - ACTIONS(4335), 1, - aux_sym_number_token1, - ACTIONS(4337), 1, - aux_sym_number_token2, - ACTIONS(4339), 1, + ACTIONS(10411), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4341), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4343), 1, + ACTIONS(10413), 1, anon_sym_BQUOTE, - ACTIONS(4345), 1, + ACTIONS(10415), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4351), 1, - sym__brace_start, - ACTIONS(11524), 1, - sym_word, - ACTIONS(11530), 1, + ACTIONS(10419), 1, sym__comment_word, - ACTIONS(11572), 1, - anon_sym_DOLLAR, - ACTIONS(4347), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(11526), 2, + ACTIONS(10405), 2, sym_test_operator, sym__special_character, - ACTIONS(11528), 3, + ACTIONS(10417), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10409), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2521), 9, + STATE(1598), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -266110,48 +254277,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [229623] = 20, + [219341] = 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(2790), 1, anon_sym_DOLLAR, - ACTIONS(8308), 1, - anon_sym_DQUOTE, - ACTIONS(8312), 1, + ACTIONS(2796), 1, aux_sym_number_token1, - ACTIONS(8314), 1, + ACTIONS(2798), 1, aux_sym_number_token2, - ACTIONS(8316), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, + ACTIONS(2802), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8320), 1, + ACTIONS(2814), 1, + sym__brace_start, + ACTIONS(9317), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9319), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9323), 1, + anon_sym_DQUOTE, + ACTIONS(9327), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9329), 1, anon_sym_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(9331), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8332), 1, - sym__brace_start, - ACTIONS(8344), 1, - sym__special_character, - ACTIONS(11574), 1, + ACTIONS(10561), 1, sym_word, - ACTIONS(11578), 1, + ACTIONS(10563), 1, + sym__special_character, + ACTIONS(10567), 1, sym_test_operator, - STATE(1834), 1, + STATE(2109), 1, aux_sym__literal_repeat1, - STATE(2055), 1, + STATE(2232), 1, sym_concatenation, - ACTIONS(8324), 2, + ACTIONS(9333), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11576), 2, + ACTIONS(10565), 2, sym_raw_string, sym_ansi_c_string, - STATE(1374), 9, + STATE(1967), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -266161,46 +254328,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [229694] = 18, + [219412] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4323), 1, + ACTIONS(8877), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4325), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4331), 1, + ACTIONS(8885), 1, anon_sym_DQUOTE, - ACTIONS(4335), 1, + ACTIONS(8889), 1, aux_sym_number_token1, - ACTIONS(4337), 1, + ACTIONS(8891), 1, aux_sym_number_token2, - ACTIONS(4339), 1, + ACTIONS(8893), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4341), 1, + ACTIONS(8895), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4343), 1, + ACTIONS(8897), 1, anon_sym_BQUOTE, - ACTIONS(4345), 1, + ACTIONS(8899), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4351), 1, + ACTIONS(8905), 1, sym__brace_start, - ACTIONS(11524), 1, + ACTIONS(9667), 1, sym_word, - ACTIONS(11530), 1, + ACTIONS(9673), 1, sym__comment_word, - ACTIONS(11580), 1, + ACTIONS(10569), 1, anon_sym_DOLLAR, - ACTIONS(4347), 2, + ACTIONS(8901), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11526), 2, + ACTIONS(9669), 2, sym_test_operator, sym__special_character, - ACTIONS(11528), 3, + ACTIONS(9671), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2521), 9, + STATE(5127), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -266210,46 +254377,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [229761] = 18, + [219479] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5091), 1, + ACTIONS(8877), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5093), 1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5099), 1, + ACTIONS(8885), 1, anon_sym_DQUOTE, - ACTIONS(5103), 1, + ACTIONS(8889), 1, aux_sym_number_token1, - ACTIONS(5105), 1, + ACTIONS(8891), 1, aux_sym_number_token2, - ACTIONS(5107), 1, + ACTIONS(8893), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5109), 1, + ACTIONS(8895), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5111), 1, + ACTIONS(8897), 1, anon_sym_BQUOTE, - ACTIONS(5113), 1, + ACTIONS(8899), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5119), 1, + ACTIONS(8905), 1, sym__brace_start, - ACTIONS(10086), 1, + ACTIONS(9667), 1, sym_word, - ACTIONS(10092), 1, + ACTIONS(9673), 1, sym__comment_word, - ACTIONS(11582), 1, + ACTIONS(10571), 1, anon_sym_DOLLAR, - ACTIONS(5115), 2, + ACTIONS(8901), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10088), 2, + ACTIONS(9669), 2, sym_test_operator, sym__special_character, - ACTIONS(10090), 3, + ACTIONS(9671), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5342), 9, + STATE(5127), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -266259,95 +254426,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [229828] = 18, - ACTIONS(3), 1, + [219546] = 20, + ACTIONS(71), 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(7197), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(7199), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, - anon_sym_DQUOTE, - ACTIONS(1121), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - ACTIONS(10480), 1, - sym_word, - ACTIONS(10486), 1, - sym__comment_word, - ACTIONS(11584), 1, + ACTIONS(7201), 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, - [229895] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7936), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7938), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7944), 1, + ACTIONS(7205), 1, anon_sym_DQUOTE, - ACTIONS(7948), 1, + ACTIONS(7209), 1, aux_sym_number_token1, - ACTIONS(7950), 1, + ACTIONS(7211), 1, aux_sym_number_token2, - ACTIONS(7952), 1, + ACTIONS(7213), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7954), 1, + ACTIONS(7215), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7956), 1, + ACTIONS(7217), 1, anon_sym_BQUOTE, - ACTIONS(7958), 1, + ACTIONS(7219), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7968), 1, + ACTIONS(7229), 1, sym__brace_start, - ACTIONS(10076), 1, + ACTIONS(7427), 1, + sym__special_character, + ACTIONS(10573), 1, sym_word, - ACTIONS(10084), 1, - sym__comment_word, - ACTIONS(11586), 1, - anon_sym_DOLLAR, - ACTIONS(7960), 2, + ACTIONS(10577), 1, + sym_test_operator, + STATE(1663), 1, + aux_sym__literal_repeat1, + STATE(1760), 1, + sym_concatenation, + ACTIONS(7221), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10080), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10082), 3, - sym__bare_dollar, + ACTIONS(10575), 2, sym_raw_string, sym_ansi_c_string, - STATE(4271), 9, + STATE(1511), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -266357,46 +254477,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [229962] = 18, - ACTIONS(3), 1, + [219617] = 20, + ACTIONS(71), 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, + ACTIONS(7197), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9876), 1, + ACTIONS(7199), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9880), 1, + ACTIONS(7201), 1, + anon_sym_DOLLAR, + ACTIONS(7205), 1, anon_sym_DQUOTE, - ACTIONS(9884), 1, + ACTIONS(7209), 1, + aux_sym_number_token1, + ACTIONS(7211), 1, + aux_sym_number_token2, + ACTIONS(7213), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9886), 1, + ACTIONS(7215), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7217), 1, anon_sym_BQUOTE, - ACTIONS(9888), 1, + ACTIONS(7219), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10470), 1, + ACTIONS(7229), 1, + sym__brace_start, + ACTIONS(7427), 1, + sym__special_character, + ACTIONS(10579), 1, sym_word, - ACTIONS(10478), 1, - sym__comment_word, - ACTIONS(9890), 2, + ACTIONS(10583), 1, + sym_test_operator, + STATE(1632), 1, + aux_sym__literal_repeat1, + STATE(1803), 1, + sym_concatenation, + ACTIONS(7221), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10474), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10476), 3, - sym__bare_dollar, + ACTIONS(10581), 2, sym_raw_string, sym_ansi_c_string, - STATE(3342), 9, + STATE(1516), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -266406,48 +254528,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [230029] = 20, + [219688] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(8300), 1, + ACTIONS(7197), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8302), 1, + ACTIONS(7199), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8304), 1, + ACTIONS(7201), 1, anon_sym_DOLLAR, - ACTIONS(8308), 1, + ACTIONS(7205), 1, anon_sym_DQUOTE, - ACTIONS(8312), 1, + ACTIONS(7209), 1, aux_sym_number_token1, - ACTIONS(8314), 1, + ACTIONS(7211), 1, aux_sym_number_token2, - ACTIONS(8316), 1, + ACTIONS(7213), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, + ACTIONS(7215), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8320), 1, + ACTIONS(7217), 1, anon_sym_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(7219), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8332), 1, + ACTIONS(7229), 1, sym__brace_start, - ACTIONS(8344), 1, + ACTIONS(7427), 1, sym__special_character, - ACTIONS(11588), 1, + ACTIONS(10585), 1, sym_word, - ACTIONS(11592), 1, + ACTIONS(10589), 1, sym_test_operator, - STATE(1905), 1, + STATE(1643), 1, aux_sym__literal_repeat1, - STATE(2210), 1, + STATE(1807), 1, sym_concatenation, - ACTIONS(8324), 2, + ACTIONS(7221), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11590), 2, + ACTIONS(10587), 2, sym_raw_string, sym_ansi_c_string, - STATE(1456), 9, + STATE(1520), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -266457,46 +254579,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [230100] = 18, - ACTIONS(3), 1, + [219759] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(4835), 1, + ACTIONS(7197), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4837), 1, + ACTIONS(7199), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4843), 1, + ACTIONS(7201), 1, + anon_sym_DOLLAR, + ACTIONS(7205), 1, anon_sym_DQUOTE, - ACTIONS(4847), 1, + ACTIONS(7209), 1, aux_sym_number_token1, - ACTIONS(4849), 1, + ACTIONS(7211), 1, aux_sym_number_token2, - ACTIONS(4851), 1, + ACTIONS(7213), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4853), 1, + ACTIONS(7215), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4855), 1, + ACTIONS(7217), 1, anon_sym_BQUOTE, - ACTIONS(4857), 1, + ACTIONS(7219), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4863), 1, + ACTIONS(7229), 1, sym__brace_start, - ACTIONS(11538), 1, + ACTIONS(7427), 1, + sym__special_character, + ACTIONS(10591), 1, sym_word, - ACTIONS(11544), 1, - sym__comment_word, - ACTIONS(11594), 1, - anon_sym_DOLLAR, - ACTIONS(4859), 2, + ACTIONS(10595), 1, + sym_test_operator, + STATE(1657), 1, + aux_sym__literal_repeat1, + STATE(1808), 1, + sym_concatenation, + ACTIONS(7221), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11540), 2, - sym_test_operator, - sym__special_character, - ACTIONS(11542), 3, - sym__bare_dollar, + ACTIONS(10593), 2, sym_raw_string, sym_ansi_c_string, - STATE(5179), 9, + STATE(1522), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -266506,46 +254630,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [230167] = 18, - ACTIONS(3), 1, + [219830] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(4835), 1, + ACTIONS(1555), 1, + anon_sym_DOLLAR, + ACTIONS(1561), 1, + aux_sym_number_token1, + ACTIONS(1563), 1, + aux_sym_number_token2, + ACTIONS(1567), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1579), 1, + sym__brace_start, + ACTIONS(8803), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4837), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4843), 1, + ACTIONS(8809), 1, anon_sym_DQUOTE, - ACTIONS(4847), 1, - aux_sym_number_token1, - ACTIONS(4849), 1, - aux_sym_number_token2, - ACTIONS(4851), 1, + ACTIONS(8813), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4853), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4855), 1, + ACTIONS(8815), 1, anon_sym_BQUOTE, - ACTIONS(4857), 1, + ACTIONS(8817), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4863), 1, - sym__brace_start, - ACTIONS(11538), 1, + ACTIONS(8827), 1, + sym__special_character, + ACTIONS(10597), 1, sym_word, - ACTIONS(11544), 1, - sym__comment_word, - ACTIONS(11596), 1, - anon_sym_DOLLAR, - ACTIONS(4859), 2, + ACTIONS(10601), 1, + sym_test_operator, + STATE(1222), 1, + aux_sym__literal_repeat1, + STATE(1372), 1, + sym_concatenation, + ACTIONS(8819), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11540), 2, - sym_test_operator, - sym__special_character, - ACTIONS(11542), 3, - sym__bare_dollar, + ACTIONS(10599), 2, sym_raw_string, sym_ansi_c_string, - STATE(5179), 9, + STATE(971), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -266555,46 +254681,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [230234] = 18, - ACTIONS(3), 1, + [219901] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(1460), 1, + ACTIONS(1555), 1, + anon_sym_DOLLAR, + ACTIONS(1561), 1, aux_sym_number_token1, - ACTIONS(1462), 1, + ACTIONS(1563), 1, aux_sym_number_token2, - ACTIONS(1466), 1, + ACTIONS(1567), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1478), 1, + ACTIONS(1579), 1, sym__brace_start, - ACTIONS(9648), 1, + ACTIONS(8803), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9650), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9654), 1, + ACTIONS(8807), 1, + sym__special_character, + ACTIONS(8809), 1, anon_sym_DQUOTE, - ACTIONS(9658), 1, + ACTIONS(8813), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9660), 1, + ACTIONS(8815), 1, anon_sym_BQUOTE, - ACTIONS(9662), 1, + ACTIONS(8817), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10936), 1, + ACTIONS(10603), 1, sym_word, - ACTIONS(10942), 1, - sym__comment_word, - ACTIONS(11598), 1, - anon_sym_DOLLAR, - ACTIONS(9664), 2, + ACTIONS(10607), 1, + sym_test_operator, + STATE(1222), 1, + aux_sym__literal_repeat1, + STATE(1372), 1, + sym_concatenation, + ACTIONS(8819), 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(10605), 2, sym_raw_string, sym_ansi_c_string, - STATE(1249), 9, + STATE(1189), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -266604,46 +254732,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [230301] = 18, - ACTIONS(3), 1, + [219972] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(5767), 1, + ACTIONS(1555), 1, anon_sym_DOLLAR, - ACTIONS(5773), 1, + ACTIONS(1561), 1, aux_sym_number_token1, - ACTIONS(5775), 1, + ACTIONS(1563), 1, aux_sym_number_token2, - ACTIONS(5779), 1, + ACTIONS(1567), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5789), 1, + ACTIONS(1579), 1, sym__brace_start, - ACTIONS(10600), 1, - sym_word, - ACTIONS(10602), 1, + ACTIONS(8803), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10604), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10610), 1, + ACTIONS(8807), 1, + sym__special_character, + ACTIONS(8809), 1, anon_sym_DQUOTE, - ACTIONS(10614), 1, + ACTIONS(8813), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10616), 1, + ACTIONS(8815), 1, anon_sym_BQUOTE, - ACTIONS(10618), 1, + ACTIONS(8817), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10622), 1, - sym__comment_word, - ACTIONS(10608), 2, + ACTIONS(10609), 1, + sym_word, + ACTIONS(10613), 1, sym_test_operator, - sym__special_character, - ACTIONS(10620), 2, + STATE(1224), 1, + aux_sym__literal_repeat1, + STATE(1380), 1, + sym_concatenation, + ACTIONS(8819), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10612), 3, - sym__bare_dollar, + ACTIONS(10611), 2, sym_raw_string, sym_ansi_c_string, - STATE(5559), 9, + STATE(1191), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -266653,46 +254783,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [230368] = 18, - ACTIONS(3), 1, + [220043] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(2546), 1, - aux_sym_number_token1, - ACTIONS(2548), 1, - aux_sym_number_token2, - ACTIONS(2552), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2564), 1, - sym__brace_start, - ACTIONS(10366), 1, - sym_word, - ACTIONS(10368), 1, + ACTIONS(9959), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10370), 1, + ACTIONS(9961), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10374), 1, + ACTIONS(9967), 1, anon_sym_DQUOTE, - ACTIONS(10378), 1, + ACTIONS(9971), 1, + aux_sym_number_token1, + ACTIONS(9973), 1, + aux_sym_number_token2, + ACTIONS(9975), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10380), 1, + ACTIONS(9977), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9979), 1, anon_sym_BQUOTE, - ACTIONS(10382), 1, + ACTIONS(9981), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10386), 1, - sym__comment_word, - ACTIONS(11600), 1, + ACTIONS(9987), 1, + sym__brace_start, + ACTIONS(10225), 1, anon_sym_DOLLAR, - ACTIONS(10372), 2, - sym_test_operator, + ACTIONS(10323), 1, sym__special_character, - ACTIONS(10384), 2, + ACTIONS(10615), 1, + sym_word, + ACTIONS(10619), 1, + sym_test_operator, + STATE(5795), 1, + aux_sym__literal_repeat1, + STATE(6031), 1, + sym_concatenation, + ACTIONS(9983), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10376), 3, - sym__bare_dollar, + ACTIONS(10617), 2, sym_raw_string, sym_ansi_c_string, - STATE(1498), 9, + STATE(5777), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -266702,46 +254834,101 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [230435] = 18, + [220114] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(445), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(447), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(449), 1, + ACTIONS(10491), 1, + anon_sym_LPAREN, + ACTIONS(10493), 1, + aux_sym__c_word_token1, + ACTIONS(10495), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(10497), 1, anon_sym_DOLLAR, - ACTIONS(453), 1, + ACTIONS(10499), 1, anon_sym_DQUOTE, - ACTIONS(457), 1, + ACTIONS(10501), 1, aux_sym_number_token1, - ACTIONS(459), 1, + ACTIONS(10503), 1, aux_sym_number_token2, - ACTIONS(461), 1, + ACTIONS(10505), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(463), 1, + ACTIONS(10507), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(465), 1, + ACTIONS(10509), 1, anon_sym_BQUOTE, - ACTIONS(467), 1, + ACTIONS(10511), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(477), 1, + STATE(2760), 1, + sym__c_binary_expression, + STATE(2765), 1, + sym__c_postfix_expression, + STATE(2780), 1, + sym__c_unary_expression, + STATE(3983), 1, + sym__c_terminator, + STATE(5826), 1, + sym__c_expression, + STATE(6105), 1, + sym__c_variable_assignment, + STATE(7017), 1, + sym__for_body, + ACTIONS(10487), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(10489), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2871), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [220189] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(2790), 1, + anon_sym_DOLLAR, + ACTIONS(2796), 1, + aux_sym_number_token1, + ACTIONS(2798), 1, + aux_sym_number_token2, + ACTIONS(2802), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2814), 1, sym__brace_start, - ACTIONS(11488), 1, + ACTIONS(9317), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9319), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9323), 1, + anon_sym_DQUOTE, + ACTIONS(9327), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9329), 1, + anon_sym_BQUOTE, + ACTIONS(9331), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10563), 1, + sym__special_character, + ACTIONS(10621), 1, sym_word, - ACTIONS(11496), 1, - sym__comment_word, - ACTIONS(469), 2, + ACTIONS(10625), 1, + sym_test_operator, + STATE(2121), 1, + aux_sym__literal_repeat1, + STATE(2242), 1, + sym_concatenation, + ACTIONS(9333), 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(10623), 2, sym_raw_string, sym_ansi_c_string, - STATE(853), 9, + STATE(1969), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -266751,46 +254938,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [230502] = 18, + [220260] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7936), 1, + ACTIONS(187), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7938), 1, + ACTIONS(189), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7944), 1, + ACTIONS(195), 1, anon_sym_DQUOTE, - ACTIONS(7948), 1, + ACTIONS(199), 1, aux_sym_number_token1, - ACTIONS(7950), 1, + ACTIONS(201), 1, aux_sym_number_token2, - ACTIONS(7952), 1, + ACTIONS(203), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7954), 1, + ACTIONS(205), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7956), 1, + ACTIONS(207), 1, anon_sym_BQUOTE, - ACTIONS(7958), 1, + ACTIONS(209), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7968), 1, + ACTIONS(219), 1, sym__brace_start, - ACTIONS(10076), 1, + ACTIONS(10337), 1, sym_word, - ACTIONS(10084), 1, + ACTIONS(10343), 1, sym__comment_word, - ACTIONS(11602), 1, + ACTIONS(10627), 1, anon_sym_DOLLAR, - ACTIONS(7960), 2, + ACTIONS(211), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10080), 2, + ACTIONS(10339), 2, sym_test_operator, sym__special_character, - ACTIONS(10082), 3, + ACTIONS(10341), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4271), 9, + STATE(475), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -266800,48 +254987,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [230569] = 20, - ACTIONS(71), 1, + [220327] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(8300), 1, + ACTIONS(4197), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8302), 1, + ACTIONS(4199), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8304), 1, - anon_sym_DOLLAR, - ACTIONS(8308), 1, + ACTIONS(4205), 1, anon_sym_DQUOTE, - ACTIONS(8312), 1, + ACTIONS(4209), 1, aux_sym_number_token1, - ACTIONS(8314), 1, + ACTIONS(4211), 1, aux_sym_number_token2, - ACTIONS(8316), 1, + ACTIONS(4213), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, + ACTIONS(4215), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8320), 1, + ACTIONS(4217), 1, anon_sym_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(4219), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8332), 1, + ACTIONS(4225), 1, sym__brace_start, - ACTIONS(8352), 1, - sym__special_character, - ACTIONS(11604), 1, + ACTIONS(9675), 1, sym_word, - ACTIONS(11608), 1, - sym_test_operator, - STATE(1834), 1, - aux_sym__literal_repeat1, - STATE(2055), 1, - sym_concatenation, - ACTIONS(8324), 2, + ACTIONS(9681), 1, + sym__comment_word, + ACTIONS(10629), 1, + anon_sym_DOLLAR, + ACTIONS(4221), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11606), 2, + ACTIONS(9677), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9679), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2292), 9, + STATE(4943), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -266851,46 +255036,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [230640] = 18, + [220394] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5011), 1, + ACTIONS(4197), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5013), 1, + ACTIONS(4199), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5015), 1, - anon_sym_DOLLAR, - ACTIONS(5019), 1, + ACTIONS(4205), 1, anon_sym_DQUOTE, - ACTIONS(5023), 1, + ACTIONS(4209), 1, aux_sym_number_token1, - ACTIONS(5025), 1, + ACTIONS(4211), 1, aux_sym_number_token2, - ACTIONS(5027), 1, + ACTIONS(4213), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5029), 1, + ACTIONS(4215), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5031), 1, + ACTIONS(4217), 1, anon_sym_BQUOTE, - ACTIONS(5033), 1, + ACTIONS(4219), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5039), 1, + ACTIONS(4225), 1, sym__brace_start, - ACTIONS(10356), 1, + ACTIONS(9675), 1, sym_word, - ACTIONS(10364), 1, + ACTIONS(9681), 1, sym__comment_word, - ACTIONS(5035), 2, + ACTIONS(10631), 1, + anon_sym_DOLLAR, + ACTIONS(4221), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10360), 2, + ACTIONS(9677), 2, sym_test_operator, sym__special_character, - ACTIONS(10362), 3, + ACTIONS(9679), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2834), 9, + STATE(4943), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -266900,48 +255085,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [230707] = 20, + [220461] = 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(1555), 1, anon_sym_DOLLAR, - ACTIONS(8308), 1, - anon_sym_DQUOTE, - ACTIONS(8312), 1, + ACTIONS(1561), 1, aux_sym_number_token1, - ACTIONS(8314), 1, + ACTIONS(1563), 1, aux_sym_number_token2, - ACTIONS(8316), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, + ACTIONS(1567), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8320), 1, + ACTIONS(1579), 1, + sym__brace_start, + ACTIONS(8803), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8805), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8809), 1, + anon_sym_DQUOTE, + ACTIONS(8813), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8815), 1, anon_sym_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(8817), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8332), 1, - sym__brace_start, - ACTIONS(8352), 1, + ACTIONS(8827), 1, sym__special_character, - ACTIONS(11610), 1, + ACTIONS(10633), 1, sym_word, - ACTIONS(11614), 1, + ACTIONS(10637), 1, sym_test_operator, - STATE(1905), 1, + STATE(1224), 1, aux_sym__literal_repeat1, - STATE(2210), 1, + STATE(1380), 1, sym_concatenation, - ACTIONS(8324), 2, + ACTIONS(8819), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11612), 2, + ACTIONS(10635), 2, sym_raw_string, sym_ansi_c_string, - STATE(2295), 9, + STATE(973), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -266951,46 +255136,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [230778] = 18, + [220532] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2546), 1, - aux_sym_number_token1, - ACTIONS(2548), 1, - aux_sym_number_token2, - ACTIONS(2552), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2564), 1, - sym__brace_start, - ACTIONS(10366), 1, - sym_word, - ACTIONS(10368), 1, + ACTIONS(6937), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10370), 1, + ACTIONS(6939), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10374), 1, + ACTIONS(6945), 1, anon_sym_DQUOTE, - ACTIONS(10378), 1, + ACTIONS(6949), 1, + aux_sym_number_token1, + ACTIONS(6951), 1, + aux_sym_number_token2, + ACTIONS(6953), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10380), 1, + ACTIONS(6955), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6957), 1, anon_sym_BQUOTE, - ACTIONS(10382), 1, + ACTIONS(6959), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10386), 1, + ACTIONS(6969), 1, + sym__brace_start, + ACTIONS(9601), 1, + sym_word, + ACTIONS(9609), 1, sym__comment_word, - ACTIONS(11616), 1, + ACTIONS(10639), 1, anon_sym_DOLLAR, - ACTIONS(10372), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10384), 2, + ACTIONS(6961), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10376), 3, + ACTIONS(9605), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9607), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1498), 9, + STATE(4129), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -267000,46 +255185,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [230845] = 18, + [220599] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5319), 1, + ACTIONS(6937), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5321), 1, + ACTIONS(6939), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5323), 1, - anon_sym_DOLLAR, - ACTIONS(5327), 1, + ACTIONS(6945), 1, anon_sym_DQUOTE, - ACTIONS(5331), 1, + ACTIONS(6949), 1, aux_sym_number_token1, - ACTIONS(5333), 1, + ACTIONS(6951), 1, aux_sym_number_token2, - ACTIONS(5335), 1, + ACTIONS(6953), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5337), 1, + ACTIONS(6955), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5339), 1, + ACTIONS(6957), 1, anon_sym_BQUOTE, - ACTIONS(5341), 1, + ACTIONS(6959), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5347), 1, + ACTIONS(6969), 1, sym__brace_start, - ACTIONS(11250), 1, + ACTIONS(9601), 1, sym_word, - ACTIONS(11258), 1, + ACTIONS(9609), 1, sym__comment_word, - ACTIONS(5343), 2, + ACTIONS(10641), 1, + anon_sym_DOLLAR, + ACTIONS(6961), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11254), 2, + ACTIONS(9605), 2, sym_test_operator, sym__special_character, - ACTIONS(11256), 3, + ACTIONS(9607), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5420), 9, + STATE(4129), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -267049,48 +255234,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [230912] = 20, - ACTIONS(71), 1, + [220666] = 18, + 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, + ACTIONS(6937), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9976), 1, + ACTIONS(6939), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9980), 1, + ACTIONS(6945), 1, anon_sym_DQUOTE, - ACTIONS(9984), 1, + ACTIONS(6949), 1, + aux_sym_number_token1, + ACTIONS(6951), 1, + aux_sym_number_token2, + ACTIONS(6953), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9986), 1, + ACTIONS(6955), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6957), 1, anon_sym_BQUOTE, - ACTIONS(9988), 1, + ACTIONS(6959), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10034), 1, - sym__special_character, - ACTIONS(11618), 1, + ACTIONS(6969), 1, + sym__brace_start, + ACTIONS(9601), 1, sym_word, - ACTIONS(11622), 1, - sym_test_operator, - STATE(1463), 1, - aux_sym__literal_repeat1, - STATE(1628), 1, - sym_concatenation, - ACTIONS(9990), 2, + ACTIONS(9609), 1, + sym__comment_word, + ACTIONS(10643), 1, + anon_sym_DOLLAR, + ACTIONS(6961), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11620), 2, + ACTIONS(9605), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9607), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1899), 9, + STATE(4129), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -267100,48 +255283,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [230983] = 20, - ACTIONS(71), 1, + [220733] = 18, + 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, + ACTIONS(187), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9976), 1, + ACTIONS(189), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9980), 1, + ACTIONS(195), 1, anon_sym_DQUOTE, - ACTIONS(9984), 1, + ACTIONS(199), 1, + aux_sym_number_token1, + ACTIONS(201), 1, + aux_sym_number_token2, + ACTIONS(203), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9986), 1, + ACTIONS(205), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(207), 1, anon_sym_BQUOTE, - ACTIONS(9988), 1, + ACTIONS(209), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10034), 1, - sym__special_character, - ACTIONS(11624), 1, + ACTIONS(219), 1, + sym__brace_start, + ACTIONS(10337), 1, sym_word, - ACTIONS(11628), 1, - sym_test_operator, - STATE(1387), 1, - aux_sym__literal_repeat1, - STATE(1635), 1, - sym_concatenation, - ACTIONS(9990), 2, + ACTIONS(10343), 1, + sym__comment_word, + ACTIONS(10645), 1, + anon_sym_DOLLAR, + ACTIONS(211), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11626), 2, + ACTIONS(10339), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10341), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1901), 9, + STATE(475), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -267151,48 +255332,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [231054] = 20, + [220800] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(10318), 1, + ACTIONS(7197), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10320), 1, + ACTIONS(7199), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10326), 1, + ACTIONS(7201), 1, + anon_sym_DOLLAR, + ACTIONS(7205), 1, anon_sym_DQUOTE, - ACTIONS(10330), 1, + ACTIONS(7209), 1, aux_sym_number_token1, - ACTIONS(10332), 1, + ACTIONS(7211), 1, aux_sym_number_token2, - ACTIONS(10334), 1, + ACTIONS(7213), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10336), 1, + ACTIONS(7215), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10338), 1, + ACTIONS(7217), 1, anon_sym_BQUOTE, - ACTIONS(10340), 1, + ACTIONS(7219), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10346), 1, + ACTIONS(7229), 1, sym__brace_start, - ACTIONS(10962), 1, - anon_sym_DOLLAR, - ACTIONS(10968), 1, + ACTIONS(7411), 1, sym__special_character, - ACTIONS(11630), 1, + ACTIONS(10647), 1, sym_word, - ACTIONS(11634), 1, + ACTIONS(10651), 1, sym_test_operator, - STATE(6133), 1, + STATE(1663), 1, aux_sym__literal_repeat1, - STATE(6373), 1, + STATE(1760), 1, sym_concatenation, - ACTIONS(10342), 2, + ACTIONS(7221), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11632), 2, + ACTIONS(10649), 2, sym_raw_string, sym_ansi_c_string, - STATE(6106), 9, + STATE(2146), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -267202,99 +255383,99 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [231125] = 22, - ACTIONS(3), 1, + [220871] = 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(7197), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7199), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7201), 1, anon_sym_DOLLAR, - ACTIONS(10648), 1, + ACTIONS(7205), 1, anon_sym_DQUOTE, - ACTIONS(10650), 1, + ACTIONS(7209), 1, aux_sym_number_token1, - ACTIONS(10652), 1, + ACTIONS(7211), 1, aux_sym_number_token2, - ACTIONS(10654), 1, + ACTIONS(7213), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10656), 1, + ACTIONS(7215), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10658), 1, + ACTIONS(7217), 1, anon_sym_BQUOTE, - ACTIONS(10660), 1, + ACTIONS(7219), 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(6861), 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(7229), 1, + sym__brace_start, + ACTIONS(7411), 1, + sym__special_character, + ACTIONS(10653), 1, + sym_word, + ACTIONS(10657), 1, + sym_test_operator, + STATE(1632), 1, + aux_sym__literal_repeat1, + STATE(1803), 1, + sym_concatenation, + ACTIONS(7221), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10655), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2151), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [231200] = 18, - ACTIONS(3), 1, + sym_process_substitution, + [220942] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(7936), 1, + ACTIONS(7197), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7938), 1, + ACTIONS(7199), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7944), 1, + ACTIONS(7201), 1, + anon_sym_DOLLAR, + ACTIONS(7205), 1, anon_sym_DQUOTE, - ACTIONS(7948), 1, + ACTIONS(7209), 1, aux_sym_number_token1, - ACTIONS(7950), 1, + ACTIONS(7211), 1, aux_sym_number_token2, - ACTIONS(7952), 1, + ACTIONS(7213), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7954), 1, + ACTIONS(7215), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7956), 1, + ACTIONS(7217), 1, anon_sym_BQUOTE, - ACTIONS(7958), 1, + ACTIONS(7219), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7968), 1, + ACTIONS(7229), 1, sym__brace_start, - ACTIONS(10076), 1, + ACTIONS(7411), 1, + sym__special_character, + ACTIONS(10659), 1, sym_word, - ACTIONS(10084), 1, - sym__comment_word, - ACTIONS(11636), 1, - anon_sym_DOLLAR, - ACTIONS(7960), 2, + ACTIONS(10663), 1, + sym_test_operator, + STATE(1643), 1, + aux_sym__literal_repeat1, + STATE(1807), 1, + sym_concatenation, + ACTIONS(7221), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10080), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10082), 3, - sym__bare_dollar, + ACTIONS(10661), 2, sym_raw_string, sym_ansi_c_string, - STATE(4271), 9, + STATE(2154), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -267304,46 +255485,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [231267] = 18, - ACTIONS(3), 1, + [221013] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(4538), 1, + ACTIONS(7197), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4540), 1, + ACTIONS(7199), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4542), 1, + ACTIONS(7201), 1, anon_sym_DOLLAR, - ACTIONS(4546), 1, + ACTIONS(7205), 1, anon_sym_DQUOTE, - ACTIONS(4550), 1, + ACTIONS(7209), 1, aux_sym_number_token1, - ACTIONS(4552), 1, + ACTIONS(7211), 1, aux_sym_number_token2, - ACTIONS(4554), 1, + ACTIONS(7213), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4556), 1, + ACTIONS(7215), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4558), 1, + ACTIONS(7217), 1, anon_sym_BQUOTE, - ACTIONS(4560), 1, + ACTIONS(7219), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4566), 1, + ACTIONS(7229), 1, sym__brace_start, - ACTIONS(10388), 1, + ACTIONS(7411), 1, + sym__special_character, + ACTIONS(10665), 1, sym_word, - ACTIONS(10396), 1, - sym__comment_word, - ACTIONS(4562), 2, + ACTIONS(10669), 1, + sym_test_operator, + STATE(1657), 1, + aux_sym__literal_repeat1, + STATE(1808), 1, + sym_concatenation, + ACTIONS(7221), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10392), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10394), 3, - sym__bare_dollar, + ACTIONS(10667), 2, sym_raw_string, sym_ansi_c_string, - STATE(2580), 9, + STATE(2156), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -267353,46 +255536,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [231334] = 18, + [221084] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(262), 1, + ACTIONS(3089), 1, aux_sym_number_token1, - ACTIONS(264), 1, + ACTIONS(3091), 1, aux_sym_number_token2, - ACTIONS(268), 1, + ACTIONS(3095), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, + ACTIONS(3105), 1, sym__brace_start, - ACTIONS(1109), 1, + ACTIONS(8841), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(8843), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(8847), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(8851), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, + ACTIONS(8853), 1, anon_sym_BQUOTE, - ACTIONS(10480), 1, + ACTIONS(8855), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9865), 1, sym_word, - ACTIONS(10486), 1, + ACTIONS(9871), 1, sym__comment_word, - ACTIONS(11638), 1, + ACTIONS(10671), 1, anon_sym_DOLLAR, - ACTIONS(1125), 2, + ACTIONS(8857), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10482), 2, + ACTIONS(9867), 2, sym_test_operator, sym__special_character, - ACTIONS(10484), 3, + ACTIONS(9869), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2224), 9, + STATE(4303), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -267402,46 +255585,99 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [231401] = 18, - ACTIONS(3), 1, + [221151] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(4064), 1, + ACTIONS(1555), 1, + anon_sym_DOLLAR, + ACTIONS(1561), 1, + aux_sym_number_token1, + ACTIONS(1563), 1, + aux_sym_number_token2, + ACTIONS(1567), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1579), 1, + sym__brace_start, + ACTIONS(8803), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4066), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4072), 1, + ACTIONS(8809), 1, anon_sym_DQUOTE, - ACTIONS(4076), 1, + ACTIONS(8813), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8815), 1, + anon_sym_BQUOTE, + ACTIONS(8817), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8835), 1, + sym__special_character, + ACTIONS(10673), 1, + sym_word, + ACTIONS(10677), 1, + sym_test_operator, + STATE(1222), 1, + aux_sym__literal_repeat1, + STATE(1372), 1, + sym_concatenation, + ACTIONS(8819), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10675), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1699), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [221222] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1555), 1, + anon_sym_DOLLAR, + ACTIONS(1561), 1, aux_sym_number_token1, - ACTIONS(4078), 1, + ACTIONS(1563), 1, aux_sym_number_token2, - ACTIONS(4080), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4082), 1, + ACTIONS(1567), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4084), 1, + ACTIONS(1579), 1, + sym__brace_start, + ACTIONS(8803), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8805), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8809), 1, + anon_sym_DQUOTE, + ACTIONS(8813), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8815), 1, anon_sym_BQUOTE, - ACTIONS(4086), 1, + ACTIONS(8817), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4096), 1, - sym__brace_start, - ACTIONS(10174), 1, + ACTIONS(8835), 1, + sym__special_character, + ACTIONS(10679), 1, sym_word, - ACTIONS(10182), 1, - sym__comment_word, - ACTIONS(11640), 1, - anon_sym_DOLLAR, - ACTIONS(4088), 2, + ACTIONS(10683), 1, + sym_test_operator, + STATE(1224), 1, + aux_sym__literal_repeat1, + STATE(1380), 1, + sym_concatenation, + ACTIONS(8819), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10178), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10180), 3, - sym__bare_dollar, + ACTIONS(10681), 2, sym_raw_string, sym_ansi_c_string, - STATE(2446), 9, + STATE(1701), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -267451,48 +255687,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [231468] = 20, + [221293] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(5091), 1, + ACTIONS(9959), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5093), 1, + ACTIONS(9961), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5095), 1, - anon_sym_DOLLAR, - ACTIONS(5097), 1, - sym__special_character, - ACTIONS(5099), 1, + ACTIONS(9967), 1, anon_sym_DQUOTE, - ACTIONS(5103), 1, + ACTIONS(9971), 1, aux_sym_number_token1, - ACTIONS(5105), 1, + ACTIONS(9973), 1, aux_sym_number_token2, - ACTIONS(5107), 1, + ACTIONS(9975), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5109), 1, + ACTIONS(9977), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5111), 1, + ACTIONS(9979), 1, anon_sym_BQUOTE, - ACTIONS(5113), 1, + ACTIONS(9981), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5119), 1, + ACTIONS(9987), 1, sym__brace_start, - ACTIONS(11642), 1, + ACTIONS(10225), 1, + anon_sym_DOLLAR, + ACTIONS(10323), 1, + sym__special_character, + ACTIONS(10685), 1, sym_word, - ACTIONS(11646), 1, + ACTIONS(10689), 1, sym_test_operator, - STATE(5299), 1, + STATE(5789), 1, aux_sym__literal_repeat1, - STATE(5521), 1, + STATE(5987), 1, sym_concatenation, - ACTIONS(5115), 2, + ACTIONS(9983), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11644), 2, + ACTIONS(10687), 2, sym_raw_string, sym_ansi_c_string, - STATE(5197), 9, + STATE(5776), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -267502,636 +255738,52 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [231539] = 6, - 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(2158), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 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, - [231581] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11648), 1, - aux_sym_concatenation_token1, - ACTIONS(11650), 1, - sym__concat, - STATE(4239), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1225), 2, - sym_file_descriptor, - 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_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - 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, - [231623] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11338), 1, - aux_sym_concatenation_token1, - ACTIONS(11340), 1, - sym__concat, - STATE(4162), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4309), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 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, - [231665] = 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, - sym_file_descriptor, - sym_variable_name, - aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 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, - [231707] = 6, - 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, - sym_file_descriptor, - sym_variable_name, - aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 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, - [231749] = 6, - 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, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 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, - [231791] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11660), 1, - sym_variable_name, - STATE(6669), 1, - sym_subscript, - ACTIONS(11658), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(4139), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(11656), 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, - [231833] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4296), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11667), 1, - anon_sym_LT_LT_LT, - ACTIONS(11669), 1, - sym_file_descriptor, - STATE(4950), 1, - sym_herestring_redirect, - 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, - [231889] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11679), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11681), 1, - anon_sym_LT_LT_LT, - ACTIONS(11684), 1, - sym_file_descriptor, - ACTIONS(11676), 2, - 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(11673), 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), 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, - [231935] = 6, - 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, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 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, - [231977] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11689), 1, - aux_sym_concatenation_token1, - ACTIONS(11692), 1, - sym__concat, - STATE(4143), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 3, - sym_file_descriptor, - sym_variable_name, - aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 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, - [232019] = 6, - 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, - sym_file_descriptor, - sym_variable_name, - 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_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_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, - [232061] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11699), 1, - aux_sym_concatenation_token1, - ACTIONS(11702), 1, - sym__concat, - STATE(4145), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [232103] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11667), 1, - anon_sym_LT_LT_LT, - STATE(4950), 1, - sym_herestring_redirect, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4159), 2, - 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, - 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, - [232147] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11338), 1, - aux_sym_concatenation_token1, - ACTIONS(11340), 1, - sym__concat, - STATE(4162), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5689), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 23, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [232189] = 6, - 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, - sym_file_descriptor, - sym_variable_name, - aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 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, - [232231] = 21, + [221364] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(10640), 1, + ACTIONS(10491), 1, anon_sym_LPAREN, - ACTIONS(10642), 1, + ACTIONS(10493), 1, aux_sym__c_word_token1, - ACTIONS(10646), 1, + ACTIONS(10495), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(10497), 1, anon_sym_DOLLAR, - ACTIONS(10648), 1, + ACTIONS(10499), 1, anon_sym_DQUOTE, - ACTIONS(10650), 1, + ACTIONS(10501), 1, aux_sym_number_token1, - ACTIONS(10652), 1, + ACTIONS(10503), 1, aux_sym_number_token2, - ACTIONS(10654), 1, + ACTIONS(10505), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10656), 1, + ACTIONS(10507), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10658), 1, + ACTIONS(10509), 1, anon_sym_BQUOTE, - ACTIONS(10660), 1, + ACTIONS(10511), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11707), 1, - aux_sym_heredoc_redirect_token1, - STATE(2838), 1, + STATE(2760), 1, + sym__c_binary_expression, + STATE(2765), 1, sym__c_postfix_expression, - STATE(2905), 1, + STATE(2780), 1, sym__c_unary_expression, - STATE(2906), 1, - sym__c_binary_expression, - STATE(4600), 1, + STATE(3983), 1, sym__c_terminator, - STATE(6242), 1, + STATE(5826), 1, sym__c_expression, - STATE(6395), 1, + STATE(6105), 1, sym__c_variable_assignment, - ACTIONS(10638), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(11705), 2, + STATE(7058), 1, + sym__for_body, + ACTIONS(10487), 2, anon_sym_SEMI, anon_sym_AMP, - STATE(2902), 7, + ACTIONS(10489), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2871), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -268139,456 +255791,167 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [232303] = 13, + [221439] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4515), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11667), 1, - anon_sym_LT_LT_LT, - ACTIONS(11669), 1, - sym_file_descriptor, - STATE(4950), 1, - sym_herestring_redirect, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4292), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(4294), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4513), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(11665), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(4255), 3, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - STATE(4358), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11663), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [232359] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10640), 1, - anon_sym_LPAREN, - ACTIONS(10642), 1, - aux_sym__c_word_token1, - ACTIONS(10646), 1, - anon_sym_DOLLAR, - ACTIONS(10648), 1, - anon_sym_DQUOTE, - ACTIONS(10650), 1, + ACTIONS(1517), 1, aux_sym_number_token1, - ACTIONS(10652), 1, + ACTIONS(1519), 1, aux_sym_number_token2, - ACTIONS(10654), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10656), 1, + ACTIONS(1523), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10658), 1, + ACTIONS(1535), 1, + sym__brace_start, + 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(10660), 1, + ACTIONS(8715), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11711), 1, - aux_sym_heredoc_redirect_token1, - STATE(2838), 1, - sym__c_postfix_expression, - STATE(2905), 1, - sym__c_unary_expression, - STATE(2906), 1, - sym__c_binary_expression, - STATE(4508), 1, - sym__c_terminator, - STATE(6240), 1, - sym__c_expression, - STATE(6395), 1, - sym__c_variable_assignment, - ACTIONS(10638), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(11709), 2, - anon_sym_SEMI, - anon_sym_AMP, - STATE(2902), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, + ACTIONS(8859), 1, + sym_word, + ACTIONS(8865), 1, + sym__comment_word, + ACTIONS(10691), 1, + anon_sym_DOLLAR, + ACTIONS(8717), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8861), 2, + sym_test_operator, + sym__special_character, + ACTIONS(8863), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1129), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [232431] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11719), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11721), 1, - anon_sym_LT_LT_LT, - ACTIONS(11723), 1, - sym_file_descriptor, - ACTIONS(11717), 2, - 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, - anon_sym_GT, - anon_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), 12, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - [232477] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11667), 1, - anon_sym_LT_LT_LT, - STATE(4950), 1, - sym_herestring_redirect, - ACTIONS(4268), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(4358), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4157), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [232519] = 21, + sym_process_substitution, + [221506] = 18, 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, + ACTIONS(7375), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7377), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7383), 1, anon_sym_DQUOTE, - ACTIONS(10650), 1, + ACTIONS(7387), 1, aux_sym_number_token1, - ACTIONS(10652), 1, + ACTIONS(7389), 1, aux_sym_number_token2, - ACTIONS(10654), 1, + ACTIONS(7391), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10656), 1, + ACTIONS(7393), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10658), 1, + ACTIONS(7395), 1, anon_sym_BQUOTE, - ACTIONS(10660), 1, + ACTIONS(7397), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11727), 1, - aux_sym_heredoc_redirect_token1, - STATE(2838), 1, - sym__c_postfix_expression, - STATE(2905), 1, - sym__c_unary_expression, - STATE(2906), 1, - sym__c_binary_expression, - STATE(4673), 1, - sym__c_terminator, - STATE(6188), 1, - sym__c_expression, - STATE(6395), 1, - sym__c_variable_assignment, - ACTIONS(10638), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(11725), 2, - anon_sym_SEMI, - anon_sym_AMP, - STATE(2902), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, + ACTIONS(7407), 1, + sym__brace_start, + ACTIONS(8919), 1, + sym_word, + ACTIONS(8927), 1, + sym__comment_word, + ACTIONS(10693), 1, + anon_sym_DOLLAR, + ACTIONS(7399), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8923), 2, + sym_test_operator, + sym__special_character, + ACTIONS(8925), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4148), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [232591] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11729), 1, - aux_sym_concatenation_token1, - ACTIONS(11731), 1, - sym__concat, - STATE(4194), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1225), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 23, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - sym__special_character, - [232633] = 6, - 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, - aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_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, - 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(4282), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 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, - [232717] = 6, - 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, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 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, - [232759] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11743), 1, - sym_variable_name, - STATE(6669), 1, - sym_subscript, - ACTIONS(11741), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(4139), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(11739), 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, - [232801] = 8, + sym_process_substitution, + [221573] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1197), 1, - sym_file_descriptor, - ACTIONS(5771), 1, + 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(8983), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8985), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8989), 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, + ACTIONS(8993), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8995), 1, + anon_sym_BQUOTE, + ACTIONS(8997), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9529), 1, + sym_word, + ACTIONS(9535), 1, + sym__comment_word, + ACTIONS(10695), 1, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 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, - [232847] = 6, + ACTIONS(8999), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9531), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9533), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4179), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [221640] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11338), 1, - aux_sym_concatenation_token1, - ACTIONS(11340), 1, - sym__concat, - STATE(4162), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5563), 2, + ACTIONS(10697), 1, + anon_sym_LT_LT_LT, + STATE(4644), 1, + sym_herestring_redirect, + ACTIONS(3939), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 23, + STATE(534), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(3937), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -268611,20 +255974,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, - [232889] = 6, + [221682] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11338), 1, + ACTIONS(10191), 1, aux_sym_concatenation_token1, - ACTIONS(11751), 1, + ACTIONS(10193), 1, sym__concat, - STATE(4166), 1, + STATE(3984), 1, aux_sym_concatenation_repeat1, - ACTIONS(1229), 2, + ACTIONS(4483), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 23, + ACTIONS(4481), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -268648,20 +256010,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [232931] = 6, + [221724] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11266), 1, + ACTIONS(10191), 1, aux_sym_concatenation_token1, - ACTIONS(11268), 1, + ACTIONS(10193), 1, sym__concat, - STATE(4136), 1, + STATE(3986), 1, aux_sym_concatenation_repeat1, - ACTIONS(5266), 3, + ACTIONS(4487), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 22, + ACTIONS(4485), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -268684,57 +256045,20 @@ 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, + [221766] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11338), 1, + ACTIONS(10191), 1, aux_sym_concatenation_token1, - ACTIONS(11340), 1, + ACTIONS(10193), 1, sym__concat, - STATE(4142), 1, + STATE(3984), 1, aux_sym_concatenation_repeat1, - ACTIONS(2162), 2, + ACTIONS(4491), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 23, + ACTIONS(4489), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -268758,19 +256082,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [233061] = 6, + [221808] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11753), 1, + ACTIONS(10191), 1, aux_sym_concatenation_token1, - ACTIONS(11756), 1, + ACTIONS(10193), 1, sym__concat, - STATE(4166), 1, + STATE(3986), 1, aux_sym_concatenation_repeat1, - ACTIONS(1215), 2, + ACTIONS(4495), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 23, + ACTIONS(4493), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -268794,116 +256118,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [233103] = 3, + [221850] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(10705), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 23, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(10707), 1, + anon_sym_LT_LT_LT, + ACTIONS(10709), 1, + sym_file_descriptor, + ACTIONS(10703), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3997), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(10701), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [233138] = 6, - 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, - aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 22, + ACTIONS(10699), 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, - [233179] = 6, + [221896] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11759), 1, + ACTIONS(10191), 1, aux_sym_concatenation_token1, - ACTIONS(11761), 1, + ACTIONS(10193), 1, sym__concat, - STATE(4488), 1, + STATE(3984), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 3, - sym_file_descriptor, - sym_variable_name, - aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 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, - sym__special_character, - anon_sym_BQUOTE, - [233220] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1302), 3, + ACTIONS(4125), 2, sym_file_descriptor, - sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 24, + ACTIONS(4123), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -268927,152 +256192,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, - [233255] = 3, + [221938] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 23, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_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(10191), 1, aux_sym_concatenation_token1, - [233290] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11763), 1, - anon_sym_LT_LT_LT, - STATE(4937), 1, - sym_herestring_redirect, - ACTIONS(4268), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(4669), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - 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, - [233331] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1274), 4, - sym_file_descriptor, + ACTIONS(10193), 1, sym__concat, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 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_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - 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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11765), 1, - sym_variable_name, - STATE(6702), 1, - sym_subscript, - ACTIONS(11741), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(4205), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(11739), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [233407] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11767), 1, - sym__special_character, - STATE(4253), 1, - aux_sym__literal_repeat1, - ACTIONS(4309), 2, + STATE(3986), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3915), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 23, + ACTIONS(3913), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -269096,79 +256228,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [233446] = 3, + [221980] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 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_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - 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(10191), 1, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [233481] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1282), 4, - sym_file_descriptor, + ACTIONS(10193), 1, sym__concat, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 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_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - 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, - [233516] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1306), 4, + STATE(3984), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4006), 2, sym_file_descriptor, - sym__concat, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 23, + ACTIONS(4004), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -269191,20 +256263,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, - [233551] = 6, + anon_sym_LT_LT_LT, + [222022] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11769), 1, + ACTIONS(10191), 1, aux_sym_concatenation_token1, - ACTIONS(11772), 1, + ACTIONS(10193), 1, sym__concat, - STATE(4179), 1, + STATE(3986), 1, aux_sym_concatenation_repeat1, - ACTIONS(1215), 2, + ACTIONS(4010), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 22, + ACTIONS(4008), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -269227,98 +256299,42 @@ 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, + anon_sym_LT_LT_LT, + [222064] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4175), 1, + ACTIONS(4043), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11775), 1, + ACTIONS(10697), 1, + anon_sym_LT_LT_LT, + ACTIONS(10711), 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, + STATE(4644), 1, + sym_herestring_redirect, + ACTIONS(2041), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(10932), 2, + ACTIONS(2043), 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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11777), 1, - sym__special_character, - STATE(4181), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 3, - sym_file_descriptor, - sym_variable_name, - aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 22, - anon_sym_SEMI, + ACTIONS(3937), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4016), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(4041), 2, + anon_sym_SEMI, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, + STATE(534), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(2321), 4, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [233682] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11775), 1, - sym_file_descriptor, - ACTIONS(11782), 1, - aux_sym_heredoc_redirect_token1, - 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(4269), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(10930), 8, + ACTIONS(2039), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -269327,95 +256343,70 @@ 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, + [222120] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, + ACTIONS(10491), 1, + anon_sym_LPAREN, + ACTIONS(10493), 1, + aux_sym__c_word_token1, + ACTIONS(10497), 1, + anon_sym_DOLLAR, + ACTIONS(10499), 1, + anon_sym_DQUOTE, + ACTIONS(10501), 1, + aux_sym_number_token1, + ACTIONS(10503), 1, + aux_sym_number_token2, + ACTIONS(10505), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10507), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(10509), 1, + anon_sym_BQUOTE, + ACTIONS(10511), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10715), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 23, + STATE(2760), 1, + sym__c_binary_expression, + STATE(2765), 1, + sym__c_postfix_expression, + STATE(2780), 1, + sym__c_unary_expression, + STATE(4460), 1, + sym__c_terminator, + STATE(5935), 1, + sym__c_expression, + STATE(6105), 1, + sym__c_variable_assignment, + ACTIONS(10489), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(10713), 2, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_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, - 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, + STATE(2871), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [222192] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, + ACTIONS(10191), 1, aux_sym_concatenation_token1, - ACTIONS(11788), 1, + ACTIONS(10717), 1, sym__concat, - STATE(4431), 1, + STATE(3990), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 2, + ACTIONS(1209), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 22, + ACTIONS(1207), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -269425,78 +256416,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_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, - anon_sym_LT_LT_LT, - ACTIONS(11792), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11794), 1, - sym_file_descriptor, - ACTIONS(10932), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4908), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(10930), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11790), 12, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - [233885] = 3, - ACTIONS(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, - anon_sym_PIPE_PIPE, - anon_sym_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, @@ -269505,17 +256429,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, - [233920] = 3, + anon_sym_LT_LT_LT, + [222234] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 4, - sym_file_descriptor, + ACTIONS(10719), 1, + aux_sym_concatenation_token1, + ACTIONS(10721), 1, sym__concat, - ts_builtin_sym_end, + STATE(4022), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1231), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 23, + ACTIONS(1229), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -269525,8 +256452,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, @@ -269537,16 +256465,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [233955] = 3, + sym__special_character, + [222276] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 3, - sym_file_descriptor, + ACTIONS(10191), 1, + aux_sym_concatenation_token1, + ACTIONS(10723), 1, sym__concat, + STATE(3990), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 24, + ACTIONS(1213), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -269570,92 +256502,137 @@ 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, - [233990] = 3, + [222318] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, + ACTIONS(10491), 1, + anon_sym_LPAREN, + ACTIONS(10493), 1, + aux_sym__c_word_token1, + ACTIONS(10497), 1, + anon_sym_DOLLAR, + ACTIONS(10499), 1, + anon_sym_DQUOTE, + ACTIONS(10501), 1, + aux_sym_number_token1, + ACTIONS(10503), 1, + aux_sym_number_token2, + ACTIONS(10505), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10507), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(10509), 1, + anon_sym_BQUOTE, + ACTIONS(10511), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10727), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 23, + STATE(2760), 1, + sym__c_binary_expression, + STATE(2765), 1, + sym__c_postfix_expression, + STATE(2780), 1, + sym__c_unary_expression, + STATE(4415), 1, + sym__c_terminator, + STATE(5924), 1, + sym__c_expression, + STATE(6105), 1, + sym__c_variable_assignment, + ACTIONS(10489), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(10725), 2, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_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, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [234025] = 3, + STATE(2871), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [222390] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, + ACTIONS(10491), 1, + anon_sym_LPAREN, + ACTIONS(10493), 1, + aux_sym__c_word_token1, + ACTIONS(10497), 1, + anon_sym_DOLLAR, + ACTIONS(10499), 1, + anon_sym_DQUOTE, + ACTIONS(10501), 1, + aux_sym_number_token1, + ACTIONS(10503), 1, + aux_sym_number_token2, + ACTIONS(10505), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10507), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(10509), 1, + anon_sym_BQUOTE, + ACTIONS(10511), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10731), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 23, + STATE(2760), 1, + sym__c_binary_expression, + STATE(2765), 1, + sym__c_postfix_expression, + STATE(2780), 1, + sym__c_unary_expression, + STATE(4373), 1, + sym__c_terminator, + STATE(5904), 1, + sym__c_expression, + STATE(6105), 1, + sym__c_variable_assignment, + ACTIONS(10489), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(10729), 2, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_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, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [234060] = 3, + STATE(2871), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [222462] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 4, + ACTIONS(10697), 1, + anon_sym_LT_LT_LT, + STATE(4644), 1, + sym_herestring_redirect, + ACTIONS(3937), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4039), 2, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 23, + STATE(534), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(4037), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -269664,22 +256641,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, - [234095] = 6, + [222506] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11648), 1, + ACTIONS(10733), 1, aux_sym_concatenation_token1, - ACTIONS(11650), 1, + ACTIONS(10736), 1, sym__concat, - STATE(4262), 1, + STATE(3990), 1, aux_sym_concatenation_repeat1, - ACTIONS(4313), 2, + ACTIONS(1221), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 22, + ACTIONS(1219), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -269689,6 +256663,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, @@ -269702,19 +256677,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [234136] = 6, + [222548] = 6, 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(10743), 1, + sym_variable_name, + STATE(6311), 1, + sym_subscript, + ACTIONS(10741), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 22, + STATE(3991), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(10739), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -269737,15 +256713,20 @@ 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, + [222590] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 4, - sym_file_descriptor, + ACTIONS(10746), 1, + aux_sym_concatenation_token1, + ACTIONS(10749), 1, sym__concat, + STATE(3992), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1221), 3, + sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 23, + ACTIONS(1219), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -269767,16 +256748,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, anon_sym_BQUOTE, - [234212] = 3, + [222632] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 3, - sym_file_descriptor, + ACTIONS(10752), 1, + aux_sym_concatenation_token1, + ACTIONS(10754), 1, sym__concat, + STATE(4072), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1231), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 24, + ACTIONS(1229), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -269799,115 +256784,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, - aux_sym_concatenation_token1, - [234247] = 3, + sym__special_character, + [222674] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(4020), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 23, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(10697), 1, + anon_sym_LT_LT_LT, + ACTIONS(10711), 1, + sym_file_descriptor, + STATE(4644), 1, + sym_herestring_redirect, + ACTIONS(2041), 2, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + ACTIONS(2043), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [234282] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11767), 1, - sym__special_character, - STATE(4253), 1, - aux_sym__literal_repeat1, - ACTIONS(5563), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 23, + ACTIONS(3937), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4014), 2, anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(4016), 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, + STATE(534), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(4018), 4, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [234321] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1286), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 23, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(2039), 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, - [234356] = 3, + [222730] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 4, - sym_file_descriptor, + ACTIONS(10203), 1, + aux_sym_concatenation_token1, + ACTIONS(10756), 1, sym__concat, + STATE(3998), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 3, + sym_file_descriptor, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 23, + ACTIONS(1207), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -269930,17 +256864,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, - [234391] = 3, + [222772] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 5, - sym_file_descriptor, + ACTIONS(10203), 1, + aux_sym_concatenation_token1, + ACTIONS(10758), 1, sym__concat, + STATE(3998), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 3, + sym_file_descriptor, sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 22, + ACTIONS(1213), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -269950,8 +256887,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, @@ -269961,42 +256900,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, - anon_sym_BQUOTE, - [234426] = 13, + [222814] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2503), 1, - anon_sym_RPAREN, - ACTIONS(4296), 1, + ACTIONS(10768), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11763), 1, + ACTIONS(10770), 1, anon_sym_LT_LT_LT, - ACTIONS(11802), 1, + ACTIONS(10773), 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, + ACTIONS(10765), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4290), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4669), 3, + STATE(3997), 3, sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11798), 8, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(10762), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -270005,51 +256925,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [234481] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1302), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 23, + ACTIONS(10760), 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, - [234516] = 6, + [222860] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11729), 1, + ACTIONS(10776), 1, aux_sym_concatenation_token1, - ACTIONS(11804), 1, + ACTIONS(10779), 1, sym__concat, - STATE(4179), 1, + STATE(3998), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 2, + ACTIONS(1221), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 22, + ACTIONS(1219), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270072,49 +256974,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, + [222902] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11806), 1, + ACTIONS(10786), 1, sym_variable_name, - STATE(6702), 1, + STATE(6311), 1, sym_subscript, - ACTIONS(11658), 2, + ACTIONS(10784), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(4205), 2, + STATE(3991), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(11656), 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, - [234598] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1298), 3, - sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 24, + ACTIONS(10782), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270137,81 +257010,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, - [234633] = 3, + [222944] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - 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_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(10788), 1, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [234668] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1306), 4, - sym_file_descriptor, + ACTIONS(10791), 1, sym__concat, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 23, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_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, - [234703] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1302), 4, + STATE(4000), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1221), 4, sym_file_descriptor, - sym__concat, + sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 23, + ACTIONS(1219), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270232,22 +257045,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, anon_sym_BQUOTE, - [234738] = 6, + [222986] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11648), 1, + ACTIONS(10203), 1, aux_sym_concatenation_token1, - ACTIONS(11650), 1, + ACTIONS(10205), 1, sym__concat, - STATE(4239), 1, + STATE(3995), 1, aux_sym_concatenation_repeat1, - ACTIONS(5689), 2, + ACTIONS(4449), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 22, + ACTIONS(4447), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270257,6 +257069,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, @@ -270269,22 +257082,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, - [234779] = 6, + [223028] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11809), 1, - anon_sym_LT_LT_LT, - STATE(4937), 1, - sym_herestring_redirect, - ACTIONS(4268), 2, + ACTIONS(10203), 1, + aux_sym_concatenation_token1, + ACTIONS(10205), 1, + sym__concat, + STATE(3996), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4453), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - STATE(4612), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4157), 20, + ACTIONS(4451), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270294,7 +257105,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,34 +257118,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [234820] = 6, + [223070] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11695), 1, - aux_sym_concatenation_token1, - ACTIONS(11811), 1, - sym__concat, - STATE(4244), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 3, + ACTIONS(1197), 1, sym_file_descriptor, + ACTIONS(4996), 1, + anon_sym_DQUOTE, + ACTIONS(10798), 1, sym_variable_name, - aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 21, - anon_sym_SEMI, + STATE(5311), 1, + sym_string, + ACTIONS(10796), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(10794), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1195), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -270339,31 +257154,37 @@ 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, - [234861] = 5, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + [223116] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11813), 1, - sym__special_character, - STATE(4318), 1, - aux_sym__literal_repeat1, - ACTIONS(4309), 3, + ACTIONS(1191), 1, sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 22, - anon_sym_SEMI, + ACTIONS(4996), 1, + anon_sym_DQUOTE, + ACTIONS(10798), 1, + sym_variable_name, + STATE(5311), 1, + sym_string, + ACTIONS(10796), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(10794), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1183), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -270371,23 +257192,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [234900] = 6, + [223162] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11815), 1, + ACTIONS(10800), 1, aux_sym_concatenation_token1, - ACTIONS(11818), 1, + ACTIONS(10802), 1, sym__concat, - STATE(4214), 1, + STATE(4031), 1, aux_sym_concatenation_repeat1, - ACTIONS(1215), 3, + ACTIONS(1231), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 21, + ACTIONS(1229), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270397,8 +257217,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, @@ -270408,48 +257229,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, - [234941] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11821), 1, - sym__concat, - ACTIONS(6641), 5, - anon_sym_COMMA, - anon_sym_CARET, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_COLON, - ACTIONS(6639), 21, - sym__immediate_double_hash, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - anon_sym_POUND, - anon_sym_RBRACE3, - anon_sym_AT, - anon_sym_EQ2, - anon_sym_COLON_EQ, - anon_sym_DASH3, - anon_sym_COLON_DASH, - anon_sym_PLUS3, - anon_sym_COLON_PLUS, - anon_sym_QMARK2, - anon_sym_COLON_QMARK, - anon_sym_PERCENT_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_SLASH_POUND, - anon_sym_SLASH_PERCENT, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - [234978] = 3, + sym__special_character, + [223204] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 3, + ACTIONS(1266), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 24, + ACTIONS(1264), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270474,52 +257262,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [235013] = 8, + [223239] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11719), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11827), 1, - anon_sym_LT_LT_LT, - ACTIONS(11829), 1, + ACTIONS(1306), 5, sym_file_descriptor, - ACTIONS(11825), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4246), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(11823), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11713), 11, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1304), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, 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, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [223274] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 4, + ACTIONS(1302), 5, sym_file_descriptor, sym__concat, + sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 23, + ACTIONS(1300), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270540,19 +257324,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, - [235093] = 3, + [223309] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(1278), 3, sym_file_descriptor, sym__concat, - sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 22, + ACTIONS(1276), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270562,8 +257343,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, @@ -270573,18 +257356,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, - [235128] = 3, + [223344] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 5, + ACTIONS(1250), 3, sym_file_descriptor, sym__concat, - sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 22, + ACTIONS(1248), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270594,8 +257375,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, @@ -270605,21 +257388,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, - anon_sym_BQUOTE, - [235163] = 6, + [223379] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11729), 1, + ACTIONS(10752), 1, aux_sym_concatenation_token1, - ACTIONS(11731), 1, + ACTIONS(10754), 1, sym__concat, - STATE(4194), 1, + STATE(4072), 1, aux_sym_concatenation_repeat1, - ACTIONS(4309), 2, + ACTIONS(4491), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 22, + ACTIONS(4489), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270642,20 +257425,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, + [223420] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11695), 1, + ACTIONS(10752), 1, aux_sym_concatenation_token1, - ACTIONS(11831), 1, + ACTIONS(10754), 1, sym__concat, - STATE(4244), 1, + STATE(4122), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 3, + ACTIONS(4495), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 21, + ACTIONS(4493), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270665,6 +257447,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 +257460,20 @@ 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, + [223461] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11833), 1, - sym__special_character, - STATE(4294), 1, - aux_sym__literal_repeat1, - ACTIONS(5266), 4, - sym_file_descriptor, + ACTIONS(10804), 1, sym_variable_name, - ts_builtin_sym_end, + STATE(6329), 1, + sym_subscript, + ACTIONS(10784), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 21, + STATE(4043), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(10782), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270699,8 +257483,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, @@ -270710,16 +257495,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, - [235284] = 3, + [223502] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 4, - sym_file_descriptor, + ACTIONS(10806), 1, + aux_sym_concatenation_token1, + ACTIONS(10808), 1, sym__concat, + STATE(4288), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1231), 3, + sym_file_descriptor, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 23, + ACTIONS(1229), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270729,10 +257518,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -270742,57 +257529,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_concatenation_token1, - [235319] = 13, + sym__special_character, + [223543] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4523), 1, - ts_builtin_sym_end, - ACTIONS(4531), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11839), 1, - anon_sym_LT_LT_LT, - ACTIONS(11841), 1, + ACTIONS(10810), 1, + aux_sym_concatenation_token1, + ACTIONS(10813), 1, + sym__concat, + STATE(4015), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1221), 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(1219), 22, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(4529), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(11837), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(4525), 3, - anon_sym_SEMI, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4645), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11835), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [235374] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [223584] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 3, + ACTIONS(1294), 5, sym_file_descriptor, sym__concat, + sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 24, + ACTIONS(1292), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270802,10 +257584,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, @@ -270815,17 +257595,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, - [235409] = 3, + anon_sym_BQUOTE, + [223619] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 4, + ACTIONS(1278), 5, sym_file_descriptor, sym__concat, + sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 23, + ACTIONS(1276), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270846,19 +257627,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [235444] = 3, + [223654] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(1262), 5, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 22, + ACTIONS(1260), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270881,15 +257661,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [235479] = 3, + [223689] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 4, + ACTIONS(1286), 5, sym_file_descriptor, sym__concat, + sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 23, + ACTIONS(1284), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270910,54 +257691,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [235514] = 6, + [223724] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11843), 1, - aux_sym_concatenation_token1, - ACTIONS(11845), 1, - sym__concat, - STATE(4326), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1225), 2, - sym_file_descriptor, - 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_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_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, - [235555] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1250), 5, + ACTIONS(1298), 5, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 22, + ACTIONS(1296), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270980,14 +257725,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [235590] = 3, + [223759] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 3, + ACTIONS(1278), 4, sym_file_descriptor, sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 24, + ACTIONS(1276), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271010,54 +257756,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, - [235625] = 4, - ACTIONS(3), 1, - sym_comment, - 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), 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, - [235662] = 6, + [223794] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11648), 1, + ACTIONS(10719), 1, aux_sym_concatenation_token1, - ACTIONS(11650), 1, + ACTIONS(10816), 1, sym__concat, - STATE(4262), 1, + STATE(4028), 1, aux_sym_concatenation_repeat1, - ACTIONS(2158), 2, + ACTIONS(1209), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 22, + ACTIONS(1207), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271080,19 +257792,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [235703] = 6, + [223835] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11729), 1, + ACTIONS(10719), 1, aux_sym_concatenation_token1, - ACTIONS(11731), 1, + ACTIONS(10818), 1, sym__concat, - STATE(4204), 1, + STATE(4028), 1, aux_sym_concatenation_repeat1, - ACTIONS(4313), 2, + ACTIONS(1215), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 22, + ACTIONS(1213), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271102,7 +257814,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, @@ -271115,54 +257826,20 @@ 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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11813), 1, - sym__special_character, - STATE(4318), 1, - aux_sym__literal_repeat1, - ACTIONS(5689), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [235783] = 6, + [223876] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11695), 1, + ACTIONS(10820), 1, aux_sym_concatenation_token1, - ACTIONS(11697), 1, + ACTIONS(10822), 1, sym__concat, - STATE(4222), 1, + STATE(4274), 1, aux_sym_concatenation_repeat1, - ACTIONS(5270), 3, + ACTIONS(1231), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 21, + ACTIONS(1229), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271173,8 +257850,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, @@ -271184,23 +257859,22 @@ 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, + anon_sym_LT_LT_LT, + sym__special_character, + anon_sym_BQUOTE, + [223917] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4159), 2, + ACTIONS(1250), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - STATE(4182), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4155), 20, + ACTIONS(1248), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, @@ -271210,6 +257884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -271218,49 +257893,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, + aux_sym_concatenation_token1, + [223952] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11648), 1, + ACTIONS(10752), 1, aux_sym_concatenation_token1, - ACTIONS(11847), 1, + ACTIONS(10754), 1, sym__concat, - STATE(4292), 1, + STATE(4122), 1, aux_sym_concatenation_repeat1, - ACTIONS(1229), 2, + ACTIONS(3915), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 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, - [235904] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1254), 3, - sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 24, + ACTIONS(3913), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271283,17 +257929,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, - [235939] = 3, + [223993] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 4, + ACTIONS(1282), 5, sym_file_descriptor, sym__concat, sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 23, + ACTIONS(1280), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271303,10 +257948,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, @@ -271317,15 +257960,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [235974] = 3, + anon_sym_BQUOTE, + [224028] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 4, - sym_file_descriptor, + ACTIONS(10824), 1, + aux_sym_concatenation_token1, + ACTIONS(10827), 1, sym__concat, - sym_variable_name, + STATE(4028), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1221), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 23, + ACTIONS(1219), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271335,7 +257983,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, @@ -271348,17 +257995,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, - [236009] = 3, + anon_sym_LT_LT_LT, + [224069] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 5, + ACTIONS(1290), 5, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 22, + ACTIONS(1288), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271381,20 +258028,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [236044] = 6, + [224104] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11849), 1, + ACTIONS(10830), 1, aux_sym_concatenation_token1, - ACTIONS(11852), 1, + ACTIONS(10832), 1, sym__concat, - STATE(4244), 1, + STATE(4211), 1, aux_sym_concatenation_repeat1, - ACTIONS(1215), 3, + ACTIONS(1231), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 21, + ACTIONS(1229), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271416,17 +258062,21 @@ 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, + sym__special_character, + [224145] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11767), 1, - sym__special_character, - STATE(4253), 1, - aux_sym__literal_repeat1, - ACTIONS(5689), 2, + ACTIONS(10800), 1, + aux_sym_concatenation_token1, + ACTIONS(10834), 1, + sym__concat, + STATE(4040), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 23, + ACTIONS(1207), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271436,7 +258086,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 +258098,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, - [236124] = 8, + [224186] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11679), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11861), 1, + ACTIONS(10697), 1, anon_sym_LT_LT_LT, - ACTIONS(11864), 1, + ACTIONS(10842), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(10844), 1, sym_file_descriptor, - ACTIONS(11858), 2, + ACTIONS(10840), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4246), 3, + STATE(4712), 2, sym_file_redirect, sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(11855), 8, + ACTIONS(10838), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -271475,31 +258122,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(11671), 11, + ACTIONS(10836), 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, - [236169] = 6, + [224231] = 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(5563), 2, + ACTIONS(1286), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 22, + ACTIONS(1284), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271509,6 +258152,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, @@ -271522,14 +258166,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [236210] = 3, + aux_sym_concatenation_token1, + [224266] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 3, + ACTIONS(1290), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 24, + ACTIONS(1288), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271554,28 +258199,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [236245] = 3, + [224301] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 5, + ACTIONS(10846), 1, + anon_sym_LT_LT_LT, + STATE(4737), 1, + sym_herestring_redirect, + ACTIONS(3937), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4039), 2, sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 22, + STATE(562), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(4037), 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, @@ -271584,17 +258235,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, - [236280] = 3, + [224344] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 4, - sym_file_descriptor, + ACTIONS(10719), 1, + aux_sym_concatenation_token1, + ACTIONS(10721), 1, sym__concat, - sym_variable_name, + STATE(4022), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4483), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 23, + ACTIONS(4481), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271604,7 +258257,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,20 +258269,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, - [236315] = 6, + anon_sym_LT_LT_LT, + [224385] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11648), 1, + ACTIONS(10719), 1, aux_sym_concatenation_token1, - ACTIONS(11650), 1, + ACTIONS(10721), 1, sym__concat, - STATE(4239), 1, + STATE(4023), 1, aux_sym_concatenation_repeat1, - ACTIONS(4309), 2, + ACTIONS(4487), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 22, + ACTIONS(4485), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271653,14 +258305,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [236356] = 3, + [224426] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 3, - sym_file_descriptor, + ACTIONS(10800), 1, + aux_sym_concatenation_token1, + ACTIONS(10848), 1, sym__concat, + STATE(4040), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 3, + sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 24, + ACTIONS(1213), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271670,7 +258328,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, @@ -271683,19 +258340,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, - [236391] = 5, + [224467] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11867), 1, + ACTIONS(10850), 1, sym__special_character, - STATE(4253), 1, + STATE(4039), 1, aux_sym__literal_repeat1, - ACTIONS(1318), 2, + ACTIONS(1318), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 23, + ACTIONS(1316), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271718,20 +258374,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, - [236430] = 6, + [224506] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11648), 1, + ACTIONS(10853), 1, aux_sym_concatenation_token1, - ACTIONS(11650), 1, + ACTIONS(10856), 1, sym__concat, - STATE(4262), 1, + STATE(4040), 1, aux_sym_concatenation_repeat1, - ACTIONS(2162), 2, + ACTIONS(1221), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 22, + ACTIONS(1219), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271753,16 +258409,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, - [236471] = 3, + [224547] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 4, - sym_file_descriptor, + ACTIONS(10719), 1, + aux_sym_concatenation_token1, + ACTIONS(10721), 1, sym__concat, - ts_builtin_sym_end, + STATE(4022), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4491), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 23, + ACTIONS(4489), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271772,8 +258431,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, @@ -271784,21 +258444,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, - [236506] = 6, + [224588] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11729), 1, + ACTIONS(10719), 1, aux_sym_concatenation_token1, - ACTIONS(11731), 1, + ACTIONS(10721), 1, sym__concat, - STATE(4194), 1, + STATE(4023), 1, aux_sym_concatenation_repeat1, - ACTIONS(4282), 2, + ACTIONS(4495), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 22, + ACTIONS(4493), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271808,7 +258466,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -271821,14 +258478,21 @@ 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, + anon_sym_LT_LT_LT, + [224629] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 3, + ACTIONS(10859), 1, + sym_variable_name, + STATE(6329), 1, + sym_subscript, + ACTIONS(10741), 2, sym_file_descriptor, - sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 24, + STATE(4043), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(10739), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271838,7 +258502,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, @@ -271851,21 +258514,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, - aux_sym_concatenation_token1, - [236582] = 6, + [224670] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11729), 1, + ACTIONS(10862), 1, + sym__concat, + ACTIONS(5747), 5, + anon_sym_COMMA, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + ACTIONS(5745), 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, + [224707] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10864), 1, + sym__concat, + ACTIONS(5821), 5, + anon_sym_COMMA, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + ACTIONS(5819), 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, + [224744] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10806), 1, aux_sym_concatenation_token1, - ACTIONS(11731), 1, + ACTIONS(10808), 1, sym__concat, - STATE(4204), 1, + STATE(4157), 1, aux_sym_concatenation_repeat1, - ACTIONS(4439), 2, + ACTIONS(1231), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 22, + ACTIONS(1229), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271875,10 +258603,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, @@ -271888,15 +258613,20 @@ 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, + sym__special_character, + anon_sym_BQUOTE, + [224785] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 4, + ACTIONS(10866), 1, + sym__special_character, + STATE(4039), 1, + aux_sym__literal_repeat1, + ACTIONS(4449), 3, sym_file_descriptor, - sym__concat, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 23, + ACTIONS(4447), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271919,19 +258649,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, - [236658] = 5, + [224824] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11813), 1, + ACTIONS(10868), 1, sym__special_character, - STATE(4318), 1, + STATE(4136), 1, aux_sym__literal_repeat1, - ACTIONS(4282), 3, + ACTIONS(4483), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 22, + ACTIONS(4481), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271941,8 +258669,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, @@ -271953,17 +258683,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [236697] = 3, + [224863] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 5, - sym_file_descriptor, + ACTIONS(10719), 1, + aux_sym_concatenation_token1, + ACTIONS(10721), 1, sym__concat, - sym_variable_name, - ts_builtin_sym_end, + STATE(4022), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4125), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 22, + ACTIONS(4123), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271973,8 +258705,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, @@ -271984,21 +258717,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, - [236732] = 6, + anon_sym_LT_LT_LT, + [224904] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11648), 1, + ACTIONS(10719), 1, aux_sym_concatenation_token1, - ACTIONS(11870), 1, + ACTIONS(10721), 1, sym__concat, - STATE(4292), 1, + STATE(4023), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 2, + ACTIONS(3915), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 22, + ACTIONS(3913), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -272021,15 +258753,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [236773] = 3, + [224945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 4, + ACTIONS(1266), 5, sym_file_descriptor, sym__concat, + sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 23, + ACTIONS(1264), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -272050,18 +258783,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, anon_sym_BQUOTE, - [236808] = 3, + [224980] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 4, + ACTIONS(10870), 1, + sym__special_character, + STATE(4091), 1, + aux_sym__literal_repeat1, + ACTIONS(4125), 3, sym_file_descriptor, - sym__concat, - sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 23, + ACTIONS(4123), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -272071,10 +258806,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, @@ -272084,19 +258817,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, - [236843] = 5, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [225019] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11813), 1, - sym__special_character, - STATE(4318), 1, - aux_sym__literal_repeat1, - ACTIONS(5563), 3, + ACTIONS(1286), 4, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 22, + ACTIONS(1284), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -272106,8 +258837,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, @@ -272117,18 +258850,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [236882] = 3, + aux_sym_concatenation_token1, + [225054] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 5, + ACTIONS(1290), 4, sym_file_descriptor, sym__concat, sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 22, + ACTIONS(1288), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -272138,8 +258869,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, @@ -272150,17 +258883,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [236917] = 3, + [225089] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 5, - sym_file_descriptor, + ACTIONS(10719), 1, + aux_sym_concatenation_token1, + ACTIONS(10721), 1, sym__concat, - sym_variable_name, - ts_builtin_sym_end, + STATE(4022), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4006), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 22, + ACTIONS(4004), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -272170,8 +258905,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, @@ -272181,21 +258917,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, - [236952] = 6, + anon_sym_LT_LT_LT, + [225130] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11729), 1, - aux_sym_concatenation_token1, - ACTIONS(11731), 1, - sym__concat, - STATE(4204), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2158), 2, + ACTIONS(1258), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 22, + ACTIONS(1256), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -272218,53 +258948,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [236993] = 8, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [225165] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11883), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11885), 1, + ACTIONS(10719), 1, + aux_sym_concatenation_token1, + ACTIONS(10721), 1, + sym__concat, + STATE(4023), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4010), 2, sym_file_descriptor, - ACTIONS(11877), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(11880), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4269), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11874), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11872), 10, + aux_sym_heredoc_redirect_token1, + ACTIONS(4008), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_esac, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - [237038] = 3, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [225206] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 5, + ACTIONS(1221), 3, sym_file_descriptor, sym__concat, - sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 22, + ACTIONS(1219), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -272274,8 +259002,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, @@ -272285,18 +259015,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [237073] = 3, + [225241] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 5, - sym_file_descriptor, + ACTIONS(10872), 1, + aux_sym_concatenation_token1, + ACTIONS(10875), 1, sym__concat, - sym_variable_name, + STATE(4059), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1221), 3, + sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 22, + ACTIONS(1219), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -272317,29 +259051,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, - [237108] = 7, + [225282] = 3, 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(1250), 5, sym_file_descriptor, + sym__concat, + sym_variable_name, + 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(1248), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, @@ -272347,6 +259073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -272355,15 +259082,17 @@ 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, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [225317] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 4, + ACTIONS(1270), 4, sym_file_descriptor, sym__concat, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 23, + ACTIONS(1268), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -272387,18 +259116,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [237186] = 4, + [225352] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11888), 1, + ACTIONS(10878), 1, sym__concat, - ACTIONS(6675), 5, + ACTIONS(5772), 5, anon_sym_COMMA, anon_sym_CARET, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_COLON, - ACTIONS(6673), 21, + ACTIONS(5770), 21, sym__immediate_double_hash, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, @@ -272420,18 +259149,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_PERCENT, anon_sym_COMMA_COMMA, anon_sym_CARET_CARET, - [237223] = 4, + [225389] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11890), 1, + ACTIONS(10880), 1, sym__concat, - ACTIONS(6705), 5, + ACTIONS(5778), 5, anon_sym_COMMA, anon_sym_CARET, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_COLON, - ACTIONS(6703), 21, + ACTIONS(5776), 21, sym__immediate_double_hash, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, @@ -272453,14 +259182,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_PERCENT, anon_sym_COMMA_COMMA, anon_sym_CARET_CARET, - [237260] = 3, + [225426] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 3, + ACTIONS(10870), 1, + sym__special_character, + STATE(4091), 1, + aux_sym__literal_repeat1, + ACTIONS(4483), 3, sym_file_descriptor, - sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 24, + ACTIONS(4481), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -272470,10 +259203,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, @@ -272484,17 +259215,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, - [237295] = 3, + anon_sym_BQUOTE, + [225465] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 5, + ACTIONS(1314), 4, sym_file_descriptor, sym__concat, - sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 22, + ACTIONS(1312), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -272515,74 +259245,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, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [237330] = 3, + [225500] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(10768), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 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, - [237365] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4255), 1, - anon_sym_RPAREN, - ACTIONS(4515), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11763), 1, + ACTIONS(10888), 1, anon_sym_LT_LT_LT, - ACTIONS(11802), 1, + ACTIONS(10891), 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, + ACTIONS(10885), 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(4066), 3, sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11798), 8, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(10882), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -272591,52 +259273,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [237420] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1310), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 22, + ACTIONS(10760), 11, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_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, - [237455] = 6, + [225545] = 5, 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(10868), 1, + sym__special_character, + STATE(4136), 1, + aux_sym__literal_repeat1, + ACTIONS(4491), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 21, + ACTIONS(4489), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -272646,6 +259305,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, @@ -272658,16 +259318,16 @@ 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, + anon_sym_LT_LT_LT, + [225584] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 5, + ACTIONS(1258), 4, sym_file_descriptor, sym__concat, - sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 22, + ACTIONS(1256), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -272688,18 +259348,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [237531] = 3, + [225619] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 5, + ACTIONS(1221), 4, sym_file_descriptor, sym__concat, - sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 22, + ACTIONS(1219), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -272720,17 +259380,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [237566] = 3, + [225654] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 4, + ACTIONS(1254), 4, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 23, + ACTIONS(1252), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -272740,8 +259401,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, @@ -272751,25 +259414,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, - anon_sym_BQUOTE, - [237601] = 6, + [225689] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11839), 1, - anon_sym_LT_LT_LT, - STATE(4937), 1, - sym_herestring_redirect, - ACTIONS(4268), 3, + ACTIONS(1294), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, aux_sym_heredoc_redirect_token1, - STATE(4645), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4157), 19, + ACTIONS(1292), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -272779,147 +259432,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_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, - [237642] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10102), 1, - anon_sym_LT_LT_LT, - ACTIONS(11794), 1, - sym_file_descriptor, - ACTIONS(11894), 1, - 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, - 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, - [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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10102), 1, - anon_sym_LT_LT_LT, - ACTIONS(11794), 1, - sym_file_descriptor, - ACTIONS(11904), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(10932), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4785), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(10930), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11902), 12, - 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, - [237787] = 6, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [225724] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11759), 1, + ACTIONS(10752), 1, aux_sym_concatenation_token1, - ACTIONS(11761), 1, + ACTIONS(10894), 1, sym__concat, - STATE(4477), 1, + STATE(4015), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 4, + ACTIONS(1209), 2, sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 20, + ACTIONS(1207), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -272929,7 +259469,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, @@ -272939,20 +259482,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, - [237828] = 6, + [225765] = 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(1262), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 22, + ACTIONS(1260), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -272962,7 +259499,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, @@ -272973,19 +259513,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, - [237869] = 5, + aux_sym_concatenation_token1, + [225800] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11767), 1, - sym__special_character, - STATE(4253), 1, - aux_sym__literal_repeat1, - ACTIONS(4282), 2, + ACTIONS(1298), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 23, + ACTIONS(1296), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273009,19 +259545,15 @@ 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, + aux_sym_concatenation_token1, + [225835] = 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(1282), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 22, + ACTIONS(1280), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273031,6 +259563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -273044,59 +259577,16 @@ 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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4257), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11775), 1, - sym_file_descriptor, - 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, - [238000] = 5, + aux_sym_concatenation_token1, + [225870] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11912), 1, - sym__special_character, - STATE(4294), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 4, + ACTIONS(1310), 4, sym_file_descriptor, - sym_variable_name, + sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 21, + ACTIONS(1308), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273117,15 +259607,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - [238039] = 3, + [225905] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 3, + ACTIONS(1254), 4, sym_file_descriptor, sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 24, + ACTIONS(1252), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273135,10 +259628,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -273150,15 +259641,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [238074] = 3, + anon_sym_BQUOTE, + [225940] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 4, + ACTIONS(1266), 4, sym_file_descriptor, sym__concat, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 23, + ACTIONS(1264), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273182,49 +259674,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [238109] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11648), 1, - aux_sym_concatenation_token1, - ACTIONS(11650), 1, - sym__concat, - STATE(4239), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4282), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 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, - [238150] = 3, + [225975] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 3, + ACTIONS(1294), 4, sym_file_descriptor, sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 24, + ACTIONS(1292), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273247,17 +259705,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, - [238185] = 3, + [226010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 4, + ACTIONS(1262), 4, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 23, + ACTIONS(1260), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273267,8 +259724,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, @@ -273278,22 +259737,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, - anon_sym_BQUOTE, - [238220] = 6, + [226045] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11648), 1, + ACTIONS(10800), 1, aux_sym_concatenation_token1, - ACTIONS(11650), 1, + ACTIONS(10802), 1, sym__concat, - STATE(4262), 1, + STATE(4031), 1, aux_sym_concatenation_repeat1, - ACTIONS(4439), 2, + ACTIONS(4449), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 22, + ACTIONS(4447), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273315,15 +259773,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, - [238261] = 3, + [226086] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 3, - sym_file_descriptor, + ACTIONS(10752), 1, + aux_sym_concatenation_token1, + ACTIONS(10754), 1, sym__concat, + STATE(4072), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4125), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 24, + ACTIONS(4123), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273346,22 +259808,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, - [238296] = 6, + [226127] = 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(1225), 3, + ACTIONS(1298), 4, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 21, + ACTIONS(1296), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273371,7 +259826,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, @@ -273381,22 +259839,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - sym__special_character, - [238337] = 6, + aux_sym_concatenation_token1, + [226162] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11759), 1, - aux_sym_concatenation_token1, - ACTIONS(11761), 1, - sym__concat, - STATE(4344), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1225), 3, + ACTIONS(1270), 4, sym_file_descriptor, - sym_variable_name, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 21, + ACTIONS(1268), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273417,15 +259869,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, - [238378] = 3, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [226197] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 3, + ACTIONS(1302), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 24, + ACTIONS(1300), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273450,33 +259904,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [238413] = 7, + [226232] = 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(1306), 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(4155), 18, + ACTIONS(1304), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -273485,15 +259934,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, - [238456] = 3, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [226267] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 3, + ACTIONS(1302), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 24, + ACTIONS(1300), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273518,57 +259968,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [238491] = 13, + [226302] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2503), 1, - anon_sym_BQUOTE, - ACTIONS(4995), 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(4991), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4612), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11896), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [238546] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1266), 4, + ACTIONS(1274), 4, sym_file_descriptor, sym__concat, - sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 23, + ACTIONS(1272), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273578,10 +259986,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, @@ -273591,17 +259997,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, - [238581] = 3, + anon_sym_BQUOTE, + [226337] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 5, + ACTIONS(1282), 4, sym_file_descriptor, sym__concat, sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 22, + ACTIONS(1280), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273611,8 +260018,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, @@ -273623,62 +260032,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [238616] = 13, + [226372] = 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, - sym_file_descriptor, - STATE(4937), 1, - sym_herestring_redirect, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4527), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(4529), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(11837), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(4790), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4645), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11835), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [238671] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11729), 1, + ACTIONS(10820), 1, aux_sym_concatenation_token1, - ACTIONS(11731), 1, + ACTIONS(10822), 1, sym__concat, - STATE(4194), 1, + STATE(4196), 1, aux_sym_concatenation_repeat1, - ACTIONS(5689), 2, + ACTIONS(1231), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 22, + ACTIONS(1229), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273688,10 +260055,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 +260065,20 @@ 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, + sym__special_character, + [226413] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 4, + ACTIONS(10896), 1, + sym__special_character, + STATE(4091), 1, + aux_sym__literal_repeat1, + ACTIONS(1318), 3, sym_file_descriptor, - sym__concat, - sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 23, + ACTIONS(1316), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273719,10 +260088,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -273732,35 +260099,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, + [226452] = 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(1302), 5, sym_file_descriptor, + sym__concat, + sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(4645), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4155), 17, + ACTIONS(1300), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -273769,14 +260131,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [238790] = 3, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [226487] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 3, + ACTIONS(1302), 4, sym_file_descriptor, sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 24, + ACTIONS(1300), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273799,21 +260164,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, - [238825] = 6, + [226522] = 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(5563), 2, + ACTIONS(1306), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 22, + ACTIONS(1304), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273836,16 +260196,16 @@ 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, + aux_sym_concatenation_token1, + [226557] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 5, + ACTIONS(1302), 4, sym_file_descriptor, sym__concat, sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 22, + ACTIONS(1300), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273855,8 +260215,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, @@ -273867,53 +260229,56 @@ 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, + [226592] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(11915), 1, - sym__special_character, - STATE(4181), 1, - aux_sym__literal_repeat1, - ACTIONS(5266), 3, - sym_file_descriptor, - sym_variable_name, + ACTIONS(4182), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 22, + ACTIONS(10846), 1, + anon_sym_LT_LT_LT, + ACTIONS(10899), 1, + sym_file_descriptor, + STATE(4737), 1, + sym_herestring_redirect, + ACTIONS(2389), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(2391), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3937), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4178), 2, anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(4180), 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_esac, + STATE(562), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(4018), 3, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, + ACTIONS(2387), 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, - [238940] = 5, + [226647] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11917), 1, - sym__special_character, - STATE(4318), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 3, + ACTIONS(1314), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 22, + ACTIONS(1312), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273923,8 +260288,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -273935,16 +260302,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, - [238979] = 3, + aux_sym_concatenation_token1, + [226682] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 4, - sym_file_descriptor, + ACTIONS(10752), 1, + aux_sym_concatenation_token1, + ACTIONS(10754), 1, sym__concat, - sym_variable_name, + STATE(4072), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4006), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 23, + ACTIONS(4004), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273967,15 +260338,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, - [239014] = 3, + [226723] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 3, + ACTIONS(1310), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 24, + ACTIONS(1308), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274000,23 +260370,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [239049] = 8, + [226758] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11719), 1, + ACTIONS(10705), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11924), 1, + ACTIONS(10905), 1, anon_sym_LT_LT_LT, - ACTIONS(11926), 1, + ACTIONS(10907), 1, sym_file_descriptor, - ACTIONS(11922), 2, + ACTIONS(10903), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4504), 3, + STATE(4066), 3, sym_file_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(11920), 8, + ACTIONS(10901), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -274025,30 +260395,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(11713), 10, + ACTIONS(10699), 11, 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_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - [239093] = 6, + [226803] = 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(1278), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 21, + ACTIONS(1276), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274058,6 +260425,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, @@ -274069,20 +260437,17 @@ 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, - [239133] = 6, + [226838] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, - aux_sym_concatenation_token1, - ACTIONS(11930), 1, - sym__concat, - STATE(4145), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 2, + ACTIONS(1266), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 21, + ACTIONS(1264), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274092,6 +260457,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, @@ -274103,20 +260469,17 @@ 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, - [239173] = 6, + [226873] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11843), 1, - aux_sym_concatenation_token1, - ACTIONS(11845), 1, - sym__concat, - STATE(4326), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4309), 2, + ACTIONS(1250), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 21, + ACTIONS(1248), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274126,9 +260489,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -274138,19 +260500,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [239213] = 6, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [226908] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11843), 1, - aux_sym_concatenation_token1, - ACTIONS(11845), 1, - sym__concat, - STATE(4331), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4313), 2, + ACTIONS(1254), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 21, + ACTIONS(1252), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274160,6 +260520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -274172,19 +260533,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [239253] = 6, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [226943] = 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(1262), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 21, + ACTIONS(1260), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274194,9 +260553,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, @@ -274206,14 +260564,23 @@ 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, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [226978] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 3, + ACTIONS(10846), 1, + anon_sym_LT_LT_LT, + STATE(4737), 1, + sym_herestring_redirect, + ACTIONS(3939), 2, sym_file_descriptor, - sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 23, + STATE(562), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(3937), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274223,7 +260590,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, @@ -274236,15 +260602,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, - [239327] = 3, + [227019] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 3, + ACTIONS(1282), 4, sym_file_descriptor, sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 23, + ACTIONS(1280), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274254,10 +260620,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -274267,21 +260631,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, - [239361] = 6, + anon_sym_BQUOTE, + [227054] = 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(4309), 3, + ACTIONS(1286), 4, sym_file_descriptor, + sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 20, + ACTIONS(1284), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274291,6 +260652,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, @@ -274302,55 +260664,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [239401] = 8, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [227089] = 3, 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(1290), 4, 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, + sym__concat, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1288), 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_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_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_LT_LT_LT, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [227124] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11843), 1, - aux_sym_concatenation_token1, - ACTIONS(11936), 1, - sym__concat, - STATE(4354), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 2, + ACTIONS(1294), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 21, + ACTIONS(1292), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274360,9 +260716,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -274372,14 +260727,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [239485] = 3, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [227159] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 3, + ACTIONS(1298), 4, sym_file_descriptor, sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 23, + ACTIONS(1296), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274389,10 +260748,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, @@ -274402,58 +260759,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [239519] = 8, + anon_sym_BQUOTE, + [227194] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11942), 1, - anon_sym_LT_LT_LT, - ACTIONS(11944), 1, + ACTIONS(10752), 1, + aux_sym_concatenation_token1, + ACTIONS(10754), 1, + sym__concat, + STATE(4122), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4010), 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(4008), 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, - [239563] = 6, + [227235] = 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(1302), 4, sym_file_descriptor, + sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(11656), 19, + ACTIONS(1300), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274463,6 +260815,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, @@ -274473,57 +260826,50 @@ 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, + anon_sym_BQUOTE, + [227270] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5208), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11953), 1, - anon_sym_LT_LT_LT, - ACTIONS(11955), 1, + ACTIONS(1306), 4, sym_file_descriptor, - STATE(4937), 1, - sym_herestring_redirect, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4529), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5161), 2, + sym__concat, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1304), 23, + 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(5206), 3, - anon_sym_SEMI, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4731), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11949), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_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, - [239655] = 5, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [227305] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11957), 1, - sym__special_character, - STATE(4420), 1, - aux_sym__literal_repeat1, - ACTIONS(5563), 2, + ACTIONS(1302), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 22, + ACTIONS(1300), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274533,9 +260879,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, @@ -274546,38 +260891,42 @@ 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, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [227340] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5287), 1, + ACTIONS(4193), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11953), 1, + ACTIONS(10846), 1, anon_sym_LT_LT_LT, - ACTIONS(11955), 1, + ACTIONS(10899), 1, sym_file_descriptor, - STATE(4937), 1, + STATE(4737), 1, sym_herestring_redirect, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4529), 2, + ACTIONS(2389), 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(2391), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(5285), 3, + ACTIONS(3937), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4180), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(4191), 2, anon_sym_SEMI, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4731), 3, + STATE(562), 2, sym_file_redirect, sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11949), 8, + ACTIONS(2321), 3, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(2387), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -274586,14 +260935,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [239745] = 3, + [227395] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 3, + ACTIONS(1274), 4, sym_file_descriptor, sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 23, + ACTIONS(1272), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274603,6 +260953,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, @@ -274615,16 +260966,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, - [239779] = 3, + [227430] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 3, + ACTIONS(10868), 1, + sym__special_character, + STATE(4136), 1, + aux_sym__literal_repeat1, + ACTIONS(4125), 2, sym_file_descriptor, - sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 23, + ACTIONS(4123), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274634,6 +260987,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, @@ -274647,20 +261001,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, - [239813] = 6, + [227469] = 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(1258), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 21, + ACTIONS(1256), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274670,6 +261019,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, @@ -274682,21 +261032,16 @@ 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, + aux_sym_concatenation_token1, + [227504] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11959), 1, - sym_variable_name, - STATE(6675), 1, - sym_subscript, - STATE(4334), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(11741), 3, + ACTIONS(1221), 4, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(11739), 19, + ACTIONS(1219), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274706,7 +261051,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, @@ -274716,20 +261064,19 @@ 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, + aux_sym_concatenation_token1, + [227539] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, - aux_sym_concatenation_token1, - ACTIONS(11788), 1, - sym__concat, - STATE(4374), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4313), 3, + ACTIONS(10870), 1, + sym__special_character, + STATE(4091), 1, + aux_sym__literal_repeat1, + ACTIONS(4491), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 20, + ACTIONS(4489), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274739,6 +261086,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, @@ -274750,19 +261098,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [239933] = 6, + anon_sym_BQUOTE, + [227578] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11843), 1, + ACTIONS(10752), 1, aux_sym_concatenation_token1, - ACTIONS(11845), 1, + ACTIONS(10909), 1, sym__concat, - STATE(4331), 1, + STATE(4015), 1, aux_sym_concatenation_repeat1, - ACTIONS(2162), 2, + ACTIONS(1215), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 21, + ACTIONS(1213), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274772,6 +261121,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, @@ -274784,20 +261134,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [239973] = 6, + [227619] = 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(1270), 3, sym_file_descriptor, - sym_variable_name, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 20, + ACTIONS(1268), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274807,8 +261151,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, @@ -274818,20 +261164,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, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [227654] = 3, 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(1274), 5, sym_file_descriptor, + sym__concat, sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 20, + ACTIONS(1272), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274852,17 +261196,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, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [227689] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11965), 1, + ACTIONS(10911), 1, sym__special_character, - STATE(4346), 1, + STATE(4143), 1, aux_sym__literal_repeat1, - ACTIONS(1318), 2, + ACTIONS(4449), 4, sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 22, + ACTIONS(4447), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274872,10 +261220,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 +261231,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [240091] = 5, + anon_sym_BQUOTE, + [227728] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11957), 1, - sym__special_character, - STATE(4420), 1, - aux_sym__literal_repeat1, - ACTIONS(4282), 2, + ACTIONS(1274), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 22, + ACTIONS(1272), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274905,6 +261249,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, @@ -274918,48 +261263,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [240129] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11968), 1, - sym__special_character, - STATE(4376), 1, - aux_sym__literal_repeat1, - ACTIONS(5689), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 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, - [240167] = 3, + aux_sym_concatenation_token1, + [227763] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 4, + ACTIONS(1314), 5, sym_file_descriptor, sym__concat, + sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 22, + ACTIONS(1312), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274982,48 +261296,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [240201] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11957), 1, - sym__special_character, - STATE(4420), 1, - aux_sym__literal_repeat1, - ACTIONS(4309), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 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, - [240239] = 3, + [227798] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 4, + ACTIONS(1258), 5, sym_file_descriptor, sym__concat, + sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 22, + ACTIONS(1256), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275046,15 +261328,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [240273] = 3, + [227833] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 4, + ACTIONS(1221), 5, sym_file_descriptor, sym__concat, + sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 22, + ACTIONS(1219), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275077,52 +261360,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [240307] = 5, + [227868] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11968), 1, - sym__special_character, - STATE(4376), 1, - aux_sym__literal_repeat1, - ACTIONS(4282), 3, + ACTIONS(10697), 1, + anon_sym_LT_LT_LT, + ACTIONS(10844), 1, sym_file_descriptor, - ts_builtin_sym_end, + ACTIONS(10915), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(10840), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4562), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(10838), 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(10913), 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, - anon_sym_BQUOTE, - [240345] = 6, + [227913] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11970), 1, - aux_sym_concatenation_token1, - ACTIONS(11973), 1, - sym__concat, - STATE(4354), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 2, + ACTIONS(1310), 5, sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 21, + ACTIONS(1308), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275132,9 +261416,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -275144,14 +261427,18 @@ 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, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [227948] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 3, + ACTIONS(1254), 5, sym_file_descriptor, sym__concat, + sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 23, + ACTIONS(1252), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275161,9 +261448,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, @@ -275173,19 +261459,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, - [240419] = 5, + anon_sym_BQUOTE, + [227983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11976), 1, - sym__special_character, - STATE(4346), 1, - aux_sym__literal_repeat1, - ACTIONS(4309), 2, + ACTIONS(1314), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 22, + ACTIONS(1312), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275208,15 +261492,19 @@ 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, + aux_sym_concatenation_token1, + [228018] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 4, + ACTIONS(10870), 1, + sym__special_character, + STATE(4091), 1, + aux_sym__literal_repeat1, + ACTIONS(4006), 3, sym_file_descriptor, - sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 22, + ACTIONS(4004), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275237,53 +261525,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_LT_LT_LT, anon_sym_BQUOTE, - [240491] = 8, - 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, + [228057] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 4, + ACTIONS(10868), 1, + sym__special_character, + STATE(4136), 1, + aux_sym__literal_repeat1, + ACTIONS(4006), 2, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 22, + ACTIONS(4004), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275293,8 +261547,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, @@ -275304,17 +261560,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [240569] = 3, + anon_sym_LT_LT_LT, + [228096] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 4, + ACTIONS(10917), 1, + sym__special_character, + STATE(4136), 1, + aux_sym__literal_repeat1, + ACTIONS(1318), 2, sym_file_descriptor, - sym__concat, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 22, + ACTIONS(1316), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275324,6 +261581,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, @@ -275336,55 +261594,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [240603] = 11, + anon_sym_LT_LT_LT, + [228135] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11978), 1, + ACTIONS(10806), 1, + aux_sym_concatenation_token1, + ACTIONS(10808), 1, + sym__concat, + STATE(4311), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1231), 4, sym_file_descriptor, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4290), 2, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1229), 20, 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_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, - [240653] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + sym__special_character, + [228176] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 4, + ACTIONS(1310), 4, sym_file_descriptor, sym__concat, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 22, + ACTIONS(1308), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275394,6 +261648,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, @@ -275407,23 +261662,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [240687] = 8, + [228211] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11719), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11984), 1, + ACTIONS(10697), 1, anon_sym_LT_LT_LT, - ACTIONS(11986), 1, + ACTIONS(10844), 1, sym_file_descriptor, - ACTIONS(11982), 2, + ACTIONS(10922), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(10840), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4409), 3, + STATE(4549), 2, sym_file_redirect, sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(11980), 8, + ACTIONS(10838), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -275432,26 +261686,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(11713), 10, + ACTIONS(10920), 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, - anon_sym_BQUOTE, - [240731] = 3, + [228256] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 4, - sym_file_descriptor, + ACTIONS(10752), 1, + aux_sym_concatenation_token1, + ACTIONS(10754), 1, sym__concat, - ts_builtin_sym_end, + STATE(4072), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4483), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 22, + ACTIONS(4481), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275461,8 +261721,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, @@ -275472,52 +261734,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [240765] = 8, + [228297] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11994), 1, - anon_sym_LT_LT_LT, - ACTIONS(11997), 1, + ACTIONS(10752), 1, + aux_sym_concatenation_token1, + ACTIONS(10754), 1, + sym__concat, + STATE(4122), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4487), 2, sym_file_descriptor, - ACTIONS(11679), 2, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(11991), 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(11988), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11671), 9, + ACTIONS(4485), 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, - [240809] = 3, + [228338] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 3, - sym_file_descriptor, + ACTIONS(10820), 1, + aux_sym_concatenation_token1, + ACTIONS(10822), 1, sym__concat, + STATE(4166), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1231), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 23, + ACTIONS(1229), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275527,9 +261791,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, @@ -275540,16 +261803,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, - [240843] = 3, + sym__special_character, + [228379] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 4, + ACTIONS(10924), 1, + sym__special_character, + STATE(4143), 1, + aux_sym__literal_repeat1, + ACTIONS(1318), 4, sym_file_descriptor, - sym__concat, + sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 22, + ACTIONS(1316), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275570,20 +261837,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, - [240877] = 5, + [228418] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11968), 1, - sym__special_character, - STATE(4376), 1, - aux_sym__literal_repeat1, - ACTIONS(5563), 3, + ACTIONS(1270), 5, sym_file_descriptor, + sym__concat, + sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 21, + ACTIONS(1268), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275604,21 +261868,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_BQUOTE, - [240915] = 6, + [228453] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(10800), 1, aux_sym_concatenation_token1, - ACTIONS(12002), 1, + ACTIONS(10802), 1, sym__concat, - STATE(4667), 1, + STATE(4038), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 3, + ACTIONS(4453), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 20, + ACTIONS(4451), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275629,6 +261894,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -275638,21 +261905,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, - [240955] = 6, + [228494] = 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(1270), 4, sym_file_descriptor, + sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 20, + ACTIONS(1268), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275662,6 +261923,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, @@ -275672,19 +261934,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, - [240995] = 5, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [228528] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11968), 1, - sym__special_character, - STATE(4376), 1, - aux_sym__literal_repeat1, - ACTIONS(4309), 3, + ACTIONS(1258), 4, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 21, + ACTIONS(1256), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275694,8 +261954,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 +261966,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, - [241033] = 3, + aux_sym_concatenation_token1, + [228562] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 3, + ACTIONS(1221), 4, sym_file_descriptor, sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 23, + ACTIONS(1219), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275735,56 +261997,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, - [241067] = 6, + [228596] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11759), 1, - aux_sym_concatenation_token1, - ACTIONS(11761), 1, - sym__concat, - STATE(4477), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5266), 4, + ACTIONS(10931), 1, + anon_sym_LT_LT_LT, + ACTIONS(10933), 1, sym_file_descriptor, - sym_variable_name, + ACTIONS(10705), 2, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 19, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(10929), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4249), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(10927), 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(10699), 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, - [241107] = 6, + [228640] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, - aux_sym_concatenation_token1, - ACTIONS(12006), 1, - sym__concat, - STATE(4145), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 3, + ACTIONS(1314), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 20, + ACTIONS(1312), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275794,7 +262051,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, @@ -275804,22 +262064,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, - [241147] = 6, + aux_sym_concatenation_token1, + [228674] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11759), 1, - aux_sym_concatenation_token1, - ACTIONS(11761), 1, - sym__concat, - STATE(4479), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5270), 4, + ACTIONS(1250), 3, sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 19, + ACTIONS(1248), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275829,7 +262082,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, @@ -275839,18 +262095,21 @@ 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, + aux_sym_concatenation_token1, + [228708] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12008), 1, - sym__special_character, - STATE(4376), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 3, + ACTIONS(10806), 1, + aux_sym_concatenation_token1, + ACTIONS(10808), 1, + sym__concat, + STATE(4288), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4449), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 21, + ACTIONS(4447), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275871,15 +262130,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, - [241225] = 3, + [228748] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 3, + ACTIONS(10935), 1, + sym__special_character, + STATE(4175), 1, + aux_sym__literal_repeat1, + ACTIONS(4491), 2, sym_file_descriptor, - sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 23, + ACTIONS(4489), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275902,21 +262163,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, - [241259] = 6, + [228786] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11759), 1, + ACTIONS(10806), 1, aux_sym_concatenation_token1, - ACTIONS(11761), 1, + ACTIONS(10808), 1, sym__concat, - STATE(4670), 1, + STATE(4306), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 3, + ACTIONS(4453), 3, sym_file_descriptor, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 20, + ACTIONS(4451), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275926,6 +262186,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, @@ -275936,56 +262197,45 @@ 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, + [228826] = 3, 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(1310), 3, sym_file_descriptor, - STATE(4937), 1, - sym_herestring_redirect, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4529), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5161), 2, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1308), 23, + 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_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_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, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [228860] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 4, + ACTIONS(1254), 3, sym_file_descriptor, sym__concat, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 22, + ACTIONS(1252), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276007,15 +262257,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [241385] = 3, + [228894] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 3, - sym_file_descriptor, + ACTIONS(10806), 1, + aux_sym_concatenation_token1, + ACTIONS(10937), 1, sym__concat, + STATE(4000), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 3, + sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 23, + ACTIONS(1207), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276025,10 +262282,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, @@ -276038,21 +262292,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, - [241419] = 6, + anon_sym_BQUOTE, + [228934] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, + ACTIONS(10806), 1, aux_sym_concatenation_token1, - ACTIONS(11788), 1, + ACTIONS(10939), 1, sym__concat, - STATE(4374), 1, + STATE(4000), 1, aux_sym_concatenation_repeat1, - ACTIONS(4439), 3, + ACTIONS(1215), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 20, + ACTIONS(1213), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276072,15 +262326,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_BQUOTE, + [228974] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2321), 1, + anon_sym_RPAREN, + ACTIONS(4193), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(10941), 1, anon_sym_LT_LT_LT, - [241459] = 3, + ACTIONS(10943), 1, + sym_file_descriptor, + STATE(4538), 1, + sym_herestring_redirect, + ACTIONS(2782), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(2784), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3937), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4374), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(599), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(4191), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + ACTIONS(2780), 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, + [229028] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 3, + ACTIONS(10945), 1, + sym__special_character, + STATE(4293), 1, + aux_sym__literal_repeat1, + ACTIONS(4483), 2, sym_file_descriptor, - sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 23, + ACTIONS(4481), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276103,15 +262401,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, - [241493] = 3, + [229066] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 3, + ACTIONS(1314), 4, sym_file_descriptor, sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 23, + ACTIONS(1312), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276133,16 +262431,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, - [241527] = 3, + [229100] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 3, + ACTIONS(1270), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 23, + ACTIONS(1268), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276166,14 +262463,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [241561] = 3, + [229134] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 3, - sym_file_descriptor, + ACTIONS(10830), 1, + aux_sym_concatenation_token1, + ACTIONS(10832), 1, sym__concat, + STATE(4211), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4483), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 23, + ACTIONS(4481), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276183,7 +262485,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,24 +262497,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, - [241595] = 5, + [229174] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4159), 2, + ACTIONS(10830), 1, + aux_sym_concatenation_token1, + ACTIONS(10832), 1, + sym__concat, + STATE(4214), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4487), 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(4485), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, @@ -276222,6 +262522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -276230,50 +262531,50 @@ 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, + [229214] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11883), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12020), 1, + ACTIONS(1310), 4, sym_file_descriptor, - ACTIONS(12014), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(12017), 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(12011), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11872), 9, + sym__concat, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1308), 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, + [229248] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 3, - sym_file_descriptor, + ACTIONS(10820), 1, + aux_sym_concatenation_token1, + ACTIONS(10947), 1, sym__concat, + STATE(3992), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 23, + ACTIONS(1207), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276283,10 +262584,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 +262595,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [241711] = 4, + anon_sym_LT_LT_LT, + [229288] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4159), 2, + ACTIONS(1274), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - STATE(4358), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4155), 21, + ACTIONS(1272), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276329,15 +262625,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [241747] = 3, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [229322] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 4, - sym_file_descriptor, + ACTIONS(10820), 1, + aux_sym_concatenation_token1, + ACTIONS(10949), 1, sym__concat, - sym_variable_name, + STATE(3992), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 22, + ACTIONS(1213), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276347,9 +262649,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 +262660,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, - [241781] = 3, + anon_sym_LT_LT_LT, + [229362] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 4, + ACTIONS(10935), 1, + sym__special_character, + STATE(4175), 1, + aux_sym__literal_repeat1, + ACTIONS(4125), 2, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 22, + ACTIONS(4123), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276378,8 +262681,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -276389,17 +262693,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, - [241815] = 3, + anon_sym_LT_LT_LT, + [229400] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 4, + ACTIONS(1254), 4, sym_file_descriptor, sym__concat, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 22, + ACTIONS(1252), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276422,15 +262725,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, + [229434] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 4, - sym_file_descriptor, + ACTIONS(10951), 1, + aux_sym_concatenation_token1, + ACTIONS(10953), 1, sym__concat, - ts_builtin_sym_end, + STATE(4336), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1231), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 22, + ACTIONS(1229), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276451,17 +262758,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, - [241883] = 3, + sym__special_character, + [229474] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 4, + ACTIONS(1314), 4, sym_file_descriptor, sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 22, + ACTIONS(1312), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276484,14 +262790,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [241917] = 3, + [229508] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 3, + ACTIONS(10830), 1, + aux_sym_concatenation_token1, + ACTIONS(10832), 1, + sym__concat, + STATE(4211), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4491), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 23, + ACTIONS(4489), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276501,8 +262812,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, @@ -276512,17 +262824,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - sym__special_character, - anon_sym_BQUOTE, - [241951] = 3, + [229548] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 3, - sym_file_descriptor, + ACTIONS(10830), 1, + aux_sym_concatenation_token1, + ACTIONS(10832), 1, sym__concat, + STATE(4214), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4495), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 23, + ACTIONS(4493), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276532,7 +262846,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, @@ -276545,16 +262858,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, - [241985] = 3, + [229588] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 4, + ACTIONS(10955), 1, + sym__special_character, + STATE(4175), 1, + aux_sym__literal_repeat1, + ACTIONS(1318), 2, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 22, + ACTIONS(1316), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276564,8 +262878,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, @@ -276575,16 +262890,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [242019] = 3, + anon_sym_LT_LT_LT, + [229626] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 3, + ACTIONS(10935), 1, + sym__special_character, + STATE(4175), 1, + aux_sym__literal_repeat1, + ACTIONS(4006), 2, sym_file_descriptor, - sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 23, + ACTIONS(4004), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276594,7 +262911,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 +262923,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, - [242053] = 5, + anon_sym_LT_LT_LT, + [229664] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11957), 1, - sym__special_character, - STATE(4420), 1, - aux_sym__literal_repeat1, - ACTIONS(5689), 2, + ACTIONS(1258), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 22, + ACTIONS(1256), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276628,9 +262942,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, @@ -276640,16 +262953,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, - [242091] = 3, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [229698] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 4, + ACTIONS(1270), 4, sym_file_descriptor, sym__concat, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 22, + ACTIONS(1268), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276672,15 +262986,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [242125] = 3, + [229732] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 4, + ACTIONS(1221), 4, sym_file_descriptor, sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 22, + ACTIONS(1219), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276703,14 +263017,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [242159] = 3, + [229766] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 3, + ACTIONS(1274), 4, sym_file_descriptor, sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 23, + ACTIONS(1272), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276732,21 +263047,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, - [242193] = 6, + [229800] = 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(5689), 2, + ACTIONS(1258), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 21, + ACTIONS(1256), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276756,6 +263065,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, @@ -276768,17 +263078,15 @@ 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, + aux_sym_concatenation_token1, + [229834] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11976), 1, - sym__special_character, - STATE(4346), 1, - aux_sym__literal_repeat1, - ACTIONS(5689), 2, + ACTIONS(1266), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 22, + ACTIONS(1264), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276801,15 +263109,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [242271] = 3, + aux_sym_concatenation_token1, + [229868] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 4, + ACTIONS(1221), 3, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 22, + ACTIONS(1219), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276819,8 +263127,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, @@ -276831,19 +263141,21 @@ 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, - [242305] = 5, + [229902] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12023), 1, - sym__special_character, - STATE(4442), 1, - aux_sym__literal_repeat1, - ACTIONS(5266), 3, - sym_file_descriptor, + ACTIONS(10958), 1, sym_variable_name, + STATE(6303), 1, + sym_subscript, + STATE(4272), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(10784), 3, + sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 21, + ACTIONS(10782), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276854,8 +263166,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, @@ -276865,27 +263175,31 @@ 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, + [229942] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 4, + ACTIONS(3937), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4039), 2, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 22, + STATE(534), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(4037), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -276894,25 +263208,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_BQUOTE, - [242377] = 8, + [229980] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11679), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12031), 1, + ACTIONS(10846), 1, anon_sym_LT_LT_LT, - ACTIONS(12034), 1, + ACTIONS(10922), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(10964), 1, sym_file_descriptor, - ACTIONS(12028), 2, + ACTIONS(10962), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4409), 3, + STATE(4727), 2, sym_file_redirect, sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(12025), 8, + ACTIONS(10960), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -276921,7 +263232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(11671), 10, + ACTIONS(10920), 11, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276929,17 +263240,19 @@ static const uint16_t ts_small_parse_table[] = { 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, - anon_sym_BQUOTE, - [242421] = 3, + [230024] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 3, + ACTIONS(1310), 4, sym_file_descriptor, sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 23, + ACTIONS(1308), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276949,10 +263262,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, @@ -276963,15 +263274,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [242455] = 3, + anon_sym_BQUOTE, + [230058] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 4, + ACTIONS(1294), 3, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 22, + ACTIONS(1292), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276981,8 +263292,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, @@ -276993,55 +263306,78 @@ 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, - [242489] = 11, + [230092] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4515), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11978), 1, + ACTIONS(4039), 2, sym_file_descriptor, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4292), 2, + aux_sym_heredoc_redirect_token1, + STATE(534), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(4037), 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, - [242539] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [230128] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 4, + ACTIONS(5772), 5, + anon_sym_COMMA, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + ACTIONS(5770), 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, + [230162] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1254), 4, sym_file_descriptor, sym__concat, - sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 22, + ACTIONS(1252), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277051,9 +263387,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, @@ -277064,19 +263399,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [242573] = 6, + anon_sym_BQUOTE, + [230196] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11843), 1, - aux_sym_concatenation_token1, - ACTIONS(11845), 1, - sym__concat, - STATE(4331), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2158), 2, + ACTIONS(10966), 1, + sym__special_character, + STATE(4192), 1, + aux_sym__literal_repeat1, + ACTIONS(1318), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 21, + ACTIONS(1316), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277098,38 +263433,79 @@ 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, + [230234] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, + ACTIONS(5778), 5, + anon_sym_COMMA, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + ACTIONS(5776), 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, + [230268] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4018), 1, + anon_sym_BQUOTE, + ACTIONS(4719), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 22, - anon_sym_SEMI, + ACTIONS(10969), 1, + anon_sym_LT_LT_LT, + ACTIONS(10971), 1, + sym_file_descriptor, + STATE(4538), 1, + sym_herestring_redirect, + ACTIONS(2782), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3139), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3937), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4717), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + STATE(625), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(4715), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + ACTIONS(3137), 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, - [242647] = 3, + [230322] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1262), 3, @@ -277160,14 +263536,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [242681] = 3, + [230356] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 3, - sym_file_descriptor, + ACTIONS(10820), 1, + aux_sym_concatenation_token1, + ACTIONS(10973), 1, sym__concat, + STATE(3992), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 3, + sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 23, + ACTIONS(1207), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277178,8 +263560,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, @@ -277190,15 +263570,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, - [242715] = 3, + [230396] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 3, + ACTIONS(1298), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 23, + ACTIONS(1296), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277208,6 +263587,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 +263600,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, - [242749] = 5, + [230430] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11976), 1, - sym__special_character, - STATE(4346), 1, - aux_sym__literal_repeat1, - ACTIONS(5563), 2, + ACTIONS(10820), 1, + aux_sym_concatenation_token1, + ACTIONS(10975), 1, + sym__concat, + STATE(3992), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 22, + ACTIONS(1213), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277242,10 +263624,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, @@ -277255,17 +263634,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [242787] = 5, + anon_sym_LT_LT_LT, + [230470] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12037), 1, - sym__special_character, - STATE(4420), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 2, + ACTIONS(1282), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 22, + ACTIONS(1280), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277275,6 +263652,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, @@ -277287,55 +263665,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, - [242825] = 6, + aux_sym_concatenation_token1, + [230504] = 8, 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, - sym_file_descriptor, + ACTIONS(10705), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 21, + ACTIONS(10981), 1, + anon_sym_LT_LT_LT, + ACTIONS(10983), 1, + sym_file_descriptor, + ACTIONS(10979), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4316), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(10977), 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(10699), 10, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [230548] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10846), 1, + anon_sym_LT_LT_LT, + ACTIONS(10915), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(10964), 1, + sym_file_descriptor, + ACTIONS(10962), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4768), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(10960), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, + ACTIONS(10913), 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, - sym__special_character, - anon_sym_BQUOTE, - [242865] = 6, + [230592] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11759), 1, - aux_sym_concatenation_token1, - ACTIONS(11761), 1, - sym__concat, - STATE(4345), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5270), 3, + ACTIONS(10945), 1, + sym__special_character, + STATE(4293), 1, + aux_sym__literal_repeat1, + ACTIONS(4006), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 20, + ACTIONS(4004), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277345,8 +263758,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, @@ -277356,15 +263771,14 @@ 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, + [230630] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 4, + ACTIONS(1310), 3, sym_file_descriptor, sym__concat, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 22, + ACTIONS(1308), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277374,6 +263788,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, @@ -277387,15 +263802,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [242939] = 3, + [230664] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 4, + ACTIONS(10945), 1, + sym__special_character, + STATE(4293), 1, + aux_sym__literal_repeat1, + ACTIONS(4491), 2, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 22, + ACTIONS(4489), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277405,8 +263822,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, @@ -277416,17 +263835,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, - [242973] = 3, + [230702] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 4, - sym_file_descriptor, + ACTIONS(10820), 1, + aux_sym_concatenation_token1, + ACTIONS(10822), 1, sym__concat, + STATE(4196), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4006), 3, + sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 22, + ACTIONS(4004), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277436,7 +263858,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, @@ -277447,47 +263868,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, - [243007] = 3, + anon_sym_LT_LT_LT, + [230742] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 4, + ACTIONS(2071), 1, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, + ACTIONS(4043), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 22, - anon_sym_SEMI, + ACTIONS(2041), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(2043), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3937), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4016), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(4041), 2, + anon_sym_SEMI, anon_sym_AMP, + STATE(534), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(2321), 4, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(2039), 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, + [230792] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 3, + ACTIONS(1231), 4, sym_file_descriptor, - sym__concat, + sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 23, + ACTIONS(1229), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277497,10 +263926,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, @@ -277510,16 +263937,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, - [243075] = 3, + sym__special_character, + anon_sym_BQUOTE, + [230826] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 4, - sym_file_descriptor, + ACTIONS(10820), 1, + aux_sym_concatenation_token1, + ACTIONS(10822), 1, sym__concat, - sym_variable_name, + STATE(4198), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4010), 3, + sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 22, + ACTIONS(4008), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277530,8 +263963,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, @@ -277541,18 +263972,82 @@ 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, + [230866] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11976), 1, - sym__special_character, - STATE(4346), 1, - aux_sym__literal_repeat1, - ACTIONS(4282), 2, + ACTIONS(6078), 5, + anon_sym_COMMA, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + ACTIONS(6076), 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, + [230900] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6084), 5, + anon_sym_COMMA, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + ACTIONS(6082), 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, + [230934] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10830), 1, + aux_sym_concatenation_token1, + ACTIONS(10985), 1, + sym__concat, + STATE(4230), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 22, + ACTIONS(1207), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277562,7 +264057,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, @@ -277575,19 +264069,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, + [230974] = 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(1274), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 21, + ACTIONS(1272), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277608,20 +264098,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, - [243187] = 6, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [231008] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, - aux_sym_concatenation_token1, - ACTIONS(12040), 1, - sym__concat, - STATE(4145), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 2, + ACTIONS(1302), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 21, + ACTIONS(1300), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277631,8 +264117,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, @@ -277642,20 +264130,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, - [243227] = 6, + aux_sym_concatenation_token1, + [231042] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, + ACTIONS(10830), 1, aux_sym_concatenation_token1, - ACTIONS(12042), 1, + ACTIONS(10987), 1, sym__concat, - STATE(4145), 1, + STATE(4230), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 2, + ACTIONS(1215), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 21, + ACTIONS(1213), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277665,8 +264153,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, @@ -277676,15 +264165,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, - [243267] = 3, + [231082] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 3, + ACTIONS(1306), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 23, + ACTIONS(1304), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277708,15 +264196,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [243301] = 3, + [231116] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 4, + ACTIONS(1302), 3, sym_file_descriptor, sym__concat, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 22, + ACTIONS(1300), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277726,6 +264213,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, @@ -277739,15 +264227,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [243335] = 3, + [231150] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 4, - sym_file_descriptor, + ACTIONS(10951), 1, + aux_sym_concatenation_token1, + ACTIONS(10953), 1, sym__concat, - sym_variable_name, + STATE(4487), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1231), 3, + sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 22, + ACTIONS(1229), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277758,8 +264251,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -277769,21 +264260,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, - [243369] = 6, + sym__special_character, + [231190] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12044), 1, - sym_variable_name, - STATE(6703), 1, - sym_subscript, - ACTIONS(11741), 2, + ACTIONS(1278), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - STATE(4438), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(11739), 20, + ACTIONS(1276), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277793,8 +264278,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, @@ -277804,33 +264290,29 @@ 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, + aux_sym_concatenation_token1, + [231224] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11953), 1, - anon_sym_LT_LT_LT, - STATE(4937), 1, - sym_herestring_redirect, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4159), 2, + ACTIONS(1250), 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(4155), 17, + ACTIONS(1248), 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, @@ -277839,20 +264321,22 @@ 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, + aux_sym_concatenation_token1, + [231258] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12046), 1, - sym_variable_name, - STATE(6703), 1, - sym_subscript, - ACTIONS(11658), 2, + ACTIONS(10820), 1, + aux_sym_concatenation_token1, + ACTIONS(10822), 1, + sym__concat, + STATE(4196), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4125), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(4438), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(11656), 20, + ACTIONS(4123), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277862,7 +264346,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, @@ -277873,21 +264356,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [243491] = 6, + anon_sym_LT_LT_LT, + [231298] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11953), 1, - anon_sym_LT_LT_LT, - STATE(4937), 1, - sym_herestring_redirect, - ACTIONS(4268), 2, + ACTIONS(10989), 1, + sym__special_character, + STATE(4221), 1, + aux_sym__literal_repeat1, + ACTIONS(1318), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(4731), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4157), 19, + ACTIONS(1316), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277897,6 +264378,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, @@ -277907,20 +264389,20 @@ 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_BQUOTE, + [231336] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, + ACTIONS(10830), 1, aux_sym_concatenation_token1, - ACTIONS(11788), 1, + ACTIONS(10832), 1, sym__concat, - STATE(4370), 1, + STATE(4211), 1, aux_sym_concatenation_repeat1, - ACTIONS(5689), 3, + ACTIONS(4125), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 20, + ACTIONS(4123), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277931,6 +264413,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, @@ -277940,21 +264424,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, - [243571] = 6, + [231376] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, + ACTIONS(10830), 1, aux_sym_concatenation_token1, - ACTIONS(11788), 1, + ACTIONS(10832), 1, sym__concat, - STATE(4374), 1, + STATE(4214), 1, aux_sym_concatenation_repeat1, - ACTIONS(2158), 3, + ACTIONS(3915), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 20, + ACTIONS(3913), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277965,6 +264447,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, @@ -277974,19 +264458,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, - [243611] = 5, + [231416] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12049), 1, + ACTIONS(10992), 1, sym__special_character, - STATE(4442), 1, + STATE(4192), 1, aux_sym__literal_repeat1, - ACTIONS(1318), 3, + ACTIONS(4449), 3, sym_file_descriptor, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 21, + ACTIONS(4447), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278008,14 +264491,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [243649] = 3, + [231454] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 3, - sym_file_descriptor, + ACTIONS(10820), 1, + aux_sym_concatenation_token1, + ACTIONS(10822), 1, sym__concat, + STATE(4346), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1231), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 23, + ACTIONS(1229), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278026,8 +264514,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, @@ -278038,15 +264524,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, - [243683] = 3, + sym__special_character, + [231494] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 3, + ACTIONS(1278), 4, sym_file_descriptor, sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 23, + ACTIONS(1276), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278068,16 +264555,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, - [243717] = 3, + [231528] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 3, + ACTIONS(10994), 1, + sym__special_character, + STATE(4221), 1, + aux_sym__literal_repeat1, + ACTIONS(4483), 3, sym_file_descriptor, - sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 23, + ACTIONS(4481), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278087,9 +264577,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -278099,16 +264588,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, - [243751] = 3, + anon_sym_BQUOTE, + [231566] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 3, + ACTIONS(1250), 4, sym_file_descriptor, sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 23, + ACTIONS(1248), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278130,16 +264619,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, - [243785] = 3, + [231600] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 3, + ACTIONS(1231), 3, sym_file_descriptor, - sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 23, + ACTIONS(1229), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278149,9 +264637,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, @@ -278162,16 +264649,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, - [243819] = 3, + sym__special_character, + anon_sym_BQUOTE, + [231634] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 4, - sym_file_descriptor, + ACTIONS(10996), 1, + aux_sym_concatenation_token1, + ACTIONS(10999), 1, sym__concat, - sym_variable_name, + STATE(4230), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1221), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 22, + ACTIONS(1219), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278193,16 +264685,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, - [243853] = 3, + [231674] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 4, + ACTIONS(1254), 3, sym_file_descriptor, sym__concat, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 22, + ACTIONS(1252), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278212,6 +264702,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 +264716,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [243887] = 3, + [231708] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 4, - sym_file_descriptor, + ACTIONS(10820), 1, + aux_sym_concatenation_token1, + ACTIONS(10822), 1, sym__concat, - sym_variable_name, + STATE(4196), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4483), 3, + sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 22, + ACTIONS(4481), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278244,8 +264740,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, @@ -278255,87 +264749,87 @@ 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, - [243921] = 3, + anon_sym_LT_LT_LT, + [231748] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(2319), 1, + ts_builtin_sym_end, + ACTIONS(4369), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 22, - anon_sym_SEMI, + ACTIONS(11002), 1, + anon_sym_LT_LT_LT, + ACTIONS(11004), 1, + sym_file_descriptor, + STATE(4538), 1, + sym_herestring_redirect, + ACTIONS(2637), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(2639), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3937), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4367), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + STATE(586), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(4365), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + ACTIONS(2635), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [243955] = 8, + [231802] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11667), 1, - anon_sym_LT_LT_LT, - ACTIONS(11894), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11934), 1, + ACTIONS(1286), 3, sym_file_descriptor, - ACTIONS(11665), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4991), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11663), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11892), 11, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1284), 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, - [243999] = 6, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [231836] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, - aux_sym_concatenation_token1, - ACTIONS(11788), 1, - sym__concat, - STATE(4431), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5689), 2, + ACTIONS(1290), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 21, + ACTIONS(1288), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278345,8 +264839,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -278357,19 +264852,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [244039] = 6, + aux_sym_concatenation_token1, + [231870] = 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(1278), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 21, + ACTIONS(1276), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278390,20 +264882,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, - [244079] = 6, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [231904] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, - aux_sym_concatenation_token1, - ACTIONS(11788), 1, - sym__concat, - STATE(4431), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5563), 2, + ACTIONS(10994), 1, + sym__special_character, + STATE(4221), 1, + aux_sym__literal_repeat1, + ACTIONS(4491), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 21, + ACTIONS(4489), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278424,20 +264916,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, - [244119] = 6, + anon_sym_BQUOTE, + [231942] = 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(2162), 2, + ACTIONS(1286), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 21, + ACTIONS(1284), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278447,8 +264935,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, @@ -278458,16 +264947,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, - [244159] = 3, + aux_sym_concatenation_token1, + [231976] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 4, + ACTIONS(1290), 4, sym_file_descriptor, sym__concat, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 22, + ACTIONS(1288), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278490,19 +264979,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [244193] = 6, + [232010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, - aux_sym_concatenation_token1, - ACTIONS(11788), 1, - sym__concat, - STATE(4431), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4282), 2, + ACTIONS(1266), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 21, + ACTIONS(1264), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278523,32 +265008,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [244233] = 6, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [232044] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, - aux_sym_concatenation_token1, - ACTIONS(11788), 1, - sym__concat, - STATE(4432), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4439), 2, + ACTIONS(11002), 1, + anon_sym_LT_LT_LT, + STATE(4538), 1, + sym_herestring_redirect, + ACTIONS(3937), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(586), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(4039), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 21, + ACTIONS(4037), 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, @@ -278557,20 +265045,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, - [244273] = 6, + [232086] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, - aux_sym_concatenation_token1, - ACTIONS(11788), 1, - sym__concat, - STATE(4431), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4309), 2, + ACTIONS(1250), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 21, + ACTIONS(1248), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278591,49 +265074,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, - [244313] = 6, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [232120] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, - aux_sym_concatenation_token1, - ACTIONS(11788), 1, - sym__concat, - STATE(4432), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4313), 2, + ACTIONS(2071), 1, sym_file_descriptor, + ACTIONS(4020), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 21, + ACTIONS(2041), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(2043), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3937), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4014), 2, anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(4016), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + STATE(534), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(4018), 4, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(2039), 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, - [244353] = 3, + [232170] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 3, - sym_file_descriptor, + ACTIONS(10820), 1, + aux_sym_concatenation_token1, + ACTIONS(10822), 1, sym__concat, + STATE(4196), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4491), 3, + sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 23, + ACTIONS(4489), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278644,8 +265139,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, @@ -278656,15 +265149,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, - [244387] = 3, + [232210] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 3, + ACTIONS(1270), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 23, + ACTIONS(1268), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278674,6 +265166,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, @@ -278686,16 +265179,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, - [244421] = 3, + [232244] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 3, - sym_file_descriptor, + ACTIONS(10820), 1, + aux_sym_concatenation_token1, + ACTIONS(10822), 1, sym__concat, + STATE(4198), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4495), 3, + sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 23, + ACTIONS(4493), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278706,8 +265204,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 +265214,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, - [244455] = 3, + [232284] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 2, + ACTIONS(1286), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 24, + ACTIONS(1284), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278748,47 +265244,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, - sym__special_character, - [244489] = 3, + aux_sym_concatenation_token1, + [232318] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 3, - sym_file_descriptor, - sym__concat, + ACTIONS(10842), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 23, + ACTIONS(10846), 1, + anon_sym_LT_LT_LT, + ACTIONS(10964), 1, + sym_file_descriptor, + ACTIONS(10962), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4741), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(10960), 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(10836), 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_LT_LT_DASH, + [232362] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11012), 1, + anon_sym_LT_LT_LT, + ACTIONS(11015), 1, + sym_file_descriptor, + ACTIONS(10768), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(11009), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4249), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(11006), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, + ACTIONS(10760), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [244523] = 3, + [232406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 3, + ACTIONS(1282), 4, sym_file_descriptor, sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 23, + ACTIONS(1280), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278798,10 +265335,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, @@ -278812,14 +265347,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [244557] = 3, + anon_sym_BQUOTE, + [232440] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 3, + ACTIONS(1266), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 23, + ACTIONS(1264), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278829,7 +265365,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, @@ -278842,15 +265377,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, - [244591] = 3, + [232474] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 3, + ACTIONS(1294), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 23, + ACTIONS(1292), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278860,7 +265396,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, @@ -278873,16 +265408,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, - [244625] = 3, + [232508] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 4, - sym_file_descriptor, + ACTIONS(10830), 1, + aux_sym_concatenation_token1, + ACTIONS(10832), 1, sym__concat, - sym_variable_name, + STATE(4211), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4006), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 22, + ACTIONS(4004), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278904,16 +265444,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, - [244659] = 3, + [232548] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 4, + ACTIONS(1286), 4, sym_file_descriptor, sym__concat, - sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 22, + ACTIONS(1284), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278923,9 +265462,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, @@ -278936,15 +265474,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [244693] = 3, + anon_sym_BQUOTE, + [232582] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 4, + ACTIONS(1262), 3, sym_file_descriptor, sym__concat, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 22, + ACTIONS(1260), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278966,83 +265504,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, - [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, + [232616] = 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(1298), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 20, + ACTIONS(1296), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279053,6 +265524,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, @@ -279063,20 +265536,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [244835] = 6, + aux_sym_concatenation_token1, + [232650] = 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(1290), 4, sym_file_descriptor, + sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 20, + ACTIONS(1288), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279086,6 +265555,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, @@ -279096,22 +265566,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, - [244875] = 6, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [232684] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11759), 1, + ACTIONS(10830), 1, aux_sym_concatenation_token1, - ACTIONS(12052), 1, + ACTIONS(10832), 1, sym__concat, - STATE(4156), 1, + STATE(4214), 1, aux_sym_concatenation_repeat1, - ACTIONS(1229), 4, + ACTIONS(4010), 2, sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 19, + ACTIONS(4008), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279122,6 +265591,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, @@ -279131,57 +265602,14 @@ 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, + [232724] = 3, 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(1274), 3, sym_file_descriptor, - ACTIONS(11665), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4975), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11663), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11902), 11, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - [244959] = 6, - 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, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 19, + ACTIONS(1272), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279191,7 +265619,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 +265632,15 @@ 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, + aux_sym_concatenation_token1, + [232758] = 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(1225), 2, + ACTIONS(1282), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 21, + ACTIONS(1280), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279286,6 +265651,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, @@ -279296,15 +265663,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - sym__special_character, - [245107] = 3, + aux_sym_concatenation_token1, + [232792] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 3, + ACTIONS(1294), 4, sym_file_descriptor, sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 23, + ACTIONS(1292), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279314,10 +265682,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, @@ -279328,14 +265694,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [245141] = 3, + anon_sym_BQUOTE, + [232826] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 3, + ACTIONS(1290), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 23, + ACTIONS(1288), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279359,54 +265726,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [245175] = 12, + [232860] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5163), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11953), 1, - anon_sym_LT_LT_LT, - ACTIONS(11955), 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, - 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, - [245227] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1225), 3, + ACTIONS(1266), 4, sym_file_descriptor, + sym__concat, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 23, + ACTIONS(1264), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279416,7 +265744,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,20 +265756,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [245261] = 6, + aux_sym_concatenation_token1, + [232894] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11843), 1, - aux_sym_concatenation_token1, - ACTIONS(11845), 1, - sym__concat, - STATE(4326), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4282), 2, + ACTIONS(1298), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 21, + ACTIONS(1296), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279452,9 +265775,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, @@ -279464,20 +265786,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [245301] = 6, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [232928] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11759), 1, - aux_sym_concatenation_token1, - ACTIONS(12056), 1, - sym__concat, - STATE(4156), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 3, + ACTIONS(1294), 4, sym_file_descriptor, + sym__concat, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 20, + ACTIONS(1292), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279488,6 +265807,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -279497,20 +265818,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, - [245341] = 6, + aux_sym_concatenation_token1, + [232962] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11843), 1, - aux_sym_concatenation_token1, - ACTIONS(11845), 1, - sym__concat, - STATE(4331), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4439), 2, + ACTIONS(1231), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 21, + ACTIONS(1229), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279520,6 +265836,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, @@ -279532,20 +265849,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [245381] = 6, + sym__special_character, + [232996] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11759), 1, + ACTIONS(10806), 1, aux_sym_concatenation_token1, - ACTIONS(12058), 1, + ACTIONS(10808), 1, sym__concat, - STATE(4156), 1, + STATE(4157), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 3, + ACTIONS(4449), 3, sym_file_descriptor, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 20, + ACTIONS(4447), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279566,20 +265884,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [245421] = 6, + [233036] = 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(1262), 4, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 20, + ACTIONS(1260), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279590,6 +265903,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, @@ -279599,21 +265914,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, - [245461] = 6, + aux_sym_concatenation_token1, + [233070] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12060), 1, - sym_variable_name, - STATE(6672), 1, - sym_subscript, - ACTIONS(11741), 2, + ACTIONS(1298), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - STATE(4493), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(11739), 20, + ACTIONS(1296), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279624,6 +265934,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,21 +265945,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, - [245501] = 6, + aux_sym_concatenation_token1, + [233104] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12062), 1, - sym_variable_name, - STATE(6672), 1, - sym_subscript, - ACTIONS(11658), 2, + ACTIONS(10806), 1, + aux_sym_concatenation_token1, + ACTIONS(10808), 1, + sym__concat, + STATE(4158), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4453), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - STATE(4493), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(11656), 20, + ACTIONS(4451), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279668,19 +265980,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [245541] = 6, + [233144] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, - aux_sym_concatenation_token1, - ACTIONS(11788), 1, - sym__concat, - STATE(4322), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5689), 2, + ACTIONS(1282), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 21, + ACTIONS(1280), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279691,6 +265999,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 +266010,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_BQUOTE, - [245581] = 6, + aux_sym_concatenation_token1, + [233178] = 6, 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(11018), 1, + sym_variable_name, + STATE(6303), 1, + sym_subscript, + STATE(4272), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(10741), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 21, + ACTIONS(10739), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279734,21 +266045,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, - anon_sym_BQUOTE, - [245621] = 6, + [233218] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, - aux_sym_concatenation_token1, - ACTIONS(11788), 1, - sym__concat, - STATE(4322), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5563), 2, + ACTIONS(1302), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 21, + ACTIONS(1300), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279759,6 +266063,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, @@ -279769,20 +266075,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, - [245661] = 6, + aux_sym_concatenation_token1, + [233252] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, + ACTIONS(10820), 1, aux_sym_concatenation_token1, - ACTIONS(11788), 1, + ACTIONS(11021), 1, sym__concat, - STATE(4323), 1, + STATE(3992), 1, aux_sym_concatenation_repeat1, - ACTIONS(2162), 2, + ACTIONS(1209), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 21, + ACTIONS(1207), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279804,19 +266110,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_BQUOTE, - [245701] = 6, + [233292] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, - aux_sym_concatenation_token1, - ACTIONS(11788), 1, - sym__concat, - STATE(4322), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4282), 2, + ACTIONS(1302), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 21, + ACTIONS(1300), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279826,6 +266128,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, @@ -279836,21 +266139,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, - [245741] = 6, + [233326] = 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(1306), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 21, + ACTIONS(1304), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279860,6 +266159,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, @@ -279870,21 +266170,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, - [245781] = 6, + [233360] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, - aux_sym_concatenation_token1, - ACTIONS(11788), 1, - sym__concat, - STATE(4322), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4309), 2, + ACTIONS(1302), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 21, + ACTIONS(1300), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279894,6 +266190,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, @@ -279904,21 +266201,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, - [245821] = 6, + [233394] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, - aux_sym_concatenation_token1, - ACTIONS(11788), 1, - sym__concat, - STATE(4323), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4313), 2, + ACTIONS(1306), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 21, + ACTIONS(1304), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279929,6 +266221,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, @@ -279939,21 +266233,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, - [245861] = 6, + aux_sym_concatenation_token1, + [233428] = 3, 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, + ACTIONS(1302), 3, sym_file_descriptor, - sym_variable_name, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 20, + ACTIONS(1300), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279964,6 +266252,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -279973,21 +266263,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, - [245901] = 6, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [233462] = 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(1302), 4, sym_file_descriptor, + sym__concat, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 20, + ACTIONS(1300), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279998,6 +266284,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -280007,52 +266295,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, - [245941] = 8, + aux_sym_concatenation_token1, + [233496] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11679), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12071), 1, - anon_sym_LT_LT_LT, - ACTIONS(12074), 1, + ACTIONS(11023), 1, + sym_variable_name, + STATE(6313), 1, + sym_subscript, + ACTIONS(10784), 2, sym_file_descriptor, - ACTIONS(12068), 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(12065), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11671), 10, + aux_sym_heredoc_redirect_token1, + STATE(4284), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(10782), 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, - [245985] = 3, + [233536] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 4, + ACTIONS(1306), 4, sym_file_descriptor, + sym__concat, sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 22, + ACTIONS(1304), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280062,8 +266348,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, @@ -280073,22 +266360,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, - [246019] = 6, + aux_sym_concatenation_token1, + [233570] = 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(1302), 4, sym_file_descriptor, + sym__concat, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 20, + ACTIONS(1300), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280098,8 +266379,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -280109,19 +266391,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, + aux_sym_concatenation_token1, + [233604] = 6, 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(5689), 2, + ACTIONS(11025), 1, + sym_variable_name, + STATE(6313), 1, + sym_subscript, + ACTIONS(10741), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 20, + STATE(4284), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(10739), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280131,6 +266415,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, @@ -280141,61 +266426,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_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, + [233644] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12101), 3, + ACTIONS(10994), 1, + sym__special_character, + STATE(4221), 1, + aux_sym__literal_repeat1, + ACTIONS(4125), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12103), 22, + ACTIONS(4123), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280216,16 +266458,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, - [246196] = 3, + [233682] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 3, - sym_file_descriptor, + ACTIONS(10820), 1, + aux_sym_concatenation_token1, + ACTIONS(11028), 1, sym__concat, + STATE(3992), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 22, + ACTIONS(1213), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280236,8 +266482,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, @@ -280247,15 +266491,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, - [246229] = 3, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [233722] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 3, - sym_file_descriptor, + ACTIONS(10951), 1, + aux_sym_concatenation_token1, + ACTIONS(10953), 1, sym__concat, + STATE(4351), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1231), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 22, + ACTIONS(1229), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280266,8 +266516,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 +266525,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, - [246262] = 3, + sym__special_character, + anon_sym_BQUOTE, + [233762] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 3, - sym_file_descriptor, + ACTIONS(10806), 1, + aux_sym_concatenation_token1, + ACTIONS(11030), 1, sym__concat, + STATE(4000), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 3, + sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 22, + ACTIONS(1207), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280295,9 +266550,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, @@ -280307,44 +266561,91 @@ 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, + [233802] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 3, - sym_file_descriptor, - ts_builtin_sym_end, + ACTIONS(4018), 1, + anon_sym_RPAREN, + ACTIONS(4182), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 22, - anon_sym_SEMI, + ACTIONS(10941), 1, + anon_sym_LT_LT_LT, + ACTIONS(10943), 1, + sym_file_descriptor, + STATE(4538), 1, + sym_herestring_redirect, + ACTIONS(2782), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(2784), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3937), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4374), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + STATE(599), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(4178), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + ACTIONS(2780), 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, + [233856] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10705), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11036), 1, + anon_sym_LT_LT_LT, + ACTIONS(11038), 1, + sym_file_descriptor, + ACTIONS(11034), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + STATE(4305), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(11032), 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(10699), 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, - sym__special_character, - anon_sym_BQUOTE, - [246328] = 3, + [233900] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12107), 2, + ACTIONS(1258), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(12105), 23, + ACTIONS(1256), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280354,7 +266655,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, @@ -280368,15 +266668,22 @@ 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, + aux_sym_concatenation_token1, + [233934] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5707), 4, + ACTIONS(11002), 1, + anon_sym_LT_LT_LT, + STATE(4538), 1, + sym_herestring_redirect, + STATE(586), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(3939), 3, sym_file_descriptor, - sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5705), 21, + ACTIONS(3937), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280386,7 +266693,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, @@ -280397,59 +266703,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, - [246394] = 11, + [233974] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2503), 1, - anon_sym_RPAREN, - ACTIONS(4296), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12109), 1, + ACTIONS(11040), 1, + sym__special_character, + STATE(4293), 1, + aux_sym__literal_repeat1, + ACTIONS(1318), 2, sym_file_descriptor, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4529), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4797), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(1316), 22, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11800), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(4290), 3, - anon_sym_SEMI, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4669), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11798), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [246443] = 6, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [234012] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11759), 1, + ACTIONS(10820), 1, aux_sym_concatenation_token1, - ACTIONS(12111), 1, + ACTIONS(10822), 1, sym__concat, - STATE(4156), 1, + STATE(4166), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 3, + ACTIONS(4483), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 19, + ACTIONS(4481), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280459,6 +266758,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, @@ -280469,14 +266769,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [246482] = 3, + anon_sym_LT_LT_LT, + [234052] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4313), 3, + ACTIONS(10820), 1, + aux_sym_concatenation_token1, + ACTIONS(10822), 1, + sym__concat, + STATE(4168), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4487), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 22, + ACTIONS(4485), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280498,15 +266804,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [246515] = 3, + [234092] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12113), 3, + ACTIONS(10820), 1, + aux_sym_concatenation_token1, + ACTIONS(10822), 1, + sym__concat, + STATE(4166), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4491), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12115), 22, + ACTIONS(4489), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280528,66 +266838,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [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, + [234132] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(10820), 1, aux_sym_concatenation_token1, - ACTIONS(12119), 1, + ACTIONS(10822), 1, sym__concat, - STATE(4214), 1, + STATE(4168), 1, aux_sym_concatenation_repeat1, - ACTIONS(1229), 2, + ACTIONS(4495), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 20, + ACTIONS(4493), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280608,14 +266871,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [246652] = 3, + anon_sym_LT_LT_LT, + [234172] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12121), 3, + ACTIONS(10820), 1, + aux_sym_concatenation_token1, + ACTIONS(10822), 1, + sym__concat, + STATE(4166), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4125), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12123), 22, + ACTIONS(4123), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280637,20 +266906,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [246685] = 6, + [234212] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(10820), 1, aux_sym_concatenation_token1, - ACTIONS(12125), 1, + ACTIONS(10822), 1, sym__concat, - STATE(4214), 1, + STATE(4168), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 2, + ACTIONS(3915), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 20, + ACTIONS(3913), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280671,14 +266939,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [246724] = 3, + anon_sym_LT_LT_LT, + [234252] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12127), 3, + ACTIONS(10820), 1, + aux_sym_concatenation_token1, + ACTIONS(10822), 1, + sym__concat, + STATE(4166), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4006), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12129), 22, + ACTIONS(4004), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280700,31 +266974,31 @@ 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, - [246757] = 5, + [234292] = 6, ACTIONS(3), 1, sym_comment, - STATE(5516), 1, - aux_sym_pipeline_repeat1, - ACTIONS(12133), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(12136), 2, + ACTIONS(10820), 1, + aux_sym_concatenation_token1, + ACTIONS(10822), 1, + sym__concat, + STATE(4168), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4010), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12131), 20, + ACTIONS(4008), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -280733,17 +267007,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [246794] = 4, + anon_sym_LT_LT_LT, + [234332] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4159), 2, + ACTIONS(10806), 1, + aux_sym_concatenation_token1, + ACTIONS(10808), 1, + sym__concat, + STATE(4387), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1231), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - STATE(4669), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4155), 20, + ACTIONS(1229), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280753,7 +267031,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, @@ -280764,20 +267041,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [246829] = 6, + sym__special_character, + [234372] = 3, 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, + ACTIONS(1221), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 19, + ACTIONS(1219), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280788,6 +267060,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -280797,14 +267071,20 @@ 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, + aux_sym_concatenation_token1, + [234406] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12140), 3, + ACTIONS(10994), 1, + sym__special_character, + STATE(4221), 1, + aux_sym__literal_repeat1, + ACTIONS(4006), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12142), 22, + ACTIONS(4004), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280825,25 +267105,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, - [246901] = 8, + [234444] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11719), 1, + ACTIONS(10768), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12148), 1, + ACTIONS(11049), 1, anon_sym_LT_LT_LT, - ACTIONS(12150), 1, + ACTIONS(11052), 1, sym_file_descriptor, - ACTIONS(12146), 2, + ACTIONS(11046), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4531), 3, + STATE(4305), 3, sym_file_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(12144), 8, + ACTIONS(11043), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -280852,30 +267131,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(11713), 9, + ACTIONS(10760), 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, - [246944] = 6, + [234488] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(10806), 1, aux_sym_concatenation_token1, - ACTIONS(12002), 1, + ACTIONS(11055), 1, sym__concat, - STATE(4667), 1, + STATE(4000), 1, aux_sym_concatenation_repeat1, - ACTIONS(4282), 3, + ACTIONS(1215), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 19, + ACTIONS(1213), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280885,6 +267165,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,49 +267176,55 @@ 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, + [234528] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11679), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12158), 1, - anon_sym_LT_LT_LT, - ACTIONS(12161), 1, + ACTIONS(10806), 1, + aux_sym_concatenation_token1, + ACTIONS(10808), 1, + sym__concat, + STATE(4311), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4449), 4, sym_file_descriptor, - ACTIONS(12155), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4531), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(12152), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11671), 9, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(4447), 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, - [247026] = 3, + [234568] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5707), 3, + ACTIONS(10806), 1, + aux_sym_concatenation_token1, + ACTIONS(10808), 1, + sym__concat, + STATE(4315), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4453), 4, sym_file_descriptor, sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5705), 22, + ACTIONS(4451), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280947,10 +267234,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, @@ -280960,33 +267244,39 @@ 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, + [234608] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(11883), 1, + ACTIONS(4402), 1, + ts_builtin_sym_end, + ACTIONS(4406), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12173), 1, + ACTIONS(11002), 1, + anon_sym_LT_LT_LT, + ACTIONS(11004), 1, sym_file_descriptor, - ACTIONS(12167), 2, + STATE(4538), 1, + sym_herestring_redirect, + ACTIONS(2637), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(12170), 2, + ACTIONS(2639), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4533), 3, + ACTIONS(3937), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4367), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(586), 2, sym_file_redirect, sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11872), 8, + ACTIONS(4404), 3, 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, + ACTIONS(2635), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -280995,55 +267285,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [247102] = 8, + [234662] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11839), 1, + ACTIONS(10941), 1, anon_sym_LT_LT_LT, - ACTIONS(12176), 1, + STATE(4538), 1, + sym_herestring_redirect, + ACTIONS(3937), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4039), 2, 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, + STATE(599), 2, sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11835), 8, + sym_heredoc_redirect, + ACTIONS(4037), 18, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - 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_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [247145] = 6, + [234704] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(10806), 1, aux_sym_concatenation_token1, - ACTIONS(12002), 1, + ACTIONS(11057), 1, sym__concat, - STATE(4527), 1, + STATE(4000), 1, aux_sym_concatenation_repeat1, - ACTIONS(4439), 3, + ACTIONS(1209), 4, sym_file_descriptor, + sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 19, + ACTIONS(1207), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281063,27 +267354,32 @@ 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, + [234744] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(12180), 2, + ACTIONS(10969), 1, + anon_sym_LT_LT_LT, + STATE(4538), 1, + sym_herestring_redirect, + ACTIONS(3937), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4039), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12178), 23, + STATE(625), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(4037), 18, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -281092,80 +267388,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, - [247217] = 8, + anon_sym_BQUOTE, + [234786] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11763), 1, + ACTIONS(10969), 1, anon_sym_LT_LT_LT, - ACTIONS(11904), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12182), 1, + STATE(4538), 1, + sym_herestring_redirect, + ACTIONS(3939), 2, sym_file_descriptor, - ACTIONS(11800), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4678), 2, + aux_sym_heredoc_redirect_token1, + STATE(625), 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(11902), 10, + sym_heredoc_redirect, + ACTIONS(3937), 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_RPAREN, + anon_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, - [247260] = 3, + anon_sym_BQUOTE, + [234826] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 3, - sym_file_descriptor, - sym__concat, + ACTIONS(2321), 1, + anon_sym_BQUOTE, + ACTIONS(4769), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 22, - anon_sym_SEMI, + ACTIONS(10969), 1, + anon_sym_LT_LT_LT, + ACTIONS(10971), 1, + sym_file_descriptor, + STATE(4538), 1, + sym_herestring_redirect, + ACTIONS(2782), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3139), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3937), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4717), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + STATE(625), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(4767), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + ACTIONS(3137), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [247293] = 3, + [234880] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 3, - sym_file_descriptor, + ACTIONS(10806), 1, + aux_sym_concatenation_token1, + ACTIONS(11059), 1, sym__concat, + STATE(4000), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 4, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 22, + ACTIONS(1213), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281176,8 +267489,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,44 +267498,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [247326] = 3, + [234920] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 3, - sym_file_descriptor, - sym__concat, + ACTIONS(10768), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(11067), 1, + anon_sym_LT_LT_LT, + ACTIONS(11070), 1, + sym_file_descriptor, + ACTIONS(11064), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4316), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(11061), 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(10760), 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, - [247359] = 3, + anon_sym_BQUOTE, + [234964] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12140), 2, + ACTIONS(10941), 1, + anon_sym_LT_LT_LT, + STATE(4538), 1, + sym_herestring_redirect, + ACTIONS(3939), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12142), 23, + STATE(599), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(3937), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281234,10 +267557,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, @@ -281247,15 +267568,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, - [247392] = 3, + [235004] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 3, - sym_file_descriptor, + ACTIONS(10820), 1, + aux_sym_concatenation_token1, + ACTIONS(10822), 1, sym__concat, + STATE(4198), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3915), 3, + sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 22, + ACTIONS(3913), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281266,8 +267592,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, @@ -281277,14 +267601,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, - [247425] = 3, + anon_sym_LT_LT_LT, + [235044] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12127), 2, + ACTIONS(10820), 1, + aux_sym_concatenation_token1, + ACTIONS(10822), 1, + sym__concat, + STATE(4198), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4487), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12129), 23, + ACTIONS(4485), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281294,10 +267625,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, @@ -281308,14 +267636,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [247458] = 3, + [235084] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12184), 3, + ACTIONS(1231), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12186), 22, + ACTIONS(1229), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281325,8 +267652,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, @@ -281337,15 +267666,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, - [247491] = 3, + sym__special_character, + [235118] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 3, + ACTIONS(1314), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 22, + ACTIONS(1312), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281367,31 +267696,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, - [247524] = 5, + [235152] = 6, ACTIONS(3), 1, sym_comment, - STATE(4546), 1, - aux_sym_pipeline_repeat1, - ACTIONS(12136), 2, + ACTIONS(11073), 1, + sym_variable_name, + STATE(6356), 1, + sym_subscript, + ACTIONS(10784), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12188), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(12131), 20, + STATE(4323), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(10782), 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, @@ -281400,14 +267731,21 @@ 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, + anon_sym_BQUOTE, + [235192] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 3, - sym_file_descriptor, + ACTIONS(11075), 1, sym_variable_name, + STATE(6356), 1, + sym_subscript, + ACTIONS(10741), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 22, + STATE(4323), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(10739), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281418,8 +267756,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, @@ -281429,52 +267765,54 @@ 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, + [235232] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4175), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11775), 1, + ACTIONS(10820), 1, + aux_sym_concatenation_token1, + ACTIONS(10822), 1, + sym__concat, + STATE(4274), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4483), 2, sym_file_descriptor, - ACTIONS(4169), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(4481), 21, 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_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, - [247641] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [235272] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2158), 3, + ACTIONS(10820), 1, + aux_sym_concatenation_token1, + ACTIONS(10822), 1, + sym__concat, + STATE(4286), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4487), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 22, + ACTIONS(4485), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281484,7 +267822,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, @@ -281497,83 +267834,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_BQUOTE, - [247674] = 8, + [235312] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11792), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11809), 1, - anon_sym_LT_LT_LT, - ACTIONS(12191), 1, + ACTIONS(10820), 1, + aux_sym_concatenation_token1, + ACTIONS(10822), 1, + sym__concat, + STATE(4274), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4491), 2, sym_file_descriptor, - ACTIONS(11898), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4817), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11896), 8, - anon_sym_LT, - anon_sym_GT, - anon_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), 10, + aux_sym_heredoc_redirect_token1, + ACTIONS(4489), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [247717] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11809), 1, - anon_sym_LT_LT_LT, - ACTIONS(11894), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12191), 1, - sym_file_descriptor, - ACTIONS(11898), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4709), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11896), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(11892), 10, - anon_sym_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_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_BQUOTE, - [247760] = 3, + [235352] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12184), 2, + ACTIONS(10820), 1, + aux_sym_concatenation_token1, + ACTIONS(10822), 1, + sym__concat, + STATE(4286), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4495), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12186), 23, + ACTIONS(4493), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281583,10 +267890,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, @@ -281597,157 +267901,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [247793] = 8, + anon_sym_BQUOTE, + [235392] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12199), 1, + ACTIONS(10820), 1, + aux_sym_concatenation_token1, + ACTIONS(10822), 1, + sym__concat, + STATE(4274), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4125), 2, sym_file_descriptor, - ACTIONS(11883), 2, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12167), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(12196), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4553), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11872), 7, + ACTIONS(4123), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - ACTIONS(12193), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [247836] = 8, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [235432] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11839), 1, - anon_sym_LT_LT_LT, - ACTIONS(12176), 1, + ACTIONS(10820), 1, + aux_sym_concatenation_token1, + ACTIONS(10822), 1, + sym__concat, + STATE(4286), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3915), 2, sym_file_descriptor, - ACTIONS(11837), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(11904), 2, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(4678), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11835), 8, - anon_sym_LT, - anon_sym_GT, - anon_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(3913), 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, - [247879] = 11, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [235472] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4523), 1, - ts_builtin_sym_end, - ACTIONS(4531), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12202), 1, + ACTIONS(10820), 1, + aux_sym_concatenation_token1, + ACTIONS(10822), 1, + sym__concat, + STATE(4274), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4006), 2, sym_file_descriptor, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4527), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(4004), 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(4525), 3, - anon_sym_SEMI, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4645), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11835), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [247928] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11763), 1, - anon_sym_LT_LT_LT, - ACTIONS(11792), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12182), 1, - sym_file_descriptor, - ACTIONS(11800), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4817), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11798), 8, - anon_sym_LT, - anon_sym_GT, - anon_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), 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_LT_LT_LT, + anon_sym_BQUOTE, + [235512] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4439), 3, + ACTIONS(10820), 1, + aux_sym_concatenation_token1, + ACTIONS(10822), 1, + sym__concat, + STATE(4286), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4010), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 22, + ACTIONS(4008), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281757,7 +268026,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, @@ -281770,14 +268038,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_BQUOTE, - [248004] = 3, + [235552] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 3, + ACTIONS(10945), 1, + sym__special_character, + STATE(4293), 1, + aux_sym__literal_repeat1, + ACTIONS(4125), 2, sym_file_descriptor, - sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 22, + ACTIONS(4123), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281787,6 +268058,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, @@ -281799,15 +268071,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [248037] = 3, + [235590] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 3, + ACTIONS(1278), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 22, + ACTIONS(1276), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281817,6 +268088,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, @@ -281830,14 +268102,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [248070] = 3, + [235624] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 3, + ACTIONS(10935), 1, + sym__special_character, + STATE(4175), 1, + aux_sym__literal_repeat1, + ACTIONS(4483), 2, sym_file_descriptor, - sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 22, + ACTIONS(4481), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281859,58 +268134,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, - [248103] = 8, + anon_sym_LT_LT_LT, + [235662] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11809), 1, - anon_sym_LT_LT_LT, - ACTIONS(11904), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12191), 1, + ACTIONS(1262), 4, 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, + sym__concat, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1260), 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, - [248146] = 5, + [235696] = 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(10951), 1, + aux_sym_concatenation_token1, + ACTIONS(11078), 1, + sym__concat, + STATE(4059), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12131), 19, + ACTIONS(1207), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, @@ -281918,6 +268190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -281926,60 +268199,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, - [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, + [235735] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12208), 2, + ACTIONS(1231), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12206), 23, + ACTIONS(1229), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281989,10 +268216,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, @@ -282002,15 +268227,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, - [248281] = 3, + sym__special_character, + anon_sym_BQUOTE, + [235768] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 3, - sym_file_descriptor, + ACTIONS(10806), 1, + aux_sym_concatenation_token1, + ACTIONS(10808), 1, sym__concat, + STATE(4403), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4453), 3, + sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 22, + ACTIONS(4451), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282021,8 +268253,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, @@ -282032,15 +268262,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, - [248314] = 3, + [235807] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 3, + ACTIONS(11080), 1, + sym__special_character, + STATE(4414), 1, + aux_sym__literal_repeat1, + ACTIONS(4006), 2, sym_file_descriptor, - sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 22, + ACTIONS(4004), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282062,20 +268294,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, - [248347] = 6, + [235844] = 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(1231), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 20, + ACTIONS(1229), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282085,8 +268311,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -282096,19 +268323,14 @@ 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, + sym__special_character, + [235877] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, - aux_sym_concatenation_token1, - ACTIONS(12002), 1, - sym__concat, - STATE(4523), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2158), 2, + ACTIONS(1231), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 20, + ACTIONS(1229), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282118,8 +268340,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -282129,19 +268352,16 @@ 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, + sym__special_character, + [235910] = 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(1314), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 20, + ACTIONS(1312), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282151,8 +268371,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, @@ -282162,19 +268383,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, + aux_sym_concatenation_token1, + [235943] = 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(11082), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 20, + ACTIONS(11084), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282195,19 +268412,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [248503] = 6, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [235976] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, - aux_sym_concatenation_token1, - ACTIONS(12002), 1, - sym__concat, - STATE(4521), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5563), 2, + ACTIONS(4487), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 20, + ACTIONS(4485), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282217,8 +268430,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, @@ -282228,19 +268443,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [248542] = 6, + anon_sym_LT_LT_LT, + [236009] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, - aux_sym_concatenation_token1, - ACTIONS(12002), 1, - sym__concat, - STATE(4523), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2162), 2, + ACTIONS(11080), 1, + sym__special_character, + STATE(4414), 1, + aux_sym__literal_repeat1, + ACTIONS(4491), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 20, + ACTIONS(4489), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282250,8 +268464,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, @@ -282261,19 +268476,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, + [236046] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(10820), 1, aux_sym_concatenation_token1, - ACTIONS(12002), 1, + ACTIONS(11086), 1, sym__concat, - STATE(4521), 1, + STATE(3992), 1, aux_sym_concatenation_repeat1, - ACTIONS(4309), 2, + ACTIONS(1209), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 20, + ACTIONS(1207), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282283,7 +268498,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, @@ -282294,19 +268508,21 @@ 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, + anon_sym_LT_LT_LT, + [236085] = 6, 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(4313), 2, + ACTIONS(11088), 1, + anon_sym_LT_LT_LT, + STATE(4538), 1, + sym_herestring_redirect, + ACTIONS(3939), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 20, + STATE(625), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(3937), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282316,7 +268532,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 +268542,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [248659] = 3, + [236124] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12121), 2, + ACTIONS(10820), 1, + aux_sym_concatenation_token1, + ACTIONS(11090), 1, + sym__concat, + STATE(3992), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12123), 23, + ACTIONS(1213), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282343,10 +268564,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, @@ -282357,14 +268575,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [248692] = 3, + [236163] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12210), 3, + ACTIONS(10951), 1, + aux_sym_concatenation_token1, + ACTIONS(10953), 1, + sym__concat, + STATE(4664), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1231), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12212), 22, + ACTIONS(1229), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282374,7 +268597,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, @@ -282385,49 +268607,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_BQUOTE, - [248725] = 6, - ACTIONS(3), 1, + sym__special_character, + [236202] = 19, + ACTIONS(71), 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, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + ACTIONS(11092), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(11096), 1, + anon_sym_LPAREN, + ACTIONS(11098), 1, + aux_sym__c_word_token1, + ACTIONS(11100), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(11102), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(11104), 1, aux_sym_number_token1, + ACTIONS(11106), 1, aux_sym_number_token2, + ACTIONS(11108), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(11110), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(11112), 1, anon_sym_BQUOTE, + ACTIONS(11114), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [248764] = 3, + STATE(2902), 1, + sym__c_unary_expression, + STATE(2905), 1, + sym__c_binary_expression, + STATE(2906), 1, + sym__c_postfix_expression, + STATE(6165), 1, + sym__c_expression, + STATE(6350), 1, + sym__c_variable_assignment, + ACTIONS(11094), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2901), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [236267] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 3, - sym_file_descriptor, + ACTIONS(10951), 1, + aux_sym_concatenation_token1, + ACTIONS(11116), 1, sym__concat, + STATE(4059), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 22, + ACTIONS(1207), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282438,8 +268677,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, @@ -282449,14 +268686,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, - [248797] = 3, + anon_sym_BQUOTE, + [236306] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4439), 2, + ACTIONS(1302), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 23, + ACTIONS(1300), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282466,7 +268704,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,14 +268716,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, - [248830] = 3, + aux_sym_concatenation_token1, + [236339] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2158), 2, + ACTIONS(1306), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 23, + ACTIONS(1304), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282496,7 +268734,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, @@ -282509,31 +268746,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [248863] = 5, + aux_sym_concatenation_token1, + [236372] = 6, 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(10951), 1, + aux_sym_concatenation_token1, + ACTIONS(11118), 1, + sym__concat, + STATE(4059), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12218), 20, + ACTIONS(1213), 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, @@ -282542,47 +268779,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, + [236411] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 3, + ACTIONS(1302), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 22, + ACTIONS(1300), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282605,52 +268810,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [248972] = 11, + [236444] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2503), 1, - anon_sym_BQUOTE, - ACTIONS(4995), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12226), 1, + ACTIONS(10951), 1, + aux_sym_concatenation_token1, + ACTIONS(10953), 1, + sym__concat, + STATE(4478), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4487), 3, sym_file_descriptor, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4529), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4993), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(4485), 19, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11898), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(4991), 3, - anon_sym_SEMI, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4612), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11896), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [249021] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [236483] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12228), 3, + ACTIONS(1258), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(12230), 22, + ACTIONS(1256), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282660,8 +268860,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 +268872,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, - [249054] = 3, + aux_sym_concatenation_token1, + [236516] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12232), 3, + ACTIONS(1221), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(12234), 22, + ACTIONS(1219), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282690,8 +268890,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, @@ -282701,32 +268902,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, + aux_sym_concatenation_token1, + [236549] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4159), 3, + ACTIONS(11122), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(4645), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4155), 17, + ACTIONS(11120), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -282735,23 +268932,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [249124] = 8, + anon_sym_LT_LT_LT, + [236582] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11839), 1, + ACTIONS(11002), 1, anon_sym_LT_LT_LT, - ACTIONS(12176), 1, + ACTIONS(11128), 1, sym_file_descriptor, - ACTIONS(11837), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(11894), 2, + ACTIONS(10922), 2, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(4709), 2, + ACTIONS(11126), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4533), 2, sym_file_redirect, sym_herestring_redirect, - ACTIONS(11835), 8, + ACTIONS(11124), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -282760,7 +268958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(11892), 9, + ACTIONS(10920), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282770,67 +268968,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - [249167] = 11, + [236625] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2505), 1, + ACTIONS(4010), 3, + sym_file_descriptor, 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, + ACTIONS(4008), 22, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(4529), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(11837), 2, + anon_sym_GT_GT, + anon_sym_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(4790), 3, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [236658] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11132), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(11130), 23, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4645), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11835), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [249216] = 5, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [236691] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4159), 2, + ACTIONS(11136), 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, + ACTIONS(11134), 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, @@ -282839,21 +269057,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, - [249253] = 6, + anon_sym_LT_LT_LT, + [236724] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12236), 1, + ACTIONS(11138), 1, aux_sym_concatenation_token1, - ACTIONS(12239), 1, + ACTIONS(11140), 1, sym__concat, - STATE(4591), 1, + STATE(4381), 1, aux_sym_concatenation_repeat1, - ACTIONS(1215), 3, + ACTIONS(1209), 3, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 19, + ACTIONS(1207), 19, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, @@ -282873,52 +269091,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [249292] = 11, + [236763] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4255), 1, - anon_sym_BQUOTE, - ACTIONS(5212), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12226), 1, + ACTIONS(11144), 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(4993), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(11142), 23, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11898), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(5210), 3, - anon_sym_SEMI, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4612), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11896), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [249341] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [236796] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12242), 3, + ACTIONS(11132), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12244), 22, + ACTIONS(11130), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282941,17 +269151,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_BQUOTE, - [249374] = 4, + [236829] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11138), 1, + aux_sym_concatenation_token1, + ACTIONS(11146), 1, + sym__concat, + STATE(4381), 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, + [236868] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4159), 2, + ACTIONS(11148), 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(11150), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282961,6 +269201,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, @@ -282971,48 +269212,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, - [249409] = 3, + [236901] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 3, - sym_file_descriptor, - sym__concat, + ACTIONS(4773), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 22, - anon_sym_SEMI, + ACTIONS(11088), 1, + anon_sym_LT_LT_LT, + ACTIONS(11152), 1, + sym_file_descriptor, + STATE(4538), 1, + sym_herestring_redirect, + ACTIONS(2782), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3139), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3937), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4616), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + STATE(625), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(4771), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + ACTIONS(3137), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [249442] = 5, + [236952] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12246), 1, - sym__special_character, - STATE(4596), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 2, + ACTIONS(3915), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 21, + ACTIONS(3913), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283022,9 +269270,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -283034,18 +269281,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [249479] = 4, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [236985] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4159), 3, + ACTIONS(10951), 1, + aux_sym_concatenation_token1, + ACTIONS(10953), 1, + sym__concat, + STATE(4487), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4125), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(4645), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4155), 19, + ACTIONS(4123), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283065,17 +269316,20 @@ 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, + [237024] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12249), 1, - sym__special_character, - STATE(4596), 1, - aux_sym__literal_repeat1, - ACTIONS(4309), 2, + ACTIONS(10951), 1, + aux_sym_concatenation_token1, + ACTIONS(10953), 1, + sym__concat, + STATE(4478), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3915), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 21, + ACTIONS(3913), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283086,8 +269340,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, @@ -283097,80 +269349,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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11763), 1, - anon_sym_LT_LT_LT, - ACTIONS(11894), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12182), 1, - 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, + [237063] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(12081), 1, + ACTIONS(11096), 1, anon_sym_LPAREN, - ACTIONS(12083), 1, + ACTIONS(11098), 1, aux_sym__c_word_token1, - ACTIONS(12085), 1, + ACTIONS(11100), 1, anon_sym_DOLLAR, - ACTIONS(12087), 1, + ACTIONS(11102), 1, anon_sym_DQUOTE, - ACTIONS(12089), 1, + ACTIONS(11104), 1, aux_sym_number_token1, - ACTIONS(12091), 1, + ACTIONS(11106), 1, aux_sym_number_token2, - ACTIONS(12093), 1, + ACTIONS(11108), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12095), 1, + ACTIONS(11110), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12097), 1, + ACTIONS(11112), 1, anon_sym_BQUOTE, - ACTIONS(12099), 1, + ACTIONS(11114), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12251), 1, + ACTIONS(11154), 1, anon_sym_RPAREN_RPAREN, - STATE(3196), 1, + STATE(2902), 1, sym__c_unary_expression, - STATE(3199), 1, + STATE(2905), 1, sym__c_binary_expression, - STATE(3201), 1, + STATE(2906), 1, sym__c_postfix_expression, - STATE(6605), 1, + STATE(6274), 1, sym__c_expression, - STATE(6686), 1, + STATE(6350), 1, sym__c_variable_assignment, - ACTIONS(12079), 2, + ACTIONS(11094), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3195), 7, + STATE(2901), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -283178,88 +269395,53 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [249659] = 8, + [237128] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(11883), 1, + ACTIONS(4689), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12259), 1, + ACTIONS(11088), 1, + anon_sym_LT_LT_LT, + ACTIONS(11152), 1, sym_file_descriptor, - ACTIONS(12167), 2, + STATE(4538), 1, + sym_herestring_redirect, + ACTIONS(2782), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(12256), 2, + ACTIONS(3139), 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, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3937), 2, 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_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [249702] = 6, - 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, - sym_file_descriptor, - sym_variable_name, - aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 19, - anon_sym_SEMI, + ACTIONS(4616), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + STATE(625), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(4687), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + ACTIONS(3137), 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, - [249741] = 6, + [237179] = 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(4495), 3, sym_file_descriptor, - sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 19, + ACTIONS(4493), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283269,6 +269451,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, @@ -283279,14 +269462,15 @@ 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, + anon_sym_BQUOTE, + [237212] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 3, + ACTIONS(11158), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 22, + ACTIONS(11156), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283309,83 +269493,15 @@ 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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12262), 1, - sym_variable_name, - STATE(6701), 1, - sym_subscript, - ACTIONS(11741), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(4606), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(11739), 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, - [249852] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12264), 1, - sym_variable_name, - STATE(6701), 1, - sym_subscript, - ACTIONS(11658), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(4606), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(11656), 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, - [249891] = 5, + anon_sym_LT_LT_LT, + [237245] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12249), 1, - sym__special_character, - STATE(4596), 1, - aux_sym__literal_repeat1, - ACTIONS(5563), 2, + ACTIONS(1286), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 21, + ACTIONS(1284), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283407,15 +269523,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, + aux_sym_concatenation_token1, + [237278] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5888), 4, + ACTIONS(1290), 3, sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(5886), 21, + ACTIONS(1288), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283425,8 +269541,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -283436,15 +269553,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, - [249961] = 3, + aux_sym_concatenation_token1, + [237311] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2162), 3, + ACTIONS(3915), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 22, + ACTIONS(3913), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283454,144 +269570,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_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, - [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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4257), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11775), 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, - 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, - [250080] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11782), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12226), 1, - sym_file_descriptor, - ACTIONS(4529), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(11898), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4601), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11780), 8, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_BQUOTE, - ACTIONS(11896), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [250123] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [237344] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12208), 3, + STATE(4469), 1, + aux_sym_pipeline_repeat1, + ACTIONS(11162), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(11164), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12206), 22, + ACTIONS(11160), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -283600,22 +269616,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, - [250156] = 6, + [237381] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12214), 1, + ACTIONS(11166), 1, aux_sym_concatenation_token1, - ACTIONS(12267), 1, + ACTIONS(11169), 1, sym__concat, - STATE(4582), 1, + STATE(4381), 1, aux_sym_concatenation_repeat1, - ACTIONS(5136), 3, + ACTIONS(1221), 3, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5134), 19, + ACTIONS(1219), 19, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, @@ -283635,13 +269649,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [250195] = 3, + [237420] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 2, + ACTIONS(11080), 1, + sym__special_character, + STATE(4414), 1, + aux_sym__literal_repeat1, + ACTIONS(4483), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 23, + ACTIONS(4481), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283651,7 +269669,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 +269681,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [250228] = 3, + [237457] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2417), 1, + sym_file_descriptor, + ACTIONS(4193), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(2389), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(2391), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3937), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4180), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(4191), 2, + anon_sym_SEMI, + anon_sym_AMP, + STATE(562), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(2321), 3, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(2387), 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, + [237506] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4313), 2, + ACTIONS(11174), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 23, + ACTIONS(11172), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283695,36 +269749,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [250261] = 11, + [237539] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4255), 1, - anon_sym_RPAREN, - ACTIONS(4515), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12109), 1, + ACTIONS(2417), 1, sym_file_descriptor, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4529), 2, + ACTIONS(4182), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(2389), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(4797), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(11800), 2, + ACTIONS(2391), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4513), 3, + ACTIONS(3937), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4178), 2, anon_sym_SEMI, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4669), 3, + ACTIONS(4180), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(562), 2, sym_file_redirect, sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11798), 8, + ACTIONS(4018), 3, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(2387), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -283733,19 +269787,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [250310] = 6, + [237588] = 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(1231), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 20, + ACTIONS(1229), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283755,7 +269803,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, @@ -283766,19 +269817,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, sym__special_character, - [250349] = 6, + [237621] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, + ACTIONS(10806), 1, aux_sym_concatenation_token1, - ACTIONS(12269), 1, + ACTIONS(11176), 1, sym__concat, - STATE(4145), 1, + STATE(4000), 1, aux_sym_concatenation_repeat1, - ACTIONS(1229), 2, + ACTIONS(1209), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 20, + ACTIONS(1207), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283798,139 +269850,123 @@ static const uint16_t 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, + [237660] = 12, 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, - sym_file_descriptor, + ACTIONS(4643), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 20, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(11088), 1, + anon_sym_LT_LT_LT, + ACTIONS(11152), 1, + sym_file_descriptor, + STATE(4538), 1, + sym_herestring_redirect, + ACTIONS(2782), 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_LT_DASH, + ACTIONS(3139), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [250427] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5888), 3, - sym_file_descriptor, - sym_variable_name, - aux_sym_heredoc_redirect_token1, - ACTIONS(5886), 22, - anon_sym_SEMI, + ACTIONS(3937), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4616), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + STATE(625), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(4641), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + ACTIONS(3137), 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, + [237711] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(12242), 2, - sym_file_descriptor, + ACTIONS(4618), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12244), 23, - anon_sym_SEMI, + ACTIONS(11088), 1, + anon_sym_LT_LT_LT, + ACTIONS(11152), 1, + sym_file_descriptor, + STATE(4538), 1, + sym_herestring_redirect, + ACTIONS(2782), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3139), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3937), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4616), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + STATE(625), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(4614), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + ACTIONS(3137), 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, - [250493] = 19, + [237762] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(12081), 1, + ACTIONS(11096), 1, anon_sym_LPAREN, - ACTIONS(12083), 1, + ACTIONS(11098), 1, aux_sym__c_word_token1, - ACTIONS(12085), 1, + ACTIONS(11100), 1, anon_sym_DOLLAR, - ACTIONS(12087), 1, + ACTIONS(11102), 1, anon_sym_DQUOTE, - ACTIONS(12089), 1, + ACTIONS(11104), 1, aux_sym_number_token1, - ACTIONS(12091), 1, + ACTIONS(11106), 1, aux_sym_number_token2, - ACTIONS(12093), 1, + ACTIONS(11108), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12095), 1, + ACTIONS(11110), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12097), 1, + ACTIONS(11112), 1, anon_sym_BQUOTE, - ACTIONS(12099), 1, + ACTIONS(11114), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12273), 1, + ACTIONS(11178), 1, anon_sym_RPAREN_RPAREN, - STATE(3196), 1, + STATE(2902), 1, sym__c_unary_expression, - STATE(3199), 1, + STATE(2905), 1, sym__c_binary_expression, - STATE(3201), 1, + STATE(2906), 1, sym__c_postfix_expression, - STATE(6565), 1, + STATE(6223), 1, sym__c_expression, - STATE(6686), 1, + STATE(6350), 1, sym__c_variable_assignment, - ACTIONS(12079), 2, + ACTIONS(11094), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3195), 7, + STATE(2901), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -283938,19 +269974,19 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [250558] = 6, + [237827] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, + ACTIONS(10951), 1, aux_sym_concatenation_token1, - ACTIONS(11788), 1, + ACTIONS(10953), 1, sym__concat, - STATE(4619), 1, + STATE(4336), 1, aux_sym_concatenation_repeat1, - ACTIONS(5689), 2, + ACTIONS(4125), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 20, + ACTIONS(4123), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283960,6 +269996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -283970,20 +270007,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [250597] = 6, + [237866] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, + ACTIONS(10951), 1, aux_sym_concatenation_token1, - ACTIONS(11788), 1, + ACTIONS(10953), 1, sym__concat, - STATE(4620), 1, + STATE(4400), 1, aux_sym_concatenation_repeat1, - ACTIONS(2158), 2, + ACTIONS(3915), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 20, + ACTIONS(3913), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283993,6 +270029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -284003,20 +270040,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [250636] = 6, + [237905] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, + ACTIONS(10951), 1, aux_sym_concatenation_token1, - ACTIONS(11788), 1, + ACTIONS(10953), 1, sym__concat, - STATE(4619), 1, + STATE(4336), 1, aux_sym_concatenation_repeat1, - ACTIONS(5563), 2, + ACTIONS(4006), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 20, + ACTIONS(4004), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284026,6 +270062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -284036,20 +270073,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [250675] = 6, + [237944] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, + ACTIONS(10951), 1, aux_sym_concatenation_token1, - ACTIONS(11788), 1, + ACTIONS(10953), 1, sym__concat, - STATE(4620), 1, + STATE(4400), 1, aux_sym_concatenation_repeat1, - ACTIONS(2162), 2, + ACTIONS(4010), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 20, + ACTIONS(4008), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284059,6 +270095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -284069,14 +270106,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, - [250714] = 3, + [237983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12210), 2, + ACTIONS(11182), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12212), 23, + ACTIONS(11180), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284100,19 +270136,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [250747] = 6, + [238016] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, + ACTIONS(10951), 1, aux_sym_concatenation_token1, - ACTIONS(11788), 1, + ACTIONS(10953), 1, sym__concat, - STATE(4619), 1, + STATE(4487), 1, aux_sym_concatenation_repeat1, - ACTIONS(4282), 2, + ACTIONS(4491), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 20, + ACTIONS(4489), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284132,20 +270169,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, - [250786] = 6, + [238055] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, + ACTIONS(10951), 1, aux_sym_concatenation_token1, - ACTIONS(11788), 1, + ACTIONS(10953), 1, sym__concat, - STATE(4620), 1, + STATE(4478), 1, aux_sym_concatenation_repeat1, - ACTIONS(4439), 2, + ACTIONS(4495), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 20, + ACTIONS(4493), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284165,20 +270202,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, - [250825] = 6, + [238094] = 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(4309), 2, + ACTIONS(11186), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 20, + ACTIONS(11184), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284188,7 +270218,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, @@ -284199,19 +270232,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [250864] = 6, + [238127] = 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(11188), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 20, + ACTIONS(11190), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284221,6 +270249,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, @@ -284232,20 +270261,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [250903] = 6, + anon_sym_BQUOTE, + [238160] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(10951), 1, aux_sym_concatenation_token1, - ACTIONS(12002), 1, + ACTIONS(11192), 1, sym__concat, - STATE(4667), 1, + STATE(4059), 1, aux_sym_concatenation_repeat1, - ACTIONS(5563), 3, + ACTIONS(1215), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 19, + ACTIONS(1213), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284255,6 +270284,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, @@ -284265,13 +270295,14 @@ 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, + [238199] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12228), 2, + ACTIONS(1270), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(12230), 23, + ACTIONS(1268), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284281,7 +270312,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, @@ -284294,21 +270324,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, - [250975] = 6, + aux_sym_concatenation_token1, + [238232] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, - aux_sym_concatenation_token1, - ACTIONS(12002), 1, - sym__concat, - STATE(4527), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2162), 3, + ACTIONS(11158), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 19, + ACTIONS(11156), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284318,6 +270342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -284328,20 +270353,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [251014] = 6, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [238265] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(10806), 1, aux_sym_concatenation_token1, - ACTIONS(12002), 1, + ACTIONS(11194), 1, sym__concat, - STATE(4667), 1, + STATE(4000), 1, aux_sym_concatenation_repeat1, - ACTIONS(5689), 3, + ACTIONS(1215), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 19, + ACTIONS(1213), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284361,20 +270388,20 @@ 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, + [238304] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(10951), 1, aux_sym_concatenation_token1, - ACTIONS(12002), 1, + ACTIONS(10953), 1, sym__concat, - STATE(4527), 1, + STATE(4487), 1, aux_sym_concatenation_repeat1, - ACTIONS(2158), 3, + ACTIONS(4006), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 19, + ACTIONS(4004), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284394,14 +270421,17 @@ 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, + [238343] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12107), 3, + ACTIONS(11080), 1, + sym__special_character, + STATE(4414), 1, + aux_sym__literal_repeat1, + ACTIONS(4125), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12105), 22, + ACTIONS(4123), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284411,8 +270441,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, @@ -284422,15 +270453,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, - [251125] = 3, + [238380] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12101), 2, + ACTIONS(10951), 1, + aux_sym_concatenation_token1, + ACTIONS(10953), 1, + sym__concat, + STATE(4336), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4483), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12103), 23, + ACTIONS(4481), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284440,10 +270475,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, @@ -284453,18 +270486,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, - [251158] = 5, + [238419] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12249), 1, - sym__special_character, - STATE(4596), 1, - aux_sym__literal_repeat1, - ACTIONS(4282), 2, + ACTIONS(10951), 1, + aux_sym_concatenation_token1, + ACTIONS(10953), 1, + sym__concat, + STATE(4400), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4487), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 21, + ACTIONS(4485), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284474,9 +270508,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, @@ -284486,20 +270519,19 @@ 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, + [238458] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(10951), 1, aux_sym_concatenation_token1, - ACTIONS(12002), 1, + ACTIONS(10953), 1, sym__concat, - STATE(4667), 1, + STATE(4336), 1, aux_sym_concatenation_repeat1, - ACTIONS(4309), 3, + ACTIONS(4491), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 19, + ACTIONS(4489), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284509,6 +270541,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, @@ -284519,14 +270552,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [251234] = 3, + [238497] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 3, - sym_file_descriptor, + ACTIONS(10951), 1, + aux_sym_concatenation_token1, + ACTIONS(10953), 1, sym__concat, + STATE(4400), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4495), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 22, + ACTIONS(4493), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284536,9 +270574,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -284548,14 +270585,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, - [251267] = 3, + [238536] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2162), 2, + ACTIONS(10951), 1, + aux_sym_concatenation_token1, + ACTIONS(10953), 1, + sym__concat, + STATE(4478), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4010), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 23, + ACTIONS(4008), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284565,10 +270608,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, @@ -284578,129 +270618,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, - [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, + [238575] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12202), 1, + STATE(5236), 1, + aux_sym_pipeline_repeat1, + ACTIONS(11200), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(11196), 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(11198), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - ACTIONS(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_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, + [238612] = 8, 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(11002), 1, + anon_sym_LT_LT_LT, + ACTIONS(11128), 1, sym_file_descriptor, + ACTIONS(10842), 2, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 19, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(11126), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4573), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(11124), 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(10836), 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, - [251447] = 3, + [238655] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 3, + ACTIONS(4453), 4, sym_file_descriptor, - sym__concat, + sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 22, + ACTIONS(4451), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284710,9 +270703,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 +270714,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, - [251480] = 3, + anon_sym_BQUOTE, + [238688] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12180), 3, + ACTIONS(11203), 1, + sym__special_character, + STATE(4414), 1, + aux_sym__literal_repeat1, + ACTIONS(1318), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12178), 22, + ACTIONS(1316), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284740,8 +270735,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, @@ -284751,54 +270747,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + [238725] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11096), 1, + anon_sym_LPAREN, + ACTIONS(11098), 1, + aux_sym__c_word_token1, + ACTIONS(11100), 1, + anon_sym_DOLLAR, + ACTIONS(11102), 1, + anon_sym_DQUOTE, + ACTIONS(11104), 1, + aux_sym_number_token1, + ACTIONS(11106), 1, + aux_sym_number_token2, + ACTIONS(11108), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11110), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11112), 1, anon_sym_BQUOTE, - [251513] = 6, + ACTIONS(11114), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11206), 1, + anon_sym_RPAREN_RPAREN, + STATE(2902), 1, + sym__c_unary_expression, + STATE(2905), 1, + sym__c_binary_expression, + STATE(2906), 1, + sym__c_postfix_expression, + STATE(6266), 1, + sym__c_expression, + STATE(6350), 1, + sym__c_variable_assignment, + ACTIONS(11094), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2901), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [238790] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, - aux_sym_concatenation_token1, - ACTIONS(12277), 1, - sym__concat, - STATE(4214), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 2, - sym_file_descriptor, + ACTIONS(10705), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 20, + ACTIONS(11212), 1, + anon_sym_LT_LT_LT, + ACTIONS(11214), 1, + sym_file_descriptor, + ACTIONS(11210), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4492), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(11208), 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(10699), 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_PIPE_AMP, + anon_sym_LT_LT_DASH, + [238833] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11096), 1, + anon_sym_LPAREN, + ACTIONS(11098), 1, + aux_sym__c_word_token1, + ACTIONS(11100), 1, + anon_sym_DOLLAR, + ACTIONS(11102), 1, + anon_sym_DQUOTE, + ACTIONS(11104), 1, + aux_sym_number_token1, + ACTIONS(11106), 1, + aux_sym_number_token2, + ACTIONS(11108), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11110), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11112), 1, + anon_sym_BQUOTE, + ACTIONS(11114), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11216), 1, + anon_sym_RPAREN_RPAREN, + STATE(2902), 1, + sym__c_unary_expression, + STATE(2905), 1, + sym__c_binary_expression, + STATE(2906), 1, + sym__c_postfix_expression, + STATE(6278), 1, + sym__c_expression, + STATE(6350), 1, + sym__c_variable_assignment, + ACTIONS(11094), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2901), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [238898] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10842), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(10941), 1, + anon_sym_LT_LT_LT, + ACTIONS(11222), 1, + sym_file_descriptor, + ACTIONS(11220), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4573), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(11218), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, + ACTIONS(10836), 10, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [251552] = 6, + [238941] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(10806), 1, aux_sym_concatenation_token1, - ACTIONS(12002), 1, + ACTIONS(10808), 1, sym__concat, - STATE(4649), 1, + STATE(4387), 1, aux_sym_concatenation_repeat1, - ACTIONS(2158), 2, + ACTIONS(4449), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 20, + ACTIONS(4447), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284818,31 +270942,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_BQUOTE, - [251591] = 6, + [238980] = 7, 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(4282), 2, + ACTIONS(11088), 1, + anon_sym_LT_LT_LT, + STATE(4538), 1, + sym_herestring_redirect, + ACTIONS(3937), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4039), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 20, + STATE(625), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(4037), 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, @@ -284851,20 +270976,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, - [251630] = 6, + [239021] = 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(4439), 2, + ACTIONS(4495), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 20, + ACTIONS(4493), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284874,7 +270992,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, @@ -284884,20 +271005,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, - [251669] = 6, + anon_sym_LT_LT_LT, + [239054] = 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(5563), 2, + ACTIONS(11226), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 20, + ACTIONS(11224), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284907,7 +271022,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, @@ -284917,20 +271035,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, - [251708] = 6, + anon_sym_LT_LT_LT, + [239087] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, - aux_sym_concatenation_token1, - ACTIONS(12002), 1, - sym__concat, - STATE(4649), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2162), 2, + ACTIONS(4971), 4, sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 20, + ACTIONS(4969), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284940,6 +271054,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, @@ -284951,19 +271066,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [251747] = 6, + [239120] = 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(11186), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 20, + ACTIONS(11184), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284973,6 +271083,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, @@ -284983,20 +271094,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_BQUOTE, - [251786] = 6, + [239153] = 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(11136), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 20, + ACTIONS(11134), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285006,6 +271113,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, @@ -285016,14 +271124,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_BQUOTE, - [251825] = 3, + [239186] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12232), 2, + ACTIONS(1274), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(12234), 23, + ACTIONS(1272), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285033,7 +271143,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, @@ -285046,14 +271155,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, - [251858] = 3, + aux_sym_concatenation_token1, + [239219] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12281), 2, + ACTIONS(4967), 4, sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12279), 23, + ACTIONS(4965), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285063,10 +271174,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, @@ -285076,15 +271185,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, + [239252] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 3, + ACTIONS(1278), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 22, + ACTIONS(1276), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285107,66 +271216,20 @@ static const uint16_t ts_small_parse_table[] = { 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, + [239285] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12214), 1, + ACTIONS(11138), 1, aux_sym_concatenation_token1, - ACTIONS(12267), 1, + ACTIONS(11232), 1, sym__concat, - STATE(4577), 1, + STATE(4364), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 3, + ACTIONS(11230), 3, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 19, + ACTIONS(11228), 19, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, @@ -285186,17 +271249,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [252028] = 5, + [239324] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12249), 1, - sym__special_character, - STATE(4596), 1, - aux_sym__literal_repeat1, - ACTIONS(5689), 2, + ACTIONS(1310), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 21, + ACTIONS(1308), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285218,13 +271278,15 @@ 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, + aux_sym_concatenation_token1, + [239357] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12113), 2, + ACTIONS(1254), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(12115), 23, + ACTIONS(1252), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285234,7 +271296,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, @@ -285247,14 +271308,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, - [252098] = 3, + aux_sym_concatenation_token1, + [239390] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 2, + ACTIONS(11234), 1, + sym_variable_name, + STATE(6320), 1, + sym_subscript, + ACTIONS(10784), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 23, + STATE(4434), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(10782), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285265,8 +271333,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -285276,16 +271342,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, - sym__special_character, - [252131] = 3, + [239429] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12281), 3, + ACTIONS(4487), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12279), 22, + ACTIONS(4485), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285308,52 +271372,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_BQUOTE, - [252164] = 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(4669), 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_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [252201] = 6, + [239462] = 6, 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(11236), 1, + sym_variable_name, + STATE(6320), 1, + sym_subscript, + ACTIONS(10741), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 19, + STATE(4434), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(10739), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285373,15 +271405,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [252240] = 3, + [239501] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 4, + ACTIONS(1250), 3, sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 21, + ACTIONS(1248), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285391,8 +271422,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, @@ -285402,34 +271434,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_BQUOTE, - [252273] = 8, + aux_sym_concatenation_token1, + [239534] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11782), 1, + ACTIONS(10922), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12109), 1, + ACTIONS(10941), 1, + anon_sym_LT_LT_LT, + ACTIONS(11222), 1, sym_file_descriptor, - ACTIONS(4529), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(11800), 2, + ACTIONS(11220), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4533), 3, + STATE(4533), 2, sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11780), 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(11798), 8, + sym_herestring_redirect, + ACTIONS(11218), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -285438,98 +271459,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [252316] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11759), 1, - aux_sym_concatenation_token1, - ACTIONS(12287), 1, - sym__concat, - STATE(4156), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 3, - sym_file_descriptor, - sym_variable_name, - aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 19, + ACTIONS(10920), 10, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - 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, + [239577] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, - aux_sym_concatenation_token1, - ACTIONS(12291), 1, - sym__concat, - STATE(4214), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 2, + ACTIONS(11239), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 20, + ACTIONS(11241), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285539,6 +271487,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, @@ -285549,60 +271498,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, - [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, + [239610] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12297), 2, + ACTIONS(11245), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12295), 22, + ACTIONS(11243), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285625,229 +271529,50 @@ 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, + anon_sym_LT_LT_LT, + [239643] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 4, - sym__concat, - sym_test_operator, - sym__brace_start, + ACTIONS(10915), 1, 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, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_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(10941), 1, + anon_sym_LT_LT_LT, + ACTIONS(11222), 1, sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(12343), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(11220), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4574), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(11218), 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, - [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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12347), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(12349), 21, + ACTIONS(10913), 10, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_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, - [252830] = 3, + [239686] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12351), 3, + ACTIONS(11174), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12353), 21, + ACTIONS(11172), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285868,14 +271593,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, + [239719] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11138), 1, + aux_sym_concatenation_token1, + ACTIONS(11232), 1, + sym__concat, + STATE(4367), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11249), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(11247), 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, - [252862] = 3, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [239758] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12121), 2, + ACTIONS(1266), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(12123), 22, + ACTIONS(1264), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285885,7 +271645,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, @@ -285898,13 +271657,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, + aux_sym_concatenation_token1, + [239791] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12357), 2, + ACTIONS(11188), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12355), 22, + ACTIONS(11190), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285927,56 +271687,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [252926] = 16, + anon_sym_LT_LT_LT, + [239824] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, - anon_sym_BANG2, - ACTIONS(12331), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(10842), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(10969), 1, + anon_sym_LT_LT_LT, + ACTIONS(11255), 1, + sym_file_descriptor, + ACTIONS(11253), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4573), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(11251), 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(10836), 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, - 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, + [239867] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12361), 3, + ACTIONS(4967), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(12363), 21, + ACTIONS(4965), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285986,8 +271740,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -285997,57 +271753,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, - [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, + [239900] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12361), 3, + ACTIONS(10820), 1, + aux_sym_concatenation_token1, + ACTIONS(10822), 1, + sym__concat, + STATE(4346), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4483), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12363), 21, + ACTIONS(4481), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286057,7 +271775,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, @@ -286068,86 +271785,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, - [253106] = 3, + anon_sym_LT_LT_LT, + [239939] = 6, 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, + ACTIONS(10820), 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, - [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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12121), 3, + ACTIONS(10822), 1, + sym__concat, + STATE(4348), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4487), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12123), 21, + ACTIONS(4485), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286157,7 +271808,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, @@ -286168,99 +271818,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, - [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, + anon_sym_LT_LT_LT, + [239978] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12373), 3, + ACTIONS(10820), 1, + aux_sym_concatenation_token1, + ACTIONS(10822), 1, + sym__concat, + STATE(4346), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4491), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12375), 21, + ACTIONS(4489), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286270,7 +271841,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, @@ -286281,14 +271851,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, - [253376] = 3, + anon_sym_LT_LT_LT, + [240017] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 2, + ACTIONS(10820), 1, + aux_sym_concatenation_token1, + ACTIONS(10822), 1, + sym__concat, + STATE(4348), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4495), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 22, + ACTIONS(4493), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286299,8 +271875,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, @@ -286310,56 +271884,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, - [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, + anon_sym_LT_LT_LT, + [240056] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2162), 2, + ACTIONS(10820), 1, + aux_sym_concatenation_token1, + ACTIONS(10822), 1, + sym__concat, + STATE(4346), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4125), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 22, + ACTIONS(4123), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286369,10 +271907,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, @@ -286382,142 +271917,20 @@ 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, + [240095] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 3, + ACTIONS(10820), 1, + aux_sym_concatenation_token1, + ACTIONS(10822), 1, + sym__concat, + STATE(4348), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3915), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 21, + ACTIONS(3913), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286528,8 +271941,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, @@ -286539,56 +271950,20 @@ 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, + anon_sym_LT_LT_LT, + [240134] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12385), 3, + ACTIONS(10820), 1, + aux_sym_concatenation_token1, + ACTIONS(10822), 1, + sym__concat, + STATE(4346), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4006), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12387), 21, + ACTIONS(4004), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286598,7 +271973,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, @@ -286609,56 +271983,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, - [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, + anon_sym_LT_LT_LT, + [240173] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12393), 2, + ACTIONS(10820), 1, + aux_sym_concatenation_token1, + ACTIONS(10822), 1, + sym__concat, + STATE(4348), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4010), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12391), 22, + ACTIONS(4008), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286668,10 +272006,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 +272016,15 @@ 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_LT_LT_LT, + [240212] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12397), 2, + ACTIONS(4453), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(12395), 22, + ACTIONS(4451), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286710,55 +272047,13 @@ 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, + [240245] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, - anon_sym_BANG2, - ACTIONS(12331), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, - anon_sym_BQUOTE, - ACTIONS(12335), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, - sym_variable_name, - ACTIONS(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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12127), 2, + ACTIONS(11148), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12129), 22, + ACTIONS(11150), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286768,6 +272063,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, @@ -286781,13 +272077,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [254010] = 3, + [240278] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12397), 2, + ACTIONS(1294), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(12395), 22, + ACTIONS(1292), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286797,7 +272094,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, @@ -286810,14 +272106,15 @@ 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, + aux_sym_concatenation_token1, + [240311] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12401), 3, + ACTIONS(11144), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12403), 21, + ACTIONS(11142), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286838,135 +272135,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, anon_sym_BQUOTE, - [254074] = 10, + [240344] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11978), 1, + ACTIONS(4971), 3, sym_file_descriptor, - ACTIONS(4290), 2, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(4969), 22, anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(4292), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(4294), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(11665), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(2503), 3, + anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - STATE(4358), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11663), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [240377] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12409), 3, + ACTIONS(11122), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12411), 21, + ACTIONS(11120), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286987,14 +272195,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [240410] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11096), 1, + anon_sym_LPAREN, + ACTIONS(11098), 1, + aux_sym__c_word_token1, + ACTIONS(11100), 1, + anon_sym_DOLLAR, + ACTIONS(11102), 1, + anon_sym_DQUOTE, + ACTIONS(11104), 1, + aux_sym_number_token1, + ACTIONS(11106), 1, + aux_sym_number_token2, + ACTIONS(11108), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11110), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11112), 1, anon_sym_BQUOTE, - [254268] = 3, + ACTIONS(11114), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11257), 1, + anon_sym_RPAREN_RPAREN, + STATE(2902), 1, + sym__c_unary_expression, + STATE(2905), 1, + sym__c_binary_expression, + STATE(2906), 1, + sym__c_postfix_expression, + STATE(6235), 1, + sym__c_expression, + STATE(6350), 1, + sym__c_variable_assignment, + ACTIONS(11094), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2901), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [240475] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4439), 2, + ACTIONS(11182), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 22, + ACTIONS(11180), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287004,10 +272260,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -287017,14 +272271,62 @@ 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_LT_LT_LT, + anon_sym_BQUOTE, + [240508] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11096), 1, + anon_sym_LPAREN, + ACTIONS(11098), 1, + aux_sym__c_word_token1, + ACTIONS(11100), 1, + anon_sym_DOLLAR, + ACTIONS(11102), 1, + anon_sym_DQUOTE, + ACTIONS(11104), 1, + aux_sym_number_token1, + ACTIONS(11106), 1, + aux_sym_number_token2, + ACTIONS(11108), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11110), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11112), 1, + anon_sym_BQUOTE, + ACTIONS(11114), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11259), 1, + anon_sym_RPAREN_RPAREN, + STATE(2902), 1, + sym__c_unary_expression, + STATE(2905), 1, + sym__c_binary_expression, + STATE(2906), 1, + sym__c_postfix_expression, + STATE(6257), 1, + sym__c_expression, + STATE(6350), 1, + sym__c_variable_assignment, + ACTIONS(11094), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2901), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [240573] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12373), 3, + ACTIONS(1262), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(12375), 21, + ACTIONS(1260), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287034,8 +272336,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, @@ -287045,19 +272348,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, - [254332] = 5, + aux_sym_concatenation_token1, + [240606] = 5, ACTIONS(3), 1, sym_comment, - STATE(4716), 1, - aux_sym_pipeline_repeat1, - ACTIONS(12136), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(12413), 2, + ACTIONS(3937), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(12131), 19, + ACTIONS(4039), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(562), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(4037), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287077,14 +272381,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [254368] = 3, + [240643] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11096), 1, + anon_sym_LPAREN, + ACTIONS(11098), 1, + aux_sym__c_word_token1, + ACTIONS(11100), 1, + anon_sym_DOLLAR, + ACTIONS(11102), 1, + anon_sym_DQUOTE, + ACTIONS(11104), 1, + aux_sym_number_token1, + ACTIONS(11106), 1, + aux_sym_number_token2, + ACTIONS(11108), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11110), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11112), 1, + anon_sym_BQUOTE, + ACTIONS(11114), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11261), 1, + anon_sym_RPAREN_RPAREN, + STATE(2902), 1, + sym__c_unary_expression, + STATE(2905), 1, + sym__c_binary_expression, + STATE(2906), 1, + sym__c_postfix_expression, + STATE(6258), 1, + sym__c_expression, + STATE(6350), 1, + sym__c_variable_assignment, + ACTIONS(11094), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2901), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [240708] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12101), 3, + ACTIONS(4010), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12103), 21, + ACTIONS(4008), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287094,8 +272443,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -287105,15 +272456,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, - [254400] = 3, + anon_sym_LT_LT_LT, + [240741] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5707), 3, + ACTIONS(1298), 3, sym_file_descriptor, - sym_variable_name, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(5705), 21, + ACTIONS(1296), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287135,13 +272486,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [254432] = 3, + aux_sym_concatenation_token1, + [240774] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12208), 2, + ACTIONS(11239), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12206), 22, + ACTIONS(11241), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287151,6 +272503,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, @@ -287164,17 +272517,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [254464] = 3, + [240807] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12418), 2, + STATE(4469), 1, + aux_sym_pipeline_repeat1, + ACTIONS(11196), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12416), 22, + ACTIONS(11263), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(11198), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, @@ -287184,7 +272541,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, @@ -287193,127 +272549,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [254496] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12327), 1, - anon_sym_BANG2, - ACTIONS(12331), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, - anon_sym_BQUOTE, - ACTIONS(12335), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, - sym_variable_name, - ACTIONS(12420), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, - sym_command_substitution, - STATE(6722), 1, - sym__expansion_body, - ACTIONS(12329), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(7752), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(12321), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(12323), 4, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym__, - [254554] = 16, + [240844] = 8, 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(12422), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, - sym_command_substitution, - STATE(7237), 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__, - [254612] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12385), 2, + ACTIONS(11002), 1, + anon_sym_LT_LT_LT, + ACTIONS(11128), 1, sym_file_descriptor, + ACTIONS(10915), 2, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12387), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(11126), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4574), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(11124), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, + ACTIONS(10913), 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, - [254644] = 3, + [240887] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5858), 3, + ACTIONS(10951), 1, + aux_sym_concatenation_token1, + ACTIONS(10953), 1, + sym__concat, + STATE(4351), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4125), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5856), 21, + ACTIONS(4123), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287323,7 +272606,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, @@ -287335,14 +272617,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [254676] = 3, + [240926] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12424), 3, + ACTIONS(10951), 1, + aux_sym_concatenation_token1, + ACTIONS(10953), 1, + sym__concat, + STATE(4354), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3915), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12426), 21, + ACTIONS(3913), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287352,7 +272639,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, @@ -287364,14 +272650,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [254708] = 3, + [240965] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5858), 3, + ACTIONS(10951), 1, + aux_sym_concatenation_token1, + ACTIONS(10953), 1, + sym__concat, + STATE(4351), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4006), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5856), 21, + ACTIONS(4004), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287381,7 +272672,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, @@ -287393,56 +272683,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [254740] = 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(12428), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, - sym_command_substitution, - STATE(7238), 1, - sym__expansion_body, - ACTIONS(12329), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(7752), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(12321), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(12323), 4, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym__, - [254798] = 3, + [241004] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12140), 3, + ACTIONS(10951), 1, + aux_sym_concatenation_token1, + ACTIONS(10953), 1, + sym__concat, + STATE(4354), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4010), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12142), 21, + ACTIONS(4008), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287452,7 +272705,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, @@ -287464,56 +272716,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [254830] = 16, - ACTIONS(3), 1, + [241043] = 19, + ACTIONS(71), 1, sym_comment, - ACTIONS(12327), 1, - anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(11096), 1, + anon_sym_LPAREN, + ACTIONS(11098), 1, + aux_sym__c_word_token1, + ACTIONS(11100), 1, + anon_sym_DOLLAR, + ACTIONS(11102), 1, + anon_sym_DQUOTE, + ACTIONS(11104), 1, + aux_sym_number_token1, + ACTIONS(11106), 1, + aux_sym_number_token2, + ACTIONS(11108), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11110), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(11112), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(11114), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, - sym_variable_name, - ACTIONS(12430), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + ACTIONS(11266), 1, + anon_sym_RPAREN_RPAREN, + STATE(2902), 1, + sym__c_unary_expression, + STATE(2905), 1, + sym__c_binary_expression, + STATE(2906), 1, + sym__c_postfix_expression, + STATE(6282), 1, + sym__c_expression, + STATE(6350), 1, + sym__c_variable_assignment, + ACTIONS(11094), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2901), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, sym_command_substitution, - STATE(6781), 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__, - [254888] = 3, + [241108] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1282), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1280), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_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, + [241141] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12397), 3, + ACTIONS(11226), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12395), 21, + ACTIONS(11224), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287534,52 +272820,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, anon_sym_BQUOTE, - [254920] = 8, + [241174] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11782), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12432), 1, + ACTIONS(10951), 1, + aux_sym_concatenation_token1, + ACTIONS(11268), 1, + sym__concat, + STATE(4059), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 3, sym_file_descriptor, - ACTIONS(4529), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1213), 19, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(11951), 2, + anon_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, - STATE(4741), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11780), 7, + anon_sym_LT_LT_DASH, + [241213] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11082), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(11084), 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(11949), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [254962] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [241246] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12436), 2, + STATE(5236), 1, + aux_sym_pipeline_repeat1, + ACTIONS(11196), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12434), 22, + ACTIONS(11200), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(11198), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, @@ -287589,7 +272909,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, @@ -287598,22 +272917,55 @@ 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, + [241283] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11138), 1, + aux_sym_concatenation_token1, + ACTIONS(11232), 1, + sym__concat, + STATE(4364), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1231), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1229), 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, + [241322] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11792), 1, + ACTIONS(10922), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11953), 1, + ACTIONS(10969), 1, anon_sym_LT_LT_LT, - ACTIONS(12438), 1, + ACTIONS(11255), 1, sym_file_descriptor, - ACTIONS(11951), 2, + ACTIONS(11253), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4817), 2, + STATE(4533), 2, sym_file_redirect, sym_herestring_redirect, - ACTIONS(11949), 8, + ACTIONS(11251), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -287622,7 +272974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(11790), 9, + ACTIONS(10920), 10, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287632,14 +272984,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - [255036] = 3, + anon_sym_BQUOTE, + [241365] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12180), 3, + ACTIONS(10951), 1, + aux_sym_concatenation_token1, + ACTIONS(10953), 1, + sym__concat, + STATE(4351), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4483), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12178), 21, + ACTIONS(4481), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287649,7 +273007,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, @@ -287661,14 +273018,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [255068] = 3, + [241404] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2162), 3, + ACTIONS(10951), 1, + aux_sym_concatenation_token1, + ACTIONS(10953), 1, + sym__concat, + STATE(4354), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4487), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 21, + ACTIONS(4485), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287678,7 +273040,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, @@ -287690,29 +273051,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [255100] = 5, + [241443] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4159), 2, + ACTIONS(10951), 1, + aux_sym_concatenation_token1, + ACTIONS(10953), 1, + sym__concat, + STATE(4351), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4491), 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(4489), 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, @@ -287721,13 +273083,20 @@ 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, + anon_sym_BQUOTE, + [241482] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12418), 2, + ACTIONS(10951), 1, + aux_sym_concatenation_token1, + ACTIONS(10953), 1, + sym__concat, + STATE(4354), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4495), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12416), 22, + ACTIONS(4493), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287737,10 +273106,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, @@ -287750,59 +273116,21 @@ 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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12327), 1, - anon_sym_BANG2, - ACTIONS(12331), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, - sym_variable_name, - ACTIONS(12440), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, - sym_command_substitution, - STATE(7295), 1, - sym__expansion_body, - ACTIONS(12329), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(7752), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(12321), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(12323), 4, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym__, - [255226] = 4, + [241521] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4159), 2, + ACTIONS(10951), 1, + aux_sym_concatenation_token1, + ACTIONS(11270), 1, + sym__concat, + STATE(4059), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(4731), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4155), 19, + ACTIONS(1207), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287822,61 +273150,22 @@ 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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1274), 4, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 20, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [255292] = 8, + [241560] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11883), 1, + ACTIONS(10915), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12448), 1, + ACTIONS(10969), 1, + anon_sym_LT_LT_LT, + ACTIONS(11255), 1, sym_file_descriptor, - ACTIONS(12167), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(12445), 2, + ACTIONS(11253), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4741), 3, + STATE(4574), 2, sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11872), 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(12442), 8, + sym_herestring_redirect, + ACTIONS(11251), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -287885,47 +273174,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [255334] = 8, + ACTIONS(10913), 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, + [241603] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11894), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11953), 1, - anon_sym_LT_LT_LT, - ACTIONS(12438), 1, + ACTIONS(10951), 1, + aux_sym_concatenation_token1, + ACTIONS(10953), 1, + sym__concat, + STATE(4487), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4483), 3, 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, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(4481), 19, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(11892), 9, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [241642] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11245), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(11243), 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, - [255376] = 3, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [241675] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12121), 2, + ACTIONS(4039), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12123), 22, + STATE(562), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(4037), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287947,23 +273279,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, - [255408] = 8, + [241710] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11904), 1, + ACTIONS(10768), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11953), 1, + ACTIONS(11278), 1, anon_sym_LT_LT_LT, - ACTIONS(12438), 1, + ACTIONS(11281), 1, sym_file_descriptor, - ACTIONS(11951), 2, + ACTIONS(11275), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4678), 2, + STATE(4492), 3, sym_file_redirect, sym_herestring_redirect, - ACTIONS(11949), 8, + aux_sym_redirected_statement_repeat2, + ACTIONS(11272), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -287972,7 +273304,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(10760), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287982,43 +273314,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - [255450] = 3, - ACTIONS(3), 1, + [241753] = 18, + ACTIONS(71), 1, sym_comment, - ACTIONS(1266), 4, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 20, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(10497), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(10503), 1, + aux_sym_number_token2, + ACTIONS(11286), 1, + anon_sym_LPAREN, + ACTIONS(11288), 1, + aux_sym__c_word_token1, + ACTIONS(11290), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(11292), 1, + aux_sym_number_token1, + ACTIONS(11294), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11296), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11298), 1, + anon_sym_BQUOTE, + ACTIONS(11300), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2760), 1, + sym__c_binary_expression, + STATE(2765), 1, + sym__c_postfix_expression, + STATE(2780), 1, + sym__c_unary_expression, + STATE(6105), 1, + sym__c_variable_assignment, + STATE(6115), 1, + sym__c_expression, + ACTIONS(11284), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2871), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [241815] = 18, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11304), 1, + anon_sym_LPAREN, + ACTIONS(11306), 1, + aux_sym__c_word_token1, + ACTIONS(11308), 1, + anon_sym_DOLLAR, + ACTIONS(11310), 1, + anon_sym_DQUOTE, + ACTIONS(11312), 1, aux_sym_number_token1, + ACTIONS(11314), 1, aux_sym_number_token2, + ACTIONS(11316), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(11318), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(11320), 1, anon_sym_BQUOTE, + ACTIONS(11322), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [255482] = 3, + STATE(2953), 1, + sym__c_unary_expression, + STATE(2995), 1, + sym__c_binary_expression, + STATE(3003), 1, + sym__c_postfix_expression, + STATE(6281), 1, + sym__c_expression, + STATE(6335), 1, + sym__c_variable_assignment, + ACTIONS(11302), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2943), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [241877] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12451), 3, + ACTIONS(4495), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12453), 21, + ACTIONS(4493), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288028,8 +273418,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -288039,43 +273430,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [255514] = 3, + anon_sym_LT_LT_LT, + [241909] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 4, - sym__concat, - sym_test_operator, - sym__brace_start, + ACTIONS(1231), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 20, + ACTIONS(1229), 22, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_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_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, + [241941] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11328), 1, + anon_sym_RBRACE3, + ACTIONS(11330), 1, + anon_sym_BANG2, + ACTIONS(11334), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(11336), 1, anon_sym_BQUOTE, + ACTIONS(11338), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [255546] = 3, + ACTIONS(11340), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11342), 1, + sym_variable_name, + STATE(3248), 1, + sym_subscript, + STATE(5993), 1, + sym_command_substitution, + STATE(6052), 1, + aux_sym__expansion_body_repeat1, + STATE(6959), 1, + sym__expansion_body, + ACTIONS(11332), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(6879), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11324), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11326), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [241999] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11330), 1, + anon_sym_BANG2, + ACTIONS(11334), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11336), 1, + anon_sym_BQUOTE, + ACTIONS(11338), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11340), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11342), 1, + sym_variable_name, + ACTIONS(11344), 1, + anon_sym_RBRACE3, + STATE(3248), 1, + sym_subscript, + STATE(5993), 1, + sym_command_substitution, + STATE(6052), 1, + aux_sym__expansion_body_repeat1, + STATE(6378), 1, + sym__expansion_body, + ACTIONS(11332), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(6879), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11324), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11326), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [242057] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11330), 1, + anon_sym_BANG2, + ACTIONS(11334), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11336), 1, + anon_sym_BQUOTE, + ACTIONS(11338), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11340), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11342), 1, + sym_variable_name, + ACTIONS(11346), 1, + anon_sym_RBRACE3, + STATE(3248), 1, + sym_subscript, + STATE(5993), 1, + sym_command_substitution, + STATE(6052), 1, + aux_sym__expansion_body_repeat1, + STATE(6563), 1, + sym__expansion_body, + ACTIONS(11332), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(6879), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11324), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11326), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [242115] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12281), 2, + ACTIONS(11158), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12279), 22, + ACTIONS(11156), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288085,10 +273603,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, @@ -288098,14 +273614,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [255578] = 3, + anon_sym_BQUOTE, + [242147] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12393), 3, + ACTIONS(11122), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12391), 21, + ACTIONS(11120), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288115,8 +273631,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, @@ -288126,15 +273643,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [255610] = 3, + anon_sym_LT_LT_LT, + [242179] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4701), 1, + aux_sym_pipeline_repeat1, + ACTIONS(11164), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(11348), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(11160), 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, + [242215] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12455), 3, + ACTIONS(11350), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12457), 21, + ACTIONS(11352), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288156,55 +273704,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [255642] = 16, + [242247] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(11330), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(11334), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(11336), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(11338), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(11340), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(11342), 1, sym_variable_name, - ACTIONS(12459), 1, + ACTIONS(11354), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3248), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(5993), 1, sym_command_substitution, - STATE(7300), 1, + STATE(6052), 1, + aux_sym__expansion_body_repeat1, + STATE(6395), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(11332), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(6879), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(11324), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(11326), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [255700] = 3, + [242305] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12180), 2, + ACTIONS(11356), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12178), 22, + ACTIONS(11358), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288214,10 +273763,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, @@ -288227,328 +273774,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [255732] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1250), 4, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 20, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [255764] = 16, + [242337] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(11330), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(11334), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(11336), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(11338), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(11340), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(11342), 1, sym_variable_name, - ACTIONS(12461), 1, + ACTIONS(11360), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3248), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(5993), 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, + STATE(6052), 1, aux_sym__expansion_body_repeat1, - STATE(6377), 1, - sym_command_substitution, - STATE(6917), 1, + STATE(6531), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(11332), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(6879), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(11324), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(11326), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [255880] = 18, - ACTIONS(71), 1, - sym_comment, - ACTIONS(10646), 1, - anon_sym_DOLLAR, - ACTIONS(10652), 1, - aux_sym_number_token2, - ACTIONS(12467), 1, - anon_sym_LPAREN, - ACTIONS(12469), 1, - aux_sym__c_word_token1, - ACTIONS(12471), 1, - anon_sym_DQUOTE, - ACTIONS(12473), 1, - aux_sym_number_token1, - ACTIONS(12475), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12477), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12479), 1, - anon_sym_BQUOTE, - ACTIONS(12481), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2838), 1, - sym__c_postfix_expression, - STATE(2905), 1, - sym__c_unary_expression, - STATE(2906), 1, - sym__c_binary_expression, - STATE(6395), 1, - sym__c_variable_assignment, - STATE(6429), 1, - sym__c_expression, - ACTIONS(12465), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2902), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [255942] = 16, + [242395] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(11330), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(11334), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(11336), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(11338), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(11340), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(11342), 1, sym_variable_name, - ACTIONS(12483), 1, + ACTIONS(11362), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3248), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(5993), 1, sym_command_substitution, - STATE(6819), 1, + STATE(6052), 1, + aux_sym__expansion_body_repeat1, + STATE(6644), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(11332), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(6879), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(11324), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(11326), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [256000] = 18, - ACTIONS(71), 1, - sym_comment, - ACTIONS(10646), 1, - anon_sym_DOLLAR, - ACTIONS(10652), 1, - aux_sym_number_token2, - ACTIONS(12467), 1, - anon_sym_LPAREN, - ACTIONS(12469), 1, - aux_sym__c_word_token1, - ACTIONS(12471), 1, - anon_sym_DQUOTE, - ACTIONS(12473), 1, - aux_sym_number_token1, - ACTIONS(12475), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12477), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12479), 1, - anon_sym_BQUOTE, - ACTIONS(12481), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2838), 1, - sym__c_postfix_expression, - STATE(2905), 1, - sym__c_unary_expression, - STATE(2906), 1, - sym__c_binary_expression, - STATE(6395), 1, - sym__c_variable_assignment, - STATE(6439), 1, - sym__c_expression, - ACTIONS(12465), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2902), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [256062] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1258), 4, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 20, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [256094] = 16, + [242453] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(11330), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(11334), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(11336), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(11338), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(11340), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(11342), 1, sym_variable_name, - ACTIONS(12485), 1, + ACTIONS(11364), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3248), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(5993), 1, sym_command_substitution, - STATE(6897), 1, + STATE(6052), 1, + aux_sym__expansion_body_repeat1, + STATE(6786), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(11332), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(6879), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(11324), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(11326), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [256152] = 3, + [242511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4313), 3, + ACTIONS(3915), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 21, + ACTIONS(3913), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288558,8 +273917,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, @@ -288569,44 +273929,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [256184] = 3, + anon_sym_LT_LT_LT, + [242543] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(12487), 3, + ACTIONS(2810), 1, sym_file_descriptor, - ts_builtin_sym_end, + ACTIONS(4018), 1, + anon_sym_RPAREN, + ACTIONS(4182), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12489), 21, - anon_sym_SEMI, + ACTIONS(2782), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(2784), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3937), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4374), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + STATE(599), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(4178), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + ACTIONS(2780), 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, - [256216] = 3, + [242591] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12281), 3, + ACTIONS(11158), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12279), 21, + ACTIONS(11156), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288616,8 +273983,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, @@ -288627,72 +273996,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [256248] = 3, + [242623] = 16, 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, + ACTIONS(11330), 1, + anon_sym_BANG2, + ACTIONS(11334), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(11336), 1, anon_sym_BQUOTE, + ACTIONS(11338), 1, 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, + ACTIONS(11340), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11342), 1, + sym_variable_name, + ACTIONS(11366), 1, + anon_sym_RBRACE3, + STATE(3248), 1, + sym_subscript, + STATE(5993), 1, + sym_command_substitution, + STATE(6052), 1, + aux_sym__expansion_body_repeat1, + STATE(6752), 1, + sym__expansion_body, + ACTIONS(11332), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(6879), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11324), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11326), 4, + anon_sym_BANG, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_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, + anon_sym_POUND, + anon_sym__, + [242681] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12493), 2, + ACTIONS(11136), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12491), 22, + ACTIONS(11134), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288715,13 +274067,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, + [242713] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11330), 1, + anon_sym_BANG2, + ACTIONS(11334), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11336), 1, + anon_sym_BQUOTE, + ACTIONS(11338), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11340), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11342), 1, + sym_variable_name, + ACTIONS(11368), 1, + anon_sym_RBRACE3, + STATE(3248), 1, + sym_subscript, + STATE(5993), 1, + sym_command_substitution, + STATE(6052), 1, + aux_sym__expansion_body_repeat1, + STATE(6871), 1, + sym__expansion_body, + ACTIONS(11332), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(6879), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11324), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11326), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [242771] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12140), 2, + ACTIONS(4967), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(12142), 22, + ACTIONS(4965), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288731,7 +274126,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,71 +274138,56 @@ 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, + [242803] = 16, 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, + ACTIONS(11330), 1, + anon_sym_BANG2, + ACTIONS(11334), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(11336), 1, anon_sym_BQUOTE, + ACTIONS(11338), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [256408] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12210), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(12212), 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, - [256440] = 3, + ACTIONS(11340), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11342), 1, + sym_variable_name, + ACTIONS(11370), 1, + anon_sym_RBRACE3, + STATE(3248), 1, + sym_subscript, + STATE(5993), 1, + sym_command_substitution, + STATE(6052), 1, + aux_sym__expansion_body_repeat1, + STATE(6998), 1, + sym__expansion_body, + ACTIONS(11332), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(6879), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11324), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11326), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [242861] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12281), 2, + ACTIONS(4971), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(12279), 22, + ACTIONS(4969), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288830,44 +274209,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, - [256472] = 3, + [242893] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12361), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(12363), 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, - [256504] = 3, + ACTIONS(11330), 1, + anon_sym_BANG2, + ACTIONS(11334), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11336), 1, + anon_sym_BQUOTE, + ACTIONS(11338), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11340), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11342), 1, + sym_variable_name, + ACTIONS(11372), 1, + anon_sym_RBRACE3, + STATE(3248), 1, + sym_subscript, + STATE(5993), 1, + sym_command_substitution, + STATE(6052), 1, + aux_sym__expansion_body_repeat1, + STATE(6899), 1, + sym__expansion_body, + ACTIONS(11332), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(6879), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11324), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11326), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [242951] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12357), 3, + ACTIONS(4010), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12355), 21, + ACTIONS(4008), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288877,8 +274267,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 +274279,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, + [242983] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11330), 1, + anon_sym_BANG2, + ACTIONS(11334), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11336), 1, anon_sym_BQUOTE, - [256536] = 3, + ACTIONS(11338), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11340), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11342), 1, + sym_variable_name, + ACTIONS(11374), 1, + anon_sym_RBRACE3, + STATE(3248), 1, + sym_subscript, + STATE(5993), 1, + sym_command_substitution, + STATE(6052), 1, + aux_sym__expansion_body_repeat1, + STATE(6987), 1, + sym__expansion_body, + ACTIONS(11332), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(6879), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11324), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11326), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [243041] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12401), 2, + ACTIONS(11378), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12403), 22, + ACTIONS(11376), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288918,13 +274351,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [256568] = 3, + [243073] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12497), 2, + ACTIONS(11378), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12495), 22, + ACTIONS(11376), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288947,71 +274380,218 @@ 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, + [243105] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 4, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 20, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(11330), 1, + anon_sym_BANG2, + ACTIONS(11334), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11336), 1, + anon_sym_BQUOTE, + ACTIONS(11338), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11340), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11342), 1, + sym_variable_name, + ACTIONS(11380), 1, + anon_sym_RBRACE3, + STATE(3248), 1, + sym_subscript, + STATE(5993), 1, + sym_command_substitution, + STATE(6052), 1, + aux_sym__expansion_body_repeat1, + STATE(6681), 1, + sym__expansion_body, + ACTIONS(11332), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(6879), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11324), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11326), 4, + anon_sym_BANG, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, + anon_sym_POUND, + anon_sym__, + [243163] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11330), 1, + anon_sym_BANG2, + ACTIONS(11334), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(11336), 1, anon_sym_BQUOTE, + ACTIONS(11338), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [256632] = 3, + ACTIONS(11340), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11342), 1, + sym_variable_name, + ACTIONS(11382), 1, + anon_sym_RBRACE3, + STATE(3248), 1, + sym_subscript, + STATE(5993), 1, + sym_command_substitution, + STATE(6052), 1, + aux_sym__expansion_body_repeat1, + STATE(6945), 1, + sym__expansion_body, + ACTIONS(11332), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(6879), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11324), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11326), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [243221] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(12107), 3, - sym_file_descriptor, + ACTIONS(2319), 1, ts_builtin_sym_end, + ACTIONS(2665), 1, + sym_file_descriptor, + ACTIONS(4369), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12105), 21, - anon_sym_SEMI, + ACTIONS(2637), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(2639), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3937), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4367), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + STATE(586), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(4365), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + ACTIONS(2635), 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, + [243269] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11330), 1, + anon_sym_BANG2, + ACTIONS(11334), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11336), 1, + anon_sym_BQUOTE, + ACTIONS(11338), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11340), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11342), 1, + sym_variable_name, + ACTIONS(11384), 1, + anon_sym_RBRACE3, + STATE(3248), 1, + sym_subscript, + STATE(5993), 1, + sym_command_substitution, + STATE(6052), 1, + aux_sym__expansion_body_repeat1, + STATE(6548), 1, + sym__expansion_body, + ACTIONS(11332), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(6879), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11324), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11326), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [243327] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11330), 1, + anon_sym_BANG2, + ACTIONS(11334), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11336), 1, anon_sym_BQUOTE, - [256664] = 3, + ACTIONS(11338), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11340), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11342), 1, + sym_variable_name, + ACTIONS(11386), 1, + anon_sym_RBRACE3, + STATE(3248), 1, + sym_subscript, + STATE(5993), 1, + sym_command_substitution, + STATE(6052), 1, + aux_sym__expansion_body_repeat1, + STATE(6422), 1, + sym__expansion_body, + ACTIONS(11332), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(6879), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11324), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11326), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [243385] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12501), 2, + ACTIONS(3915), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12499), 22, + ACTIONS(3913), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289034,13 +274614,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [256696] = 3, + [243417] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12505), 2, + ACTIONS(11136), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12503), 22, + ACTIONS(11134), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289050,10 +274631,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, @@ -289063,55 +274642,57 @@ 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, + anon_sym_BQUOTE, + [243449] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(11330), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(11334), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(11336), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(11338), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(11340), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(11342), 1, sym_variable_name, - ACTIONS(12507), 1, + ACTIONS(11388), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3248), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(5993), 1, sym_command_substitution, - STATE(7365), 1, + STATE(6052), 1, + aux_sym__expansion_body_repeat1, + STATE(6500), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(11332), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(6879), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(11324), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(11326), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [256786] = 3, + [243507] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12511), 2, + ACTIONS(11390), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12509), 22, + ACTIONS(11392), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289121,10 +274702,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, @@ -289134,56 +274713,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [256818] = 16, + anon_sym_BQUOTE, + [243539] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(11330), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(11334), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(11336), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(11338), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(11340), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(11342), 1, sym_variable_name, - ACTIONS(12513), 1, + ACTIONS(11394), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3248), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(5993), 1, sym_command_substitution, - STATE(6847), 1, + STATE(6052), 1, + aux_sym__expansion_body_repeat1, + STATE(6546), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(11332), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(6879), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(11324), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(11326), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [256876] = 3, + [243597] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12493), 3, + ACTIONS(11396), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12491), 21, + ACTIONS(11398), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289205,14 +274785,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [256908] = 3, + [243629] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11330), 1, + anon_sym_BANG2, + ACTIONS(11334), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11336), 1, + anon_sym_BQUOTE, + ACTIONS(11338), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11340), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11342), 1, + sym_variable_name, + ACTIONS(11400), 1, + anon_sym_RBRACE3, + STATE(3248), 1, + sym_subscript, + STATE(5993), 1, + sym_command_substitution, + STATE(6052), 1, + aux_sym__expansion_body_repeat1, + STATE(6604), 1, + sym__expansion_body, + ACTIONS(11332), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(6879), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11324), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11326), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [243687] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11330), 1, + anon_sym_BANG2, + ACTIONS(11334), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11336), 1, + anon_sym_BQUOTE, + ACTIONS(11338), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11340), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11342), 1, + sym_variable_name, + ACTIONS(11402), 1, + anon_sym_RBRACE3, + STATE(3248), 1, + sym_subscript, + STATE(5993), 1, + sym_command_substitution, + STATE(6052), 1, + aux_sym__expansion_body_repeat1, + STATE(6649), 1, + sym__expansion_body, + ACTIONS(11332), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(6879), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11324), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11326), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [243745] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12505), 3, + ACTIONS(11148), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12503), 21, + ACTIONS(11150), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289222,8 +274885,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, @@ -289233,15 +274897,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, + [243777] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11330), 1, + anon_sym_BANG2, + ACTIONS(11334), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11336), 1, anon_sym_BQUOTE, - [256940] = 3, + ACTIONS(11338), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11340), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11342), 1, + sym_variable_name, + ACTIONS(11404), 1, + anon_sym_RBRACE3, + STATE(3248), 1, + sym_subscript, + STATE(5993), 1, + sym_command_substitution, + STATE(6052), 1, + aux_sym__expansion_body_repeat1, + STATE(6713), 1, + sym__expansion_body, + ACTIONS(11332), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(6879), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11324), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11326), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [243835] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12397), 3, + ACTIONS(11406), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12395), 21, + ACTIONS(11408), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289263,13 +274969,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [256972] = 3, + [243867] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12341), 2, + ACTIONS(11412), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12343), 22, + ACTIONS(11410), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289292,14 +274998,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, + [243899] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12501), 3, + ACTIONS(4010), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12499), 21, + ACTIONS(4008), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289309,8 +275014,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -289320,56 +275027,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_BQUOTE, - [257036] = 16, + [243931] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(11330), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(11334), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(11336), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(11338), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(11340), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(11342), 1, sym_variable_name, - ACTIONS(12515), 1, + ACTIONS(11414), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3248), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(5993), 1, sym_command_substitution, - STATE(7433), 1, + STATE(6052), 1, + aux_sym__expansion_body_repeat1, + STATE(6767), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(11332), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(6879), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(11324), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(11326), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [257094] = 3, + [243989] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11144), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(11142), 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, + [244021] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12487), 2, + ACTIONS(11418), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12489), 22, + ACTIONS(11416), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289392,13 +275127,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, + [244053] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5858), 2, + ACTIONS(11422), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5856), 22, + ACTIONS(11420), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289421,104 +275156,101 @@ 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, + [244085] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(11330), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(11334), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(11336), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(11338), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(11340), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(11342), 1, sym_variable_name, - ACTIONS(12517), 1, + ACTIONS(11424), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3248), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(5993), 1, sym_command_substitution, - STATE(6873), 1, + STATE(6052), 1, + aux_sym__expansion_body_repeat1, + STATE(6819), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(11332), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(6879), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(11324), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(11326), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [257216] = 18, - ACTIONS(71), 1, + [244143] = 11, + ACTIONS(3), 1, sym_comment, - ACTIONS(12301), 1, - anon_sym_LPAREN, - ACTIONS(12303), 1, - aux_sym__c_word_token1, - ACTIONS(12305), 1, - anon_sym_DOLLAR, - ACTIONS(12307), 1, - anon_sym_DQUOTE, - ACTIONS(12309), 1, - aux_sym_number_token1, - ACTIONS(12311), 1, - aux_sym_number_token2, - ACTIONS(12313), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12315), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12317), 1, + ACTIONS(2321), 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, + ACTIONS(3143), 1, + sym_file_descriptor, + ACTIONS(4769), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(2782), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3139), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3937), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4717), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(625), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(4767), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + ACTIONS(3137), 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, + [244191] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12519), 3, + ACTIONS(3937), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4039), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12521), 21, + STATE(599), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(4037), 18, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, @@ -289526,7 +275258,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, @@ -289535,100 +275266,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [257310] = 16, + [244227] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(11330), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(11334), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(11336), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(11338), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(11340), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(11342), 1, sym_variable_name, - ACTIONS(12523), 1, + ACTIONS(11426), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3248), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(5993), 1, sym_command_substitution, - STATE(6797), 1, + STATE(6052), 1, + aux_sym__expansion_body_repeat1, + STATE(6873), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(11332), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(6879), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(11324), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(11326), 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, + [244285] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12527), 2, + ACTIONS(11396), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12525), 22, + ACTIONS(11398), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289651,55 +275337,97 @@ 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, + [244317] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(11330), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(11334), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(11336), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(11338), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(11340), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(11342), 1, sym_variable_name, - ACTIONS(12529), 1, + ACTIONS(11428), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3248), 1, sym_subscript, - STATE(6311), 1, + STATE(5993), 1, + sym_command_substitution, + STATE(6052), 1, aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6928), 1, + sym__expansion_body, + ACTIONS(11332), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(6879), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11324), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11326), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [244375] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11330), 1, + anon_sym_BANG2, + ACTIONS(11334), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11336), 1, + anon_sym_BQUOTE, + ACTIONS(11338), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11340), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11342), 1, + sym_variable_name, + ACTIONS(11430), 1, + anon_sym_RBRACE3, + STATE(3248), 1, + sym_subscript, + STATE(5993), 1, sym_command_substitution, - STATE(6901), 1, + STATE(6052), 1, + aux_sym__expansion_body_repeat1, + STATE(6966), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(11332), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(6879), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(11324), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(11326), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [257520] = 3, + [244433] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12533), 2, + ACTIONS(11434), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12531), 22, + ACTIONS(11432), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289722,91 +275450,243 @@ 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, + [244465] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5182), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12432), 1, + ACTIONS(11174), 2, sym_file_descriptor, - ACTIONS(4157), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(11172), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4529), 2, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - ACTIONS(5161), 2, + anon_sym_LT_LT_LT, + [244497] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11434), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(11432), 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, + [244529] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11438), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(11436), 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, - STATE(4731), 3, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [244561] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4039), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(599), 2, sym_file_redirect, sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11949), 8, + ACTIONS(4037), 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, - [257598] = 16, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [244595] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(11330), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(11334), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(11336), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(11338), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(11340), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(11342), 1, sym_variable_name, - ACTIONS(12535), 1, + ACTIONS(11440), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3248), 1, sym_subscript, - STATE(6311), 1, + STATE(5993), 1, + sym_command_substitution, + STATE(6052), 1, aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(7039), 1, + sym__expansion_body, + ACTIONS(11332), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(6879), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11324), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11326), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [244653] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11442), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(11444), 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, + [244685] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11330), 1, + anon_sym_BANG2, + ACTIONS(11334), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11336), 1, + anon_sym_BQUOTE, + ACTIONS(11338), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11340), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11342), 1, + sym_variable_name, + ACTIONS(11446), 1, + anon_sym_RBRACE3, + STATE(3248), 1, + sym_subscript, + STATE(5993), 1, sym_command_substitution, - STATE(7135), 1, + STATE(6052), 1, + aux_sym__expansion_body_repeat1, + STATE(6942), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(11332), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(6879), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(11324), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(11326), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [257656] = 3, + [244743] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12511), 2, + ACTIONS(11356), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12509), 22, + ACTIONS(11358), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289829,13 +275709,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [257688] = 3, + [244775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12539), 2, + ACTIONS(11450), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12537), 22, + ACTIONS(11448), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289858,13 +275738,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [257720] = 3, + [244807] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12140), 2, + ACTIONS(11454), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12142), 22, + ACTIONS(11452), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289874,6 +275754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -289886,98 +275767,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_LT_LT_LT, - [257752] = 16, + [244839] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(11330), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(11334), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(11336), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(11338), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(11340), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(11342), 1, sym_variable_name, - ACTIONS(12541), 1, + ACTIONS(11456), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3248), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(5993), 1, sym_command_substitution, - STATE(6924), 1, + STATE(6052), 1, + aux_sym__expansion_body_repeat1, + STATE(6660), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(11332), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(6879), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(11324), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(11326), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [257810] = 16, + [244897] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(11330), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(11334), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(11336), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(11338), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(11340), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(11342), 1, sym_variable_name, - ACTIONS(12543), 1, + ACTIONS(11458), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3248), 1, sym_subscript, - STATE(6311), 1, + STATE(5993), 1, + sym_command_substitution, + STATE(6052), 1, aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6409), 1, + sym__expansion_body, + ACTIONS(11332), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(6879), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11324), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11326), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [244955] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11330), 1, + anon_sym_BANG2, + ACTIONS(11334), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11336), 1, + anon_sym_BQUOTE, + ACTIONS(11338), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11340), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11342), 1, + sym_variable_name, + ACTIONS(11460), 1, + anon_sym_RBRACE3, + STATE(3248), 1, + sym_subscript, + STATE(5993), 1, sym_command_substitution, - STATE(6788), 1, + STATE(6052), 1, + aux_sym__expansion_body_repeat1, + STATE(6929), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(11332), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(6879), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(11324), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(11326), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [257868] = 3, + [245013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5858), 2, + ACTIONS(11136), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5856), 22, + ACTIONS(11134), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289987,7 +275909,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, @@ -290000,107 +275921,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [257900] = 18, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12081), 1, - anon_sym_LPAREN, - ACTIONS(12083), 1, - aux_sym__c_word_token1, - ACTIONS(12085), 1, - anon_sym_DOLLAR, - ACTIONS(12087), 1, - anon_sym_DQUOTE, - ACTIONS(12089), 1, - aux_sym_number_token1, - ACTIONS(12091), 1, - aux_sym_number_token2, - ACTIONS(12093), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12095), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12097), 1, - anon_sym_BQUOTE, - ACTIONS(12099), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(3196), 1, - sym__c_unary_expression, - STATE(3199), 1, - sym__c_binary_expression, - STATE(3201), 1, - sym__c_postfix_expression, - STATE(6685), 1, - sym__c_expression, - STATE(6686), 1, - sym__c_variable_assignment, - ACTIONS(12079), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3195), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [257962] = 16, + anon_sym_LT_LT_LT, + [245045] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(11330), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(11334), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(11336), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(11338), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(11340), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(11342), 1, sym_variable_name, - ACTIONS(12545), 1, + ACTIONS(11462), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3248), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(5993), 1, sym_command_substitution, - STATE(6984), 1, + STATE(6052), 1, + aux_sym__expansion_body_repeat1, + STATE(6458), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(11332), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(6879), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(11324), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(11326), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [258020] = 5, + [245103] = 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(11245), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12131), 19, + ACTIONS(11243), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, @@ -290109,6 +275983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -290117,133 +275992,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [258056] = 16, + anon_sym_LT_LT_LT, + [245135] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, - anon_sym_BANG2, - ACTIONS(12331), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(11450), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(11448), 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, - ACTIONS(12335), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, - sym_variable_name, - ACTIONS(12547), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, - sym_command_substitution, - STATE(7504), 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__, - [258114] = 16, + [245167] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(11330), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(11334), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(11336), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(11338), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(11340), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(11342), 1, sym_variable_name, - ACTIONS(12549), 1, + ACTIONS(11464), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3248), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(5993), 1, sym_command_substitution, - STATE(6957), 1, + STATE(6052), 1, + aux_sym__expansion_body_repeat1, + STATE(6640), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(11332), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(6879), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(11324), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(11326), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [258172] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4515), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11978), 1, - sym_file_descriptor, - ACTIONS(4292), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(4294), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4513), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(11665), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(4255), 3, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - STATE(4358), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11663), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [258218] = 3, + [245225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12242), 2, + ACTIONS(11132), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12244), 22, + ACTIONS(11130), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -290266,13 +276093,56 @@ 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, + [245257] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11330), 1, + anon_sym_BANG2, + ACTIONS(11334), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11336), 1, + anon_sym_BQUOTE, + ACTIONS(11338), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11340), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11342), 1, + sym_variable_name, + ACTIONS(11466), 1, + anon_sym_RBRACE3, + STATE(3248), 1, + sym_subscript, + STATE(5993), 1, + sym_command_substitution, + STATE(6052), 1, + aux_sym__expansion_body_repeat1, + STATE(6779), 1, + sym__expansion_body, + ACTIONS(11332), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(6879), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11324), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11326), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [245315] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12210), 2, + ACTIONS(11468), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12212), 22, + ACTIONS(11470), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -290282,10 +276152,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -290295,55 +276163,15 @@ 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, - 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(12551), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, - sym_command_substitution, - STATE(6716), 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__, - [258340] = 3, + [245347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12555), 2, + ACTIONS(11454), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12553), 22, + ACTIONS(11452), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -290353,10 +276181,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, @@ -290366,56 +276192,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [258372] = 16, + anon_sym_BQUOTE, + [245379] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(11330), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(11334), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(11336), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(11338), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(11340), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(11342), 1, sym_variable_name, - ACTIONS(12557), 1, + ACTIONS(11472), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3248), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(5993), 1, sym_command_substitution, - STATE(6992), 1, + STATE(6052), 1, + aux_sym__expansion_body_repeat1, + STATE(6915), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(11332), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(6879), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(11324), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(11326), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [258430] = 3, + [245437] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12559), 3, + ACTIONS(11390), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12561), 21, + ACTIONS(11392), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -290425,8 +276251,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,15 +276264,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + [245469] = 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, - [258462] = 3, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [245501] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12424), 3, + ACTIONS(11476), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12426), 21, + ACTIONS(11474), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -290454,8 +276309,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -290465,14 +276322,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [258494] = 3, + [245533] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12519), 2, + ACTIONS(11132), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12521), 22, + ACTIONS(11130), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -290482,7 +276338,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, @@ -290495,13 +276350,56 @@ 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, + anon_sym_LT_LT_LT, + [245565] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11330), 1, + anon_sym_BANG2, + ACTIONS(11334), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11336), 1, + anon_sym_BQUOTE, + ACTIONS(11338), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11340), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11342), 1, + sym_variable_name, + ACTIONS(11478), 1, + anon_sym_RBRACE3, + STATE(3248), 1, + sym_subscript, + STATE(5993), 1, + sym_command_substitution, + STATE(6052), 1, + aux_sym__expansion_body_repeat1, + STATE(6991), 1, + sym__expansion_body, + ACTIONS(11332), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(6879), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11324), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11326), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [245623] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12539), 2, + ACTIONS(11082), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12537), 22, + ACTIONS(11084), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -290511,7 +276409,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,21 +276421,18 @@ 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, + [245655] = 3, ACTIONS(3), 1, sym_comment, - STATE(4716), 1, - aux_sym_pipeline_repeat1, - ACTIONS(12222), 2, + ACTIONS(11186), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12563), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(12218), 19, + ACTIONS(11184), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, @@ -290547,6 +276441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -290555,86 +276450,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [258594] = 16, + anon_sym_LT_LT_LT, + [245687] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(11330), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(11334), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(11336), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(11338), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(11340), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(11342), 1, sym_variable_name, - ACTIONS(12565), 1, + ACTIONS(11480), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3248), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(5993), 1, sym_command_substitution, - STATE(7389), 1, + STATE(6052), 1, + aux_sym__expansion_body_repeat1, + STATE(6403), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(11332), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(6879), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(11324), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(11326), 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, + [245745] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 4, + ACTIONS(1258), 4, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 20, + ACTIONS(1256), 20, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, @@ -290655,15 +276522,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [258716] = 3, + [245777] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 4, + ACTIONS(1221), 4, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 20, + ACTIONS(1219), 20, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, @@ -290684,84 +276551,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [258748] = 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(12567), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, - sym_command_substitution, - STATE(7026), 1, - sym__expansion_body, - ACTIONS(12329), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(7752), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(12321), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(12323), 4, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym__, - [258806] = 3, + [245809] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(12409), 2, + ACTIONS(2321), 1, + anon_sym_RPAREN, + ACTIONS(2810), 1, sym_file_descriptor, + ACTIONS(4193), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12411), 22, - anon_sym_SEMI, + ACTIONS(2782), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(2784), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3937), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4374), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + STATE(599), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(4191), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + ACTIONS(2780), 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, - [258838] = 3, + [245857] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12424), 2, + ACTIONS(11186), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12426), 22, + ACTIONS(11184), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -290771,10 +276605,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, @@ -290784,14 +276616,15 @@ 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, + anon_sym_BQUOTE, + [245889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12527), 3, + ACTIONS(11082), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12525), 21, + ACTIONS(11084), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -290813,197 +276646,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [258902] = 16, + [245921] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(11330), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(11334), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(11336), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(11338), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(11340), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(11342), 1, sym_variable_name, - ACTIONS(12569), 1, + ACTIONS(11482), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3248), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(5993), 1, sym_command_substitution, - STATE(7246), 1, + STATE(6052), 1, + aux_sym__expansion_body_repeat1, + STATE(6447), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(11332), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(6879), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(11324), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(11326), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [258960] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12424), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(12426), 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, - [258992] = 16, + [245979] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(11330), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(11334), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(11336), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(11338), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(11340), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(11342), 1, sym_variable_name, - ACTIONS(12571), 1, + ACTIONS(11484), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3248), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(5993), 1, sym_command_substitution, - STATE(7054), 1, + STATE(6052), 1, + aux_sym__expansion_body_repeat1, + STATE(6748), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(11332), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(6879), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(11324), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(11326), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [259050] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12113), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(12115), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [259082] = 16, + [246037] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(11330), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(11334), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(11336), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(11338), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(11340), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(11342), 1, sym_variable_name, - ACTIONS(12573), 1, + ACTIONS(11486), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3248), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(5993), 1, sym_command_substitution, - STATE(7118), 1, + STATE(6052), 1, + aux_sym__expansion_body_repeat1, + STATE(6485), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(11332), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(6879), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(11324), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(11326), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [259140] = 3, + [246095] = 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, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [246127] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2158), 2, + ACTIONS(11182), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 22, + ACTIONS(11180), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -291013,9 +276818,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -291025,56 +276829,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [259172] = 16, + anon_sym_BQUOTE, + [246159] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(11330), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(11334), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(11336), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(11338), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(11340), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(11342), 1, sym_variable_name, - ACTIONS(12575), 1, + ACTIONS(11488), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3248), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(5993), 1, sym_command_substitution, - STATE(7076), 1, + STATE(6052), 1, + aux_sym__expansion_body_repeat1, + STATE(6510), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(11332), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(6879), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(11324), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(11326), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [259230] = 3, + [246217] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12579), 2, + ACTIONS(11492), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12577), 22, + ACTIONS(11490), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -291097,13 +276901,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, + [246249] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12107), 2, + ACTIONS(11496), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12105), 22, + ACTIONS(11494), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -291113,6 +276917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -291125,72 +276930,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, - [259294] = 3, + [246281] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12228), 3, - sym_file_descriptor, - ts_builtin_sym_end, + ACTIONS(1254), 4, + sym__concat, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(12230), 21, + ACTIONS(1252), 20, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_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, - [259326] = 3, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [246313] = 16, 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, - anon_sym_PIPE_PIPE, - anon_sym_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(11330), 1, + anon_sym_BANG2, + ACTIONS(11334), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11336), 1, anon_sym_BQUOTE, - [259358] = 3, + ACTIONS(11338), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11340), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11342), 1, + sym_variable_name, + ACTIONS(11498), 1, + anon_sym_RBRACE3, + STATE(3248), 1, + sym_subscript, + STATE(5993), 1, + sym_command_substitution, + STATE(6052), 1, + aux_sym__expansion_body_repeat1, + STATE(6534), 1, + sym__expansion_body, + ACTIONS(11332), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(6879), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11324), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11326), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [246371] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12180), 2, + ACTIONS(11502), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12178), 22, + ACTIONS(11500), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -291200,6 +277017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -291212,44 +277030,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, - [259390] = 3, + [246403] = 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(11330), 1, + anon_sym_BANG2, + ACTIONS(11334), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11336), 1, anon_sym_BQUOTE, - [259422] = 3, + ACTIONS(11338), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11340), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11342), 1, + sym_variable_name, + ACTIONS(11504), 1, + anon_sym_RBRACE3, + STATE(3248), 1, + sym_subscript, + STATE(5993), 1, + sym_command_substitution, + STATE(6052), 1, + aux_sym__expansion_body_repeat1, + STATE(6566), 1, + sym__expansion_body, + ACTIONS(11332), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(6879), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11324), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11326), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [246461] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12436), 3, + ACTIONS(11476), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12434), 21, + ACTIONS(11474), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -291271,112 +277101,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [259454] = 18, - ACTIONS(71), 1, + [246493] = 16, + ACTIONS(3), 1, sym_comment, - ACTIONS(12301), 1, - anon_sym_LPAREN, - ACTIONS(12303), 1, - aux_sym__c_word_token1, - ACTIONS(12305), 1, - anon_sym_DOLLAR, - ACTIONS(12307), 1, - anon_sym_DQUOTE, - ACTIONS(12309), 1, - aux_sym_number_token1, - ACTIONS(12311), 1, - aux_sym_number_token2, - ACTIONS(12313), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12315), 1, + ACTIONS(11330), 1, + anon_sym_BANG2, + ACTIONS(11334), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12317), 1, + ACTIONS(11336), 1, anon_sym_BQUOTE, - ACTIONS(12319), 1, + ACTIONS(11338), 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(11340), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11342), 1, + sym_variable_name, + ACTIONS(11506), 1, + anon_sym_RBRACE3, + STATE(3248), 1, + sym_subscript, + STATE(5993), 1, sym_command_substitution, - [259516] = 16, + STATE(6052), 1, + aux_sym__expansion_body_repeat1, + STATE(6588), 1, + sym__expansion_body, + ACTIONS(11332), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(6879), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11324), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11326), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [246551] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(11330), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(11334), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(11336), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(11338), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(11340), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(11342), 1, sym_variable_name, - ACTIONS(12581), 1, + ACTIONS(11508), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3248), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(5993), 1, sym_command_substitution, - STATE(6802), 1, + STATE(6052), 1, + aux_sym__expansion_body_repeat1, + STATE(6605), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(11332), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(6879), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(11324), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(11326), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [259574] = 3, + [246609] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12184), 2, + ACTIONS(3937), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(586), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(4039), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12186), 22, + ACTIONS(4037), 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, @@ -291385,200 +277216,227 @@ static const uint16_t 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, + [246645] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(11330), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(11334), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(11336), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(11338), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(11340), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(11342), 1, sym_variable_name, - ACTIONS(12583), 1, + ACTIONS(11510), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3248), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(5993), 1, sym_command_substitution, - STATE(7090), 1, + STATE(6052), 1, + aux_sym__expansion_body_repeat1, + STATE(6620), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(11332), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(6879), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(11324), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(11326), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [259664] = 3, + [246703] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(4439), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 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, - [259696] = 3, + ACTIONS(11330), 1, + anon_sym_BANG2, + ACTIONS(11334), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11336), 1, + anon_sym_BQUOTE, + ACTIONS(11338), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11340), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11342), 1, + sym_variable_name, + ACTIONS(11512), 1, + anon_sym_RBRACE3, + STATE(3248), 1, + sym_subscript, + STATE(5993), 1, + sym_command_substitution, + STATE(6052), 1, + aux_sym__expansion_body_repeat1, + STATE(6633), 1, + sym__expansion_body, + ACTIONS(11332), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(6879), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11324), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11326), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [246761] = 16, 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, + ACTIONS(11330), 1, + anon_sym_BANG2, + ACTIONS(11334), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11336), 1, anon_sym_BQUOTE, - [259728] = 16, + ACTIONS(11338), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11340), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11342), 1, + sym_variable_name, + ACTIONS(11514), 1, + anon_sym_RBRACE3, + STATE(3248), 1, + sym_subscript, + STATE(5993), 1, + sym_command_substitution, + STATE(6052), 1, + aux_sym__expansion_body_repeat1, + STATE(6651), 1, + sym__expansion_body, + ACTIONS(11332), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(6879), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11324), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11326), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [246819] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(11330), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(11334), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(11336), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(11338), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(11340), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(11342), 1, sym_variable_name, - ACTIONS(12585), 1, + ACTIONS(11516), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3248), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(5993), 1, sym_command_substitution, - STATE(7047), 1, + STATE(6052), 1, + aux_sym__expansion_body_repeat1, + STATE(6671), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(11332), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(6879), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(11324), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(11326), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [259786] = 18, - ACTIONS(71), 1, + [246877] = 16, + ACTIONS(3), 1, sym_comment, - ACTIONS(12301), 1, - anon_sym_LPAREN, - ACTIONS(12303), 1, - aux_sym__c_word_token1, - ACTIONS(12305), 1, - anon_sym_DOLLAR, - ACTIONS(12307), 1, - anon_sym_DQUOTE, - ACTIONS(12309), 1, - aux_sym_number_token1, - ACTIONS(12311), 1, - aux_sym_number_token2, - ACTIONS(12313), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12315), 1, + ACTIONS(11330), 1, + anon_sym_BANG2, + ACTIONS(11334), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12317), 1, + ACTIONS(11336), 1, anon_sym_BQUOTE, - ACTIONS(12319), 1, + ACTIONS(11338), 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, + ACTIONS(11340), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11342), 1, + sym_variable_name, + ACTIONS(11518), 1, + anon_sym_RBRACE3, + STATE(3248), 1, + sym_subscript, + STATE(5993), 1, sym_command_substitution, - [259848] = 3, + STATE(6052), 1, + aux_sym__expansion_body_repeat1, + STATE(6691), 1, + sym__expansion_body, + ACTIONS(11332), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(6879), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11324), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11326), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [246935] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12347), 2, + STATE(586), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(4039), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12349), 22, + ACTIONS(4037), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -291588,10 +277446,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, @@ -291601,284 +277456,294 @@ 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, + [246969] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12228), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(12230), 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, - [259912] = 16, + ACTIONS(11330), 1, + anon_sym_BANG2, + ACTIONS(11334), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11336), 1, + anon_sym_BQUOTE, + ACTIONS(11338), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11340), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11342), 1, + sym_variable_name, + ACTIONS(11520), 1, + anon_sym_RBRACE3, + STATE(3248), 1, + sym_subscript, + STATE(5993), 1, + sym_command_substitution, + STATE(6052), 1, + aux_sym__expansion_body_repeat1, + STATE(6705), 1, + sym__expansion_body, + ACTIONS(11332), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(6879), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11324), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11326), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [247027] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(11330), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(11334), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(11336), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(11338), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(11340), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(11342), 1, sym_variable_name, - ACTIONS(12587), 1, + ACTIONS(11522), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3248), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(5993), 1, sym_command_substitution, - STATE(6736), 1, + STATE(6052), 1, + aux_sym__expansion_body_repeat1, + STATE(6715), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(11332), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(6879), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(11324), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(11326), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [259970] = 16, + [247085] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(11330), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(11334), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(11336), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(11338), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(11340), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(11342), 1, sym_variable_name, - ACTIONS(12589), 1, + ACTIONS(11524), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3248), 1, sym_subscript, - STATE(6311), 1, + STATE(5993), 1, + sym_command_substitution, + STATE(6052), 1, aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6725), 1, + sym__expansion_body, + ACTIONS(11332), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(6879), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11324), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11326), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [247143] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11330), 1, + anon_sym_BANG2, + ACTIONS(11334), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11336), 1, + anon_sym_BQUOTE, + ACTIONS(11338), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11340), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11342), 1, + sym_variable_name, + ACTIONS(11526), 1, + anon_sym_RBRACE3, + STATE(3248), 1, + sym_subscript, + STATE(5993), 1, sym_command_substitution, - STATE(7107), 1, + STATE(6052), 1, + aux_sym__expansion_body_repeat1, + STATE(6740), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(11332), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(6879), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(11324), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(11326), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [260028] = 3, + [247201] = 16, 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, + ACTIONS(11330), 1, + anon_sym_BANG2, + ACTIONS(11334), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11336), 1, + anon_sym_BQUOTE, + ACTIONS(11338), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11340), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11342), 1, + sym_variable_name, + ACTIONS(11528), 1, + anon_sym_RBRACE3, + STATE(3248), 1, + sym_subscript, + STATE(5993), 1, + sym_command_substitution, + STATE(6052), 1, + aux_sym__expansion_body_repeat1, + STATE(6764), 1, + sym__expansion_body, + ACTIONS(11332), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(6879), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11324), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11326), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [247259] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(11330), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(11334), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(11336), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(11338), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(11340), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(11342), 1, sym_variable_name, - ACTIONS(12595), 1, + ACTIONS(11530), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3248), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(5993), 1, sym_command_substitution, - STATE(7124), 1, + STATE(6052), 1, + aux_sym__expansion_body_repeat1, + STATE(6662), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(11332), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(6879), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(11324), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(11326), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [260118] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12599), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(12597), 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, - [260150] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12455), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(12457), 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, - [260182] = 3, + [247317] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2158), 3, - sym_file_descriptor, - ts_builtin_sym_end, + ACTIONS(1270), 4, + sym__concat, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 21, + ACTIONS(1268), 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, - [260214] = 3, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [247349] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12451), 2, + ACTIONS(11226), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12453), 22, + ACTIONS(11224), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -291888,7 +277753,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, @@ -291901,13 +277765,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [260246] = 3, + anon_sym_LT_LT_LT, + [247381] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12347), 2, + ACTIONS(11158), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12349), 22, + ACTIONS(11156), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -291917,7 +277782,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, @@ -291930,145 +277794,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [260278] = 16, + anon_sym_LT_LT_LT, + [247413] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(11330), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(11334), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(11336), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(11338), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(11340), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(11342), 1, sym_variable_name, - ACTIONS(12601), 1, + ACTIONS(11532), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3248), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(5993), 1, sym_command_substitution, - STATE(7013), 1, + STATE(6052), 1, + aux_sym__expansion_body_repeat1, + STATE(6646), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(11332), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(6879), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(11324), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(11326), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [260336] = 16, + [247471] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, - anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(1274), 4, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1272), 20, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, - sym_variable_name, - ACTIONS(12603), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, - sym_command_substitution, - STATE(7432), 1, - sym__expansion_body, - ACTIONS(12329), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(7752), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(12321), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(12323), 4, - anon_sym_BANG, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [247503] = 18, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11304), 1, + anon_sym_LPAREN, + ACTIONS(11306), 1, + aux_sym__c_word_token1, + ACTIONS(11308), 1, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym__, - [260394] = 16, + ACTIONS(11310), 1, + anon_sym_DQUOTE, + ACTIONS(11312), 1, + aux_sym_number_token1, + ACTIONS(11314), 1, + aux_sym_number_token2, + ACTIONS(11316), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11318), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11320), 1, + anon_sym_BQUOTE, + ACTIONS(11322), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2953), 1, + sym__c_unary_expression, + STATE(2995), 1, + sym__c_binary_expression, + STATE(3003), 1, + sym__c_postfix_expression, + STATE(6273), 1, + sym__c_expression, + STATE(6335), 1, + sym__c_variable_assignment, + ACTIONS(11302), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2943), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [247565] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(11330), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(11334), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(11336), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(11338), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(11340), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(11342), 1, sym_variable_name, - ACTIONS(12605), 1, + ACTIONS(11534), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3248), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(5993), 1, sym_command_substitution, - STATE(6825), 1, + STATE(6052), 1, + aux_sym__expansion_body_repeat1, + STATE(6811), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(11332), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(6879), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(11324), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(11326), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [260452] = 6, + [247623] = 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(11239), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 19, + ACTIONS(11241), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292078,6 +277969,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, @@ -292088,19 +277980,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [260490] = 6, + anon_sym_BQUOTE, + [247655] = 18, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11096), 1, + anon_sym_LPAREN, + ACTIONS(11098), 1, + aux_sym__c_word_token1, + ACTIONS(11100), 1, + anon_sym_DOLLAR, + ACTIONS(11102), 1, + anon_sym_DQUOTE, + ACTIONS(11104), 1, + aux_sym_number_token1, + ACTIONS(11106), 1, + aux_sym_number_token2, + ACTIONS(11108), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11110), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11112), 1, + anon_sym_BQUOTE, + ACTIONS(11114), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2902), 1, + sym__c_unary_expression, + STATE(2905), 1, + sym__c_binary_expression, + STATE(2906), 1, + sym__c_postfix_expression, + STATE(6319), 1, + sym__c_expression, + STATE(6350), 1, + sym__c_variable_assignment, + ACTIONS(11094), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2901), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [247717] = 18, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11096), 1, + anon_sym_LPAREN, + ACTIONS(11098), 1, + aux_sym__c_word_token1, + ACTIONS(11100), 1, + anon_sym_DOLLAR, + ACTIONS(11102), 1, + anon_sym_DQUOTE, + ACTIONS(11104), 1, + aux_sym_number_token1, + ACTIONS(11106), 1, + aux_sym_number_token2, + ACTIONS(11108), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11110), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11112), 1, + anon_sym_BQUOTE, + ACTIONS(11114), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2902), 1, + sym__c_unary_expression, + STATE(2905), 1, + sym__c_binary_expression, + STATE(2906), 1, + sym__c_postfix_expression, + STATE(6350), 1, + sym__c_variable_assignment, + STATE(6357), 1, + sym__c_expression, + ACTIONS(11094), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2901), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [247779] = 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(11412), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 19, + ACTIONS(11410), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292110,6 +278086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -292120,55 +278097,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [260528] = 16, - ACTIONS(3), 1, - 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(12611), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, - sym_command_substitution, - STATE(7148), 1, - sym__expansion_body, - ACTIONS(12329), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(7752), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(12321), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(12323), 4, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym__, - [260586] = 3, + [247811] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12107), 2, + ACTIONS(11226), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12105), 22, + ACTIONS(11224), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292178,10 +278115,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -292191,55 +278126,15 @@ 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, - 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(12613), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, - sym_command_substitution, - STATE(7151), 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__, - [260676] = 3, + [247843] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12228), 2, + ACTIONS(11536), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12230), 22, + ACTIONS(11538), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292249,10 +278144,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, @@ -292262,55 +278155,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_BQUOTE, + [247875] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(11330), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(11334), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(11336), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(11338), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(11340), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(11342), 1, sym_variable_name, - ACTIONS(12615), 1, + ACTIONS(11540), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3248), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(5993), 1, sym_command_substitution, - STATE(7168), 1, + STATE(6052), 1, + aux_sym__expansion_body_repeat1, + STATE(6850), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(11332), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(6879), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(11324), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(11326), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [260766] = 3, + [247933] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12101), 2, + ACTIONS(11226), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12103), 22, + ACTIONS(11224), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292333,48 +278227,13 @@ 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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1254), 4, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 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, - [260830] = 6, + [247965] = 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(4487), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 19, + ACTIONS(4485), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292384,7 +278243,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 +278256,14 @@ 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, + [247997] = 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(2158), 2, + ACTIONS(4453), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 19, + ACTIONS(4451), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292417,6 +278274,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,19 +278285,13 @@ 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, + [248029] = 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(4282), 2, + ACTIONS(11082), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 19, + ACTIONS(11084), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292448,7 +278301,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, @@ -292458,19 +278314,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, + [248061] = 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(11186), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 19, + ACTIONS(11184), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292480,7 +278330,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,30 +278343,28 @@ 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, + [248093] = 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(5563), 2, + ACTIONS(3937), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4039), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 19, + STATE(625), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(4037), 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_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -292522,19 +278373,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, + anon_sym_BQUOTE, + [248129] = 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(4039), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 19, + STATE(625), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(4037), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292554,19 +278403,57 @@ 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, + anon_sym_BQUOTE, + [248163] = 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, + ACTIONS(11330), 1, + anon_sym_BANG2, + ACTIONS(11334), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11336), 1, + anon_sym_BQUOTE, + ACTIONS(11338), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11340), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11342), 1, + sym_variable_name, + ACTIONS(11542), 1, + anon_sym_RBRACE3, + STATE(3248), 1, + sym_subscript, + STATE(5993), 1, + sym_command_substitution, + STATE(6052), 1, + aux_sym__expansion_body_repeat1, + STATE(6880), 1, + sym__expansion_body, + ACTIONS(11332), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(6879), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11324), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11326), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [248221] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4487), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 19, + ACTIONS(4485), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292576,6 +278463,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, @@ -292586,19 +278474,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [261096] = 6, + anon_sym_BQUOTE, + [248253] = 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(4313), 2, + ACTIONS(11182), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 19, + ACTIONS(11180), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292609,6 +278492,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, @@ -292618,98 +278503,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [261134] = 16, - 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(12617), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, - sym_command_substitution, - STATE(7359), 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__, - [261192] = 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(12619), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, - sym_command_substitution, - STATE(7184), 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__, - [261250] = 3, + anon_sym_LT_LT_LT, + [248285] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12599), 3, + ACTIONS(3915), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12597), 21, + ACTIONS(3913), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292731,13 +278533,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [261282] = 3, + [248317] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2162), 2, + ACTIONS(11239), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 22, + ACTIONS(11241), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292760,13 +278562,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [261314] = 3, + [248349] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12242), 2, + ACTIONS(11144), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12244), 22, + ACTIONS(11142), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292789,14 +278591,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [261346] = 3, + [248381] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12511), 3, + ACTIONS(11406), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12509), 21, + ACTIONS(11408), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292806,8 +278607,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, @@ -292817,98 +278620,93 @@ static 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, - [261378] = 16, + [248413] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(11330), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(11334), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(11336), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(11338), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(11340), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(11342), 1, sym_variable_name, - ACTIONS(12621), 1, + ACTIONS(11544), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3248), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(5993), 1, sym_command_substitution, - STATE(7086), 1, + STATE(6052), 1, + aux_sym__expansion_body_repeat1, + STATE(6996), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(11332), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(6879), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(11324), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(11326), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [261436] = 16, + [248471] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, - anon_sym_BANG2, - ACTIONS(12331), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(3143), 1, + sym_file_descriptor, + ACTIONS(4018), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, - sym_variable_name, - ACTIONS(12623), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, - sym_command_substitution, - STATE(7199), 1, - sym__expansion_body, - ACTIONS(12329), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(7752), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(12321), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(12323), 4, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym__, - [261494] = 3, + ACTIONS(4719), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(2782), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3139), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3937), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4717), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(625), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(4715), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + ACTIONS(3137), 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, + [248519] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12101), 2, + ACTIONS(11502), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12103), 22, + ACTIONS(11500), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292918,9 +278716,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -292930,56 +278727,145 @@ static const uint16_t 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, - ACTIONS(3), 1, + anon_sym_BQUOTE, + [248551] = 18, + ACTIONS(71), 1, sym_comment, - ACTIONS(12327), 1, - anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(11304), 1, + anon_sym_LPAREN, + ACTIONS(11306), 1, + aux_sym__c_word_token1, + ACTIONS(11308), 1, + anon_sym_DOLLAR, + ACTIONS(11310), 1, + anon_sym_DQUOTE, + ACTIONS(11312), 1, + aux_sym_number_token1, + ACTIONS(11314), 1, + aux_sym_number_token2, + ACTIONS(11316), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11318), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(11320), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(11322), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, - sym_variable_name, - ACTIONS(12625), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(2953), 1, + sym__c_unary_expression, + STATE(2995), 1, + sym__c_binary_expression, + STATE(3003), 1, + sym__c_postfix_expression, + STATE(6137), 1, + sym__c_expression, + STATE(6335), 1, + sym__c_variable_assignment, + ACTIONS(11302), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2943), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, sym_command_substitution, - STATE(7213), 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, + [248613] = 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, - anon_sym_POUND, - anon_sym__, - [261584] = 3, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [248645] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1266), 4, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1264), 20, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [248677] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1250), 4, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1248), 20, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [248709] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12361), 2, + ACTIONS(4495), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12363), 22, + ACTIONS(4493), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -293002,93 +278888,57 @@ 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, + [248741] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(11330), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(11334), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(11336), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(11338), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(11340), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(11342), 1, sym_variable_name, - ACTIONS(12627), 1, + ACTIONS(11546), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3248), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(5993), 1, sym_command_substitution, - STATE(6846), 1, + STATE(6052), 1, + aux_sym__expansion_body_repeat1, + STATE(6933), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(11332), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(6879), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(11324), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(11326), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [261720] = 3, + [248799] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 4, + ACTIONS(1262), 4, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 20, + ACTIONS(1260), 20, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, @@ -293109,44 +278959,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [261752] = 3, + [248831] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12232), 2, - sym_file_descriptor, + ACTIONS(1282), 4, + sym__concat, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(12234), 22, + ACTIONS(1280), 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, + [248863] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2071), 1, + sym_file_descriptor, + ACTIONS(4043), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(2041), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(2043), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4016), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(4041), 2, + anon_sym_SEMI, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, + STATE(534), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(2321), 4, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, + ACTIONS(2039), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [261784] = 3, + [248909] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 4, + ACTIONS(1286), 4, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 20, + ACTIONS(1284), 20, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [248941] = 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, @@ -293154,105 +279069,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [248973] = 18, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11304), 1, + anon_sym_LPAREN, + ACTIONS(11306), 1, + aux_sym__c_word_token1, + ACTIONS(11308), 1, + anon_sym_DOLLAR, + ACTIONS(11310), 1, + anon_sym_DQUOTE, + ACTIONS(11312), 1, + aux_sym_number_token1, + ACTIONS(11314), 1, + aux_sym_number_token2, + ACTIONS(11316), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11318), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11320), 1, + anon_sym_BQUOTE, + ACTIONS(11322), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2953), 1, + sym__c_unary_expression, + STATE(2995), 1, + sym__c_binary_expression, + STATE(3003), 1, + sym__c_postfix_expression, + STATE(6335), 1, + sym__c_variable_assignment, + STATE(6352), 1, + sym__c_expression, + ACTIONS(11302), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2943), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [249035] = 18, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11304), 1, + anon_sym_LPAREN, + ACTIONS(11306), 1, + aux_sym__c_word_token1, + ACTIONS(11308), 1, + anon_sym_DOLLAR, + ACTIONS(11310), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(11312), 1, aux_sym_number_token1, + ACTIONS(11314), 1, aux_sym_number_token2, + ACTIONS(11316), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(11318), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(11320), 1, anon_sym_BQUOTE, + ACTIONS(11322), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [261816] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5208), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12432), 1, - sym_file_descriptor, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4529), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5161), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(11951), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(5206), 3, - anon_sym_SEMI, - anon_sym_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, - 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(12629), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(2953), 1, + sym__c_unary_expression, + STATE(2995), 1, + sym__c_binary_expression, + STATE(3003), 1, + sym__c_postfix_expression, + STATE(6335), 1, + sym__c_variable_assignment, + STATE(6367), 1, + sym__c_expression, + ACTIONS(11302), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2943), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, sym_command_substitution, - STATE(7229), 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__, - [261920] = 3, + [249097] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4439), 3, + ACTIONS(11434), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 21, + ACTIONS(11432), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -293274,14 +279199,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [261952] = 3, + [249129] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12347), 3, + ACTIONS(11434), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12349), 21, + ACTIONS(11432), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -293303,139 +279228,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [261984] = 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(12631), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 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, + [249161] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(11330), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(11334), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(11336), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(11338), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(11340), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(11342), 1, sym_variable_name, - ACTIONS(12633), 1, + ACTIONS(11548), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3248), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(5993), 1, sym_command_substitution, - STATE(6717), 1, - sym__expansion_body, - ACTIONS(12329), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(7752), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(12321), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(12323), 4, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym__, - [262100] = 16, - 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(12635), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, + STATE(6052), 1, aux_sym__expansion_body_repeat1, - STATE(6377), 1, - sym_command_substitution, - STATE(7274), 1, + STATE(6975), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(11332), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(6879), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(11324), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(11326), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [262158] = 3, + [249219] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12639), 2, + ACTIONS(10951), 1, + aux_sym_concatenation_token1, + ACTIONS(11550), 1, + sym__concat, + STATE(4059), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12637), 22, + ACTIONS(1207), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -293445,10 +279292,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, @@ -293458,42 +279302,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [262190] = 3, + [249257] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12643), 2, - sym_file_descriptor, + ACTIONS(1294), 4, + sym__concat, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(12641), 22, + ACTIONS(1292), 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, - [262222] = 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, + [249289] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12559), 2, + ACTIONS(10951), 1, + aux_sym_concatenation_token1, + ACTIONS(11552), 1, + sym__concat, + STATE(4059), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12561), 22, + ACTIONS(1213), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -293503,10 +279353,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, @@ -293516,55 +279363,43 @@ 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, + [249327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, - anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(1298), 4, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1296), 20, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - 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(12645), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, - sym_command_substitution, - STATE(6865), 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__, - [262312] = 3, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [249359] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2158), 2, + ACTIONS(4010), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 22, + ACTIONS(4008), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -293574,10 +279409,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, @@ -293587,205 +279420,133 @@ 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, + anon_sym_BQUOTE, + [249391] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(11330), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(11334), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(11336), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(11338), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(11340), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(11342), 1, sym_variable_name, - ACTIONS(12647), 1, + ACTIONS(11554), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3248), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(5993), 1, sym_command_substitution, - STATE(7043), 1, + STATE(6052), 1, + aux_sym__expansion_body_repeat1, + STATE(7027), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(11332), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(6879), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(11324), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(11326), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [262402] = 3, + [249449] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(12351), 2, - sym_file_descriptor, + ACTIONS(10842), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12353), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(11088), 1, + anon_sym_LT_LT_LT, + ACTIONS(11560), 1, + sym_file_descriptor, + ACTIONS(11558), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4573), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(11556), 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, - [262434] = 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(12649), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, - sym_command_substitution, - STATE(7293), 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__, - [262492] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12210), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(12212), 22, + ACTIONS(10836), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [249491] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10922), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11088), 1, + anon_sym_LT_LT_LT, + ACTIONS(11560), 1, + sym_file_descriptor, + ACTIONS(11558), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4533), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(11556), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [262524] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4313), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 22, + ACTIONS(10920), 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, - [262556] = 10, + [249533] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5287), 1, + ACTIONS(10915), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12432), 1, + ACTIONS(11088), 1, + anon_sym_LT_LT_LT, + ACTIONS(11560), 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, + ACTIONS(11558), 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(4574), 2, sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11949), 8, + sym_herestring_redirect, + ACTIONS(11556), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -293794,43 +279555,23 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(10913), 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, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_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_PIPE_AMP, + anon_sym_LT_LT_DASH, + [249575] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12242), 3, + ACTIONS(11188), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12244), 21, + ACTIONS(11190), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -293840,8 +279581,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,15 +279593,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, - [262666] = 3, + anon_sym_LT_LT_LT, + [249607] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12297), 3, + ACTIONS(11442), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12295), 21, + ACTIONS(11444), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -293869,8 +279610,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, @@ -293880,15 +279623,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, - [262698] = 3, + [249639] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12593), 3, + ACTIONS(11438), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12591), 21, + ACTIONS(11436), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -293910,14 +279652,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [262730] = 3, + [249671] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5888), 3, + ACTIONS(11132), 3, sym_file_descriptor, - sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5886), 21, + ACTIONS(11130), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -293927,9 +279669,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -293939,14 +279680,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [262762] = 3, + anon_sym_BQUOTE, + [249703] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12539), 3, + ACTIONS(4495), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12537), 21, + ACTIONS(4493), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -293968,198 +279710,56 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_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, + [249735] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(11330), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(11334), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(11336), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(11338), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(11340), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(11342), 1, sym_variable_name, - ACTIONS(12653), 1, + ACTIONS(11562), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3248), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(5993), 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, + STATE(6052), 1, aux_sym__expansion_body_repeat1, - STATE(6377), 1, - sym_command_substitution, - STATE(6741), 1, + STATE(7059), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(11332), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(6879), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(11324), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(11326), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [263000] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12639), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(12637), 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, - [263032] = 3, + [249793] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12533), 3, + ACTIONS(11418), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12531), 21, + ACTIONS(11416), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294181,56 +279781,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [263064] = 16, + [249825] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(11330), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(11334), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(11336), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(11338), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(11340), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(11342), 1, sym_variable_name, - ACTIONS(12657), 1, + ACTIONS(11564), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3248), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(5993), 1, sym_command_substitution, - STATE(6804), 1, + STATE(6052), 1, + aux_sym__expansion_body_repeat1, + STATE(6407), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(11332), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(6879), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(11324), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(11326), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [263122] = 3, + [249883] = 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, + [249915] = 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, + [249947] = 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, + [249979] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12418), 3, + ACTIONS(11182), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12416), 21, + ACTIONS(11180), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294240,8 +279926,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -294251,57 +279939,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, - [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, + [250011] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12539), 3, + ACTIONS(11239), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12537), 21, + ACTIONS(11241), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294311,8 +279955,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, @@ -294322,15 +279968,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, - [263244] = 3, + [250043] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12643), 3, + ACTIONS(11144), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12641), 21, + ACTIONS(11142), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294340,8 +279984,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, @@ -294351,15 +279997,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, - [263276] = 3, + [250075] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12418), 3, + ACTIONS(10951), 1, + aux_sym_concatenation_token1, + ACTIONS(10953), 1, + sym__concat, + STATE(4664), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4125), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12416), 21, + ACTIONS(4123), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294369,7 +280019,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, @@ -294380,14 +280029,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, - [263308] = 3, + [250113] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4313), 2, + ACTIONS(10951), 1, + aux_sym_concatenation_token1, + ACTIONS(10953), 1, + sym__concat, + STATE(4666), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3915), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 22, + ACTIONS(3913), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294397,10 +280051,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, @@ -294410,13 +280061,19 @@ 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, + [250151] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12373), 2, + ACTIONS(10951), 1, + aux_sym_concatenation_token1, + ACTIONS(10953), 1, + sym__concat, + STATE(4664), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4006), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12375), 22, + ACTIONS(4004), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294426,10 +280083,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, @@ -294439,14 +280093,19 @@ 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, + [250189] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12555), 3, + ACTIONS(10951), 1, + aux_sym_concatenation_token1, + ACTIONS(10953), 1, + sym__concat, + STATE(4666), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4010), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12553), 21, + ACTIONS(4008), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294456,7 +280115,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, @@ -294467,14 +280125,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, - [263404] = 3, + [250227] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12373), 2, + ACTIONS(4935), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12375), 22, + ACTIONS(4933), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294484,10 +280142,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, @@ -294497,97 +280153,57 @@ 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, + [250259] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(11330), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(11334), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(11336), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(11338), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(11340), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(11342), 1, sym_variable_name, - ACTIONS(12663), 1, + ACTIONS(11566), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3248), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(5993), 1, sym_command_substitution, - STATE(6863), 1, + STATE(6052), 1, + aux_sym__expansion_body_repeat1, + STATE(6600), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(11332), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(6879), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(11324), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(11326), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [263552] = 3, + [250317] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12511), 2, + ACTIONS(11422), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12509), 21, + ACTIONS(11420), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294597,9 +280213,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, @@ -294609,13 +280224,15 @@ 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, + anon_sym_BQUOTE, + [250349] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12347), 2, + ACTIONS(4935), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12349), 21, + ACTIONS(4933), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294625,9 +280242,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, @@ -294637,43 +280253,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [263614] = 5, + anon_sym_BQUOTE, + [250381] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(12665), 1, - sym__special_character, - STATE(4943), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 3, - sym_test_operator, - sym__brace_start, + ACTIONS(2665), 1, + sym_file_descriptor, + ACTIONS(4402), 1, + ts_builtin_sym_end, + ACTIONS(4406), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 18, + ACTIONS(2637), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(2639), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3937), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4367), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(586), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(4404), 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, - [263649] = 3, + ACTIONS(2635), 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, + [250429] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12373), 2, + ACTIONS(11492), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12375), 21, + ACTIONS(11490), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294683,9 +280308,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, @@ -294695,28 +280319,31 @@ 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, + anon_sym_BQUOTE, + [250461] = 6, 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(10951), 1, + aux_sym_concatenation_token1, + ACTIONS(10953), 1, + sym__concat, + STATE(4664), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4483), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12218), 17, + ACTIONS(4481), 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, @@ -294725,13 +280352,19 @@ 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, + [250499] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12121), 2, + ACTIONS(10951), 1, + aux_sym_concatenation_token1, + ACTIONS(10953), 1, + sym__concat, + STATE(4666), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4487), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12123), 21, + ACTIONS(4485), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294742,8 +280375,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, @@ -294753,49 +280384,51 @@ 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, + [250537] = 6, 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(10951), 1, + aux_sym_concatenation_token1, + ACTIONS(10953), 1, + sym__concat, + STATE(4664), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4491), 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(4489), 19, + 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_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, + [250575] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12373), 2, + ACTIONS(10951), 1, + aux_sym_concatenation_token1, + ACTIONS(10953), 1, + sym__concat, + STATE(4666), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4495), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12375), 21, + ACTIONS(4493), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294806,8 +280439,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, @@ -294817,17 +280448,21 @@ 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, + [250613] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12107), 2, + STATE(4701), 1, + aux_sym_pipeline_repeat1, + ACTIONS(11196), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12105), 21, + ACTIONS(11568), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(11198), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, @@ -294836,7 +280471,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, @@ -294845,13 +280479,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [263855] = 3, + [250649] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11330), 1, + anon_sym_BANG2, + ACTIONS(11334), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11336), 1, + anon_sym_BQUOTE, + ACTIONS(11338), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11340), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11342), 1, + sym_variable_name, + ACTIONS(11571), 1, + anon_sym_RBRACE3, + STATE(3248), 1, + sym_subscript, + STATE(5993), 1, + sym_command_substitution, + STATE(6052), 1, + aux_sym__expansion_body_repeat1, + STATE(6904), 1, + sym__expansion_body, + ACTIONS(11332), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(6879), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11324), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11326), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [250707] = 18, + ACTIONS(71), 1, + sym_comment, + ACTIONS(10497), 1, + anon_sym_DOLLAR, + ACTIONS(10503), 1, + aux_sym_number_token2, + ACTIONS(11286), 1, + anon_sym_LPAREN, + ACTIONS(11288), 1, + aux_sym__c_word_token1, + ACTIONS(11290), 1, + anon_sym_DQUOTE, + ACTIONS(11292), 1, + aux_sym_number_token1, + ACTIONS(11294), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11296), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11298), 1, + anon_sym_BQUOTE, + ACTIONS(11300), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2760), 1, + sym__c_binary_expression, + STATE(2765), 1, + sym__c_postfix_expression, + STATE(2780), 1, + sym__c_unary_expression, + STATE(6084), 1, + sym__c_expression, + STATE(6105), 1, + sym__c_variable_assignment, + ACTIONS(11284), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2871), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [250769] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12555), 2, + ACTIONS(4935), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12553), 21, + ACTIONS(4933), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294861,6 +280581,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, @@ -294873,13 +280594,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [263886] = 3, + [250801] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12593), 2, + ACTIONS(4935), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12591), 21, + ACTIONS(4933), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294889,6 +280610,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, @@ -294901,48 +280623,14 @@ 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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4523), 1, - ts_builtin_sym_end, - ACTIONS(4531), 1, - 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(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(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, - [263962] = 3, + [250833] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5858), 2, + ACTIONS(11378), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5856), 21, + ACTIONS(11376), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294952,9 +280640,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, @@ -294964,13 +280651,15 @@ 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, + anon_sym_BQUOTE, + [250865] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12519), 2, + ACTIONS(11378), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12521), 21, + ACTIONS(11376), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294980,9 +280669,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, @@ -294992,17 +280680,64 @@ 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, + anon_sym_BQUOTE, + [250897] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11330), 1, + anon_sym_BANG2, + ACTIONS(11334), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11336), 1, + anon_sym_BQUOTE, + ACTIONS(11338), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11340), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11342), 1, + sym_variable_name, + ACTIONS(11573), 1, + anon_sym_RBRACE3, + STATE(3248), 1, + sym_subscript, + STATE(5993), 1, + sym_command_substitution, + STATE(6052), 1, + aux_sym__expansion_body_repeat1, + STATE(6849), 1, + sym__expansion_body, + ACTIONS(11332), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(6879), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11324), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11326), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [250955] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12397), 2, + STATE(5236), 1, + aux_sym_pipeline_repeat1, + ACTIONS(11196), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12395), 21, + ACTIONS(11200), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(11198), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, @@ -295011,7 +280746,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, @@ -295020,13 +280754,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, + [250991] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12357), 2, + ACTIONS(11536), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12355), 21, + ACTIONS(11538), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295036,6 +280770,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, @@ -295048,28 +280783,27 @@ 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, + [251023] = 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(11350), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12131), 17, + ACTIONS(11352), 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, @@ -295078,13 +280812,13 @@ 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, + [251055] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12281), 2, + ACTIONS(11468), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12279), 21, + ACTIONS(11470), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295094,6 +280828,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, @@ -295106,13 +280841,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, + [251087] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12397), 2, + ACTIONS(4487), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12395), 21, + ACTIONS(4485), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295134,13 +280869,15 @@ 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, + anon_sym_LT_LT_LT, + [251119] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12385), 2, + ACTIONS(11496), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12387), 21, + ACTIONS(11494), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295150,9 +280887,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, @@ -295162,41 +280898,92 @@ 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, + anon_sym_BQUOTE, + [251151] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11330), 1, + anon_sym_BANG2, + ACTIONS(11334), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11336), 1, + anon_sym_BQUOTE, + ACTIONS(11338), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11340), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11342), 1, + sym_variable_name, + ACTIONS(11575), 1, + anon_sym_RBRACE3, + STATE(3248), 1, + sym_subscript, + STATE(5993), 1, + sym_command_substitution, + STATE(6052), 1, + aux_sym__expansion_body_repeat1, + STATE(6961), 1, + sym__expansion_body, + ACTIONS(11332), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(6879), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11324), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11326), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [251209] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(12639), 2, + ACTIONS(2071), 1, sym_file_descriptor, + ACTIONS(4020), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12637), 21, + ACTIONS(2041), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(2043), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4014), 2, anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(4016), 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, + STATE(534), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(4018), 4, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, + ACTIONS(2039), 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, - [264245] = 3, + [251255] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12451), 2, + ACTIONS(11496), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12453), 21, + ACTIONS(11494), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295218,13 +281005,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, + [251286] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12418), 2, + ACTIONS(11144), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12416), 21, + ACTIONS(11142), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295246,13 +281033,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [264307] = 3, + [251317] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12643), 2, + ACTIONS(11186), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12641), 21, + ACTIONS(11184), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295274,56 +281061,62 @@ 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, + [251348] = 10, ACTIONS(3), 1, sym_comment, - STATE(4980), 1, - aux_sym_pipeline_repeat1, - ACTIONS(12222), 2, + ACTIONS(3143), 1, sym_file_descriptor, + ACTIONS(4618), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12681), 2, + ACTIONS(2782), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3139), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3937), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(12218), 18, - anon_sym_SEMI, + ACTIONS(4616), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + STATE(625), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(4614), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + ACTIONS(3137), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [264373] = 3, + [251393] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12418), 2, + STATE(4763), 1, + aux_sym_pipeline_repeat1, + ACTIONS(11164), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12416), 21, + ACTIONS(11577), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(11160), 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, @@ -295332,13 +281125,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [264404] = 3, + anon_sym_BQUOTE, + [251428] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12487), 2, + ACTIONS(4010), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12489), 21, + ACTIONS(4008), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295360,13 +281154,13 @@ 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, + [251459] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12527), 2, + ACTIONS(11378), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12525), 21, + ACTIONS(11376), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295388,13 +281182,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [264466] = 3, + [251490] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12505), 2, + ACTIONS(11158), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12503), 21, + ACTIONS(11156), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295416,13 +281210,13 @@ 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, + [251521] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4439), 2, + ACTIONS(11136), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 21, + ACTIONS(11134), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295444,33 +281238,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [264528] = 10, + [251552] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4255), 1, - anon_sym_BQUOTE, - ACTIONS(5212), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12226), 1, + ACTIONS(2417), 1, sym_file_descriptor, - ACTIONS(4529), 2, + ACTIONS(4182), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(2389), 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(2391), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(5210), 3, + ACTIONS(4178), 2, anon_sym_SEMI, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4612), 3, + ACTIONS(4180), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(562), 2, sym_file_redirect, sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11896), 8, + ACTIONS(4018), 3, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(2387), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -295479,13 +281273,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [264573] = 3, + [251597] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12497), 2, + ACTIONS(11396), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12495), 21, + ACTIONS(11398), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295507,13 +281301,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [264604] = 3, + [251628] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12599), 2, + ACTIONS(11378), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12597), 21, + ACTIONS(11376), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295535,89 +281329,28 @@ 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, + [251659] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2503), 1, - anon_sym_BQUOTE, - ACTIONS(4995), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12226), 1, - sym_file_descriptor, - ACTIONS(4529), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4993), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(11898), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(4991), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4612), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11896), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [264680] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12341), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(12343), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + STATE(4759), 1, + aux_sym_pipeline_repeat1, + ACTIONS(11579), 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_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [264711] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12140), 2, + ACTIONS(11164), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12142), 21, + ACTIONS(11160), 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, @@ -295626,54 +281359,28 @@ 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, + [251694] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12436), 2, + STATE(4730), 1, + aux_sym_pipeline_repeat1, + ACTIONS(11196), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12434), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(11581), 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_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [264773] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12533), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(12531), 21, + ACTIONS(11198), 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, @@ -295682,13 +281389,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [264804] = 3, + [251729] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2158), 2, + ACTIONS(11412), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 21, + ACTIONS(11410), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295710,28 +281417,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [264835] = 5, + [251760] = 3, ACTIONS(3), 1, sym_comment, - STATE(4980), 1, - aux_sym_pipeline_repeat1, - ACTIONS(12136), 2, + ACTIONS(4495), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12683), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(12131), 18, + ACTIONS(4493), 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 +281445,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, + [251791] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12347), 2, + ACTIONS(11226), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12349), 21, + ACTIONS(11224), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295768,43 +281473,43 @@ 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, - ACTIONS(3), 1, + [251822] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(12686), 1, + STATE(4792), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11584), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1229), 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, - STATE(4943), 1, - aux_sym__literal_repeat1, - ACTIONS(5132), 3, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 18, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [264936] = 3, + ACTIONS(1231), 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, + [251857] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12501), 2, + ACTIONS(11492), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12499), 21, + ACTIONS(11490), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295826,26 +281531,28 @@ 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, + [251888] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12455), 2, + STATE(4730), 1, + aux_sym_pipeline_repeat1, + ACTIONS(11164), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12457), 21, + ACTIONS(11586), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(11160), 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, @@ -295854,13 +281561,13 @@ 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, + [251923] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12511), 2, + ACTIONS(11406), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12509), 21, + ACTIONS(11408), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295882,13 +281589,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, + [251954] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12539), 2, + ACTIONS(11239), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12537), 21, + ACTIONS(11241), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295910,72 +281617,83 @@ 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, + [251985] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(12559), 2, + ACTIONS(3143), 1, sym_file_descriptor, + ACTIONS(4773), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12561), 21, - anon_sym_SEMI, + ACTIONS(2782), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3139), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3937), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4616), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + STATE(625), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(4771), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + ACTIONS(3137), 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, - [265091] = 6, + [252030] = 10, 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(3143), 1, sym_file_descriptor, + ACTIONS(4689), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 18, + ACTIONS(2782), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3139), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3937), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4616), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + STATE(625), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(4687), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + ACTIONS(3137), 8, 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, - sym__special_character, - [265128] = 3, + [252075] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12210), 2, + ACTIONS(11468), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12212), 21, + ACTIONS(11470), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295997,13 +281715,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, + [252106] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12297), 2, + ACTIONS(4935), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12295), 21, + ACTIONS(4933), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -296025,13 +281743,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, + [252137] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12401), 2, + ACTIONS(4935), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12403), 21, + ACTIONS(4933), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -296053,27 +281771,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, + [252168] = 3, ACTIONS(3), 1, sym_comment, - STATE(5006), 1, - aux_sym_pipeline_repeat1, - ACTIONS(12222), 2, + ACTIONS(11434), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12688), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(12218), 18, + ACTIONS(11432), 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,42 +281799,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, - [265256] = 3, + [252199] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5858), 2, + ACTIONS(2417), 1, sym_file_descriptor, + ACTIONS(4193), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5856), 21, - anon_sym_SEMI, + ACTIONS(2389), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(2391), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4180), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(4191), 2, + anon_sym_SEMI, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, + STATE(562), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(2321), 3, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, + ACTIONS(2387), 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, - [265287] = 3, + [252244] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12539), 2, + ACTIONS(11132), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12537), 21, + ACTIONS(11130), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -296139,25 +281862,27 @@ 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, + [252275] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12361), 2, + ACTIONS(10806), 1, + aux_sym_concatenation_token1, + ACTIONS(10808), 1, + sym__concat, + STATE(4834), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1231), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(12363), 21, - anon_sym_SEMI, + ACTIONS(1229), 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, @@ -296167,13 +281892,44 @@ 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, + sym__special_character, + [252312] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12361), 2, + ACTIONS(11588), 1, + sym__special_character, + STATE(4756), 1, + aux_sym__literal_repeat1, + ACTIONS(11230), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(11228), 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, + [252347] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11390), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12363), 21, + ACTIONS(11392), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -296195,13 +281951,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [265380] = 3, + [252378] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12393), 2, + ACTIONS(11476), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12391), 21, + ACTIONS(11474), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -296223,13 +281979,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, + [252409] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12409), 2, + ACTIONS(11442), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12411), 21, + ACTIONS(11444), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -296251,63 +282007,25 @@ 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, + [252440] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5847), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12674), 1, - anon_sym_LT_LT_LT, - ACTIONS(12676), 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(5845), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(12672), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(5163), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(12670), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [265489] = 6, - 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(11502), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 17, + ACTIONS(11500), 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 +282035,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, + [252471] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12180), 2, + ACTIONS(11438), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12178), 21, + ACTIONS(11436), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -296346,25 +282063,26 @@ 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, + [252502] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12424), 2, + ACTIONS(10820), 1, + aux_sym_concatenation_token1, + ACTIONS(10822), 1, + sym__concat, + STATE(4840), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1231), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12426), 21, - anon_sym_SEMI, + ACTIONS(1229), 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_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -296374,13 +282092,15 @@ 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, + anon_sym_LT_LT_LT, + sym__special_character, + [252539] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4313), 2, + ACTIONS(11418), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 21, + ACTIONS(11416), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -296402,13 +282122,43 @@ 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, + [252570] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11590), 1, + sym__special_character, + STATE(4756), 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, + [252605] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2162), 2, + ACTIONS(11422), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 21, + ACTIONS(11420), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -296430,46 +282180,54 @@ 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, + [252636] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(12242), 2, + ACTIONS(3143), 1, sym_file_descriptor, + ACTIONS(4643), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12244), 21, - anon_sym_SEMI, + ACTIONS(2782), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3139), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3937), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4616), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + STATE(625), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(4641), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + ACTIONS(3137), 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, - [265681] = 5, + [252681] = 5, ACTIONS(3), 1, sym_comment, - STATE(5006), 1, + STATE(4759), 1, aux_sym_pipeline_repeat1, - ACTIONS(12136), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(12690), 2, + ACTIONS(11593), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(12131), 18, + ACTIONS(11196), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(11198), 17, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -296487,114 +282245,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [265716] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(5068), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12693), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1223), 8, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - sym__special_character, - ACTIONS(1225), 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, - [265751] = 10, + [252716] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4255), 1, - anon_sym_RPAREN, - ACTIONS(4515), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12109), 1, + ACTIONS(11182), 2, sym_file_descriptor, - ACTIONS(4529), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4797), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(11180), 21, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11800), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(4513), 3, - anon_sym_SEMI, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4669), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11798), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [265796] = 10, - 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(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, - [265841] = 3, + anon_sym_LT_LT_DASH, + [252747] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12101), 2, + ACTIONS(11536), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12103), 21, + ACTIONS(11538), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -296616,13 +282301,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, + [252778] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12228), 2, + ACTIONS(4487), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12230), 21, + ACTIONS(4485), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -296644,48 +282329,43 @@ 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, + [252809] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2503), 1, - anon_sym_RPAREN, - ACTIONS(4296), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12109), 1, + STATE(4763), 1, + aux_sym_pipeline_repeat1, + ACTIONS(11196), 2, sym_file_descriptor, - ACTIONS(4529), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4797), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(11596), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(11198), 18, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11800), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(4290), 3, - anon_sym_SEMI, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4669), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11798), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [265948] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [252844] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12351), 2, + ACTIONS(11356), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12353), 21, + ACTIONS(11358), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -296707,30 +282387,26 @@ 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, + [252875] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12674), 1, - anon_sym_LT_LT_LT, - STATE(4937), 1, - sym_herestring_redirect, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4159), 2, + ACTIONS(11450), 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, + ACTIONS(11448), 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, @@ -296739,13 +282415,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, + [252906] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12424), 2, + ACTIONS(11350), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12426), 21, + ACTIONS(11352), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -296767,13 +282443,13 @@ 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, + [252937] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12579), 2, + ACTIONS(3915), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12577), 21, + ACTIONS(3913), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -296795,28 +282471,25 @@ 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, + [252968] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12674), 1, - anon_sym_LT_LT_LT, - STATE(4937), 1, - sym_herestring_redirect, - ACTIONS(4268), 2, + ACTIONS(11454), 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(11452), 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, @@ -296826,13 +282499,13 @@ 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, + [252999] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12493), 2, + ACTIONS(11082), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12491), 21, + ACTIONS(11084), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -296854,26 +282527,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [266148] = 6, + [253030] = 3, 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(1225), 2, + ACTIONS(11434), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 17, + ACTIONS(11432), 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, @@ -296883,298 +282555,39 @@ 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, - [266184] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(5039), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12695), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5130), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - 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, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [266218] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(5040), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12695), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5134), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - 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, - anon_sym_LPAREN, - 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(12697), 1, - aux_sym__c_word_token1, - STATE(3196), 1, - sym__c_unary_expression, - STATE(3199), 1, - sym__c_binary_expression, - STATE(3201), 1, - sym__c_postfix_expression, - ACTIONS(12079), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3105), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [266308] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12081), 1, - anon_sym_LPAREN, - 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(12699), 1, - aux_sym__c_word_token1, - STATE(3196), 1, - sym__c_unary_expression, - STATE(3199), 1, - sym__c_binary_expression, - STATE(3201), 1, - sym__c_postfix_expression, - ACTIONS(12079), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3107), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [266364] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12081), 1, - anon_sym_LPAREN, - 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(12701), 1, - aux_sym__c_word_token1, - STATE(3196), 1, - sym__c_unary_expression, - STATE(3199), 1, - sym__c_binary_expression, - STATE(3201), 1, - sym__c_postfix_expression, - ACTIONS(12079), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3114), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [266420] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12081), 1, - anon_sym_LPAREN, - 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(12703), 1, - aux_sym__c_word_token1, - STATE(3196), 1, - sym__c_unary_expression, - STATE(3199), 1, - sym__c_binary_expression, - STATE(3201), 1, - sym__c_postfix_expression, - ACTIONS(12079), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3119), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [266476] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12081), 1, - anon_sym_LPAREN, - 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(12705), 1, - aux_sym__c_word_token1, - STATE(3196), 1, - sym__c_unary_expression, - STATE(3199), 1, - sym__c_binary_expression, - STATE(3201), 1, - sym__c_postfix_expression, - ACTIONS(12079), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3120), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [266532] = 16, + [253061] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12081), 1, + ACTIONS(11096), 1, anon_sym_LPAREN, - ACTIONS(12085), 1, + ACTIONS(11100), 1, anon_sym_DOLLAR, - ACTIONS(12087), 1, + ACTIONS(11102), 1, anon_sym_DQUOTE, - ACTIONS(12089), 1, + ACTIONS(11104), 1, aux_sym_number_token1, - ACTIONS(12091), 1, + ACTIONS(11106), 1, aux_sym_number_token2, - ACTIONS(12093), 1, + ACTIONS(11108), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12095), 1, + ACTIONS(11110), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12097), 1, + ACTIONS(11112), 1, anon_sym_BQUOTE, - ACTIONS(12099), 1, + ACTIONS(11114), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12707), 1, + ACTIONS(11599), 1, aux_sym__c_word_token1, - STATE(3196), 1, + STATE(2902), 1, sym__c_unary_expression, - STATE(3199), 1, + STATE(2905), 1, sym__c_binary_expression, - STATE(3201), 1, + STATE(2906), 1, sym__c_postfix_expression, - ACTIONS(12079), 2, + ACTIONS(11094), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3122), 7, + STATE(3011), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -297182,79 +282595,68 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [266588] = 16, + [253117] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(12081), 1, - anon_sym_LPAREN, - 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(12709), 1, - aux_sym__c_word_token1, - STATE(3196), 1, - sym__c_unary_expression, - STATE(3199), 1, - sym__c_binary_expression, - STATE(3201), 1, - sym__c_postfix_expression, - ACTIONS(12079), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3123), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [266644] = 16, + STATE(4795), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11584), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4493), 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(4495), 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, + [253151] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12081), 1, + ACTIONS(11096), 1, anon_sym_LPAREN, - ACTIONS(12085), 1, + ACTIONS(11100), 1, anon_sym_DOLLAR, - ACTIONS(12087), 1, + ACTIONS(11102), 1, anon_sym_DQUOTE, - ACTIONS(12089), 1, + ACTIONS(11104), 1, aux_sym_number_token1, - ACTIONS(12091), 1, + ACTIONS(11106), 1, aux_sym_number_token2, - ACTIONS(12093), 1, + ACTIONS(11108), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12095), 1, + ACTIONS(11110), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12097), 1, + ACTIONS(11112), 1, anon_sym_BQUOTE, - ACTIONS(12099), 1, + ACTIONS(11114), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12711), 1, + ACTIONS(11601), 1, aux_sym__c_word_token1, - STATE(3196), 1, + STATE(2902), 1, sym__c_unary_expression, - STATE(3199), 1, + STATE(2905), 1, sym__c_binary_expression, - STATE(3201), 1, + STATE(2906), 1, sym__c_postfix_expression, - ACTIONS(12079), 2, + ACTIONS(11094), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3125), 7, + STATE(3009), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -297262,39 +282664,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [266700] = 16, + [253207] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12081), 1, + ACTIONS(11096), 1, anon_sym_LPAREN, - ACTIONS(12085), 1, + ACTIONS(11100), 1, anon_sym_DOLLAR, - ACTIONS(12087), 1, + ACTIONS(11102), 1, anon_sym_DQUOTE, - ACTIONS(12089), 1, + ACTIONS(11104), 1, aux_sym_number_token1, - ACTIONS(12091), 1, + ACTIONS(11106), 1, aux_sym_number_token2, - ACTIONS(12093), 1, + ACTIONS(11108), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12095), 1, + ACTIONS(11110), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12097), 1, + ACTIONS(11112), 1, anon_sym_BQUOTE, - ACTIONS(12099), 1, + ACTIONS(11114), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12713), 1, + ACTIONS(11603), 1, aux_sym__c_word_token1, - STATE(3196), 1, + STATE(2902), 1, sym__c_unary_expression, - STATE(3199), 1, + STATE(2905), 1, sym__c_binary_expression, - STATE(3201), 1, + STATE(2906), 1, sym__c_postfix_expression, - ACTIONS(12079), 2, + ACTIONS(11094), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3127), 7, + STATE(3010), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -297302,119 +282704,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [266756] = 16, + [253263] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12081), 1, - anon_sym_LPAREN, - ACTIONS(12085), 1, + ACTIONS(10497), 1, anon_sym_DOLLAR, - ACTIONS(12087), 1, - anon_sym_DQUOTE, - ACTIONS(12089), 1, - aux_sym_number_token1, - ACTIONS(12091), 1, + ACTIONS(10503), 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(12715), 1, - aux_sym__c_word_token1, - STATE(3196), 1, - sym__c_unary_expression, - STATE(3199), 1, - sym__c_binary_expression, - STATE(3201), 1, - sym__c_postfix_expression, - ACTIONS(12079), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3131), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [266812] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12081), 1, + ACTIONS(11286), 1, anon_sym_LPAREN, - ACTIONS(12085), 1, - anon_sym_DOLLAR, - ACTIONS(12087), 1, + ACTIONS(11290), 1, anon_sym_DQUOTE, - ACTIONS(12089), 1, + ACTIONS(11292), 1, aux_sym_number_token1, - ACTIONS(12091), 1, - aux_sym_number_token2, - ACTIONS(12093), 1, + ACTIONS(11294), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12095), 1, + ACTIONS(11296), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12097), 1, + ACTIONS(11298), 1, anon_sym_BQUOTE, - ACTIONS(12099), 1, + ACTIONS(11300), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12717), 1, + ACTIONS(11605), 1, aux_sym__c_word_token1, - STATE(3196), 1, - sym__c_unary_expression, - STATE(3199), 1, + STATE(2760), 1, sym__c_binary_expression, - STATE(3201), 1, + STATE(2765), 1, sym__c_postfix_expression, - ACTIONS(12079), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3133), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [266868] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12081), 1, - anon_sym_LPAREN, - 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(12719), 1, - aux_sym__c_word_token1, - STATE(3196), 1, + STATE(2780), 1, sym__c_unary_expression, - STATE(3199), 1, - sym__c_binary_expression, - STATE(3201), 1, - sym__c_postfix_expression, - ACTIONS(12079), 2, + ACTIONS(11284), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3135), 7, + STATE(2752), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -297422,44 +282744,44 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [266924] = 5, - ACTIONS(71), 1, + [253319] = 5, + ACTIONS(3), 1, sym_comment, - STATE(5068), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12693), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5687), 7, + STATE(4780), 1, + aux_sym_pipeline_repeat1, + ACTIONS(11164), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(11607), 2, anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(11160), 17, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5689), 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, - [266958] = 5, + [253353] = 5, ACTIONS(71), 1, sym_comment, - STATE(5069), 1, + STATE(4792), 1, aux_sym_concatenation_repeat1, - ACTIONS(12693), 2, + ACTIONS(11584), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(2156), 7, + ACTIONS(4004), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -297467,7 +282789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(2158), 12, + ACTIONS(4006), 12, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -297480,114 +282802,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [266992] = 5, + [253387] = 16, 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_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(5563), 12, + ACTIONS(10497), 1, + anon_sym_DOLLAR, + ACTIONS(10503), 1, + aux_sym_number_token2, + ACTIONS(11286), 1, + anon_sym_LPAREN, + ACTIONS(11290), 1, + anon_sym_DQUOTE, + ACTIONS(11292), 1, + aux_sym_number_token1, + ACTIONS(11294), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11296), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11298), 1, + anon_sym_BQUOTE, + ACTIONS(11300), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11609), 1, + aux_sym__c_word_token1, + STATE(2760), 1, + sym__c_binary_expression, + STATE(2765), 1, + sym__c_postfix_expression, + STATE(2780), 1, + sym__c_unary_expression, + ACTIONS(11284), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2828), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [253443] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2319), 1, + ts_builtin_sym_end, + ACTIONS(2665), 1, 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, + ACTIONS(4369), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(2637), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(2639), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [267026] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(5069), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12693), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(2160), 7, - anon_sym_PIPE, + ACTIONS(4367), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(586), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(4365), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + ACTIONS(2635), 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(2162), 12, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [267060] = 9, - ACTIONS(71), 1, + [253487] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(12727), 1, - anon_sym_LT_LT_LT, - ACTIONS(12729), 1, + STATE(4780), 1, + aux_sym_pipeline_repeat1, + ACTIONS(11196), 2, sym_file_descriptor, - ACTIONS(11713), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(11611), 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_AMP, + ACTIONS(11198), 17, + anon_sym_SEMI, 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_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, - [267102] = 6, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [253521] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(12695), 1, + ACTIONS(11614), 1, aux_sym_concatenation_token1, - ACTIONS(12731), 1, + ACTIONS(11616), 1, sym__concat, - STATE(5041), 1, + STATE(4796), 1, aux_sym_concatenation_repeat1, - ACTIONS(1227), 6, + ACTIONS(1207), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1229), 13, + ACTIONS(1209), 13, sym_test_operator, sym__brace_start, anon_sym_RPAREN, @@ -297601,52 +282935,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [267138] = 6, + [253557] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12695), 1, - aux_sym_concatenation_token1, - ACTIONS(12733), 1, - sym__concat, - STATE(5041), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1207), 6, + ACTIONS(11304), 1, + anon_sym_LPAREN, + ACTIONS(11308), 1, anon_sym_DOLLAR, + ACTIONS(11310), 1, + anon_sym_DQUOTE, + ACTIONS(11312), 1, aux_sym_number_token1, + ACTIONS(11314), 1, aux_sym_number_token2, + ACTIONS(11316), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11318), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(11320), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1209), 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(11322), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [267174] = 5, + ACTIONS(11618), 1, + aux_sym__c_word_token1, + STATE(2953), 1, + sym__c_unary_expression, + STATE(2995), 1, + sym__c_binary_expression, + STATE(3003), 1, + sym__c_postfix_expression, + ACTIONS(11302), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3143), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [253613] = 5, ACTIONS(71), 1, sym_comment, - STATE(5041), 1, + STATE(4781), 1, aux_sym_concatenation_repeat1, - ACTIONS(12735), 2, + ACTIONS(11614), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1213), 6, + ACTIONS(11228), 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(11230), 13, sym_test_operator, sym__brace_start, anon_sym_RPAREN, @@ -297660,104 +283004,78 @@ 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, + [253647] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(12214), 1, - aux_sym_concatenation_token1, - ACTIONS(12267), 1, - sym__concat, - STATE(5053), 1, + STATE(4781), 1, aux_sym_concatenation_repeat1, - ACTIONS(12740), 3, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(12738), 16, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + ACTIONS(11614), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1229), 6, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - [267244] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12214), 1, - aux_sym_concatenation_token1, - ACTIONS(12267), 1, - sym__concat, - STATE(5054), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12744), 3, + ACTIONS(1231), 13, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(12742), 16, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [267280] = 5, - ACTIONS(71), 1, + [253681] = 10, + ACTIONS(3), 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, + ACTIONS(3143), 1, sym_file_descriptor, + ACTIONS(4018), 1, + anon_sym_BQUOTE, + ACTIONS(4719), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(2782), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3139), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4717), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + STATE(625), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(4715), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + ACTIONS(3137), 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, - [267314] = 5, + [253725] = 5, ACTIONS(71), 1, sym_comment, - STATE(5069), 1, + STATE(4795), 1, aux_sym_concatenation_repeat1, - ACTIONS(12693), 2, + ACTIONS(11584), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(4437), 7, + ACTIONS(4008), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -297765,7 +283083,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(4010), 12, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -297778,22 +283096,23 @@ 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, + [253759] = 6, ACTIONS(71), 1, sym_comment, - STATE(5039), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12695), 2, - sym__concat, + ACTIONS(11614), 1, aux_sym_concatenation_token1, - ACTIONS(1223), 6, + ACTIONS(11620), 1, + sym__concat, + STATE(4796), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1213), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1225), 13, + ACTIONS(1215), 13, sym_test_operator, sym__brace_start, anon_sym_RPAREN, @@ -297807,149 +283126,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [267382] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(5068), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12693), 2, - sym__concat, - 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, + [253795] = 5, ACTIONS(71), 1, sym_comment, - STATE(5069), 1, + STATE(4787), 1, aux_sym_concatenation_repeat1, - ACTIONS(12693), 2, + ACTIONS(11614), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(4311), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(4313), 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, - [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, + ACTIONS(11247), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(11249), 13, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 19, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [253829] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11096), 1, + anon_sym_LPAREN, + ACTIONS(11100), 1, + anon_sym_DOLLAR, + ACTIONS(11102), 1, + anon_sym_DQUOTE, + ACTIONS(11104), 1, aux_sym_number_token1, + ACTIONS(11106), 1, aux_sym_number_token2, + ACTIONS(11108), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(11110), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(11112), 1, anon_sym_BQUOTE, + ACTIONS(11114), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [267522] = 9, + ACTIONS(11622), 1, + aux_sym__c_word_token1, + STATE(2902), 1, + sym__c_unary_expression, + STATE(2905), 1, + sym__c_binary_expression, + STATE(2906), 1, + sym__c_postfix_expression, + ACTIONS(11094), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3012), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [253885] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11096), 1, + anon_sym_LPAREN, + ACTIONS(11100), 1, + anon_sym_DOLLAR, + ACTIONS(11102), 1, + anon_sym_DQUOTE, + ACTIONS(11104), 1, + aux_sym_number_token1, + ACTIONS(11106), 1, + aux_sym_number_token2, + ACTIONS(11108), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11110), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11112), 1, + anon_sym_BQUOTE, + ACTIONS(11114), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11624), 1, + aux_sym__c_word_token1, + STATE(2902), 1, + sym__c_unary_expression, + STATE(2905), 1, + sym__c_binary_expression, + STATE(2906), 1, + sym__c_postfix_expression, + ACTIONS(11094), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3013), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [253941] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5287), 1, + ACTIONS(5139), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12432), 1, + ACTIONS(11626), 1, + anon_sym_LT_LT_LT, + ACTIONS(11628), 1, sym_file_descriptor, - ACTIONS(4529), 2, + STATE(4538), 1, + sym_herestring_redirect, + ACTIONS(2782), 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(3883), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(5285), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4731), 3, + ACTIONS(3937), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5125), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(737), 2, sym_file_redirect, sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11949), 8, + ACTIONS(3881), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -297958,39 +283270,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [267564] = 16, + [253987] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(10646), 1, - anon_sym_DOLLAR, - ACTIONS(10652), 1, - aux_sym_number_token2, - ACTIONS(12467), 1, + ACTIONS(11584), 1, + aux_sym_concatenation_token1, + ACTIONS(11630), 1, + sym__concat, + STATE(4800), 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), 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, + [254023] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11096), 1, anon_sym_LPAREN, - ACTIONS(12471), 1, + ACTIONS(11100), 1, + anon_sym_DOLLAR, + ACTIONS(11102), 1, anon_sym_DQUOTE, - ACTIONS(12473), 1, + ACTIONS(11104), 1, aux_sym_number_token1, - ACTIONS(12475), 1, + ACTIONS(11106), 1, + aux_sym_number_token2, + ACTIONS(11108), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12477), 1, + ACTIONS(11110), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12479), 1, + ACTIONS(11112), 1, anon_sym_BQUOTE, - ACTIONS(12481), 1, + ACTIONS(11114), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12761), 1, + ACTIONS(11632), 1, aux_sym__c_word_token1, - STATE(2838), 1, - sym__c_postfix_expression, - STATE(2905), 1, + STATE(2902), 1, sym__c_unary_expression, - STATE(2906), 1, + STATE(2905), 1, sym__c_binary_expression, - ACTIONS(12465), 2, + STATE(2906), 1, + sym__c_postfix_expression, + ACTIONS(11094), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2931), 7, + STATE(3014), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -297998,129 +283340,137 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [267620] = 6, - ACTIONS(3), 1, + [254079] = 15, + ACTIONS(71), 1, sym_comment, - ACTIONS(12214), 1, - aux_sym_concatenation_token1, - ACTIONS(12763), 1, - sym__concat, - STATE(4591), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 3, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 16, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, + ACTIONS(6685), 1, + anon_sym_LPAREN, + ACTIONS(6695), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, + ACTIONS(6703), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(6715), 1, + sym_variable_name, + ACTIONS(11636), 1, + anon_sym_DOLLAR, + ACTIONS(11638), 1, + anon_sym_RBRACE3, + ACTIONS(11640), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(11642), 1, anon_sym_BQUOTE, + ACTIONS(11644), 1, anon_sym_DOLLAR_BQUOTE, + STATE(6243), 1, + sym_process_substitution, + STATE(6995), 1, + sym__concatenation_in_expansion, + ACTIONS(6470), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(11634), 4, + sym__expansion_word, + sym_raw_string, + sym_ansi_c_string, sym_word, - [267656] = 6, - ACTIONS(3), 1, + STATE(6079), 5, + sym_string, + sym_array, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [254133] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(12214), 1, + ACTIONS(11584), 1, aux_sym_concatenation_token1, - ACTIONS(12765), 1, + ACTIONS(11646), 1, sym__concat, - STATE(4591), 1, + STATE(4800), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 3, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 16, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + ACTIONS(1213), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1215), 12, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [254169] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(4796), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11648), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1219), 6, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - [267692] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12214), 1, - aux_sym_concatenation_token1, - ACTIONS(12267), 1, - sym__concat, - STATE(5053), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1225), 3, + ACTIONS(1221), 13, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 16, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [267728] = 16, + [254203] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(10646), 1, - anon_sym_DOLLAR, - ACTIONS(10652), 1, - aux_sym_number_token2, - ACTIONS(12467), 1, + ACTIONS(11304), 1, anon_sym_LPAREN, - ACTIONS(12471), 1, + ACTIONS(11308), 1, + anon_sym_DOLLAR, + ACTIONS(11310), 1, anon_sym_DQUOTE, - ACTIONS(12473), 1, + ACTIONS(11312), 1, aux_sym_number_token1, - ACTIONS(12475), 1, + ACTIONS(11314), 1, + aux_sym_number_token2, + ACTIONS(11316), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12477), 1, + ACTIONS(11318), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12479), 1, + ACTIONS(11320), 1, anon_sym_BQUOTE, - ACTIONS(12481), 1, + ACTIONS(11322), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12767), 1, + ACTIONS(11651), 1, aux_sym__c_word_token1, - STATE(2838), 1, - sym__c_postfix_expression, - STATE(2905), 1, + STATE(2953), 1, sym__c_unary_expression, - STATE(2906), 1, + STATE(2995), 1, sym__c_binary_expression, - ACTIONS(12465), 2, + STATE(3003), 1, + sym__c_postfix_expression, + ACTIONS(11302), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2978), 7, + STATE(3050), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -298128,62 +283478,61 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [267784] = 8, - ACTIONS(3), 1, + [254259] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(11719), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12773), 1, - anon_sym_LT_LT_LT, - ACTIONS(12775), 1, - sym_file_descriptor, - ACTIONS(12771), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(5058), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(11713), 6, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + STATE(4795), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11584), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(3913), 7, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(12769), 8, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(3915), 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, - [267824] = 8, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [254293] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(11679), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12783), 1, - anon_sym_LT_LT_LT, - ACTIONS(12786), 1, + ACTIONS(2321), 1, + anon_sym_BQUOTE, + ACTIONS(3143), 1, sym_file_descriptor, - ACTIONS(12780), 2, + ACTIONS(4769), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(2782), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3139), 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, + ACTIONS(4717), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(12777), 8, + STATE(625), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(4767), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + ACTIONS(3137), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -298192,39 +283541,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [267864] = 16, + [254337] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(10646), 1, - anon_sym_DOLLAR, - ACTIONS(10652), 1, - aux_sym_number_token2, - ACTIONS(12467), 1, + STATE(4800), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11653), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1219), 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(1221), 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, + [254371] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11096), 1, anon_sym_LPAREN, - ACTIONS(12471), 1, + ACTIONS(11100), 1, + anon_sym_DOLLAR, + ACTIONS(11102), 1, anon_sym_DQUOTE, - ACTIONS(12473), 1, + ACTIONS(11104), 1, aux_sym_number_token1, - ACTIONS(12475), 1, + ACTIONS(11106), 1, + aux_sym_number_token2, + ACTIONS(11108), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12477), 1, + ACTIONS(11110), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12479), 1, + ACTIONS(11112), 1, anon_sym_BQUOTE, - ACTIONS(12481), 1, + ACTIONS(11114), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12789), 1, + ACTIONS(11656), 1, aux_sym__c_word_token1, - STATE(2838), 1, - sym__c_postfix_expression, - STATE(2905), 1, + STATE(2902), 1, sym__c_unary_expression, - STATE(2906), 1, + STATE(2905), 1, sym__c_binary_expression, - ACTIONS(12465), 2, + STATE(2906), 1, + sym__c_postfix_expression, + ACTIONS(11094), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2984), 7, + STATE(3015), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -298232,39 +283610,79 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [267920] = 16, + [254427] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(10646), 1, + ACTIONS(11096), 1, + anon_sym_LPAREN, + ACTIONS(11100), 1, anon_sym_DOLLAR, - ACTIONS(10652), 1, + ACTIONS(11102), 1, + anon_sym_DQUOTE, + ACTIONS(11104), 1, + aux_sym_number_token1, + ACTIONS(11106), 1, aux_sym_number_token2, - ACTIONS(12467), 1, + ACTIONS(11108), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11110), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11112), 1, + anon_sym_BQUOTE, + ACTIONS(11114), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11658), 1, + aux_sym__c_word_token1, + STATE(2902), 1, + sym__c_unary_expression, + STATE(2905), 1, + sym__c_binary_expression, + STATE(2906), 1, + sym__c_postfix_expression, + ACTIONS(11094), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3016), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [254483] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11096), 1, anon_sym_LPAREN, - ACTIONS(12471), 1, + ACTIONS(11100), 1, + anon_sym_DOLLAR, + ACTIONS(11102), 1, anon_sym_DQUOTE, - ACTIONS(12473), 1, + ACTIONS(11104), 1, aux_sym_number_token1, - ACTIONS(12475), 1, + ACTIONS(11106), 1, + aux_sym_number_token2, + ACTIONS(11108), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12477), 1, + ACTIONS(11110), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12479), 1, + ACTIONS(11112), 1, anon_sym_BQUOTE, - ACTIONS(12481), 1, + ACTIONS(11114), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12791), 1, + ACTIONS(11660), 1, aux_sym__c_word_token1, - STATE(2838), 1, - sym__c_postfix_expression, - STATE(2905), 1, + STATE(2902), 1, sym__c_unary_expression, - STATE(2906), 1, + STATE(2905), 1, sym__c_binary_expression, - ACTIONS(12465), 2, + STATE(2906), 1, + sym__c_postfix_expression, + ACTIONS(11094), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2985), 7, + STATE(3017), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -298272,71 +283690,100 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [267976] = 8, - ACTIONS(71), 1, + [254539] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(4157), 1, - anon_sym_PIPE, - ACTIONS(4268), 1, - anon_sym_PIPE_AMP, - ACTIONS(12793), 1, + ACTIONS(11626), 1, anon_sym_LT_LT_LT, - STATE(5583), 1, + STATE(4538), 1, sym_herestring_redirect, - STATE(5381), 3, + ACTIONS(3937), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4039), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(737), 2, sym_file_redirect, sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4155), 6, + ACTIONS(4037), 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(4159), 9, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [254577] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11626), 1, + anon_sym_LT_LT_LT, + STATE(4538), 1, + sym_herestring_redirect, + ACTIONS(3939), 2, sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(737), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(3937), 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, - [268016] = 16, + [254613] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(10646), 1, - anon_sym_DOLLAR, - ACTIONS(10652), 1, - aux_sym_number_token2, - ACTIONS(12467), 1, + ACTIONS(11096), 1, anon_sym_LPAREN, - ACTIONS(12471), 1, + ACTIONS(11100), 1, + anon_sym_DOLLAR, + ACTIONS(11102), 1, anon_sym_DQUOTE, - ACTIONS(12473), 1, + ACTIONS(11104), 1, aux_sym_number_token1, - ACTIONS(12475), 1, + ACTIONS(11106), 1, + aux_sym_number_token2, + ACTIONS(11108), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12477), 1, + ACTIONS(11110), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12479), 1, + ACTIONS(11112), 1, anon_sym_BQUOTE, - ACTIONS(12481), 1, + ACTIONS(11114), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12795), 1, + ACTIONS(11662), 1, aux_sym__c_word_token1, - STATE(2838), 1, - sym__c_postfix_expression, - STATE(2905), 1, + STATE(2902), 1, sym__c_unary_expression, - STATE(2906), 1, + STATE(2905), 1, sym__c_binary_expression, - ACTIONS(12465), 2, + STATE(2906), 1, + sym__c_postfix_expression, + ACTIONS(11094), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2996), 7, + STATE(3018), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -298344,39 +283791,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [268072] = 16, + [254669] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(10646), 1, + ACTIONS(10497), 1, anon_sym_DOLLAR, - ACTIONS(10652), 1, + ACTIONS(10503), 1, aux_sym_number_token2, - ACTIONS(12467), 1, + ACTIONS(11286), 1, anon_sym_LPAREN, - ACTIONS(12471), 1, + ACTIONS(11290), 1, anon_sym_DQUOTE, - ACTIONS(12473), 1, + ACTIONS(11292), 1, aux_sym_number_token1, - ACTIONS(12475), 1, + ACTIONS(11294), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12477), 1, + ACTIONS(11296), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12479), 1, + ACTIONS(11298), 1, anon_sym_BQUOTE, - ACTIONS(12481), 1, + ACTIONS(11300), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12797), 1, + ACTIONS(11664), 1, aux_sym__c_word_token1, - STATE(2838), 1, + STATE(2760), 1, + sym__c_binary_expression, + STATE(2765), 1, sym__c_postfix_expression, - STATE(2905), 1, + STATE(2780), 1, sym__c_unary_expression, - STATE(2906), 1, - sym__c_binary_expression, - ACTIONS(12465), 2, + ACTIONS(11284), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2919), 7, + STATE(2680), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -298384,39 +283831,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [268128] = 16, + [254725] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(10646), 1, + ACTIONS(10497), 1, anon_sym_DOLLAR, - ACTIONS(10652), 1, + ACTIONS(10503), 1, aux_sym_number_token2, - ACTIONS(12467), 1, + ACTIONS(11286), 1, anon_sym_LPAREN, - ACTIONS(12471), 1, + ACTIONS(11290), 1, anon_sym_DQUOTE, - ACTIONS(12473), 1, + ACTIONS(11292), 1, aux_sym_number_token1, - ACTIONS(12475), 1, + ACTIONS(11294), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12477), 1, + ACTIONS(11296), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12479), 1, + ACTIONS(11298), 1, anon_sym_BQUOTE, - ACTIONS(12481), 1, + ACTIONS(11300), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12799), 1, + ACTIONS(11666), 1, aux_sym__c_word_token1, - STATE(2838), 1, + STATE(2760), 1, + sym__c_binary_expression, + STATE(2765), 1, sym__c_postfix_expression, - STATE(2905), 1, + STATE(2780), 1, sym__c_unary_expression, - STATE(2906), 1, - sym__c_binary_expression, - ACTIONS(12465), 2, + ACTIONS(11284), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2807), 7, + STATE(2664), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -298424,39 +283871,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [268184] = 16, + [254781] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(10646), 1, - anon_sym_DOLLAR, - ACTIONS(10652), 1, - aux_sym_number_token2, - ACTIONS(12467), 1, + ACTIONS(11304), 1, anon_sym_LPAREN, - ACTIONS(12471), 1, + ACTIONS(11308), 1, + anon_sym_DOLLAR, + ACTIONS(11310), 1, anon_sym_DQUOTE, - ACTIONS(12473), 1, + ACTIONS(11312), 1, aux_sym_number_token1, - ACTIONS(12475), 1, + ACTIONS(11314), 1, + aux_sym_number_token2, + ACTIONS(11316), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12477), 1, + ACTIONS(11318), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12479), 1, + ACTIONS(11320), 1, anon_sym_BQUOTE, - ACTIONS(12481), 1, + ACTIONS(11322), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12801), 1, + ACTIONS(11668), 1, aux_sym__c_word_token1, - STATE(2838), 1, - sym__c_postfix_expression, - STATE(2905), 1, + STATE(2953), 1, sym__c_unary_expression, - STATE(2906), 1, + STATE(2995), 1, sym__c_binary_expression, - ACTIONS(12465), 2, + STATE(3003), 1, + sym__c_postfix_expression, + ACTIONS(11302), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2820), 7, + STATE(3063), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -298464,39 +283911,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [268240] = 16, + [254837] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(10646), 1, - anon_sym_DOLLAR, - ACTIONS(10652), 1, - aux_sym_number_token2, - ACTIONS(12467), 1, + ACTIONS(11304), 1, anon_sym_LPAREN, - ACTIONS(12471), 1, + ACTIONS(11308), 1, + anon_sym_DOLLAR, + ACTIONS(11310), 1, anon_sym_DQUOTE, - ACTIONS(12473), 1, + ACTIONS(11312), 1, aux_sym_number_token1, - ACTIONS(12475), 1, + ACTIONS(11314), 1, + aux_sym_number_token2, + ACTIONS(11316), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12477), 1, + ACTIONS(11318), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12479), 1, + ACTIONS(11320), 1, anon_sym_BQUOTE, - ACTIONS(12481), 1, + ACTIONS(11322), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12803), 1, + ACTIONS(11670), 1, aux_sym__c_word_token1, - STATE(2838), 1, - sym__c_postfix_expression, - STATE(2905), 1, + STATE(2953), 1, sym__c_unary_expression, - STATE(2906), 1, + STATE(2995), 1, sym__c_binary_expression, - ACTIONS(12465), 2, + STATE(3003), 1, + sym__c_postfix_expression, + ACTIONS(11302), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2826), 7, + STATE(3064), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -298504,129 +283951,39 @@ 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, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12693), 1, - aux_sym_concatenation_token1, - ACTIONS(12805), 1, - sym__concat, - STATE(5072), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1227), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - 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, - sym__concat, - STATE(5072), 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), 12, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [268404] = 16, + [254893] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12301), 1, + ACTIONS(11304), 1, anon_sym_LPAREN, - ACTIONS(12305), 1, + ACTIONS(11308), 1, anon_sym_DOLLAR, - ACTIONS(12307), 1, + ACTIONS(11310), 1, anon_sym_DQUOTE, - ACTIONS(12309), 1, + ACTIONS(11312), 1, aux_sym_number_token1, - ACTIONS(12311), 1, + ACTIONS(11314), 1, aux_sym_number_token2, - ACTIONS(12313), 1, + ACTIONS(11316), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12315), 1, + ACTIONS(11318), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12317), 1, + ACTIONS(11320), 1, anon_sym_BQUOTE, - ACTIONS(12319), 1, + ACTIONS(11322), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12809), 1, + ACTIONS(11672), 1, aux_sym__c_word_token1, - STATE(3165), 1, + STATE(2953), 1, sym__c_unary_expression, - STATE(3170), 1, + STATE(2995), 1, sym__c_binary_expression, - STATE(3171), 1, + STATE(3003), 1, sym__c_postfix_expression, - ACTIONS(12299), 2, + ACTIONS(11302), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3047), 7, + STATE(3065), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -298634,39 +283991,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [268460] = 16, + [254949] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12301), 1, + ACTIONS(11304), 1, anon_sym_LPAREN, - ACTIONS(12305), 1, + ACTIONS(11308), 1, anon_sym_DOLLAR, - ACTIONS(12307), 1, + ACTIONS(11310), 1, anon_sym_DQUOTE, - ACTIONS(12309), 1, + ACTIONS(11312), 1, aux_sym_number_token1, - ACTIONS(12311), 1, + ACTIONS(11314), 1, aux_sym_number_token2, - ACTIONS(12313), 1, + ACTIONS(11316), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12315), 1, + ACTIONS(11318), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12317), 1, + ACTIONS(11320), 1, anon_sym_BQUOTE, - ACTIONS(12319), 1, + ACTIONS(11322), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12811), 1, + ACTIONS(11674), 1, aux_sym__c_word_token1, - STATE(3165), 1, + STATE(2953), 1, sym__c_unary_expression, - STATE(3170), 1, + STATE(2995), 1, sym__c_binary_expression, - STATE(3171), 1, + STATE(3003), 1, sym__c_postfix_expression, - ACTIONS(12299), 2, + ACTIONS(11302), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3049), 7, + STATE(3066), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -298674,68 +284031,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [268516] = 5, - ACTIONS(71), 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, - 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, - [268550] = 16, + [255005] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12301), 1, + ACTIONS(11096), 1, anon_sym_LPAREN, - ACTIONS(12305), 1, + ACTIONS(11100), 1, anon_sym_DOLLAR, - ACTIONS(12307), 1, + ACTIONS(11102), 1, anon_sym_DQUOTE, - ACTIONS(12309), 1, + ACTIONS(11104), 1, aux_sym_number_token1, - ACTIONS(12311), 1, + ACTIONS(11106), 1, aux_sym_number_token2, - ACTIONS(12313), 1, + ACTIONS(11108), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12315), 1, + ACTIONS(11110), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12317), 1, + ACTIONS(11112), 1, anon_sym_BQUOTE, - ACTIONS(12319), 1, + ACTIONS(11114), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12816), 1, + ACTIONS(11676), 1, aux_sym__c_word_token1, - STATE(3165), 1, + STATE(2902), 1, sym__c_unary_expression, - STATE(3170), 1, + STATE(2905), 1, sym__c_binary_expression, - STATE(3171), 1, + STATE(2906), 1, sym__c_postfix_expression, - ACTIONS(12299), 2, + ACTIONS(11094), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3051), 7, + STATE(2966), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -298743,39 +284071,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [268606] = 16, + [255061] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12301), 1, + ACTIONS(11096), 1, anon_sym_LPAREN, - ACTIONS(12305), 1, + ACTIONS(11100), 1, anon_sym_DOLLAR, - ACTIONS(12307), 1, + ACTIONS(11102), 1, anon_sym_DQUOTE, - ACTIONS(12309), 1, + ACTIONS(11104), 1, aux_sym_number_token1, - ACTIONS(12311), 1, + ACTIONS(11106), 1, aux_sym_number_token2, - ACTIONS(12313), 1, + ACTIONS(11108), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12315), 1, + ACTIONS(11110), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12317), 1, + ACTIONS(11112), 1, anon_sym_BQUOTE, - ACTIONS(12319), 1, + ACTIONS(11114), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12818), 1, + ACTIONS(11678), 1, aux_sym__c_word_token1, - STATE(3165), 1, + STATE(2902), 1, sym__c_unary_expression, - STATE(3170), 1, + STATE(2905), 1, sym__c_binary_expression, - STATE(3171), 1, + STATE(2906), 1, sym__c_postfix_expression, - ACTIONS(12299), 2, + ACTIONS(11094), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3053), 7, + STATE(3019), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -298783,39 +284111,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [268662] = 16, + [255117] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12301), 1, + ACTIONS(11096), 1, anon_sym_LPAREN, - ACTIONS(12305), 1, + ACTIONS(11100), 1, anon_sym_DOLLAR, - ACTIONS(12307), 1, + ACTIONS(11102), 1, anon_sym_DQUOTE, - ACTIONS(12309), 1, + ACTIONS(11104), 1, aux_sym_number_token1, - ACTIONS(12311), 1, + ACTIONS(11106), 1, aux_sym_number_token2, - ACTIONS(12313), 1, + ACTIONS(11108), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12315), 1, + ACTIONS(11110), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12317), 1, + ACTIONS(11112), 1, anon_sym_BQUOTE, - ACTIONS(12319), 1, + ACTIONS(11114), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12820), 1, + ACTIONS(11680), 1, aux_sym__c_word_token1, - STATE(3165), 1, + STATE(2902), 1, sym__c_unary_expression, - STATE(3170), 1, + STATE(2905), 1, sym__c_binary_expression, - STATE(3171), 1, + STATE(2906), 1, sym__c_postfix_expression, - ACTIONS(12299), 2, + ACTIONS(11094), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3056), 7, + STATE(3020), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -298823,159 +284151,201 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [268718] = 6, - ACTIONS(3), 1, + [255173] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(11759), 1, - aux_sym_concatenation_token1, - ACTIONS(11761), 1, - sym__concat, - STATE(5103), 1, + STATE(4951), 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(11682), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1229), 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, + sym__special_character, + ACTIONS(1231), 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, - [268754] = 6, - ACTIONS(3), 1, + [255207] = 16, + ACTIONS(71), 1, sym_comment, - ACTIONS(11759), 1, - aux_sym_concatenation_token1, - ACTIONS(11761), 1, - sym__concat, - STATE(5104), 1, + ACTIONS(10497), 1, + anon_sym_DOLLAR, + ACTIONS(10503), 1, + aux_sym_number_token2, + ACTIONS(11286), 1, + anon_sym_LPAREN, + ACTIONS(11290), 1, + anon_sym_DQUOTE, + ACTIONS(11292), 1, + aux_sym_number_token1, + ACTIONS(11294), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11296), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11298), 1, + anon_sym_BQUOTE, + ACTIONS(11300), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11684), 1, + aux_sym__c_word_token1, + STATE(2760), 1, + sym__c_binary_expression, + STATE(2765), 1, + sym__c_postfix_expression, + STATE(2780), 1, + sym__c_unary_expression, + ACTIONS(11284), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2854), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [255263] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(4942), 1, aux_sym_concatenation_repeat1, - ACTIONS(5270), 3, - sym_file_descriptor, - sym_variable_name, - aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(11686), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1229), 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(1231), 12, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [268790] = 6, - ACTIONS(3), 1, + anon_sym_LT_LT_LT, + sym__special_character, + [255297] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(11786), 1, - aux_sym_concatenation_token1, - ACTIONS(12822), 1, - sym__concat, - STATE(4145), 1, + STATE(4903), 1, aux_sym_concatenation_repeat1, - ACTIONS(1229), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 17, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(11688), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1229), 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(1231), 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, - [268826] = 6, + sym__special_character, + [255331] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, - aux_sym_concatenation_token1, - ACTIONS(12824), 1, - sym__concat, - STATE(4145), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 2, - sym_file_descriptor, + ACTIONS(5127), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 17, + ACTIONS(11626), 1, + anon_sym_LT_LT_LT, + ACTIONS(11628), 1, + sym_file_descriptor, + STATE(4538), 1, + sym_herestring_redirect, + ACTIONS(2782), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3883), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3937), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5125), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + STATE(737), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(3881), 8, 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, + [255377] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12301), 1, + ACTIONS(11304), 1, anon_sym_LPAREN, - ACTIONS(12305), 1, + ACTIONS(11308), 1, anon_sym_DOLLAR, - ACTIONS(12307), 1, + ACTIONS(11310), 1, anon_sym_DQUOTE, - ACTIONS(12309), 1, + ACTIONS(11312), 1, aux_sym_number_token1, - ACTIONS(12311), 1, + ACTIONS(11314), 1, aux_sym_number_token2, - ACTIONS(12313), 1, + ACTIONS(11316), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12315), 1, + ACTIONS(11318), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12317), 1, + ACTIONS(11320), 1, anon_sym_BQUOTE, - ACTIONS(12319), 1, + ACTIONS(11322), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12826), 1, + ACTIONS(11690), 1, aux_sym__c_word_token1, - STATE(3165), 1, + STATE(2953), 1, sym__c_unary_expression, - STATE(3170), 1, + STATE(2995), 1, sym__c_binary_expression, - STATE(3171), 1, + STATE(3003), 1, sym__c_postfix_expression, - ACTIONS(12299), 2, + ACTIONS(11302), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3059), 7, + STATE(3072), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -298983,79 +284353,102 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [268918] = 16, + [255433] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2665), 1, + sym_file_descriptor, + ACTIONS(4402), 1, + ts_builtin_sym_end, + ACTIONS(4406), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(2637), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(2639), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4367), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(586), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(4404), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + ACTIONS(2635), 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, + [255477] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(12301), 1, - anon_sym_LPAREN, - 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, - ACTIONS(12828), 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(3064), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [268974] = 16, + STATE(4792), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11584), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4489), 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(4491), 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, + [255511] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12301), 1, + ACTIONS(11304), 1, anon_sym_LPAREN, - ACTIONS(12305), 1, + ACTIONS(11308), 1, anon_sym_DOLLAR, - ACTIONS(12307), 1, + ACTIONS(11310), 1, anon_sym_DQUOTE, - ACTIONS(12309), 1, + ACTIONS(11312), 1, aux_sym_number_token1, - ACTIONS(12311), 1, + ACTIONS(11314), 1, aux_sym_number_token2, - ACTIONS(12313), 1, + ACTIONS(11316), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12315), 1, + ACTIONS(11318), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12317), 1, + ACTIONS(11320), 1, anon_sym_BQUOTE, - ACTIONS(12319), 1, + ACTIONS(11322), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12830), 1, + ACTIONS(11692), 1, aux_sym__c_word_token1, - STATE(3165), 1, + STATE(2953), 1, sym__c_unary_expression, - STATE(3170), 1, + STATE(2995), 1, sym__c_binary_expression, - STATE(3171), 1, + STATE(3003), 1, sym__c_postfix_expression, - ACTIONS(12299), 2, + ACTIONS(11302), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3066), 7, + STATE(3073), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -299063,79 +284456,72 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [269030] = 16, + [255567] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(12301), 1, - anon_sym_LPAREN, - 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, - ACTIONS(12832), 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(3068), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [269086] = 16, + ACTIONS(11703), 1, + anon_sym_LT_LT_LT, + ACTIONS(11706), 1, + sym_file_descriptor, + ACTIONS(10760), 2, + anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(11700), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(11697), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(4825), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(10768), 5, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_LT_LT_DASH, + ACTIONS(11694), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [255609] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12301), 1, - anon_sym_LPAREN, - ACTIONS(12305), 1, + ACTIONS(10497), 1, anon_sym_DOLLAR, - ACTIONS(12307), 1, + ACTIONS(10503), 1, + aux_sym_number_token2, + ACTIONS(11286), 1, + anon_sym_LPAREN, + ACTIONS(11290), 1, anon_sym_DQUOTE, - ACTIONS(12309), 1, + ACTIONS(11292), 1, aux_sym_number_token1, - ACTIONS(12311), 1, - aux_sym_number_token2, - ACTIONS(12313), 1, + ACTIONS(11294), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12315), 1, + ACTIONS(11296), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12317), 1, + ACTIONS(11298), 1, anon_sym_BQUOTE, - ACTIONS(12319), 1, + ACTIONS(11300), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12834), 1, + ACTIONS(11709), 1, aux_sym__c_word_token1, - STATE(3165), 1, - sym__c_unary_expression, - STATE(3170), 1, + STATE(2760), 1, sym__c_binary_expression, - STATE(3171), 1, + STATE(2765), 1, sym__c_postfix_expression, - ACTIONS(12299), 2, + STATE(2780), 1, + sym__c_unary_expression, + ACTIONS(11284), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3070), 7, + STATE(2673), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -299143,39 +284529,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [269142] = 16, + [255665] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12301), 1, - anon_sym_LPAREN, - ACTIONS(12305), 1, + ACTIONS(10497), 1, anon_sym_DOLLAR, - ACTIONS(12307), 1, + ACTIONS(10503), 1, + aux_sym_number_token2, + ACTIONS(11286), 1, + anon_sym_LPAREN, + ACTIONS(11290), 1, anon_sym_DQUOTE, - ACTIONS(12309), 1, + ACTIONS(11292), 1, aux_sym_number_token1, - ACTIONS(12311), 1, - aux_sym_number_token2, - ACTIONS(12313), 1, + ACTIONS(11294), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12315), 1, + ACTIONS(11296), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12317), 1, + ACTIONS(11298), 1, anon_sym_BQUOTE, - ACTIONS(12319), 1, + ACTIONS(11300), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12836), 1, + ACTIONS(11711), 1, aux_sym__c_word_token1, - STATE(3165), 1, - sym__c_unary_expression, - STATE(3170), 1, + STATE(2760), 1, sym__c_binary_expression, - STATE(3171), 1, + STATE(2765), 1, sym__c_postfix_expression, - ACTIONS(12299), 2, + STATE(2780), 1, + sym__c_unary_expression, + ACTIONS(11284), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3077), 7, + STATE(2757), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -299183,159 +284569,126 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [269198] = 16, - ACTIONS(71), 1, + [255721] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(12301), 1, - anon_sym_LPAREN, - ACTIONS(12305), 1, + ACTIONS(11138), 1, + aux_sym_concatenation_token1, + ACTIONS(11232), 1, + sym__concat, + STATE(4848), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11715), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(11713), 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(12838), 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(3078), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [269254] = 16, - ACTIONS(71), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [255757] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(10646), 1, + ACTIONS(11138), 1, + aux_sym_concatenation_token1, + ACTIONS(11232), 1, + sym__concat, + STATE(4849), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11719), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(11717), 16, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - ACTIONS(10652), 1, - aux_sym_number_token2, - ACTIONS(12467), 1, - anon_sym_LPAREN, - ACTIONS(12471), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(12473), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(12475), 1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - ACTIONS(12477), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12479), 1, anon_sym_BQUOTE, - ACTIONS(12481), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(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, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [255793] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(10646), 1, + ACTIONS(1231), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1229), 19, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - ACTIONS(10652), 1, - aux_sym_number_token2, - ACTIONS(12467), 1, - anon_sym_LPAREN, - ACTIONS(12471), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(12473), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(12475), 1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - ACTIONS(12477), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12479), 1, anon_sym_BQUOTE, - ACTIONS(12481), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(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, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [255823] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(10646), 1, + ACTIONS(10497), 1, anon_sym_DOLLAR, - ACTIONS(10652), 1, + ACTIONS(10503), 1, aux_sym_number_token2, - ACTIONS(12467), 1, + ACTIONS(11286), 1, anon_sym_LPAREN, - ACTIONS(12471), 1, + ACTIONS(11290), 1, anon_sym_DQUOTE, - ACTIONS(12473), 1, + ACTIONS(11292), 1, aux_sym_number_token1, - ACTIONS(12475), 1, + ACTIONS(11294), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12477), 1, + ACTIONS(11296), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12479), 1, + ACTIONS(11298), 1, anon_sym_BQUOTE, - ACTIONS(12481), 1, + ACTIONS(11300), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12844), 1, + ACTIONS(11721), 1, aux_sym__c_word_token1, - STATE(2838), 1, + STATE(2760), 1, + sym__c_binary_expression, + STATE(2765), 1, sym__c_postfix_expression, - STATE(2905), 1, + STATE(2780), 1, sym__c_unary_expression, - STATE(2906), 1, - sym__c_binary_expression, - ACTIONS(12465), 2, + ACTIONS(11284), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2836), 7, + STATE(2859), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -299343,39 +284696,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [269422] = 16, + [255879] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(10646), 1, + ACTIONS(10497), 1, anon_sym_DOLLAR, - ACTIONS(10652), 1, + ACTIONS(10503), 1, aux_sym_number_token2, - ACTIONS(12467), 1, + ACTIONS(11286), 1, anon_sym_LPAREN, - ACTIONS(12471), 1, + ACTIONS(11290), 1, anon_sym_DQUOTE, - ACTIONS(12473), 1, + ACTIONS(11292), 1, aux_sym_number_token1, - ACTIONS(12475), 1, + ACTIONS(11294), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12477), 1, + ACTIONS(11296), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12479), 1, + ACTIONS(11298), 1, anon_sym_BQUOTE, - ACTIONS(12481), 1, + ACTIONS(11300), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12846), 1, + ACTIONS(11723), 1, aux_sym__c_word_token1, - STATE(2838), 1, + STATE(2760), 1, + sym__c_binary_expression, + STATE(2765), 1, sym__c_postfix_expression, - STATE(2905), 1, + STATE(2780), 1, sym__c_unary_expression, - STATE(2906), 1, - sym__c_binary_expression, - ACTIONS(12465), 2, + ACTIONS(11284), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2837), 7, + STATE(2814), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -299383,72 +284736,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [269478] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5163), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12432), 1, - sym_file_descriptor, - ACTIONS(4529), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5161), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(11951), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(5159), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4731), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11949), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [269520] = 16, + [255935] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12301), 1, + ACTIONS(11304), 1, anon_sym_LPAREN, - ACTIONS(12305), 1, + ACTIONS(11308), 1, anon_sym_DOLLAR, - ACTIONS(12307), 1, + ACTIONS(11310), 1, anon_sym_DQUOTE, - ACTIONS(12309), 1, + ACTIONS(11312), 1, aux_sym_number_token1, - ACTIONS(12311), 1, + ACTIONS(11314), 1, aux_sym_number_token2, - ACTIONS(12313), 1, + ACTIONS(11316), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12315), 1, + ACTIONS(11318), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12317), 1, + ACTIONS(11320), 1, anon_sym_BQUOTE, - ACTIONS(12319), 1, + ACTIONS(11322), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12848), 1, + ACTIONS(11725), 1, aux_sym__c_word_token1, - STATE(3165), 1, + STATE(2953), 1, sym__c_unary_expression, - STATE(3170), 1, + STATE(2995), 1, sym__c_binary_expression, - STATE(3171), 1, + STATE(3003), 1, sym__c_postfix_expression, - ACTIONS(12299), 2, + ACTIONS(11302), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3263), 7, + STATE(3074), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -299456,171 +284776,69 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [269576] = 5, - ACTIONS(71), 1, + [255991] = 6, + ACTIONS(3), 1, sym_comment, - STATE(5190), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12850), 2, - sym__concat, + ACTIONS(10806), 1, aux_sym_concatenation_token1, - ACTIONS(1223), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1225), 12, + ACTIONS(11727), 1, + sym__concat, + STATE(4000), 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_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - sym__special_character, - [269610] = 13, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4157), 1, anon_sym_PIPE, - ACTIONS(4268), 1, - anon_sym_PIPE_AMP, - ACTIONS(5925), 1, - 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(3), 1, - sym_comment, - ACTIONS(5208), 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(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_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, + [256027] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12081), 1, - anon_sym_LPAREN, - ACTIONS(12085), 1, + ACTIONS(10497), 1, anon_sym_DOLLAR, - ACTIONS(12087), 1, + ACTIONS(10503), 1, + aux_sym_number_token2, + ACTIONS(11286), 1, + anon_sym_LPAREN, + ACTIONS(11290), 1, anon_sym_DQUOTE, - ACTIONS(12089), 1, + ACTIONS(11292), 1, aux_sym_number_token1, - ACTIONS(12091), 1, - aux_sym_number_token2, - ACTIONS(12093), 1, + ACTIONS(11294), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12095), 1, + ACTIONS(11296), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12097), 1, + ACTIONS(11298), 1, anon_sym_BQUOTE, - ACTIONS(12099), 1, + ACTIONS(11300), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12862), 1, + ACTIONS(11729), 1, aux_sym__c_word_token1, - STATE(3196), 1, - sym__c_unary_expression, - STATE(3199), 1, + STATE(2760), 1, sym__c_binary_expression, - STATE(3201), 1, + STATE(2765), 1, sym__c_postfix_expression, - ACTIONS(12079), 2, + STATE(2780), 1, + sym__c_unary_expression, + ACTIONS(11284), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3275), 7, + STATE(2773), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -299628,176 +284846,60 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [269800] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(5099), 1, - aux_sym_pipeline_repeat1, - ACTIONS(12222), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(12864), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(12218), 17, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [269834] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(5099), 1, - aux_sym_pipeline_repeat1, - ACTIONS(12136), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(12866), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(12131), 17, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [269868] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(5218), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12869), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1223), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1225), 12, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - sym__special_character, - [269902] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12793), 1, - anon_sym_LT_LT_LT, - STATE(5583), 1, - sym_herestring_redirect, - STATE(5381), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4157), 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(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, + [256083] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(7760), 1, + ACTIONS(10497), 1, + anon_sym_DOLLAR, + ACTIONS(10503), 1, + aux_sym_number_token2, + ACTIONS(11286), 1, anon_sym_LPAREN, - ACTIONS(7770), 1, + ACTIONS(11290), 1, anon_sym_DQUOTE, - ACTIONS(7778), 1, + ACTIONS(11292), 1, + aux_sym_number_token1, + ACTIONS(11294), 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, + ACTIONS(11296), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12879), 1, + ACTIONS(11298), 1, anon_sym_BQUOTE, - ACTIONS(12881), 1, + ACTIONS(11300), 1, anon_sym_DOLLAR_BQUOTE, - STATE(6567), 1, - sym_process_substitution, - STATE(7221), 1, - sym__concatenation_in_expansion, - ACTIONS(7524), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(12871), 4, - sym__expansion_word, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(6437), 5, + ACTIONS(11731), 1, + aux_sym__c_word_token1, + STATE(2760), 1, + sym__c_binary_expression, + STATE(2765), 1, + sym__c_postfix_expression, + STATE(2780), 1, + sym__c_unary_expression, + ACTIONS(11284), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2763), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, sym_string, - sym_array, + sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [269992] = 6, + [256139] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11759), 1, + ACTIONS(10806), 1, aux_sym_concatenation_token1, - ACTIONS(12883), 1, + ACTIONS(10808), 1, sym__concat, - STATE(4156), 1, + STATE(4834), 1, aux_sym_concatenation_repeat1, - ACTIONS(1229), 3, + ACTIONS(4449), 3, sym_file_descriptor, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 16, + ACTIONS(4447), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -299814,109 +284916,52 @@ 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, + [256175] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11759), 1, - aux_sym_concatenation_token1, - ACTIONS(12885), 1, - sym__concat, - STATE(4156), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 3, - sym_file_descriptor, - sym_variable_name, + ACTIONS(10705), 1, 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, + ACTIONS(11737), 1, + anon_sym_LT_LT_LT, + ACTIONS(11739), 1, + sym_file_descriptor, + ACTIONS(11735), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [270064] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12887), 1, - sym_variable_name, - STATE(6633), 1, - sym_subscript, - ACTIONS(11741), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(5106), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(11739), 16, + STATE(4841), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(10699), 6, 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, - [270100] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12889), 1, - sym_variable_name, - STATE(6633), 1, - sym_subscript, - ACTIONS(11658), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(5106), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(11656), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(11733), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [270136] = 6, + [256215] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, + ACTIONS(10806), 1, aux_sym_concatenation_token1, - ACTIONS(11788), 1, + ACTIONS(10808), 1, sym__concat, - STATE(5078), 1, + STATE(4844), 1, aux_sym_concatenation_repeat1, - ACTIONS(5689), 2, + ACTIONS(4453), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 17, + ACTIONS(4451), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -299933,20 +284978,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, - [270172] = 6, + [256251] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, + ACTIONS(10820), 1, aux_sym_concatenation_token1, - ACTIONS(11788), 1, + ACTIONS(11741), 1, sym__concat, - STATE(5079), 1, + STATE(3992), 1, aux_sym_concatenation_repeat1, - ACTIONS(2158), 2, + ACTIONS(1209), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 17, + ACTIONS(1207), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -299964,79 +285008,51 @@ 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, + [256287] = 8, 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(5563), 2, - sym_file_descriptor, + ACTIONS(10768), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 17, + ACTIONS(11749), 1, + anon_sym_LT_LT_LT, + ACTIONS(11752), 1, + sym_file_descriptor, + ACTIONS(11746), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4841), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(10760), 6, 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, - [270244] = 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(2162), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 17, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(11743), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [270280] = 6, + [256327] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, + ACTIONS(10820), 1, aux_sym_concatenation_token1, - ACTIONS(11788), 1, + ACTIONS(11755), 1, sym__concat, - STATE(5078), 1, + STATE(3992), 1, aux_sym_concatenation_repeat1, - ACTIONS(4282), 2, + ACTIONS(1215), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 17, + ACTIONS(1213), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -300054,19 +285070,19 @@ 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, + [256363] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, + ACTIONS(10951), 1, aux_sym_concatenation_token1, - ACTIONS(11788), 1, + ACTIONS(10953), 1, sym__concat, - STATE(5079), 1, + STATE(4932), 1, aux_sym_concatenation_repeat1, - ACTIONS(4439), 2, + ACTIONS(1231), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 17, + ACTIONS(1229), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -300083,20 +285099,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, - [270352] = 6, + sym__special_character, + [256399] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, + ACTIONS(10806), 1, aux_sym_concatenation_token1, - ACTIONS(11788), 1, + ACTIONS(11757), 1, sym__concat, - STATE(5078), 1, + STATE(4000), 1, aux_sym_concatenation_repeat1, - ACTIONS(4309), 2, + ACTIONS(1215), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 17, + ACTIONS(1213), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -300113,60 +285130,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, - [270388] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(5158), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12892), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1223), 8, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - sym__special_character, - ACTIONS(1225), 11, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [270422] = 9, + [256435] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5852), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12894), 1, + ACTIONS(2810), 1, sym_file_descriptor, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4529), 2, + ACTIONS(4018), 1, + anon_sym_RPAREN, + ACTIONS(4182), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(2782), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(5845), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(12672), 2, + ACTIONS(2784), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(5163), 3, + ACTIONS(4374), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(599), 2, sym_file_redirect, sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(12670), 8, + ACTIONS(4178), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + ACTIONS(2780), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -300175,520 +285164,288 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [270463] = 4, + [256479] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12900), 1, - anon_sym_esac, - ACTIONS(12896), 5, + ACTIONS(10497), 1, anon_sym_DOLLAR, - aux_sym_number_token1, + ACTIONS(10503), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(12898), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, + ACTIONS(11286), 1, anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, + ACTIONS(11290), 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, - [270494] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(5158), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12892), 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), 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, - [270527] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(5159), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12892), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4437), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(4439), 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, - [270560] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7774), 1, + ACTIONS(11292), 1, aux_sym_number_token1, - ACTIONS(7776), 1, - aux_sym_number_token2, - ACTIONS(12902), 1, - anon_sym_LPAREN, - ACTIONS(12904), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12906), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(12908), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(12910), 1, - anon_sym_DOLLAR, - ACTIONS(12912), 1, + ACTIONS(11294), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12914), 1, - anon_sym_RBRACE3, - ACTIONS(12916), 1, + ACTIONS(11296), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12918), 1, + ACTIONS(11298), 1, anon_sym_BQUOTE, - ACTIONS(12920), 1, + ACTIONS(11300), 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, + ACTIONS(11759), 1, + aux_sym__c_word_token1, + STATE(2760), 1, + sym__c_binary_expression, + STATE(2765), 1, + sym__c_postfix_expression, + STATE(2780), 1, + sym__c_unary_expression, + ACTIONS(11284), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2807), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, sym_number, + sym_simple_expansion, sym_expansion, - STATE(7371), 3, - sym_parenthesized_expression, - sym_arithmetic_expansion, sym_command_substitution, - [270621] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12928), 1, - anon_sym_esac, - ACTIONS(12924), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(12926), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [270652] = 5, - ACTIONS(71), 1, + [256535] = 10, + ACTIONS(3), 1, sym_comment, - STATE(5158), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12892), 2, - sym__concat, - 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), 11, + ACTIONS(2321), 1, + anon_sym_RPAREN, + ACTIONS(2810), 1, 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, - [270685] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(5159), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12892), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4311), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4193), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(2782), 2, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(4313), 11, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + ACTIONS(2784), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [270718] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(5190), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12850), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5264), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(5266), 11, - sym_file_descriptor, - sym_variable_name, + ACTIONS(4374), 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, - [270751] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(5192), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12850), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5268), 7, - anon_sym_PIPE, + STATE(599), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(4191), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + ACTIONS(2780), 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(5270), 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, - [270784] = 3, - ACTIONS(71), 1, + [256579] = 6, + ACTIONS(3), 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, + ACTIONS(11138), 1, + aux_sym_concatenation_token1, + ACTIONS(11761), 1, sym__concat, + STATE(4381), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 3, sym_test_operator, sym__brace_start, - anon_sym_RPAREN, + aux_sym_heredoc_redirect_token1, + ACTIONS(1207), 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, - [270813] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1284), 6, - 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(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, + [256615] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11138), 1, + aux_sym_concatenation_token1, + ACTIONS(11763), 1, sym__concat, + STATE(4381), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 3, sym_test_operator, sym__brace_start, - anon_sym_RPAREN, + aux_sym_heredoc_redirect_token1, + ACTIONS(1213), 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, - [270871] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12928), 1, - anon_sym_esac, - ACTIONS(12924), 5, - anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(12926), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [270902] = 3, - 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, + [256651] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11138), 1, + aux_sym_concatenation_token1, + ACTIONS(11232), 1, sym__concat, + STATE(4848), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1231), 3, sym_test_operator, sym__brace_start, - anon_sym_RPAREN, + aux_sym_heredoc_redirect_token1, + ACTIONS(1229), 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, - [270931] = 3, + sym_word, + [256687] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 6, + ACTIONS(11304), 1, + anon_sym_LPAREN, + ACTIONS(11308), 1, anon_sym_DOLLAR, + ACTIONS(11310), 1, + anon_sym_DQUOTE, + ACTIONS(11312), 1, aux_sym_number_token1, + ACTIONS(11314), 1, aux_sym_number_token2, + ACTIONS(11316), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11318), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(11320), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1310), 15, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, + ACTIONS(11322), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [270960] = 10, + ACTIONS(11765), 1, + aux_sym__c_word_token1, + STATE(2953), 1, + sym__c_unary_expression, + STATE(2995), 1, + sym__c_binary_expression, + STATE(3003), 1, + sym__c_postfix_expression, + ACTIONS(11302), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3075), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [256743] = 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(4792), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11584), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4481), 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(4483), 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, + [256777] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(1260), 6, + ACTIONS(11304), 1, + anon_sym_LPAREN, + ACTIONS(11308), 1, anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1262), 15, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, + ACTIONS(11310), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [271032] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1268), 6, - anon_sym_DOLLAR, + ACTIONS(11312), 1, aux_sym_number_token1, + ACTIONS(11314), 1, aux_sym_number_token2, + ACTIONS(11316), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11318), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(11320), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1270), 15, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, + ACTIONS(11322), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [271061] = 5, + ACTIONS(11767), 1, + aux_sym__c_word_token1, + STATE(2953), 1, + sym__c_unary_expression, + STATE(2995), 1, + sym__c_binary_expression, + STATE(3003), 1, + sym__c_postfix_expression, + ACTIONS(11302), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3084), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [256833] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(12932), 1, - sym__special_character, - STATE(5193), 1, - aux_sym__literal_repeat1, - ACTIONS(4280), 7, + STATE(4792), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11584), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4123), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -300696,7 +285453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4282), 12, + ACTIONS(4125), 12, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300709,155 +285466,355 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [271094] = 6, + [256867] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12934), 1, + ACTIONS(10497), 1, + anon_sym_DOLLAR, + ACTIONS(10503), 1, + aux_sym_number_token2, + ACTIONS(11286), 1, + anon_sym_LPAREN, + ACTIONS(11290), 1, + anon_sym_DQUOTE, + ACTIONS(11292), 1, + aux_sym_number_token1, + ACTIONS(11294), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11296), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11298), 1, + anon_sym_BQUOTE, + ACTIONS(11300), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11769), 1, + aux_sym__c_word_token1, + STATE(2760), 1, + sym__c_binary_expression, + STATE(2765), 1, + sym__c_postfix_expression, + STATE(2780), 1, + sym__c_unary_expression, + ACTIONS(11284), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2758), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [256923] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11771), 1, sym_variable_name, - STATE(6657), 1, + STATE(6370), 1, sym_subscript, - STATE(5173), 2, + ACTIONS(10784), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(4857), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(11739), 7, + ACTIONS(10782), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(11741), 10, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [256959] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11773), 1, + sym_variable_name, + STATE(6370), 1, + sym_subscript, + ACTIONS(10741), 2, sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(4857), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(10739), 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, - [271129] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12940), 1, - anon_sym_esac, - ACTIONS(12936), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(12938), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [271160] = 5, - ACTIONS(71), 1, + [256995] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(12932), 1, - sym__special_character, - STATE(5193), 1, - aux_sym__literal_repeat1, - ACTIONS(4307), 7, + ACTIONS(10820), 1, + aux_sym_concatenation_token1, + ACTIONS(10822), 1, + sym__concat, + STATE(4840), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4483), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4481), 17, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4309), 12, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [257031] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10820), 1, + aux_sym_concatenation_token1, + ACTIONS(10822), 1, + sym__concat, + STATE(4842), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4487), 2, sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4485), 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, anon_sym_LT_LT_LT, - [271193] = 5, - ACTIONS(71), 1, + [257067] = 6, + ACTIONS(3), 1, sym_comment, - STATE(5158), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12892), 2, - sym__concat, + ACTIONS(10820), 1, aux_sym_concatenation_token1, - ACTIONS(5687), 7, + ACTIONS(10822), 1, + sym__concat, + STATE(4840), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4491), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4489), 17, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5689), 11, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [257103] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10820), 1, + aux_sym_concatenation_token1, + ACTIONS(10822), 1, + sym__concat, + STATE(4842), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4495), 2, sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4493), 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, - [271226] = 5, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + [257139] = 6, + ACTIONS(3), 1, sym_comment, - STATE(5159), 1, + ACTIONS(10820), 1, + aux_sym_concatenation_token1, + ACTIONS(10822), 1, + sym__concat, + STATE(4840), 1, aux_sym_concatenation_repeat1, - ACTIONS(12892), 2, + ACTIONS(4125), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4123), 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, + [257175] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10820), 1, + aux_sym_concatenation_token1, + ACTIONS(10822), 1, sym__concat, + STATE(4842), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3915), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3913), 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, + [257211] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10820), 1, aux_sym_concatenation_token1, - ACTIONS(2156), 7, + ACTIONS(10822), 1, + sym__concat, + STATE(4840), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4006), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4004), 17, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(2158), 11, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [257247] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10820), 1, + aux_sym_concatenation_token1, + ACTIONS(10822), 1, + sym__concat, + STATE(4842), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4010), 2, sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4008), 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, - [271259] = 5, + anon_sym_LT_LT_LT, + [257283] = 5, ACTIONS(71), 1, sym_comment, - STATE(5218), 1, + STATE(4795), 1, aux_sym_concatenation_repeat1, - ACTIONS(12869), 2, + ACTIONS(11584), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(5687), 7, + ACTIONS(4485), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -300865,27 +285822,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5689), 11, + ACTIONS(4487), 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, - [271292] = 5, + [257317] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11304), 1, + anon_sym_LPAREN, + ACTIONS(11308), 1, + anon_sym_DOLLAR, + ACTIONS(11310), 1, + anon_sym_DQUOTE, + ACTIONS(11312), 1, + aux_sym_number_token1, + ACTIONS(11314), 1, + aux_sym_number_token2, + ACTIONS(11316), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11318), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11320), 1, + anon_sym_BQUOTE, + ACTIONS(11322), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11776), 1, + aux_sym__c_word_token1, + STATE(2953), 1, + sym__c_unary_expression, + STATE(2995), 1, + sym__c_binary_expression, + STATE(3003), 1, + sym__c_postfix_expression, + ACTIONS(11302), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3085), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [257373] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11304), 1, + anon_sym_LPAREN, + ACTIONS(11308), 1, + anon_sym_DOLLAR, + ACTIONS(11310), 1, + anon_sym_DQUOTE, + ACTIONS(11312), 1, + aux_sym_number_token1, + ACTIONS(11314), 1, + aux_sym_number_token2, + ACTIONS(11316), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11318), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11320), 1, + anon_sym_BQUOTE, + ACTIONS(11322), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11778), 1, + aux_sym__c_word_token1, + STATE(2953), 1, + sym__c_unary_expression, + STATE(2995), 1, + sym__c_binary_expression, + STATE(3003), 1, + sym__c_postfix_expression, + ACTIONS(11302), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3087), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [257429] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11786), 1, + anon_sym_LT_LT_LT, + ACTIONS(11788), 1, + sym_file_descriptor, + ACTIONS(10699), 2, + anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(11784), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(11782), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(4825), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(10705), 5, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_LT_LT_DASH, + ACTIONS(11780), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [257471] = 5, ACTIONS(71), 1, sym_comment, - STATE(5219), 1, + STATE(4942), 1, aux_sym_concatenation_repeat1, - ACTIONS(12869), 2, + ACTIONS(11686), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(2156), 7, + ACTIONS(4489), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -300893,7 +285964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(2158), 11, + ACTIONS(4491), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300905,43 +285976,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [271325] = 3, + [257504] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1272), 6, + ACTIONS(11794), 1, + anon_sym_esac, + ACTIONS(11790), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1274), 15, - sym__concat, + ACTIONS(11792), 15, sym_test_operator, + sym_extglob_pattern, sym__brace_start, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [271354] = 3, + [257535] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3143), 1, + sym_file_descriptor, + ACTIONS(4689), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(2782), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3139), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4616), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(625), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(4687), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + ACTIONS(3137), 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, + [257576] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 6, + ACTIONS(1252), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1254), 14, + sym_file_descriptor, + sym__concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [257605] = 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(1266), 15, + ACTIONS(1302), 15, sym__concat, sym_test_operator, sym__brace_start, @@ -300957,17 +286087,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [271383] = 3, + [257634] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1280), 6, + ACTIONS(1304), 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(1306), 15, sym__concat, sym_test_operator, sym__brace_start, @@ -300983,17 +286113,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [271412] = 3, + [257663] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 6, + ACTIONS(1300), 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(1302), 15, sym__concat, sym_test_operator, sym__brace_start, @@ -301009,41 +286139,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [271441] = 3, + [257692] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 6, + ACTIONS(11800), 1, + anon_sym_esac, + ACTIONS(11796), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1258), 15, - sym__concat, + ACTIONS(11798), 15, sym_test_operator, + sym_extglob_pattern, sym__brace_start, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [271470] = 5, + [257723] = 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(1276), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -301051,110 +286177,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5563), 11, + ACTIONS(1278), 14, sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [271503] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(5219), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12869), 2, sym__concat, - aux_sym_concatenation_token1, - ACTIONS(2160), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(2162), 11, - sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, 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, + [257752] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1288), 6, + ACTIONS(11806), 1, + anon_sym_esac, + ACTIONS(11802), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1290), 15, - sym__concat, + ACTIONS(11804), 15, sym_test_operator, + sym_extglob_pattern, sym__brace_start, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [271594] = 4, + [257783] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(12946), 1, + ACTIONS(11812), 1, anon_sym_esac, - ACTIONS(12942), 5, + ACTIONS(11808), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12944), 15, + ACTIONS(11810), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -301170,43 +286246,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [271625] = 3, + [257814] = 5, 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, + ACTIONS(11814), 1, + sym__special_character, + STATE(4907), 1, + aux_sym__literal_repeat1, + ACTIONS(4123), 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(4125), 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, + [257847] = 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), 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, - [271654] = 3, + [257876] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 6, + ACTIONS(1268), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1298), 15, + ACTIONS(1270), 15, sym__concat, sym_test_operator, sym__brace_start, @@ -301222,17 +286326,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [271683] = 3, + [257905] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 6, + ACTIONS(1252), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1302), 15, + ACTIONS(1254), 15, sym__concat, sym_test_operator, sym__brace_start, @@ -301248,43 +286352,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [271712] = 3, + [257934] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 6, + ACTIONS(11820), 1, + anon_sym_esac, + ACTIONS(11816), 5, 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, + ACTIONS(11818), 15, sym_test_operator, + sym_extglob_pattern, sym__brace_start, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [271741] = 3, + [257965] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 6, + ACTIONS(1280), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1302), 15, + ACTIONS(1282), 15, sym__concat, sym_test_operator, sym__brace_start, @@ -301300,658 +286405,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [271770] = 19, + [257994] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(7774), 1, + ACTIONS(6699), 1, aux_sym_number_token1, - ACTIONS(7776), 1, + ACTIONS(6701), 1, aux_sym_number_token2, - ACTIONS(12902), 1, + ACTIONS(11822), 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, + ACTIONS(11824), 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, - 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, - anon_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_RBRACK, - 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, - 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, + ACTIONS(11826), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(12908), 1, + ACTIONS(11828), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(12910), 1, + ACTIONS(11830), 1, anon_sym_DOLLAR, - ACTIONS(12912), 1, + ACTIONS(11832), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12916), 1, + ACTIONS(11834), 1, + anon_sym_RBRACE3, + ACTIONS(11836), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12918), 1, + ACTIONS(11838), 1, anon_sym_BQUOTE, - ACTIONS(12920), 1, + ACTIONS(11840), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12958), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12960), 1, - anon_sym_RBRACE3, - ACTIONS(12962), 1, + ACTIONS(11842), 1, aux_sym__simple_variable_name_token1, - STATE(5432), 1, + STATE(5158), 1, sym_simple_expansion, - STATE(6173), 1, - sym_number, - STATE(6174), 1, + STATE(5830), 1, sym_expansion, - STATE(6175), 1, + STATE(5906), 1, + sym_number, + STATE(5941), 1, sym__expansion_max_length_binary_expression, - STATE(6323), 1, + STATE(5949), 1, sym__expansion_max_length_expression, - STATE(7132), 1, - sym_parenthesized_expression, - STATE(7134), 1, + STATE(6544), 1, sym_arithmetic_expansion, - STATE(7158), 1, + STATE(6762), 1, sym_command_substitution, - [271968] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(5161), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12964), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1213), 7, - anon_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, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [272001] = 4, + STATE(6840), 1, + sym_parenthesized_expression, + [258061] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(12946), 1, - anon_sym_esac, - ACTIONS(12942), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(12944), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [272032] = 8, - ACTIONS(3), 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, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(12670), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [272071] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11792), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12674), 1, - anon_sym_LT_LT_LT, - ACTIONS(12967), 1, - sym_file_descriptor, - ACTIONS(12672), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4817), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11790), 6, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(12670), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [272110] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4157), 2, - 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, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(5163), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4155), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_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, - 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, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(12969), 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, - [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, - sym_file_descriptor, - ACTIONS(12672), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4709), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11892), 6, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(12670), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_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, + ACTIONS(11850), 1, anon_sym_LT_LT_LT, - ACTIONS(12967), 1, - sym_file_descriptor, - ACTIONS(12672), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4678), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11902), 6, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(12670), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [272291] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5847), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12894), 1, - sym_file_descriptor, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4529), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5845), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(12672), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(5163), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(12670), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [272332] = 10, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11872), 1, - 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, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(12984), 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(11883), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - ACTIONS(12978), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [272375] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(5158), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12892), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5561), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(5563), 11, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [272408] = 6, - 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, - anon_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(11658), 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, - [272443] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(5159), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12892), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(2160), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(2162), 11, + ACTIONS(11852), 1, 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, + ACTIONS(10699), 2, 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, + ACTIONS(11848), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(12854), 3, + ACTIONS(11846), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - STATE(5131), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(12852), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [272523] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1252), 7, - anon_sym_PIPE, + STATE(4939), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(10705), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(11844), 5, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1254), 14, - sym_file_descriptor, - sym__concat, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [272552] = 4, + [258102] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12900), 1, - anon_sym_esac, - ACTIONS(12896), 5, + ACTIONS(1296), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(12898), 15, + ACTIONS(1298), 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, - [272583] = 3, + [258131] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1284), 7, + ACTIONS(1300), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -301959,7 +286519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1286), 14, + ACTIONS(1302), 14, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -301974,10 +286534,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [272612] = 3, + [258160] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1213), 7, + ACTIONS(1296), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -301985,7 +286545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1215), 14, + ACTIONS(1298), 14, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -302000,10 +286560,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [272641] = 3, + [258189] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1312), 7, + ACTIONS(1268), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -302011,7 +286571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1314), 14, + ACTIONS(1270), 14, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -302026,68 +286586,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [272670] = 6, + [258218] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, - aux_sym_concatenation_token1, - ACTIONS(12999), 1, - sym__concat, - STATE(4214), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 2, + ACTIONS(3143), 1, sym_file_descriptor, + ACTIONS(4618), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2782), 2, 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_LT_DASH, + ACTIONS(3139), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [272705] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12000), 1, - aux_sym_concatenation_token1, - ACTIONS(13001), 1, - sym__concat, - STATE(4214), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 16, + ACTIONS(4616), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + STATE(625), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(4614), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + ACTIONS(3137), 8, 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, - [272740] = 3, + [258259] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 7, + STATE(4903), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11688), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4447), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -302095,60 +286634,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1310), 14, + ACTIONS(4449), 11, sym_file_descriptor, - sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [272769] = 4, + [258292] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13007), 1, - anon_sym_esac, - ACTIONS(13003), 5, + ACTIONS(1256), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(13005), 15, + ACTIONS(1258), 15, + sym__concat, sym_test_operator, - sym_extglob_pattern, sym__brace_start, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [272800] = 4, + [258321] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(12940), 1, + ACTIONS(11858), 1, anon_sym_esac, - ACTIONS(12936), 5, + ACTIONS(11854), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12938), 15, + ACTIONS(11856), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -302164,41 +286699,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [272831] = 4, + [258352] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13013), 1, - anon_sym_esac, - ACTIONS(13009), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(13011), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [272862] = 5, + ACTIONS(1312), 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(1314), 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, + [258381] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12932), 1, - sym__special_character, - STATE(5193), 1, - aux_sym__literal_repeat1, - ACTIONS(5561), 7, + ACTIONS(1264), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -302206,8 +286736,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5563), 12, + ACTIONS(1266), 14, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -302219,10 +286750,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [272895] = 3, + aux_sym_concatenation_token1, + [258410] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1268), 7, + ACTIONS(1272), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -302230,7 +286762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1270), 14, + ACTIONS(1274), 14, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -302245,18 +286777,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [272924] = 4, + [258439] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(13019), 1, + ACTIONS(11812), 1, anon_sym_esac, - ACTIONS(13015), 5, + ACTIONS(11808), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13017), 15, + ACTIONS(11810), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -302272,16 +286804,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [272955] = 6, + [258470] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(12850), 1, - aux_sym_concatenation_token1, - ACTIONS(13021), 1, - sym__concat, - STATE(5194), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1227), 7, + ACTIONS(11860), 1, + sym_variable_name, + STATE(6344), 1, + sym_subscript, + STATE(4901), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(10739), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -302289,9 +286822,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1229), 11, + ACTIONS(10741), 10, sym_file_descriptor, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -302301,51 +286833,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [272990] = 12, + [258505] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(4157), 1, + STATE(4957), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11686), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4493), 7, anon_sym_PIPE, - ACTIONS(4268), 1, - anon_sym_PIPE_AMP, - ACTIONS(5925), 1, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - ACTIONS(5927), 1, - anon_sym_LT_LT_DASH, - ACTIONS(7277), 1, - anon_sym_RBRACK, - ACTIONS(12930), 1, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(4495), 11, sym_file_descriptor, - ACTIONS(5923), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(12856), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(12854), 3, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - STATE(5131), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(12852), 5, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [258538] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11688), 1, + aux_sym_concatenation_token1, + ACTIONS(11863), 1, + sym__concat, + STATE(4921), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1207), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [273037] = 6, + ACTIONS(1209), 11, + sym_file_descriptor, + sym_variable_name, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [258573] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12850), 1, + ACTIONS(1219), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1221), 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(13023), 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, + [258602] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11869), 1, + anon_sym_esac, + ACTIONS(11865), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(11867), 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, + [258633] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11688), 1, + aux_sym_concatenation_token1, + ACTIONS(11871), 1, sym__concat, - STATE(5194), 1, + STATE(4921), 1, aux_sym_concatenation_repeat1, - ACTIONS(1207), 7, + ACTIONS(1213), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -302353,7 +286960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1209), 11, + ACTIONS(1215), 11, sym_file_descriptor, sym_variable_name, anon_sym_PIPE_PIPE, @@ -302365,12 +286972,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [273072] = 5, + [258668] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(13025), 1, + ACTIONS(11873), 1, sym__special_character, - STATE(5193), 1, + STATE(4907), 1, aux_sym__literal_repeat1, ACTIONS(1316), 7, anon_sym_PIPE, @@ -302393,15 +287000,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [273105] = 5, + [258701] = 5, ACTIONS(71), 1, sym_comment, - STATE(5194), 1, + STATE(4951), 1, aux_sym_concatenation_repeat1, - ACTIONS(13028), 2, + ACTIONS(11682), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1213), 7, + ACTIONS(4004), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -302409,30 +287016,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1215), 11, + ACTIONS(4006), 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, - [273138] = 4, + [258734] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13035), 1, + ACTIONS(1280), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1282), 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, + [258763] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11880), 1, anon_sym_esac, - ACTIONS(13031), 5, + ACTIONS(11876), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13033), 15, + ACTIONS(11878), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -302448,15 +287081,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [273169] = 5, + [258794] = 5, ACTIONS(71), 1, sym_comment, - STATE(5218), 1, + STATE(4906), 1, aux_sym_concatenation_repeat1, - ACTIONS(12869), 2, + ACTIONS(11688), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(4280), 7, + ACTIONS(4451), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -302464,8 +287097,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(4453), 11, sym_file_descriptor, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -302475,16 +287109,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, - [273202] = 5, + [258827] = 3, ACTIONS(71), 1, sym_comment, - STATE(5219), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12869), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4437), 7, + ACTIONS(1248), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -302492,30 +287120,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4439), 11, + ACTIONS(1250), 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, - [273235] = 4, + aux_sym_concatenation_token1, + [258856] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(13041), 1, + ACTIONS(11886), 1, anon_sym_esac, - ACTIONS(13037), 5, + ACTIONS(11882), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13039), 15, + ACTIONS(11884), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -302531,50 +287162,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [273266] = 12, + [258887] = 13, ACTIONS(71), 1, sym_comment, - ACTIONS(4157), 1, - anon_sym_PIPE, - ACTIONS(4268), 1, - anon_sym_PIPE_AMP, - ACTIONS(5925), 1, + ACTIONS(3724), 1, anon_sym_LT_LT, - ACTIONS(5927), 1, + ACTIONS(3730), 1, anon_sym_LT_LT_DASH, - ACTIONS(7129), 1, - anon_sym_RBRACK, - ACTIONS(12930), 1, + ACTIONS(3937), 1, + anon_sym_PIPE, + ACTIONS(3939), 1, + anon_sym_PIPE_AMP, + ACTIONS(11888), 1, + anon_sym_LT_LT_LT, + ACTIONS(11890), 1, sym_file_descriptor, - ACTIONS(5923), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(12856), 2, + STATE(5221), 1, + sym_herestring_redirect, + ACTIONS(3728), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(12854), 3, + ACTIONS(5154), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(722), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(3726), 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(3722), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [273313] = 5, + [258936] = 5, ACTIONS(71), 1, sym_comment, - STATE(5218), 1, + STATE(4942), 1, aux_sym_concatenation_repeat1, - ACTIONS(12869), 2, + ACTIONS(11686), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(4307), 7, + ACTIONS(4004), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -302582,7 +287214,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(4006), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -302594,10 +287226,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [273346] = 3, + [258969] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1272), 7, + ACTIONS(1288), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -302605,7 +287237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1274), 14, + ACTIONS(1290), 14, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -302620,15 +287252,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [273375] = 5, + [258998] = 5, ACTIONS(71), 1, sym_comment, - STATE(5219), 1, + STATE(4954), 1, aux_sym_concatenation_repeat1, - ACTIONS(12869), 2, + ACTIONS(11682), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(4311), 7, + ACTIONS(3913), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -302636,22 +287268,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(3915), 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, + [259031] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 7, + STATE(5133), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11892), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1229), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -302659,25 +287296,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1266), 14, + ACTIONS(1231), 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, - [273437] = 3, + sym__special_character, + [259064] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1280), 7, + ACTIONS(1292), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -302685,7 +287319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1282), 14, + ACTIONS(1294), 14, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -302700,18 +287334,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [273466] = 4, + [259093] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(13019), 1, + ACTIONS(11898), 1, anon_sym_esac, - ACTIONS(13015), 5, + ACTIONS(11894), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13017), 15, + ACTIONS(11896), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -302727,10 +287361,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [273497] = 3, + [259124] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 7, + STATE(4921), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11900), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1219), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -302738,51 +287377,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1250), 14, + ACTIONS(1221), 11, sym_file_descriptor, - sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [273526] = 3, + [259157] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1258), 14, + ACTIONS(11907), 1, + anon_sym_esac, + ACTIONS(11903), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(11905), 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, + [259188] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3143), 1, sym_file_descriptor, - sym__concat, + ACTIONS(4773), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(2782), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3139), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4616), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + STATE(625), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(4771), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + ACTIONS(3137), 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, - aux_sym_concatenation_token1, - [273555] = 3, + [259229] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1276), 7, + ACTIONS(11800), 1, + anon_sym_esac, + ACTIONS(11796), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(11798), 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, + [259260] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11898), 1, + anon_sym_esac, + ACTIONS(11894), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(11896), 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, + [259291] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(4957), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11686), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4008), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -302790,146 +287518,257 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1278), 14, + ACTIONS(4010), 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, + [259324] = 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, - [273584] = 3, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [259353] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1288), 7, + ACTIONS(1272), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1274), 15, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + 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, + [259382] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11913), 1, + anon_sym_esac, + ACTIONS(11909), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(11911), 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, + [259413] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3937), 1, anon_sym_PIPE, + ACTIONS(3939), 1, + anon_sym_PIPE_AMP, + ACTIONS(11915), 1, + anon_sym_LT_LT_LT, + STATE(5303), 1, + sym_herestring_redirect, + STATE(765), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(4037), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1290), 14, + ACTIONS(4039), 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, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [273613] = 3, + [259452] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 7, + ACTIONS(11921), 1, + anon_sym_esac, + ACTIONS(11917), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(11919), 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, + [259483] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10951), 1, + aux_sym_concatenation_token1, + ACTIONS(11923), 1, + sym__concat, + STATE(4059), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 2, + sym_file_descriptor, + 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_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1294), 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, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, 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, - [273642] = 3, - ACTIONS(71), 1, + [259518] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1296), 7, + ACTIONS(10951), 1, + aux_sym_concatenation_token1, + ACTIONS(11925), 1, + sym__concat, + STATE(4059), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1213), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1298), 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, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, 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, - ACTIONS(71), 1, + [259553] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(4157), 1, - anon_sym_PIPE, - ACTIONS(4268), 1, - anon_sym_PIPE_AMP, - ACTIONS(5925), 1, + ACTIONS(3143), 1, + sym_file_descriptor, + ACTIONS(4643), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(2782), 2, 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, + ACTIONS(3139), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(12854), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - STATE(5131), 3, + ACTIONS(4616), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(625), 2, sym_file_redirect, sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(12852), 5, + ACTIONS(4641), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + ACTIONS(3137), 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, - [273718] = 4, + anon_sym_GT_PIPE, + [259594] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(13013), 1, + ACTIONS(11907), 1, anon_sym_esac, - ACTIONS(13009), 5, + ACTIONS(11903), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13011), 15, + ACTIONS(11905), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -302945,62 +287784,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [273749] = 3, - ACTIONS(71), 1, + [259625] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 7, + ACTIONS(10842), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11626), 1, + anon_sym_LT_LT_LT, + ACTIONS(11931), 1, + sym_file_descriptor, + ACTIONS(11929), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4573), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(10836), 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(11927), 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(1302), 14, + anon_sym_GT_PIPE, + [259664] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10922), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11626), 1, + anon_sym_LT_LT_LT, + ACTIONS(11931), 1, sym_file_descriptor, - sym__concat, + ACTIONS(11929), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4533), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(10920), 6, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_LT_LT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - 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, - [273778] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1304), 7, - anon_sym_PIPE, + ACTIONS(11927), 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(1306), 14, + anon_sym_GT_PIPE, + [259703] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10915), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11626), 1, + anon_sym_LT_LT_LT, + ACTIONS(11931), 1, sym_file_descriptor, - sym__concat, + ACTIONS(11929), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4574), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(10913), 6, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_LT_LT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_LT_LT_DASH, + ACTIONS(11927), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, + [259742] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11942), 1, + anon_sym_LT_LT_LT, + ACTIONS(11945), 1, + sym_file_descriptor, + ACTIONS(10760), 2, + anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(11939), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + ACTIONS(11936), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(4939), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(10768), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [273807] = 3, + ACTIONS(11933), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [259783] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 7, + ACTIONS(11948), 1, + sym_variable_name, + STATE(6344), 1, + sym_subscript, + STATE(4901), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(10782), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -303008,30 +287927,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1302), 14, + ACTIONS(10784), 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, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [273836] = 5, + [259818] = 3, ACTIONS(71), 1, sym_comment, - STATE(5329), 1, - aux_sym_concatenation_repeat1, - ACTIONS(13043), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1223), 7, + ACTIONS(1256), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -303039,28 +287949,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1225), 11, + ACTIONS(1258), 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, - sym__special_character, - [273869] = 6, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [259847] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(12869), 1, + ACTIONS(11686), 1, aux_sym_concatenation_token1, - ACTIONS(13045), 1, + ACTIONS(11950), 1, sym__concat, - STATE(5220), 1, + STATE(4948), 1, aux_sym_concatenation_repeat1, - ACTIONS(1227), 7, + ACTIONS(1207), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -303068,7 +287981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1229), 11, + ACTIONS(1209), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -303080,16 +287993,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [273904] = 6, + [259882] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12869), 1, - aux_sym_concatenation_token1, - ACTIONS(13047), 1, - sym__concat, - STATE(5220), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1207), 7, + ACTIONS(1219), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -303097,27 +288004,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1209), 11, + ACTIONS(1221), 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, - [273939] = 5, + aux_sym_concatenation_token1, + [259911] = 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, + 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, + [259940] = 5, ACTIONS(71), 1, sym_comment, - STATE(5220), 1, + STATE(4951), 1, aux_sym_concatenation_repeat1, - ACTIONS(13049), 2, + ACTIONS(11682), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1213), 7, + ACTIONS(4123), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -303125,155 +288061,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1215), 11, + ACTIONS(4125), 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, - [273972] = 12, + [259973] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4157), 1, + ACTIONS(1260), 7, 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_LT_LT, 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, + ACTIONS(1262), 14, 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, + 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, - ACTIONS(13052), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [274060] = 4, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [260002] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13066), 1, - anon_sym_esac, - ACTIONS(13062), 5, + ACTIONS(1248), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(13064), 15, + ACTIONS(1250), 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, - [274091] = 12, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4157), 1, - anon_sym_PIPE, - ACTIONS(4268), 1, - anon_sym_PIPE_AMP, - ACTIONS(5925), 1, - anon_sym_LT_LT, - ACTIONS(5927), 1, - anon_sym_LT_LT_DASH, - ACTIONS(7043), 1, - anon_sym_RBRACK, - ACTIONS(12930), 1, - sym_file_descriptor, - ACTIONS(5923), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(12856), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(12854), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - STATE(5131), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(12852), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [274138] = 5, + [260031] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(12932), 1, - sym__special_character, - STATE(5193), 1, - aux_sym__literal_repeat1, - ACTIONS(5687), 7, + STATE(4948), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11952), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1219), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -303281,31 +288141,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5689), 12, + ACTIONS(1221), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [274171] = 4, + [260064] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(13072), 1, + ACTIONS(11959), 1, anon_sym_esac, - ACTIONS(13068), 5, + ACTIONS(11955), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13070), 15, + ACTIONS(11957), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -303321,18 +288180,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [274202] = 4, + [260095] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(13078), 1, + ACTIONS(11794), 1, anon_sym_esac, - ACTIONS(13074), 5, + ACTIONS(11790), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13076), 15, + ACTIONS(11792), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -303348,134 +288207,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [274233] = 12, + [260126] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(4157), 1, + ACTIONS(11682), 1, + aux_sym_concatenation_token1, + ACTIONS(11961), 1, + sym__concat, + STATE(4972), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1207), 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(1209), 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_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, + [260161] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13084), 1, - anon_sym_esac, - ACTIONS(13080), 5, + ACTIONS(1284), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(13082), 15, + ACTIONS(1286), 15, + sym__concat, sym_test_operator, - sym_extglob_pattern, sym__brace_start, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [274311] = 4, + [260190] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13090), 1, - anon_sym_esac, - ACTIONS(13086), 5, + ACTIONS(1288), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(13088), 15, + ACTIONS(1290), 15, + sym__concat, sym_test_operator, - sym_extglob_pattern, sym__brace_start, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [274342] = 4, + [260219] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(13096), 1, - anon_sym_esac, - ACTIONS(13092), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(13094), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [274373] = 4, + ACTIONS(11682), 1, + aux_sym_concatenation_token1, + ACTIONS(11963), 1, + sym__concat, + STATE(4972), 1, + aux_sym_concatenation_repeat1, + 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, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [260254] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(13102), 1, + ACTIONS(11969), 1, anon_sym_esac, - ACTIONS(13098), 5, + ACTIONS(11965), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13100), 15, + ACTIONS(11967), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -303491,229 +288344,308 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [274404] = 4, + [260285] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13102), 1, - anon_sym_esac, - ACTIONS(13098), 5, + ACTIONS(1260), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(13100), 15, + ACTIONS(1262), 15, + sym__concat, sym_test_operator, - sym_extglob_pattern, sym__brace_start, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [274435] = 12, + [260314] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(4157), 1, + ACTIONS(11686), 1, + aux_sym_concatenation_token1, + ACTIONS(11971), 1, + sym__concat, + STATE(4948), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1213), 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(7111), 1, - anon_sym_RBRACK, - ACTIONS(12930), 1, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1215), 11, sym_file_descriptor, - ACTIONS(5923), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(12856), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(12854), 3, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - STATE(5131), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(12852), 5, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [260349] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(4954), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11682), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4008), 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, - [274482] = 9, - ACTIONS(71), 1, - sym_comment, - ACTIONS(13113), 1, - anon_sym_LT_LT_LT, - ACTIONS(13116), 1, + ACTIONS(4010), 11, sym_file_descriptor, - ACTIONS(11671), 2, - anon_sym_PIPE, - anon_sym_LT_LT, - ACTIONS(13110), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(13107), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - STATE(5235), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(11679), 4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, + 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(13104), 5, + [260382] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11814), 1, + sym__special_character, + STATE(4907), 1, + aux_sym__literal_repeat1, + ACTIONS(4489), 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(4491), 12, 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, - ACTIONS(3), 1, + anon_sym_LT_LT_LT, + [260415] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(12000), 1, - aux_sym_concatenation_token1, - ACTIONS(12002), 1, - sym__concat, - STATE(5182), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2158), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(11915), 1, + anon_sym_LT_LT_LT, + STATE(5303), 1, + sym_herestring_redirect, + STATE(765), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(3937), 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(3939), 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, - [274593] = 6, + [260450] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11858), 1, + anon_sym_esac, + ACTIONS(11854), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(11856), 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, + [260481] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, - aux_sym_concatenation_token1, - ACTIONS(12002), 1, - sym__concat, - STATE(5181), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4282), 2, - sym_file_descriptor, + ACTIONS(6699), 1, + aux_sym_number_token1, + ACTIONS(6701), 1, + aux_sym_number_token2, + ACTIONS(11822), 1, + anon_sym_LPAREN, + ACTIONS(11826), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(11828), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(11830), 1, + anon_sym_DOLLAR, + ACTIONS(11832), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11836), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11838), 1, + anon_sym_BQUOTE, + ACTIONS(11840), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11973), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(11975), 1, + anon_sym_RBRACE3, + ACTIONS(11977), 1, + aux_sym__simple_variable_name_token1, + STATE(5159), 1, + sym_simple_expansion, + STATE(5927), 1, + sym__expansion_max_length_binary_expression, + STATE(5949), 1, + sym__expansion_max_length_expression, + STATE(5883), 2, + sym_number, + sym_expansion, + STATE(6397), 3, + sym_parenthesized_expression, + sym_arithmetic_expansion, + sym_command_substitution, + [260542] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11814), 1, + sym__special_character, + STATE(4907), 1, + aux_sym__literal_repeat1, + ACTIONS(4004), 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(4006), 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, - [274628] = 6, - ACTIONS(3), 1, + anon_sym_LT_LT_LT, + [260575] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(12000), 1, - aux_sym_concatenation_token1, - ACTIONS(12002), 1, + 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, - STATE(5182), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4439), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + 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, + [260604] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1284), 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(1286), 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, - [274663] = 6, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [260633] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(10951), 1, aux_sym_concatenation_token1, - ACTIONS(12002), 1, + ACTIONS(10953), 1, sym__concat, - STATE(5181), 1, + STATE(4932), 1, aux_sym_concatenation_repeat1, - ACTIONS(5563), 2, + ACTIONS(4125), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 16, + ACTIONS(4123), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -303730,19 +288662,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, + [260668] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(10951), 1, aux_sym_concatenation_token1, - ACTIONS(12002), 1, + ACTIONS(10953), 1, sym__concat, - STATE(5182), 1, + STATE(4933), 1, aux_sym_concatenation_repeat1, - ACTIONS(2162), 2, + ACTIONS(3915), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 16, + ACTIONS(3913), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -303759,19 +288691,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, + [260703] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(10951), 1, aux_sym_concatenation_token1, - ACTIONS(12002), 1, + ACTIONS(10953), 1, sym__concat, - STATE(5181), 1, + STATE(4932), 1, aux_sym_concatenation_repeat1, - ACTIONS(4309), 2, + ACTIONS(4006), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 16, + ACTIONS(4004), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -303788,19 +288720,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, + [260738] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(10951), 1, aux_sym_concatenation_token1, - ACTIONS(12002), 1, + ACTIONS(10953), 1, sym__concat, - STATE(5182), 1, + STATE(4933), 1, aux_sym_concatenation_repeat1, - ACTIONS(4313), 2, + ACTIONS(4010), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 16, + ACTIONS(4008), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -303817,18 +288749,18 @@ 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, + [260773] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(13078), 1, + ACTIONS(11886), 1, anon_sym_esac, - ACTIONS(13074), 5, + ACTIONS(11882), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13076), 15, + ACTIONS(11884), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -303844,10 +288776,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [274834] = 3, + [260804] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1260), 7, + ACTIONS(1300), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -303855,7 +288787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1262), 14, + ACTIONS(1302), 14, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -303870,10 +288802,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [274863] = 3, + [260833] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 7, + STATE(4972), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11979), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1219), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -303881,28 +288818,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1306), 13, + ACTIONS(1221), 11, sym_file_descriptor, - sym__concat, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [274891] = 5, + [260866] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(13119), 1, - sym__special_character, - STATE(5247), 1, - aux_sym__literal_repeat1, - ACTIONS(1316), 7, + STATE(4942), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11686), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4481), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -303910,47 +288846,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1318), 11, + ACTIONS(4483), 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, - [274923] = 3, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + [260899] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(13122), 5, - anon_sym_DOLLAR, + ACTIONS(6699), 1, aux_sym_number_token1, + ACTIONS(6701), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(13124), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, + ACTIONS(11822), 1, anon_sym_LPAREN, + ACTIONS(11826), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(11828), 1, anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(11830), 1, + anon_sym_DOLLAR, + ACTIONS(11832), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(11836), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11838), 1, anon_sym_BQUOTE, + ACTIONS(11840), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [274951] = 3, + ACTIONS(11982), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11984), 1, + anon_sym_RBRACE3, + ACTIONS(11986), 1, + aux_sym__simple_variable_name_token1, + STATE(5196), 1, + sym_simple_expansion, + STATE(5870), 1, + sym__expansion_max_length_binary_expression, + STATE(5949), 1, + sym__expansion_max_length_expression, + STATE(5863), 2, + sym_number, + sym_expansion, + STATE(6793), 3, + sym_parenthesized_expression, + sym_arithmetic_expansion, + sym_command_substitution, + [260960] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 7, + ACTIONS(1308), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -303958,13 +288911,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1298), 13, + ACTIONS(1310), 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, @@ -303972,92 +288926,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [274979] = 3, + [260989] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(13126), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(13128), 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, - [275007] = 3, + STATE(4957), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11686), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4485), 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(4487), 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, + [261022] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13126), 5, + ACTIONS(1292), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(13128), 15, + ACTIONS(1294), 15, + sym__concat, sym_test_operator, - sym_extglob_pattern, sym__brace_start, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [275035] = 5, - ACTIONS(71), 1, + [261051] = 6, + ACTIONS(3), 1, sym_comment, - STATE(5329), 1, + ACTIONS(10951), 1, + aux_sym_concatenation_token1, + ACTIONS(10953), 1, + sym__concat, + STATE(4932), 1, aux_sym_concatenation_repeat1, - ACTIONS(13043), 2, + ACTIONS(4483), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4481), 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, + [261086] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10951), 1, + aux_sym_concatenation_token1, + ACTIONS(10953), 1, sym__concat, + STATE(4933), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4487), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4485), 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, + [261121] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10951), 1, aux_sym_concatenation_token1, - ACTIONS(4280), 7, + ACTIONS(10953), 1, + sym__concat, + STATE(4932), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4491), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4489), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4282), 10, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [261156] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10951), 1, + aux_sym_concatenation_token1, + ACTIONS(10953), 1, + sym__concat, + STATE(4933), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4495), 2, sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4493), 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, - [275067] = 5, + [261191] = 5, ACTIONS(71), 1, sym_comment, - STATE(5331), 1, + STATE(4942), 1, aux_sym_concatenation_repeat1, - ACTIONS(13043), 2, + ACTIONS(11686), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(4437), 7, + ACTIONS(4123), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -304065,7 +289112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4439), 10, + ACTIONS(4125), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -304076,60 +289123,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [275099] = 3, + anon_sym_LT_LT_LT, + [261224] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13092), 5, + ACTIONS(1308), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(13094), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [275127] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(13126), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13128), 15, + ACTIONS(1310), 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, - [275155] = 3, + [261253] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 7, + STATE(4957), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11686), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(3913), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -304137,9 +289166,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1258), 13, + ACTIONS(3915), 11, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -304150,42 +289178,46 @@ 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, - [275183] = 3, + [261286] = 5, 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, + ACTIONS(11814), 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, - [275211] = 3, + STATE(4907), 1, + aux_sym__literal_repeat1, + ACTIONS(4481), 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(4483), 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, + [261319] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(13126), 5, + ACTIONS(11959), 1, + anon_sym_esac, + ACTIONS(11955), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13128), 15, + ACTIONS(11957), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -304201,16 +289233,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [275239] = 3, + [261350] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(13098), 5, + ACTIONS(11992), 1, + anon_sym_esac, + ACTIONS(11988), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13100), 15, + ACTIONS(11990), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -304226,10 +289260,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [275267] = 3, + [261381] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1280), 7, + ACTIONS(1312), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -304237,9 +289271,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1282), 13, + ACTIONS(1314), 13, sym_file_descriptor, sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -304249,16 +289284,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, - [275295] = 5, + [261409] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13130), 1, - sym__special_character, - STATE(5359), 1, - aux_sym__literal_repeat1, - ACTIONS(5687), 7, + ACTIONS(1264), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -304266,8 +289296,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5689), 11, + ACTIONS(1266), 13, sym_file_descriptor, + sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -304277,40 +289309,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [275327] = 3, + aux_sym_concatenation_token1, + [261437] = 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, + ACTIONS(1292), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1294), 13, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + 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, + [261465] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(13136), 1, - sym__special_character, - STATE(5247), 1, - aux_sym__literal_repeat1, - ACTIONS(4280), 7, + STATE(4991), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11994), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1219), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -304318,76 +289351,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4282), 11, + ACTIONS(1221), 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, - [275387] = 3, - ACTIONS(71), 1, + [261497] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(13122), 5, - anon_sym_DOLLAR, + ACTIONS(6699), 1, aux_sym_number_token1, + ACTIONS(6701), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(13124), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, + ACTIONS(11822), 1, anon_sym_LPAREN, + ACTIONS(11826), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(11828), 1, anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(11832), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(11836), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11838), 1, anon_sym_BQUOTE, + ACTIONS(11840), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [275415] = 3, + ACTIONS(11997), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11999), 1, + anon_sym_COLON, + ACTIONS(12001), 1, + anon_sym_RBRACE3, + ACTIONS(12003), 1, + aux_sym__simple_variable_name_token1, + STATE(5825), 1, + sym__expansion_max_length_binary_expression, + STATE(5949), 1, + sym__expansion_max_length_expression, + STATE(5797), 2, + sym_number, + sym_expansion, + STATE(6336), 3, + sym_parenthesized_expression, + sym_arithmetic_expansion, + sym_command_substitution, + [261555] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13122), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(13124), 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, - [275443] = 5, + ACTIONS(1264), 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(1266), 13, + sym_file_descriptor, + sym__concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [261583] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13136), 1, - sym__special_character, - STATE(5247), 1, - aux_sym__literal_repeat1, - ACTIONS(5687), 7, + ACTIONS(1292), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -304395,78 +289438,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5689), 11, + ACTIONS(1294), 13, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [275475] = 3, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [261611] = 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(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, + 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, + [261639] = 12, 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, + ACTIONS(3724), 1, + anon_sym_LT_LT, + ACTIONS(3730), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3758), 1, + sym_file_descriptor, + ACTIONS(3937), 1, + anon_sym_PIPE, + ACTIONS(3939), 1, + anon_sym_PIPE_AMP, + ACTIONS(6376), 1, + anon_sym_RBRACK, + ACTIONS(3728), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5154), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(722), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(3726), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(3722), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [261685] = 11, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6685), 1, anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, + ACTIONS(6695), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(6703), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(11636), 1, + anon_sym_DOLLAR, + ACTIONS(11640), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11642), 1, anon_sym_BQUOTE, + ACTIONS(11644), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(6713), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [275531] = 3, + ACTIONS(12005), 5, + sym_variable_name, + sym__expansion_word, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(6124), 6, + sym_string, + sym_array, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [261729] = 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, + [261757] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13138), 5, + ACTIONS(12007), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13140), 15, + ACTIONS(12009), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -304482,15 +289594,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [275559] = 5, + [261785] = 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(1296), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -304498,8 +289605,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4309), 10, + ACTIONS(1298), 13, sym_file_descriptor, + sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -304509,15 +289618,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [275591] = 5, + aux_sym_concatenation_token1, + [261813] = 3, ACTIONS(71), 1, sym_comment, - STATE(5331), 1, - aux_sym_concatenation_repeat1, - ACTIONS(13043), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4311), 7, + ACTIONS(1296), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -304525,8 +289630,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4313), 10, + ACTIONS(1298), 13, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -304536,16 +289642,18 @@ 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, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [261841] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12896), 5, + ACTIONS(12011), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12898), 15, + ACTIONS(12013), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -304561,16 +289669,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [275651] = 3, + [261869] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13003), 5, + ACTIONS(12011), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13005), 15, + ACTIONS(12013), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -304586,16 +289694,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [275679] = 3, + [261897] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12936), 5, + ACTIONS(12015), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12938), 15, + ACTIONS(12017), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -304611,39 +289719,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [275707] = 3, - ACTIONS(71), 1, + [261925] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(1252), 7, + ACTIONS(3887), 1, + sym_file_descriptor, + ACTIONS(5139), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(2782), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3883), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3937), 2, anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5125), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(737), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(3881), 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(1254), 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, - [275735] = 5, + [261965] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13136), 1, - sym__special_character, - STATE(5247), 1, - aux_sym__literal_repeat1, - ACTIONS(4307), 7, + ACTIONS(1280), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -304651,28 +289761,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4309), 11, + ACTIONS(1282), 13, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [275767] = 3, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [261993] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13062), 5, + ACTIONS(12019), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13064), 15, + ACTIONS(12021), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -304688,87 +289800,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [275795] = 3, - ACTIONS(71), 1, + [262021] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(1223), 8, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - sym__special_character, - ACTIONS(1225), 12, + ACTIONS(3887), 1, 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, + ACTIONS(5127), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(2782), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3883), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [275823] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(13130), 1, - sym__special_character, - STATE(5359), 1, - aux_sym__literal_repeat1, - ACTIONS(5561), 7, + ACTIONS(3937), 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(5563), 11, - sym_file_descriptor, + anon_sym_PIPE_AMP, + ACTIONS(5125), 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, - [275855] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1284), 7, - anon_sym_PIPE, + STATE(737), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(3881), 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(1286), 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, - [275883] = 3, + [262061] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1213), 7, + ACTIONS(1276), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -304776,30 +289842,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1215), 13, + ACTIONS(1278), 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, - [275911] = 3, + [262089] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12924), 5, + ACTIONS(12023), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12926), 15, + ACTIONS(12025), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -304815,16 +289881,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [275939] = 3, + [262117] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13142), 5, + ACTIONS(12027), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13144), 15, + ACTIONS(12029), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -304840,118 +289906,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [275967] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1312), 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(1314), 13, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_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, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1308), 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(1310), 13, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_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, - [276023] = 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, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - 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, - [276051] = 5, + [262145] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13146), 1, + ACTIONS(12027), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12029), 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(5303), 1, - aux_sym__literal_repeat1, - ACTIONS(5264), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(5266), 11, - sym_file_descriptor, - sym_variable_name, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [276083] = 3, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [262173] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13148), 5, + ACTIONS(12027), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13150), 15, + ACTIONS(12029), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -304967,32 +289956,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [276111] = 3, + [262201] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 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(1266), 13, - sym_file_descriptor, - sym__concat, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [276139] = 3, + ACTIONS(12027), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12029), 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, + [262229] = 3, ACTIONS(71), 1, sym_comment, ACTIONS(1280), 7, @@ -305006,21 +289995,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1282), 13, sym_file_descriptor, sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [276167] = 3, + [262257] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 7, + ACTIONS(1296), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -305028,7 +290017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1250), 13, + ACTIONS(1298), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -305042,47 +290031,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [276195] = 9, + [262285] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12793), 1, + ACTIONS(12011), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12013), 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, + [262313] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11915), 1, anon_sym_LT_LT_LT, - ACTIONS(13158), 1, + ACTIONS(12037), 1, sym_file_descriptor, - ACTIONS(11892), 2, + ACTIONS(10920), 2, anon_sym_PIPE, anon_sym_LT_LT, - ACTIONS(13156), 2, + ACTIONS(12035), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(5591), 2, + STATE(5252), 2, sym_file_redirect, sym_herestring_redirect, - ACTIONS(13154), 3, + ACTIONS(12033), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(11894), 4, + ACTIONS(10922), 4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(13152), 5, + ACTIONS(12031), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [276235] = 3, + [262353] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13122), 5, + ACTIONS(12011), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13124), 15, + ACTIONS(12013), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -305098,10 +290112,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [276263] = 3, + [262381] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 7, + ACTIONS(1312), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -305109,24 +290123,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1258), 13, + ACTIONS(1314), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [276291] = 3, + [262409] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11588), 1, + sym__special_character, + STATE(4756), 1, + aux_sym__literal_repeat1, + ACTIONS(11715), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(11713), 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, + [262441] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 7, + ACTIONS(1268), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -305134,9 +290175,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(1270), 13, sym_file_descriptor, sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -305146,37 +290188,36 @@ static const uint16_t 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, + [262469] = 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, + ACTIONS(1260), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1262), 13, + sym_file_descriptor, + sym__concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [262497] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1276), 7, + ACTIONS(1300), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -305184,24 +290225,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1278), 13, + ACTIONS(1302), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [276375] = 3, + [262525] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1288), 7, + ACTIONS(1304), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -305209,28 +290250,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1290), 13, + ACTIONS(1306), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [276403] = 5, + [262553] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13130), 1, - sym__special_character, - STATE(5359), 1, - aux_sym__literal_repeat1, - ACTIONS(4280), 7, + ACTIONS(1300), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -305238,8 +290275,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(1302), 13, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -305250,16 +290288,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [276435] = 3, + aux_sym_concatenation_token1, + [262581] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13160), 5, + ACTIONS(12039), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13162), 15, + ACTIONS(12041), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -305275,16 +290314,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [276463] = 3, + [262609] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13164), 5, + ACTIONS(12039), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13166), 15, + ACTIONS(12041), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -305300,10 +290339,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [276491] = 3, + [262637] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 7, + ACTIONS(1308), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -305311,28 +290350,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(1310), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [276519] = 5, + [262665] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13168), 1, - sym__special_character, - STATE(5303), 1, - aux_sym__literal_repeat1, - ACTIONS(1316), 7, + ACTIONS(1300), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -305340,8 +290375,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(1302), 13, sym_file_descriptor, + sym__concat, sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -305352,7 +290388,8 @@ 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, + aux_sym_concatenation_token1, + [262693] = 3, ACTIONS(71), 1, sym_comment, ACTIONS(1304), 7, @@ -305366,6 +290403,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1306), 13, sym_file_descriptor, sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -305375,12 +290413,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, - [276579] = 3, + [262721] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1260), 7, + ACTIONS(1300), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -305388,7 +290425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1262), 13, + ACTIONS(1302), 13, sym_file_descriptor, sym__concat, sym_variable_name, @@ -305402,43 +290439,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [276607] = 11, + [262749] = 12, ACTIONS(71), 1, sym_comment, - ACTIONS(4157), 1, - anon_sym_PIPE, - ACTIONS(4268), 1, - anon_sym_PIPE_AMP, - ACTIONS(5925), 1, + ACTIONS(3724), 1, anon_sym_LT_LT, - ACTIONS(5927), 1, + ACTIONS(3730), 1, anon_sym_LT_LT_DASH, - ACTIONS(12930), 1, + ACTIONS(3758), 1, sym_file_descriptor, - ACTIONS(5923), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(12856), 2, + ACTIONS(3937), 1, + anon_sym_PIPE, + ACTIONS(3939), 1, + anon_sym_PIPE_AMP, + ACTIONS(6404), 1, + anon_sym_RBRACK, + ACTIONS(3728), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(12854), 3, + ACTIONS(5154), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(722), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(3726), 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(3722), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [276651] = 3, + [262795] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 7, + ACTIONS(12043), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12045), 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, + [262823] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12047), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12049), 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, + [262851] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12047), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12049), 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, + [262879] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12051), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12053), 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, + [262907] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1252), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -305446,24 +290584,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1298), 13, + ACTIONS(1254), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [276679] = 3, + [262935] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1268), 7, + STATE(5133), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11892), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4481), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -305471,10 +290614,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1270), 13, + ACTIONS(4483), 10, sym_file_descriptor, - sym__concat, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -305484,11 +290625,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, - [276707] = 3, + [262967] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 7, + STATE(5137), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11892), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4485), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -305496,9 +290641,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(4487), 10, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -305508,49 +290652,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [276735] = 9, + [262999] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12793), 1, - anon_sym_LT_LT_LT, - ACTIONS(13158), 1, - sym_file_descriptor, - ACTIONS(11790), 2, - anon_sym_PIPE, - 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_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, - [276775] = 3, + ACTIONS(12055), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12057), 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, + [263027] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13171), 5, + ACTIONS(12055), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13173), 15, + ACTIONS(12057), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -305566,43 +290702,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [276803] = 5, + [263055] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13130), 1, + ACTIONS(12055), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12057), 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(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), 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, - [276835] = 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, + [263083] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12924), 5, + ACTIONS(12055), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12926), 15, + ACTIONS(12057), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -305618,16 +290752,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [276863] = 3, + [263111] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13171), 5, + ACTIONS(12047), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13173), 15, + ACTIONS(12049), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -305643,16 +290777,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [276891] = 3, + [263139] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12936), 5, + ACTIONS(12047), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12938), 15, + ACTIONS(12049), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -305668,16 +290802,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [276919] = 3, + [263167] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12942), 5, + ACTIONS(12059), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12944), 15, + ACTIONS(12061), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -305693,16 +290827,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [276947] = 3, + [263195] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13142), 5, + ACTIONS(12059), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13144), 15, + ACTIONS(12061), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -305718,10 +290852,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [276975] = 3, + [263223] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 7, + ACTIONS(1276), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -305729,24 +290863,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1302), 13, + ACTIONS(1278), 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, - [277003] = 3, + [263251] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 7, + ACTIONS(1276), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -305754,49 +290888,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1306), 13, + ACTIONS(1278), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, 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, - [277031] = 3, - ACTIONS(71), 1, + [263279] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 7, + ACTIONS(3937), 2, anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4039), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(737), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(4037), 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(1302), 13, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [263311] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4039), 2, sym_file_descriptor, - sym__concat, + aux_sym_heredoc_redirect_token1, + STATE(737), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(4037), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [277059] = 3, + [263341] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1252), 7, + STATE(5133), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11892), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4489), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -305804,30 +290971,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1254), 13, + ACTIONS(4491), 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, - [277087] = 3, + [263373] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12942), 5, + ACTIONS(12059), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12944), 15, + ACTIONS(12061), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -305843,16 +291007,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [277115] = 3, + [263401] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13171), 5, + ACTIONS(12059), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13173), 15, + ACTIONS(12061), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -305868,80 +291032,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [277143] = 11, + [263429] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7760), 1, + ACTIONS(11909), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(11911), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, anon_sym_LPAREN, - ACTIONS(7770), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(7778), 1, + sym_raw_string, + sym_ansi_c_string, 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, + [263457] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(12793), 1, - anon_sym_LT_LT_LT, - ACTIONS(13158), 1, - sym_file_descriptor, - ACTIONS(11902), 2, + STATE(5137), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11892), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4493), 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(4495), 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, + [263489] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13142), 5, + ACTIONS(11865), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13144), 15, + ACTIONS(11867), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -305957,10 +291109,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [277255] = 3, + [263517] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1284), 7, + ACTIONS(12039), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12041), 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, + [263545] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12039), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12041), 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, + [263573] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1248), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -305968,74 +291170,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1286), 13, + ACTIONS(1250), 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, - [277283] = 3, + [263601] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(1213), 7, + ACTIONS(11915), 1, + anon_sym_LT_LT_LT, + ACTIONS(12037), 1, + sym_file_descriptor, + ACTIONS(10913), 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(1215), 13, - sym_file_descriptor, - sym__concat, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(12035), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5305), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(12033), 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, + ACTIONS(10915), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [277311] = 6, - 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, - anon_sym_PIPE, + ACTIONS(12031), 5, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1229), 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, - [277345] = 3, + [263641] = 3, ACTIONS(71), 1, sym_comment, ACTIONS(1248), 7, @@ -306049,6 +291229,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1250), 13, sym_file_descriptor, sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -306058,18 +291239,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, + [263669] = 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(1268), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -306077,8 +291251,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(1270), 13, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -306088,15 +291263,91 @@ 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, + [263697] = 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(12063), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12065), 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, + [263725] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12063), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12065), 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, + [263753] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12067), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12069), 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, + [263781] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12071), 1, + sym__special_character, + STATE(5140), 1, + aux_sym__literal_repeat1, + ACTIONS(4123), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -306104,27 +291355,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1215), 10, + ACTIONS(4125), 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, - [277439] = 3, + [263813] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13160), 5, + ACTIONS(12067), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13162), 15, + ACTIONS(12069), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -306140,41 +291392,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [277467] = 3, + [263841] = 12, ACTIONS(71), 1, sym_comment, - ACTIONS(1272), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3724), 1, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1274), 13, + ACTIONS(3730), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3758), 1, sym_file_descriptor, - sym__concat, + ACTIONS(3937), 1, + anon_sym_PIPE, + ACTIONS(3939), 1, + anon_sym_PIPE_AMP, + ACTIONS(6402), 1, + anon_sym_RBRACK, + ACTIONS(3728), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5154), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + STATE(722), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(3726), 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, - aux_sym_concatenation_token1, - [277495] = 3, + ACTIONS(3722), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [263887] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13009), 5, + ACTIONS(12067), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13011), 15, + ACTIONS(12069), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -306190,16 +291451,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [277523] = 3, + [263915] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13160), 5, + ACTIONS(12067), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13162), 15, + ACTIONS(12069), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -306215,68 +291476,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [277551] = 3, + [263943] = 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(12063), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12065), 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, + [263971] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13015), 5, + ACTIONS(12063), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13017), 15, + ACTIONS(12065), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -306292,60 +291526,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [277639] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1280), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1282), 13, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [277667] = 3, + [263999] = 3, 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), 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, - [277695] = 3, + ACTIONS(11816), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(11818), 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, + [264027] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1213), 7, + ACTIONS(1292), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -306353,55 +291562,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1215), 13, + ACTIONS(1294), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [277723] = 3, + [264055] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1312), 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(1314), 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, - [277751] = 3, + ACTIONS(11854), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(11856), 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, + [264083] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13015), 5, + ACTIONS(11988), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13017), 15, + ACTIONS(11990), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -306417,60 +291626,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [277779] = 3, + [264111] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1276), 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(1278), 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, - [277807] = 3, + ACTIONS(11802), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(11804), 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, + [264139] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1288), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1290), 13, - sym_file_descriptor, + STATE(5133), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11892), 2, sym__concat, - sym_variable_name, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [277835] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1252), 7, + ACTIONS(4123), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -306478,9 +291667,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(4125), 10, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -306490,17 +291678,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, - [277863] = 5, + [264171] = 5, ACTIONS(71), 1, sym_comment, - STATE(5329), 1, + STATE(5137), 1, aux_sym_concatenation_repeat1, - ACTIONS(13043), 2, + ACTIONS(11892), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(5687), 7, + ACTIONS(3913), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -306508,7 +291694,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(3915), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -306519,10 +291705,85 @@ 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, + [264203] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1312), 7, + ACTIONS(11965), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(11967), 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, + [264231] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11790), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(11792), 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, + [264259] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11790), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(11792), 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, + [264287] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1272), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -306530,7 +291791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1314), 13, + ACTIONS(1274), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -306544,37 +291805,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [277923] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(5331), 1, - aux_sym_concatenation_repeat1, - ACTIONS(13043), 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), 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, - [277955] = 3, + [264315] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 7, + ACTIONS(1264), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -306582,24 +291816,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1310), 13, + ACTIONS(1266), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [277983] = 3, + [264343] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1260), 7, + ACTIONS(1272), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -306607,9 +291841,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1262), 13, + ACTIONS(1274), 13, sym_file_descriptor, sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -306619,58 +291854,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, - [278011] = 18, - 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(13184), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(13186), 1, - anon_sym_COLON, - ACTIONS(13188), 1, - anon_sym_RBRACE3, - ACTIONS(13190), 1, - aux_sym__simple_variable_name_token1, - STATE(6147), 1, - sym__expansion_max_length_binary_expression, - STATE(6323), 1, - sym__expansion_max_length_expression, - STATE(6135), 2, - sym_number, - sym_expansion, - STATE(6661), 3, - sym_parenthesized_expression, - sym_arithmetic_expansion, - sym_command_substitution, - [278069] = 3, + [264371] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13009), 5, + ACTIONS(12073), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13011), 15, + ACTIONS(12075), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -306686,41 +291880,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [278097] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1268), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1270), 13, - sym_file_descriptor, - sym__concat, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [278125] = 3, + [264399] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13160), 5, + ACTIONS(11854), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13162), 15, + ACTIONS(11856), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -306736,10 +291905,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [278153] = 3, + [264427] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 7, + ACTIONS(12071), 1, + sym__special_character, + STATE(5140), 1, + aux_sym__literal_repeat1, + ACTIONS(4004), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -306747,53 +291920,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1266), 13, + ACTIONS(4006), 11, sym_file_descriptor, - sym__concat, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [278181] = 3, + [264459] = 12, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3724), 1, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1294), 13, + ACTIONS(3730), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3758), 1, sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(3937), 1, + anon_sym_PIPE, + ACTIONS(3939), 1, + anon_sym_PIPE_AMP, + ACTIONS(6335), 1, + anon_sym_RBRACK, + ACTIONS(3728), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5154), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + STATE(722), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(3726), 3, anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [278209] = 5, + ACTIONS(3722), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [264505] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(13192), 1, - sym__special_character, - STATE(5359), 1, - aux_sym__literal_repeat1, - ACTIONS(1316), 7, + STATE(5133), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11892), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4004), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -306801,7 +291982,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(4006), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -306812,11 +291993,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, - [278241] = 3, + [264537] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 7, + STATE(5137), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11892), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4008), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -306824,30 +292009,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1310), 13, + ACTIONS(4010), 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, - [278269] = 3, + [264569] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13138), 5, + ACTIONS(11894), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13140), 15, + ACTIONS(11896), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -306863,16 +292045,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [278297] = 3, + [264597] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13138), 5, + ACTIONS(11917), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13140), 15, + ACTIONS(11919), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -306888,16 +292070,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [278325] = 3, + [264625] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13195), 5, + ACTIONS(11903), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13197), 15, + ACTIONS(11905), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -306913,16 +292095,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [278353] = 3, + [264653] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13171), 5, + ACTIONS(11876), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13173), 15, + ACTIONS(11878), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -306938,41 +292120,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [278381] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1248), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1250), 13, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [278409] = 3, + [264681] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13199), 5, + ACTIONS(11882), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13201), 15, + ACTIONS(11884), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -306988,10 +292145,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [278437] = 3, + [264709] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 7, + ACTIONS(12077), 1, + sym__special_character, + STATE(5142), 1, + aux_sym__literal_repeat1, + ACTIONS(4447), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -306999,9 +292160,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1298), 13, + ACTIONS(4449), 11, sym_file_descriptor, - sym__concat, sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -307012,61 +292172,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, - [278465] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(13199), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(13201), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [278493] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(13031), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(13033), 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, - [278521] = 3, + [264741] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 7, + ACTIONS(1280), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -307074,81 +292183,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(1282), 13, sym_file_descriptor, sym__concat, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, 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, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4157), 1, - 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, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [278583] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(13203), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(13205), 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, - [278611] = 4, + [264769] = 3, ACTIONS(71), 1, sym_comment, - STATE(5381), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4155), 7, + ACTIONS(1284), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -307156,8 +292208,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4159), 10, + ACTIONS(1286), 13, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -307167,16 +292220,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [278641] = 3, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [264797] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13207), 5, + ACTIONS(11882), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13209), 15, + ACTIONS(11884), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -307192,41 +292247,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [278669] = 3, + [264825] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 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(1266), 13, - sym_file_descriptor, - sym__concat, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [278697] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(13211), 5, + ACTIONS(11903), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13213), 15, + ACTIONS(11905), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -307242,41 +292272,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [278725] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1276), 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(1278), 13, - sym_file_descriptor, - sym__concat, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - 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, + [264853] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13215), 5, + ACTIONS(11796), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13217), 15, + ACTIONS(11798), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -307292,16 +292297,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [278781] = 3, + [264881] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13215), 5, + ACTIONS(11796), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13217), 15, + ACTIONS(11798), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -307317,16 +292322,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [278809] = 3, + [264909] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13199), 5, + ACTIONS(11894), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13201), 15, + ACTIONS(11896), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -307342,42 +292347,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [278837] = 10, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11780), 1, - anon_sym_PIPE, - ACTIONS(13219), 1, - anon_sym_LT_LT, - ACTIONS(13221), 1, - anon_sym_LT_LT_DASH, - ACTIONS(13223), 1, - sym_file_descriptor, - ACTIONS(13156), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(11782), 3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_AMP, - ACTIONS(13154), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - STATE(5396), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(13152), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [278879] = 3, + [264937] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 7, + ACTIONS(1288), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -307385,10 +292358,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1302), 13, + ACTIONS(1290), 13, sym_file_descriptor, sym__concat, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -307398,36 +292370,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, - [278907] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(13199), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(13201), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [278935] = 3, + [264965] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 7, + ACTIONS(1284), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -307435,7 +292383,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(1286), 13, sym_file_descriptor, sym__concat, sym_variable_name, @@ -307449,16 +292397,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [278963] = 3, + [264993] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13215), 5, + ACTIONS(11955), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13217), 15, + ACTIONS(11957), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -307474,7 +292422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [278991] = 3, + [265021] = 3, ACTIONS(71), 1, sym_comment, ACTIONS(1288), 7, @@ -307488,6 +292436,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1290), 13, sym_file_descriptor, sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -307497,18 +292446,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, - [279019] = 3, + [265049] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13215), 5, + ACTIONS(11808), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13217), 15, + ACTIONS(11810), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -307524,25 +292472,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [279047] = 5, + [265077] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13225), 1, - sym__special_character, - STATE(5390), 1, - aux_sym__literal_repeat1, - ACTIONS(5130), 5, + ACTIONS(11808), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(5132), 13, + ACTIONS(11810), 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 +292497,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [279079] = 3, + [265105] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13068), 5, + ACTIONS(11955), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13070), 15, + ACTIONS(11957), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -307576,12 +292522,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [279107] = 5, + [265133] = 12, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3724), 1, + anon_sym_LT_LT, + ACTIONS(3730), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3758), 1, + sym_file_descriptor, + ACTIONS(3937), 1, + anon_sym_PIPE, + ACTIONS(3939), 1, + anon_sym_PIPE_AMP, + ACTIONS(6390), 1, + anon_sym_RBRACK, + ACTIONS(3728), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5154), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(722), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(3726), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(3722), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [265179] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12079), 1, + sym__special_character, + STATE(5115), 1, + aux_sym__literal_repeat1, + ACTIONS(1316), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1318), 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, + [265211] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(13227), 1, + ACTIONS(12082), 1, sym__special_character, - STATE(5390), 1, + STATE(5116), 1, aux_sym__literal_repeat1, ACTIONS(1316), 5, anon_sym_DOLLAR, @@ -307603,10 +292610,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [279139] = 3, + [265243] = 12, ACTIONS(71), 1, sym_comment, - ACTIONS(1260), 7, + ACTIONS(3724), 1, + anon_sym_LT_LT, + ACTIONS(3730), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3758), 1, + sym_file_descriptor, + ACTIONS(3937), 1, + anon_sym_PIPE, + ACTIONS(3939), 1, + anon_sym_PIPE_AMP, + ACTIONS(6290), 1, + anon_sym_RBRACK, + ACTIONS(3728), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5154), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(722), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(3726), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(3722), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [265289] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1300), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -307614,7 +292655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1262), 13, + ACTIONS(1302), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -307628,10 +292669,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [279167] = 3, + [265317] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 7, + ACTIONS(1304), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -307639,24 +292680,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1294), 13, + ACTIONS(1306), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [279195] = 3, + [265345] = 12, ACTIONS(71), 1, sym_comment, - ACTIONS(1268), 7, + ACTIONS(3724), 1, + anon_sym_LT_LT, + ACTIONS(3730), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3758), 1, + sym_file_descriptor, + ACTIONS(3937), 1, + anon_sym_PIPE, + ACTIONS(3939), 1, + anon_sym_PIPE_AMP, + ACTIONS(6186), 1, + anon_sym_RBRACK, + ACTIONS(3728), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5154), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(722), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(3726), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(3722), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [265391] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1300), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -307664,7 +292739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1270), 13, + ACTIONS(1302), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -307678,14 +292753,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [279223] = 5, + [265419] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(13136), 1, + ACTIONS(12085), 1, sym__special_character, - STATE(5247), 1, + STATE(5115), 1, aux_sym__literal_repeat1, - ACTIONS(5561), 7, + ACTIONS(4481), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -307693,27 +292768,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5563), 11, + ACTIONS(4483), 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, - [279255] = 5, + anon_sym_LT_LT_LT, + [265451] = 5, ACTIONS(71), 1, sym_comment, - STATE(5329), 1, - aux_sym_concatenation_repeat1, - ACTIONS(13043), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5561), 7, + ACTIONS(12085), 1, + sym__special_character, + STATE(5115), 1, + aux_sym__literal_repeat1, + ACTIONS(4123), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -307721,7 +292795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5563), 10, + ACTIONS(4125), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -307732,47 +292806,45 @@ 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, + [265483] = 12, ACTIONS(71), 1, sym_comment, - ACTIONS(11872), 1, - anon_sym_PIPE, - ACTIONS(13233), 1, + ACTIONS(3724), 1, anon_sym_LT_LT, - ACTIONS(13242), 1, + ACTIONS(3730), 1, anon_sym_LT_LT_DASH, - ACTIONS(13245), 1, + ACTIONS(3758), 1, sym_file_descriptor, - ACTIONS(13239), 2, + ACTIONS(3937), 1, + anon_sym_PIPE, + ACTIONS(3939), 1, + anon_sym_PIPE_AMP, + ACTIONS(6294), 1, + anon_sym_RBRACK, + ACTIONS(3728), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(11883), 3, + ACTIONS(5154), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE_AMP, - ACTIONS(13236), 3, + STATE(722), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(3726), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - STATE(5396), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(13230), 5, + ACTIONS(3722), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [279329] = 5, + [265529] = 3, ACTIONS(71), 1, sym_comment, - STATE(5331), 1, - aux_sym_concatenation_repeat1, - ACTIONS(13043), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(2160), 7, + ACTIONS(1312), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -307780,171 +292852,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(2162), 10, + ACTIONS(1314), 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, - ACTIONS(71), 1, - sym_comment, - ACTIONS(13074), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(13076), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [279389] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(13080), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(13082), 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, - [279417] = 3, - ACTIONS(71), 1, - sym_comment, - 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, - [279445] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(13248), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(13250), 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, - [279473] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(13037), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(13039), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [279501] = 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, - [279529] = 3, + aux_sym_concatenation_token1, + [265557] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 7, + ACTIONS(1256), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -307952,27 +292877,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1306), 12, + ACTIONS(1258), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [279556] = 5, + [265585] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13252), 1, - sym__special_character, - STATE(5431), 1, - aux_sym__literal_repeat1, - ACTIONS(5687), 7, + ACTIONS(1219), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -307980,21 +292902,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5689), 10, + ACTIONS(1221), 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, - [279587] = 3, + aux_sym_concatenation_token1, + [265613] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1276), 7, + ACTIONS(1248), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -308002,23 +292927,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1278), 12, + ACTIONS(1250), 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, - [279614] = 3, + [265641] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4437), 7, + ACTIONS(1308), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -308026,8 +292952,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4439), 12, + ACTIONS(1310), 13, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -308038,11 +292965,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, - [279641] = 3, + aux_sym_concatenation_token1, + [265669] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(2160), 7, + ACTIONS(1252), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -308050,8 +292977,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(2162), 12, + ACTIONS(1254), 13, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -308062,23 +292990,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, - [279668] = 3, + aux_sym_concatenation_token1, + [265697] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1223), 5, + ACTIONS(12087), 1, + sym__special_character, + STATE(5116), 1, + aux_sym__literal_repeat1, + ACTIONS(11228), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(1225), 14, + ACTIONS(11230), 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, @@ -308087,40 +293018,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [279695] = 9, - ACTIONS(3), 1, + [265729] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(3552), 1, - anon_sym_LT_LT_LT, - ACTIONS(3578), 1, - sym_file_descriptor, - ACTIONS(13254), 1, - aux_sym_heredoc_redirect_token1, - STATE(7205), 1, - sym__heredoc_expression, - ACTIONS(3542), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(3548), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(5457), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(3546), 8, + ACTIONS(12085), 1, + sym__special_character, + STATE(5115), 1, + aux_sym__literal_repeat1, + ACTIONS(4489), 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(4491), 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, - [279734] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [265761] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1223), 7, + ACTIONS(11892), 1, + aux_sym_concatenation_token1, + ACTIONS(12089), 1, + sym__concat, + STATE(4991), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1207), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -308128,9 +293062,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1225), 12, + ACTIONS(1209), 10, sym_file_descriptor, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -308140,44 +293073,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [279761] = 8, - ACTIONS(3), 1, + [265795] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(5847), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12894), 1, - sym_file_descriptor, - ACTIONS(4529), 2, + ACTIONS(1284), 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(1286), 13, + sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(12672), 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, - STATE(5163), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(12670), 8, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [265823] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1288), 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(1290), 13, + sym_file_descriptor, + sym__concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - [279798] = 5, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [265851] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(13252), 1, + ACTIONS(12085), 1, sym__special_character, - STATE(5431), 1, + STATE(5115), 1, aux_sym__literal_repeat1, - ACTIONS(5561), 7, + ACTIONS(4004), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -308185,7 +293138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5563), 10, + ACTIONS(4006), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -308196,37 +293149,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [279829] = 6, - ACTIONS(3), 1, + anon_sym_LT_LT_LT, + [265883] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(13256), 1, + ACTIONS(11892), 1, aux_sym_concatenation_token1, - ACTIONS(13258), 1, + ACTIONS(12091), 1, sym__concat, - STATE(5527), 1, + STATE(4991), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 14, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(1213), 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(1215), 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, - sym__special_character, - [279862] = 3, + anon_sym_LT_LT_DASH, + [265917] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4311), 7, + ACTIONS(1268), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -308234,8 +293189,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4313), 12, + ACTIONS(1270), 13, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -308246,100 +293202,146 @@ static const uint16_t ts_small_parse_table[] = { 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, + [265945] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(5852), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12894), 1, - sym_file_descriptor, - ACTIONS(4529), 2, + ACTIONS(1272), 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(1274), 13, + sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(12672), 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, - STATE(5163), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(12670), 8, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [265973] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12093), 1, + sym__special_character, + STATE(5140), 1, + aux_sym__literal_repeat1, + ACTIONS(1316), 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(1318), 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, - [279926] = 9, - ACTIONS(3), 1, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [266005] = 9, + ACTIONS(71), 1, sym_comment, - ACTIONS(3552), 1, + ACTIONS(11915), 1, anon_sym_LT_LT_LT, - ACTIONS(3578), 1, + ACTIONS(12037), 1, sym_file_descriptor, - ACTIONS(13260), 1, - aux_sym_heredoc_redirect_token1, - STATE(6960), 1, - sym__heredoc_expression, - ACTIONS(3542), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(3548), 2, + ACTIONS(10836), 2, + anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(12035), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(5457), 3, + STATE(5291), 2, sym_file_redirect, sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(3546), 8, + ACTIONS(12033), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(10842), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(12031), 5, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [279965] = 9, - ACTIONS(3), 1, + [266045] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(3552), 1, - anon_sym_LT_LT_LT, - ACTIONS(3578), 1, + ACTIONS(12096), 1, + sym__special_character, + STATE(5142), 1, + aux_sym__literal_repeat1, + ACTIONS(1316), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1318), 11, sym_file_descriptor, - ACTIONS(13262), 1, - aux_sym_heredoc_redirect_token1, - STATE(6965), 1, - sym__heredoc_expression, - ACTIONS(3542), 2, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3548), 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(5457), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(3546), 8, + anon_sym_LT_LT_DASH, + [266077] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1229), 8, + 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, + sym__special_character, + ACTIONS(1231), 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, - [280004] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [266105] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1284), 7, + ACTIONS(1256), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -308347,9 +293349,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1286), 12, + ACTIONS(1258), 13, sym_file_descriptor, sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -308360,10 +293363,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [280031] = 3, + [266133] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1213), 7, + ACTIONS(1219), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -308371,9 +293374,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1215), 12, + ACTIONS(1221), 13, sym_file_descriptor, sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -308384,40 +293388,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [280058] = 9, - ACTIONS(3), 1, + [266161] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(3552), 1, - anon_sym_LT_LT_LT, - ACTIONS(3578), 1, - sym_file_descriptor, - ACTIONS(13264), 1, - aux_sym_heredoc_redirect_token1, - STATE(7417), 1, - sym__heredoc_expression, - ACTIONS(3542), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(3548), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(5457), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(3546), 8, + ACTIONS(1256), 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(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, - [280097] = 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, + [266189] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1252), 7, + ACTIONS(1308), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -308425,9 +293424,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1254), 12, + ACTIONS(1310), 13, sym_file_descriptor, sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -308438,10 +293438,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [280124] = 3, + [266217] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1312), 7, + ACTIONS(1252), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -308449,9 +293449,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1314), 12, + ACTIONS(1254), 13, sym_file_descriptor, sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -308462,10 +293463,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, + [266245] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 7, + ACTIONS(1219), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -308473,7 +293474,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(1221), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -308485,11 +293486,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, - [280178] = 3, + [266273] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 7, + ACTIONS(12099), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12101), 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, + [266301] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1260), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -308497,7 +293524,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(1262), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -308510,28 +293537,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, + [266328] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3552), 1, + ACTIONS(3243), 1, anon_sym_LT_LT_LT, - ACTIONS(3578), 1, + ACTIONS(3269), 1, sym_file_descriptor, - ACTIONS(13266), 1, + ACTIONS(12103), 1, aux_sym_heredoc_redirect_token1, - STATE(7420), 1, + STATE(6836), 1, sym__heredoc_expression, - ACTIONS(3542), 2, + ACTIONS(3233), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3548), 2, + ACTIONS(3239), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(5457), 3, + STATE(5241), 3, sym_file_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(3546), 8, + ACTIONS(3237), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -308540,10 +293567,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [280244] = 3, + [266367] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1223), 8, + ACTIONS(4008), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -308551,8 +293578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - sym__special_character, - ACTIONS(1225), 11, + ACTIONS(4010), 12, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -308564,10 +293590,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [280271] = 3, + anon_sym_LT_LT_LT, + [266394] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 7, + ACTIONS(12105), 1, + sym__special_character, + STATE(5154), 1, + aux_sym__literal_repeat1, + ACTIONS(1316), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -308575,9 +293606,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1298), 12, + ACTIONS(1318), 10, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -308587,63 +293617,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, - [280298] = 3, - ACTIONS(71), 1, + [266425] = 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(3243), 1, + anon_sym_LT_LT_LT, + ACTIONS(3269), 1, 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, - [280325] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1268), 7, - anon_sym_PIPE, + ACTIONS(12108), 1, + aux_sym_heredoc_redirect_token1, + STATE(6866), 1, + sym__heredoc_expression, + ACTIONS(3233), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3239), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5241), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3237), 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, + anon_sym_GT_PIPE, + [266464] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3243), 1, + anon_sym_LT_LT_LT, + ACTIONS(3269), 1, sym_file_descriptor, - sym__concat, + ACTIONS(12110), 1, + aux_sym_heredoc_redirect_token1, + STATE(6870), 1, + sym__heredoc_expression, + ACTIONS(3233), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(3239), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5241), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3237), 8, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [280352] = 5, + [266503] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13268), 1, - sym__special_character, - STATE(5431), 1, - aux_sym__literal_repeat1, - ACTIONS(1316), 7, + ACTIONS(1272), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -308651,8 +293688,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1318), 10, + ACTIONS(1274), 12, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -308662,79 +293700,90 @@ 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, + aux_sym_concatenation_token1, + [266530] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(7774), 1, + ACTIONS(6699), 1, aux_sym_number_token1, - ACTIONS(7776), 1, + ACTIONS(6701), 1, aux_sym_number_token2, - ACTIONS(12902), 1, + ACTIONS(11822), 1, anon_sym_LPAREN, - ACTIONS(12906), 1, + ACTIONS(11826), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(12908), 1, + ACTIONS(11828), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(12912), 1, + ACTIONS(11832), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12916), 1, + ACTIONS(11836), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12918), 1, + ACTIONS(11838), 1, anon_sym_BQUOTE, - ACTIONS(12920), 1, + ACTIONS(11840), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13271), 1, + ACTIONS(12112), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(13273), 1, + ACTIONS(12114), 1, anon_sym_RBRACE3, - ACTIONS(13275), 1, + ACTIONS(12116), 1, aux_sym__simple_variable_name_token1, - STATE(6205), 1, + STATE(5847), 1, + sym__expansion_max_length_binary_expression, + STATE(5869), 1, sym_number, - STATE(6216), 1, + STATE(5923), 1, sym_expansion, - STATE(6249), 1, - sym__expansion_max_length_binary_expression, - STATE(6323), 1, + STATE(5949), 1, sym__expansion_max_length_expression, - STATE(6707), 1, + STATE(6802), 1, sym_parenthesized_expression, - STATE(6749), 1, + STATE(6806), 1, sym_arithmetic_expansion, - STATE(7028), 1, + STATE(6858), 1, sym_command_substitution, - [280444] = 3, - ACTIONS(71), 1, + [266591] = 17, + 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, - 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, - [280471] = 5, + ACTIONS(6699), 1, + aux_sym_number_token1, + ACTIONS(6701), 1, + aux_sym_number_token2, + ACTIONS(11822), 1, + anon_sym_LPAREN, + ACTIONS(11826), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(11828), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(11832), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11836), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11838), 1, + anon_sym_BQUOTE, + ACTIONS(11840), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12118), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12120), 1, + anon_sym_RBRACE3, + ACTIONS(12122), 1, + aux_sym__simple_variable_name_token1, + STATE(5934), 1, + sym__expansion_max_length_binary_expression, + STATE(5949), 1, + sym__expansion_max_length_expression, + STATE(5933), 2, + sym_number, + sym_expansion, + STATE(7029), 3, + sym_parenthesized_expression, + sym_arithmetic_expansion, + sym_command_substitution, + [266646] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13252), 1, - sym__special_character, - STATE(5431), 1, - aux_sym__literal_repeat1, - ACTIONS(4280), 7, + ACTIONS(1280), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -308742,8 +293791,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4282), 10, + ACTIONS(1282), 12, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -308753,28 +293803,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [280502] = 9, + aux_sym_concatenation_token1, + [266673] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3552), 1, + ACTIONS(3243), 1, anon_sym_LT_LT_LT, - ACTIONS(3578), 1, + ACTIONS(3269), 1, sym_file_descriptor, - ACTIONS(13277), 1, + ACTIONS(12124), 1, aux_sym_heredoc_redirect_token1, - STATE(7146), 1, + STATE(7126), 1, sym__heredoc_expression, - ACTIONS(3542), 2, + ACTIONS(3233), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3548), 2, + ACTIONS(3239), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(5457), 3, + STATE(5241), 3, sym_file_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(3546), 8, + ACTIONS(3237), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -308783,28 +293834,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [280541] = 9, + [266712] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3552), 1, + ACTIONS(3243), 1, anon_sym_LT_LT_LT, - ACTIONS(3578), 1, + ACTIONS(3269), 1, sym_file_descriptor, - ACTIONS(13279), 1, + ACTIONS(12126), 1, aux_sym_heredoc_redirect_token1, - STATE(7160), 1, + STATE(7131), 1, sym__heredoc_expression, - ACTIONS(3542), 2, + ACTIONS(3233), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3548), 2, + ACTIONS(3239), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(5457), 3, + STATE(5241), 3, sym_file_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(3546), 8, + ACTIONS(3237), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -308813,10 +293864,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [280580] = 3, + [266751] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1288), 7, + ACTIONS(12128), 1, + sym__special_character, + STATE(5154), 1, + aux_sym__literal_repeat1, + ACTIONS(4481), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -308824,9 +293879,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(4483), 10, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -308836,11 +293890,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, + [266782] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1223), 7, + ACTIONS(1276), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -308848,8 +293901,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(1278), 12, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -308859,12 +293913,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, + [266809] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 7, + ACTIONS(1284), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -308872,7 +293925,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(1286), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -308885,10 +293938,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, + [266836] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 7, + ACTIONS(1288), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -308896,7 +293949,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(1290), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -308909,36 +293962,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [280688] = 5, + [266863] = 9, ACTIONS(3), 1, sym_comment, - STATE(5443), 1, - aux_sym_pipeline_repeat1, - ACTIONS(12222), 2, + ACTIONS(3243), 1, + anon_sym_LT_LT_LT, + ACTIONS(3269), 1, sym_file_descriptor, + ACTIONS(12130), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(13281), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(12218), 14, + STATE(6418), 1, + sym__heredoc_expression, + ACTIONS(3233), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(3239), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5241), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3237), 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, + [266902] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3243), 1, + anon_sym_LT_LT_LT, + ACTIONS(3269), 1, + sym_file_descriptor, + ACTIONS(12132), 1, + aux_sym_heredoc_redirect_token1, + STATE(6424), 1, + sym__heredoc_expression, + ACTIONS(3233), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3239), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [280719] = 3, + STATE(5241), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3237), 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, + [266941] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 7, + ACTIONS(12128), 1, + sym__special_character, + STATE(5154), 1, + aux_sym__literal_repeat1, + ACTIONS(4489), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -308946,9 +294037,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1302), 12, + ACTIONS(4491), 10, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -308958,41 +294048,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, - [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, + [266972] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13252), 1, - sym__special_character, - STATE(5431), 1, - aux_sym__literal_repeat1, - ACTIONS(4307), 7, + ACTIONS(1256), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309000,8 +294059,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4309), 10, + ACTIONS(1258), 12, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -309011,28 +294071,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [280808] = 9, + aux_sym_concatenation_token1, + [266999] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3552), 1, + ACTIONS(3243), 1, anon_sym_LT_LT_LT, - ACTIONS(3578), 1, + ACTIONS(3269), 1, sym_file_descriptor, - ACTIONS(13286), 1, + ACTIONS(12134), 1, aux_sym_heredoc_redirect_token1, - STATE(7309), 1, + STATE(6628), 1, sym__heredoc_expression, - ACTIONS(3542), 2, + ACTIONS(3233), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3548), 2, + ACTIONS(3239), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(5457), 3, + STATE(5241), 3, sym_file_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(3546), 8, + ACTIONS(3237), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -309041,28 +294102,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [280847] = 9, + [267038] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3552), 1, + ACTIONS(3243), 1, anon_sym_LT_LT_LT, - ACTIONS(3578), 1, + ACTIONS(3269), 1, sym_file_descriptor, - ACTIONS(13288), 1, + ACTIONS(12136), 1, aux_sym_heredoc_redirect_token1, - STATE(7342), 1, + STATE(6632), 1, sym__heredoc_expression, - ACTIONS(3542), 2, + ACTIONS(3233), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3548), 2, + ACTIONS(3239), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(5457), 3, + STATE(5241), 3, sym_file_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(3546), 8, + ACTIONS(3237), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -309071,34 +294132,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, + [267077] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1272), 7, + ACTIONS(1300), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309106,7 +294143,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(1302), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -309119,10 +294156,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [280940] = 3, + [267104] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 7, + ACTIONS(1312), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309130,7 +294167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1294), 12, + ACTIONS(1314), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -309143,10 +294180,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [280967] = 3, + [267131] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1280), 7, + ACTIONS(1296), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309154,7 +294191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1282), 12, + ACTIONS(1298), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -309167,28 +294204,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [280994] = 9, + [267158] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3552), 1, + ACTIONS(3243), 1, anon_sym_LT_LT_LT, - ACTIONS(3578), 1, + ACTIONS(3269), 1, sym_file_descriptor, - ACTIONS(13290), 1, + ACTIONS(12138), 1, aux_sym_heredoc_redirect_token1, - STATE(6991), 1, + STATE(6845), 1, sym__heredoc_expression, - ACTIONS(3542), 2, + ACTIONS(3233), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3548), 2, + ACTIONS(3239), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(5457), 3, + STATE(5241), 3, sym_file_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(3546), 8, + ACTIONS(3237), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -309197,48 +294234,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [281033] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7774), 1, - aux_sym_number_token1, - ACTIONS(7776), 1, - aux_sym_number_token2, - ACTIONS(12902), 1, - anon_sym_LPAREN, - ACTIONS(12906), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(12908), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(12912), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12916), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12918), 1, - anon_sym_BQUOTE, - ACTIONS(12920), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(13292), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(13294), 1, - anon_sym_RBRACE3, - ACTIONS(13296), 1, - aux_sym__simple_variable_name_token1, - STATE(6165), 1, - sym__expansion_max_length_binary_expression, - STATE(6323), 1, - sym__expansion_max_length_expression, - STATE(6157), 2, - sym_number, - sym_expansion, - STATE(7092), 3, - sym_parenthesized_expression, - sym_arithmetic_expansion, - sym_command_substitution, - [281088] = 3, + [267197] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 7, + ACTIONS(1304), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309246,7 +294245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1250), 12, + ACTIONS(1306), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -309259,110 +294258,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [281115] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7774), 1, - aux_sym_number_token1, - ACTIONS(7776), 1, - aux_sym_number_token2, - ACTIONS(12902), 1, - anon_sym_LPAREN, - ACTIONS(12906), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(12908), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(12912), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12916), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12918), 1, - anon_sym_BQUOTE, - ACTIONS(12920), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(13298), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(13300), 1, - anon_sym_RBRACE3, - ACTIONS(13302), 1, - aux_sym__simple_variable_name_token1, - STATE(6161), 1, - sym__expansion_max_length_binary_expression, - STATE(6323), 1, - sym__expansion_max_length_expression, - STATE(6159), 2, - sym_number, - sym_expansion, - STATE(7163), 3, - sym_parenthesized_expression, - sym_arithmetic_expansion, - sym_command_substitution, - [281170] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12411), 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(12409), 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, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12186), 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(12184), 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, - [281222] = 8, + [267224] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(11679), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(13310), 1, + ACTIONS(3243), 1, anon_sym_LT_LT_LT, - ACTIONS(13313), 1, + ACTIONS(3269), 1, sym_file_descriptor, - ACTIONS(11671), 2, + ACTIONS(12140), 1, + aux_sym_heredoc_redirect_token1, + STATE(6848), 1, + sym__heredoc_expression, + ACTIONS(3233), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(13307), 2, + ACTIONS(3239), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(5457), 3, + STATE(5241), 3, sym_file_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(13304), 8, + ACTIONS(3237), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -309371,39 +294288,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [281258] = 9, + [267263] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(4529), 1, - anon_sym_LT_LT, - ACTIONS(12109), 1, - sym_file_descriptor, - ACTIONS(13322), 1, - anon_sym_LT_LT_DASH, - ACTIONS(13316), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(13320), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(13318), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - STATE(4669), 3, + STATE(765), 2, sym_file_redirect, sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11798), 5, + ACTIONS(4037), 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, - [281296] = 3, + ACTIONS(4039), 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, + [267292] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12453), 7, + ACTIONS(4485), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309411,7 +294324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12451), 11, + ACTIONS(4487), 12, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -309423,10 +294336,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [281322] = 3, + anon_sym_LT_LT_LT, + [267319] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12553), 7, + ACTIONS(1300), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309434,22 +294348,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12555), 11, + ACTIONS(1302), 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, - [281348] = 3, + aux_sym_concatenation_token1, + [267346] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(2156), 7, + ACTIONS(1229), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309457,33 +294372,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(2158), 11, + ACTIONS(1231), 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, - [281374] = 6, + sym__special_character, + [267373] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(13256), 1, - aux_sym_concatenation_token1, - ACTIONS(13324), 1, - sym__concat, - STATE(5483), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 2, + ACTIONS(3243), 1, + anon_sym_LT_LT_LT, + ACTIONS(3269), 1, sym_file_descriptor, + ACTIONS(12142), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 13, + STATE(6943), 1, + sym__heredoc_expression, + ACTIONS(3233), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(3239), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5241), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3237), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -309492,13 +294415,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, - [281406] = 3, + [267412] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12234), 7, + ACTIONS(1219), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309506,8 +294426,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12232), 11, + ACTIONS(1221), 12, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -309517,11 +294438,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, - [281432] = 3, + aux_sym_concatenation_token1, + [267439] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(2160), 7, + ACTIONS(12128), 1, + sym__special_character, + STATE(5154), 1, + aux_sym__literal_repeat1, + ACTIONS(4123), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309529,22 +294454,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(2162), 11, + ACTIONS(4125), 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, - [281458] = 3, + [267470] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12295), 7, + ACTIONS(3913), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309552,7 +294476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12297), 11, + ACTIONS(3915), 12, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -309564,10 +294488,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [281484] = 3, + anon_sym_LT_LT_LT, + [267497] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12637), 7, + ACTIONS(4493), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309575,7 +294500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12639), 11, + ACTIONS(4495), 12, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -309587,10 +294512,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [281510] = 3, + anon_sym_LT_LT_LT, + [267524] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(12641), 7, + ACTIONS(12128), 1, + sym__special_character, + STATE(5154), 1, + aux_sym__literal_repeat1, + ACTIONS(4004), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309598,22 +294528,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12643), 11, + ACTIONS(4006), 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, - [281536] = 3, + [267555] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12353), 7, + ACTIONS(1248), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309621,22 +294550,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12351), 11, + ACTIONS(1250), 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, - [281562] = 3, + aux_sym_concatenation_token1, + [267582] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12375), 7, + ACTIONS(1268), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309644,22 +294574,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12373), 11, + 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_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [281588] = 3, + aux_sym_concatenation_token1, + [267609] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12375), 7, + ACTIONS(1229), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309667,45 +294598,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12373), 11, + ACTIONS(1231), 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, - [281614] = 3, + anon_sym_LT_LT_LT, + sym__special_character, + [267636] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12395), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, + ACTIONS(1229), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1231), 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, + [267663] = 11, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3724), 1, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(12397), 11, + ACTIONS(3730), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3758), 1, sym_file_descriptor, + ACTIONS(3937), 1, + anon_sym_PIPE, + ACTIONS(3939), 1, + anon_sym_PIPE_AMP, + ACTIONS(3728), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5154), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + STATE(722), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(3726), 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, - [281640] = 3, + ACTIONS(3722), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [267706] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12395), 7, + ACTIONS(1308), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309713,45 +294678,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12397), 11, + ACTIONS(1310), 12, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [281666] = 3, - ACTIONS(71), 1, + aux_sym_concatenation_token1, + [267733] = 6, + ACTIONS(3), 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), 11, + ACTIONS(12144), 1, + aux_sym_concatenation_token1, + ACTIONS(12146), 1, + sym__concat, + STATE(5243), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1231), 2, sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1229), 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_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, - [281692] = 3, + anon_sym_LT_LT_LT, + sym__special_character, + [267766] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6699), 1, + aux_sym_number_token1, + ACTIONS(6701), 1, + aux_sym_number_token2, + ACTIONS(11822), 1, + anon_sym_LPAREN, + ACTIONS(11826), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(11828), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(11832), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11836), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11838), 1, + anon_sym_BQUOTE, + ACTIONS(11840), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12148), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12150), 1, + anon_sym_RBRACE3, + ACTIONS(12152), 1, + aux_sym__simple_variable_name_token1, + STATE(5880), 1, + sym__expansion_max_length_binary_expression, + STATE(5949), 1, + sym__expansion_max_length_expression, + STATE(5887), 2, + sym_number, + sym_expansion, + STATE(6773), 3, + sym_parenthesized_expression, + sym_arithmetic_expansion, + sym_command_substitution, + [267821] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12115), 7, + ACTIONS(1252), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309759,8 +294767,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12113), 11, + ACTIONS(1254), 12, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -309770,11 +294779,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, - [281718] = 3, + aux_sym_concatenation_token1, + [267848] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12434), 7, + ACTIONS(1229), 8, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309782,7 +294791,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12436), 11, + sym__special_character, + ACTIONS(1231), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -309794,10 +294804,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [281744] = 3, + [267875] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12509), 7, + ACTIONS(1264), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309805,68 +294815,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12511), 11, + ACTIONS(1266), 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, - [281770] = 3, - ACTIONS(71), 1, + aux_sym_concatenation_token1, + [267902] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(12509), 7, + STATE(5202), 1, + aux_sym_pipeline_repeat1, + ACTIONS(11164), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(12154), 2, anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(11160), 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(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, - [281796] = 3, - ACTIONS(71), 1, + [267933] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11719), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(11717), 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, + [267960] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(12537), 7, + STATE(5202), 1, + aux_sym_pipeline_repeat1, + ACTIONS(11196), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(12156), 2, anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(11198), 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(12539), 11, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [281822] = 3, + [267991] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12537), 7, + ACTIONS(1292), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309874,45 +294915,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12539), 11, + ACTIONS(1294), 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, - [281848] = 3, + aux_sym_concatenation_token1, + [268018] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(12426), 7, + ACTIONS(3937), 1, anon_sym_PIPE, + ACTIONS(3939), 1, + anon_sym_PIPE_AMP, + STATE(765), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(4037), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12424), 11, + ACTIONS(4039), 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, - [281874] = 3, + [268051] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12426), 7, + ACTIONS(11084), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309920,22 +294966,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(11082), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [281900] = 3, + anon_sym_LT_LT_LT, + [268077] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(2156), 7, + ACTIONS(11130), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309943,7 +294989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(2158), 11, + ACTIONS(11132), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -309955,36 +295001,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [281926] = 6, + [268103] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(13326), 1, - aux_sym_concatenation_token1, - ACTIONS(13329), 1, - sym__concat, - STATE(5483), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 2, - sym_file_descriptor, + ACTIONS(12161), 1, + anon_sym_DQUOTE, + ACTIONS(12165), 1, + sym_variable_name, + STATE(5813), 1, + sym_string, + ACTIONS(12163), 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(1213), 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, - [281958] = 3, + ACTIONS(12159), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [268137] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12105), 7, + ACTIONS(11120), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309992,7 +295039,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(11122), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -310004,10 +295051,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, + [268163] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12230), 7, + ACTIONS(11180), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310015,7 +295062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12228), 11, + ACTIONS(11182), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -310027,19 +295074,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [282010] = 6, + [268189] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13256), 1, + ACTIONS(12144), 1, aux_sym_concatenation_token1, - ACTIONS(13258), 1, + ACTIONS(12146), 1, sym__concat, - STATE(5527), 1, + STATE(5243), 1, aux_sym_concatenation_repeat1, - ACTIONS(5689), 2, + ACTIONS(4483), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 13, + ACTIONS(4481), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -310053,33 +295100,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - [282042] = 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), 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, - [282068] = 3, + [268221] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12349), 7, + ACTIONS(4008), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310087,7 +295111,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(4010), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -310099,19 +295123,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [282094] = 6, + [268247] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13256), 1, + ACTIONS(12144), 1, aux_sym_concatenation_token1, - ACTIONS(13258), 1, + ACTIONS(12146), 1, sym__concat, - STATE(5462), 1, + STATE(5248), 1, aux_sym_concatenation_repeat1, - ACTIONS(2158), 2, + ACTIONS(4487), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 13, + ACTIONS(4485), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -310125,85 +295149,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - [282126] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(13334), 6, - anon_sym_DASH2, - anon_sym_PLUS2, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - aux_sym__simple_variable_name_token1, - ACTIONS(13332), 12, - sym_variable_name, - anon_sym_LPAREN, - anon_sym_BANG, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - anon_sym_TILDE, - anon_sym_DQUOTE, - sym_raw_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [282152] = 9, - ACTIONS(71), 1, - sym_comment, - ACTIONS(13219), 1, - anon_sym_LT_LT, - ACTIONS(13221), 1, - anon_sym_LT_LT_DASH, - ACTIONS(13223), 1, - 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_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, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1223), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1225), 11, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - sym__special_character, - [282216] = 3, + [268279] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12178), 7, + ACTIONS(4451), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310211,8 +295160,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12180), 11, + ACTIONS(4453), 11, sym_file_descriptor, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -310222,72 +295172,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, - [282242] = 7, + [268305] = 8, 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, + ACTIONS(3887), 1, + sym_file_descriptor, + ACTIONS(5127), 1, 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, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5705), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2782), 2, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(5707), 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_LT_DASH, + ACTIONS(3883), 2, 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, + ACTIONS(5125), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + STATE(737), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(3881), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -310296,13 +295200,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, - [282334] = 3, + [268341] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12244), 7, + ACTIONS(11224), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310310,7 +295211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12242), 11, + ACTIONS(11226), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -310322,19 +295223,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [282360] = 6, + [268367] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13256), 1, + ACTIONS(12144), 1, aux_sym_concatenation_token1, - ACTIONS(13258), 1, + ACTIONS(12146), 1, sym__concat, - STATE(5462), 1, + STATE(5243), 1, aux_sym_concatenation_repeat1, - ACTIONS(2162), 2, + ACTIONS(4125), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 13, + ACTIONS(4123), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -310348,127 +295249,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - [282392] = 7, + [268399] = 6, 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(12144), 1, + aux_sym_concatenation_token1, + ACTIONS(12146), 1, + sym__concat, + STATE(5243), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4491), 2, sym_file_descriptor, - ACTIONS(13322), 1, - anon_sym_LT_LT_DASH, - ACTIONS(13344), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(4489), 13, 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_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_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_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_GT_PIPE, 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_LT, + [268431] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(4437), 7, + ACTIONS(12167), 1, anon_sym_PIPE, + ACTIONS(12170), 1, + anon_sym_PIPE_AMP, + STATE(5218), 1, + aux_sym_pipeline_repeat1, + ACTIONS(11198), 6, 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, + ACTIONS(11196), 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, - [282528] = 6, + [268463] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13256), 1, + ACTIONS(12144), 1, aux_sym_concatenation_token1, - ACTIONS(13258), 1, + ACTIONS(12146), 1, sym__concat, - STATE(5527), 1, + STATE(5248), 1, aux_sym_concatenation_repeat1, - ACTIONS(4309), 2, + ACTIONS(3915), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 13, + ACTIONS(3913), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -310482,10 +295327,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - [282560] = 3, + [268495] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4311), 7, + ACTIONS(11142), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310493,7 +295338,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(11144), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -310505,10 +295350,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [282586] = 3, + [268521] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4311), 7, + ACTIONS(11408), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310516,7 +295361,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(11406), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -310528,33 +295373,36 @@ 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, - ACTIONS(71), 1, + [268547] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(2160), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(2162), 11, + ACTIONS(12144), 1, + aux_sym_concatenation_token1, + ACTIONS(12146), 1, + sym__concat, + STATE(5248), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4495), 2, sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4493), 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, - [282638] = 3, + [268579] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5268), 7, + ACTIONS(11243), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310562,9 +295410,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5270), 11, + ACTIONS(11245), 11, sym_file_descriptor, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -310574,10 +295421,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [282664] = 3, + anon_sym_LT_LT_LT, + [268605] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12175), 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(12173), 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, + [268631] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12279), 7, + ACTIONS(1229), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310585,7 +295456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12281), 11, + ACTIONS(1231), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -310596,66 +295467,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [282690] = 6, + sym__special_character, + [268657] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12133), 1, + ACTIONS(4485), 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(4487), 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, - [282722] = 9, - 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, + anon_sym_LT_LT_LT, + [268683] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12142), 7, + ACTIONS(11150), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310663,7 +295502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12140), 11, + ACTIONS(11148), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -310675,65 +295514,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [282786] = 9, + [268709] = 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(11156), 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(11158), 11, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [282856] = 3, + [268735] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12212), 7, + ACTIONS(3913), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310741,7 +295548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12210), 11, + ACTIONS(3915), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -310753,10 +295560,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [282882] = 3, + [268761] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12206), 7, + ACTIONS(11134), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310764,7 +295571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12208), 11, + ACTIONS(11136), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -310776,149 +295583,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [282908] = 6, + [268787] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12161), 1, + anon_sym_DQUOTE, + ACTIONS(12165), 1, + sym_variable_name, + STATE(5813), 1, + sym_string, + ACTIONS(12163), 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(12159), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [268821] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13373), 1, + ACTIONS(4493), 7, anon_sym_PIPE, - ACTIONS(13375), 1, - anon_sym_PIPE_AMP, - STATE(5518), 1, - aux_sym_pipeline_repeat1, - ACTIONS(12218), 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(4495), 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, - [282940] = 9, - 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, + anon_sym_LT_LT_LT, + [268847] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13377), 1, + ACTIONS(3913), 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(3915), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [283010] = 9, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4294), 1, - anon_sym_LT_LT, - ACTIONS(11978), 1, - sym_file_descriptor, - ACTIONS(13389), 1, - anon_sym_LT_LT_DASH, - ACTIONS(13383), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(13387), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(13385), 3, - anon_sym_GT_GT, - anon_sym_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_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [283048] = 9, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4529), 1, - anon_sym_LT_LT, - ACTIONS(12202), 1, - sym_file_descriptor, - ACTIONS(13322), 1, - anon_sym_LT_LT_DASH, - ACTIONS(13391), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(13395), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(13393), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - STATE(4645), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11835), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [283086] = 3, + [268873] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4437), 7, + ACTIONS(4008), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310926,7 +295667,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(4010), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -310938,10 +295679,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [283112] = 3, + [268899] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5886), 7, + ACTIONS(11190), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310949,9 +295690,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5888), 11, + ACTIONS(11188), 11, sym_file_descriptor, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -310961,42 +295701,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [283138] = 3, + anon_sym_LT_LT_LT, + [268925] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(12129), 7, + ACTIONS(12177), 1, anon_sym_PIPE, + ACTIONS(12179), 1, + anon_sym_PIPE_AMP, + STATE(5218), 1, + aux_sym_pipeline_repeat1, + ACTIONS(11160), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12127), 11, + ACTIONS(11164), 9, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [283164] = 6, + [268957] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13256), 1, + ACTIONS(12144), 1, aux_sym_concatenation_token1, - ACTIONS(13258), 1, + ACTIONS(12146), 1, sym__concat, - STATE(5527), 1, + STATE(5243), 1, aux_sym_concatenation_repeat1, - ACTIONS(4282), 2, + ACTIONS(4006), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 13, + ACTIONS(4004), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -311010,19 +295754,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, + [268989] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13256), 1, + ACTIONS(12144), 1, aux_sym_concatenation_token1, - ACTIONS(13258), 1, + ACTIONS(12146), 1, sym__concat, - STATE(5462), 1, + STATE(5248), 1, aux_sym_concatenation_repeat1, - ACTIONS(4439), 2, + ACTIONS(4010), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 13, + ACTIONS(4008), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -311036,10 +295780,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, + [269021] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12123), 7, + ACTIONS(11172), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -311047,7 +295791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12121), 11, + ACTIONS(11174), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -311059,36 +295803,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [283254] = 6, - ACTIONS(3), 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, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_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, - [283286] = 3, + [269047] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12103), 7, + ACTIONS(11184), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -311096,7 +295814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12101), 11, + ACTIONS(11186), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -311108,16 +295826,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [283312] = 3, + [269073] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 3, - sym_file_descriptor, - sym__concat, + ACTIONS(10768), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 14, + ACTIONS(12187), 1, + anon_sym_LT_LT_LT, + ACTIONS(12190), 1, + sym_file_descriptor, + ACTIONS(10760), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(12184), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5241), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(12181), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -311126,42 +295854,26 @@ 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, - aux_sym_concatenation_token1, - [283337] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12531), 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(12533), 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, - [283362] = 3, + [269109] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 3, + ACTIONS(3887), 1, sym_file_descriptor, - sym__concat, + ACTIONS(5139), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 14, + ACTIONS(2782), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3883), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5125), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + STATE(737), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(3881), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -311170,18 +295882,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [283387] = 3, + [269145] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 3, - sym_file_descriptor, + ACTIONS(12144), 1, + aux_sym_concatenation_token1, + ACTIONS(12193), 1, sym__concat, + STATE(5244), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 14, + ACTIONS(1207), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -311195,37 +295908,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [283412] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12142), 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(12140), 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, - [283437] = 3, + [269177] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 3, - sym_file_descriptor, + ACTIONS(12195), 1, + aux_sym_concatenation_token1, + ACTIONS(12198), 1, sym__concat, + STATE(5244), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1221), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 14, + ACTIONS(1219), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -311239,11 +295934,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, - [283462] = 3, + [269209] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12363), 7, + ACTIONS(4965), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -311251,8 +295945,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12361), 10, + ACTIONS(4967), 11, sym_file_descriptor, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -311262,32 +295957,36 @@ 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, + [269235] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(12416), 7, + ACTIONS(11200), 1, anon_sym_PIPE, + ACTIONS(12201), 1, + anon_sym_PIPE_AMP, + STATE(5236), 1, + aux_sym_pipeline_repeat1, + ACTIONS(11198), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12418), 10, + ACTIONS(11196), 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, - [283512] = 3, + [269267] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12363), 7, + ACTIONS(4969), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -311295,8 +295994,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12361), 10, + ACTIONS(4971), 11, sym_file_descriptor, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -311306,32 +296006,36 @@ 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, - ACTIONS(71), 1, + [269293] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(12123), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(12121), 10, + ACTIONS(12144), 1, + aux_sym_concatenation_token1, + ACTIONS(12204), 1, + sym__concat, + STATE(5244), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 2, sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1213), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [283562] = 3, + anon_sym_LT_LT_LT, + [269325] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12457), 7, + ACTIONS(11241), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -311339,7 +296043,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(11239), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -311350,36 +296054,37 @@ 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, + anon_sym_LT_LT_LT, + [269351] = 3, + ACTIONS(3), 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, + ACTIONS(1262), 3, sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1260), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [283612] = 3, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [269376] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 3, + ACTIONS(1310), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 14, + ACTIONS(1308), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -311394,10 +296099,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, + [269401] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12391), 7, + ACTIONS(11398), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -311405,7 +296110,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(11396), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -311416,32 +296121,56 @@ 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, + [269426] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4437), 7, - anon_sym_PIPE, + ACTIONS(1282), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1280), 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(4439), 10, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [269451] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12206), 1, + sym__special_character, + STATE(5313), 1, + aux_sym__literal_repeat1, + ACTIONS(4006), 2, sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4004), 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, - [283687] = 3, + anon_sym_LT_LT_LT, + [269480] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12416), 7, + ACTIONS(11416), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -311449,7 +296178,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(11418), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -311460,14 +296189,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [283712] = 3, + [269505] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 3, + ACTIONS(12206), 1, + sym__special_character, + STATE(5313), 1, + aux_sym__literal_repeat1, + ACTIONS(4483), 2, sym_file_descriptor, - sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 14, + ACTIONS(4481), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -311481,55 +296213,38 @@ 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, - [283737] = 3, - ACTIONS(3), 1, + [269534] = 9, + ACTIONS(71), 1, sym_comment, - ACTIONS(1282), 3, + ACTIONS(2782), 1, + anon_sym_LT_LT, + ACTIONS(3143), 1, sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 14, + ACTIONS(12214), 1, + anon_sym_LT_LT_DASH, + ACTIONS(12208), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(12212), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(625), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(12210), 3, anon_sym_GT_GT, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [283762] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12395), 7, - anon_sym_PIPE, + ACTIONS(3137), 5, 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, - [283787] = 3, + [269571] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12503), 7, + ACTIONS(11432), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -311537,7 +296252,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(11434), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -311548,10 +296263,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, + [269596] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12525), 7, + ACTIONS(11432), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -311559,7 +296274,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(11434), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -311570,10 +296285,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [283837] = 3, + [269621] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12349), 7, + ACTIONS(4008), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -311581,7 +296296,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(4010), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -311592,10 +296307,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [283862] = 3, + [269646] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12489), 7, + ACTIONS(11084), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -311603,7 +296318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12487), 10, + ACTIONS(11082), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -311614,17 +296329,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [283887] = 5, + [269671] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13399), 1, - sym__special_character, - STATE(5552), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 2, + ACTIONS(1278), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 13, + ACTIONS(1276), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -311638,58 +296350,43 @@ 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, + aux_sym_concatenation_token1, + [269696] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(12395), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2782), 1, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(12397), 10, + ACTIONS(3143), 1, sym_file_descriptor, + ACTIONS(12214), 1, + anon_sym_LT_LT_DASH, + ACTIONS(12212), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(12216), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + STATE(625), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(12210), 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, - [283941] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12509), 7, - anon_sym_PIPE, + ACTIONS(3137), 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), 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, - [283966] = 3, + [269733] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 3, + ACTIONS(1270), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 14, + ACTIONS(1268), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -311704,7 +296401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [283991] = 3, + [269758] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1286), 3, @@ -311726,39 +296423,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [284016] = 3, - ACTIONS(3), 1, + [269783] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1266), 3, + ACTIONS(11538), 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(11536), 10, sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [269808] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11156), 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(11158), 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, - [284041] = 5, + anon_sym_LT_LT_DASH, + [269833] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13402), 1, - sym__special_character, - STATE(5552), 1, - aux_sym__literal_repeat1, - ACTIONS(5563), 2, + ACTIONS(1290), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 13, + ACTIONS(1288), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -311772,14 +296488,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - [284070] = 3, + aux_sym_concatenation_token1, + [269858] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 3, + ACTIONS(1250), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 14, + ACTIONS(1248), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -311794,10 +296511,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [284095] = 3, + [269883] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12178), 7, + ACTIONS(4493), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -311805,7 +296522,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(4495), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -311816,32 +296533,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [284120] = 3, - ACTIONS(3), 1, + [269908] = 9, + ACTIONS(71), 1, sym_comment, - ACTIONS(1294), 3, + ACTIONS(2041), 1, + anon_sym_LT_LT, + ACTIONS(2071), 1, sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 14, + ACTIONS(12224), 1, + anon_sym_LT_LT_DASH, + ACTIONS(12218), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(12222), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(534), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(12220), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(2039), 5, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [284145] = 3, + [269945] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12453), 7, + ACTIONS(11500), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -311849,7 +296572,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(11502), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -311860,10 +296583,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, + [269970] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12279), 7, + ACTIONS(11376), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -311871,7 +296594,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(11378), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -311882,98 +296605,88 @@ 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, - ACTIONS(71), 1, + [269995] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(12537), 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(12539), 10, + ACTIONS(1254), 3, sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1252), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [284220] = 3, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [270020] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(12295), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2637), 1, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(12297), 10, + ACTIONS(2665), 1, sym_file_descriptor, + ACTIONS(12232), 1, + anon_sym_LT_LT_DASH, + ACTIONS(12226), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(12230), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(586), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(12228), 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, - [284245] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12537), 7, - anon_sym_PIPE, + ACTIONS(2635), 5, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12539), 10, + [270057] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(2782), 1, + anon_sym_LT_LT, + ACTIONS(2810), 1, sym_file_descriptor, + ACTIONS(12214), 1, + anon_sym_LT_LT_DASH, + ACTIONS(12234), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(12238), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(599), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(12236), 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, - [284270] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5856), 7, - anon_sym_PIPE, + ACTIONS(2780), 5, 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, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [284295] = 3, + [270094] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12495), 7, + ACTIONS(11392), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -311981,7 +296694,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(11390), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -311992,10 +296705,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, + [270119] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12521), 7, + ACTIONS(11474), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312003,7 +296716,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(11476), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312014,36 +296727,42 @@ 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, + [270144] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(12387), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3724), 1, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(12385), 10, + ACTIONS(3730), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3758), 1, sym_file_descriptor, + ACTIONS(3728), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5154), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + STATE(722), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(3726), 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, - [284370] = 3, + ACTIONS(3722), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [270181] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 3, + ACTIONS(1266), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 14, + ACTIONS(1264), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -312058,32 +296777,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [284395] = 3, - ACTIONS(3), 1, + [270206] = 9, + ACTIONS(71), 1, sym_comment, - ACTIONS(1278), 3, + ACTIONS(2389), 1, + anon_sym_LT_LT, + ACTIONS(2417), 1, sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 14, + ACTIONS(12246), 1, + anon_sym_LT_LT_DASH, + ACTIONS(12240), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(12244), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(562), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(12242), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(2387), 5, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [284420] = 3, + [270243] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12434), 7, + ACTIONS(11352), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312091,7 +296816,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(11350), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312102,10 +296827,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [284445] = 3, + [270268] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12637), 7, + ACTIONS(11134), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312113,7 +296838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12639), 10, + ACTIONS(11136), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312124,10 +296849,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [284470] = 3, + [270293] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12591), 7, + ACTIONS(4485), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312135,7 +296860,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(4487), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312146,10 +296871,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, + [270318] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12230), 7, + ACTIONS(11142), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312157,7 +296882,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(11144), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312168,10 +296893,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [284520] = 3, + [270343] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12509), 7, + ACTIONS(11410), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312179,7 +296904,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(11412), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312190,10 +296915,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [284545] = 3, + [270368] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12641), 7, + ACTIONS(11490), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312201,7 +296926,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(11492), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312212,10 +296937,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, + [270393] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12244), 7, + ACTIONS(11241), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312223,7 +296948,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(11239), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312234,10 +296959,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, + [270418] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12355), 7, + ACTIONS(4933), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312245,7 +296970,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(4935), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312256,10 +296981,10 @@ 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, + [270443] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4311), 7, + ACTIONS(4933), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312267,7 +296992,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(4935), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312278,10 +297003,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [284645] = 3, + [270468] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12411), 7, + ACTIONS(11470), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312289,7 +297014,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(11468), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312300,10 +297025,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [284670] = 3, + [270493] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12553), 7, + ACTIONS(11224), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312311,7 +297036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12555), 10, + ACTIONS(11226), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312322,10 +297047,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [284695] = 3, + [270518] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5856), 7, + ACTIONS(11436), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312333,7 +297058,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(11438), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312344,32 +297069,80 @@ 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, - ACTIONS(71), 1, + [270543] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(12597), 7, - anon_sym_PIPE, + ACTIONS(12206), 1, + sym__special_character, + STATE(5313), 1, + aux_sym__literal_repeat1, + ACTIONS(4491), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4489), 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(12599), 10, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + [270572] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1294), 3, sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1292), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [284745] = 3, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [270597] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12206), 1, + sym__special_character, + STATE(5313), 1, + aux_sym__literal_repeat1, + ACTIONS(4125), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4123), 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, + [270626] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12353), 7, + ACTIONS(11494), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312377,7 +297150,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(11496), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312388,32 +297161,76 @@ 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, - ACTIONS(71), 1, + [270651] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(12103), 7, - anon_sym_PIPE, + ACTIONS(1302), 3, + 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_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12101), 10, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [270676] = 3, + ACTIONS(3), 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, + 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, - [284795] = 3, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [270701] = 3, + ACTIONS(3), 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, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_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, + [270726] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12375), 7, + ACTIONS(11184), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312421,7 +297238,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(11186), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312432,10 +297249,10 @@ 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, + [270751] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(2160), 7, + ACTIONS(11358), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312443,7 +297260,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(11356), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312454,10 +297271,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, + [270776] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12343), 7, + ACTIONS(11408), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312465,7 +297282,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(11406), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312476,10 +297293,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, + [270801] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12403), 7, + ACTIONS(11448), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312487,7 +297304,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(11450), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312498,10 +297315,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, + [270826] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12426), 7, + ACTIONS(11452), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312509,7 +297326,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(11454), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312520,10 +297337,32 @@ 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, + [270851] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1274), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1272), 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, + [270876] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12577), 7, + ACTIONS(3913), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312531,7 +297370,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(3915), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312542,10 +297381,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [284945] = 3, + [270901] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(2156), 7, + ACTIONS(11420), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312553,7 +297392,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(11422), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312564,58 +297403,32 @@ 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, + [270926] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(13402), 1, - sym__special_character, - STATE(5552), 1, - aux_sym__literal_repeat1, - ACTIONS(5689), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 13, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(11376), 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, - [284999] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13402), 1, - sym__special_character, - STATE(5552), 1, - aux_sym__literal_repeat1, - ACTIONS(4282), 2, + ACTIONS(11378), 10, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - [285028] = 3, + anon_sym_LT_LT_DASH, + [270951] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12491), 7, + ACTIONS(11444), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312623,7 +297436,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(11442), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312634,7 +297447,7 @@ 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, + [270976] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1314), 3, @@ -312656,10 +297469,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, + [271001] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12499), 7, + ACTIONS(11130), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312667,7 +297480,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(11132), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312678,17 +297491,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [285103] = 5, + [271026] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(13402), 1, + ACTIONS(12248), 1, sym__special_character, - STATE(5552), 1, + STATE(5313), 1, aux_sym__literal_repeat1, - ACTIONS(4309), 2, + ACTIONS(1318), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 13, + ACTIONS(1316), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -312702,10 +297515,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - [285132] = 3, + [271055] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12561), 7, + ACTIONS(11180), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312713,7 +297526,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(11182), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312724,36 +297537,14 @@ 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, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12426), 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(12424), 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, - [285182] = 3, + [271080] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 3, + ACTIONS(1221), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 14, + ACTIONS(1219), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -312768,58 +297559,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [285207] = 3, + [271105] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(12349), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2782), 1, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(12347), 10, + ACTIONS(3887), 1, sym_file_descriptor, + ACTIONS(12214), 1, + anon_sym_LT_LT_DASH, + ACTIONS(12251), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(12255), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(737), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(12253), 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, - [285232] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12375), 7, - anon_sym_PIPE, + ACTIONS(3881), 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), 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, - [285257] = 3, + [271142] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 3, + ACTIONS(1298), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 14, + ACTIONS(1296), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -312834,14 +297609,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [285282] = 3, + [271167] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 3, + ACTIONS(1258), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 14, + ACTIONS(1256), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -312856,57 +297631,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [285307] = 3, + [271192] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(12212), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3962), 1, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(12210), 10, + ACTIONS(3968), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3996), 1, sym_file_descriptor, + ACTIONS(3966), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5154), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + STATE(765), 2, + sym_file_redirect, + sym_heredoc_redirect, + ACTIONS(3964), 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, - [285332] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1290), 3, - sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 14, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3960), 5, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [285357] = 3, + [271229] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 2, + ACTIONS(1231), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 14, + ACTIONS(1229), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -312921,13 +297680,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, sym__special_character, - [285381] = 3, + [271253] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4313), 2, + ACTIONS(4495), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 13, + ACTIONS(4493), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -312941,13 +297700,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, + [271276] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2158), 2, + ACTIONS(4487), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 13, + ACTIONS(4485), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -312961,13 +297720,37 @@ 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, + [271299] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5522), 1, + anon_sym_DQUOTE, + ACTIONS(12261), 1, + sym_variable_name, + STATE(6099), 1, + sym_string, + ACTIONS(1183), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + ACTIONS(12259), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(12257), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [271330] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2162), 2, + ACTIONS(3915), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 13, + ACTIONS(3913), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -312981,13 +297764,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, + [271353] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4439), 2, + ACTIONS(4010), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 13, + ACTIONS(4008), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -313001,22 +297784,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - [285473] = 7, + [271376] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6394), 1, + ACTIONS(5522), 1, anon_sym_DQUOTE, - ACTIONS(13408), 1, + ACTIONS(12261), 1, sym_variable_name, - STATE(6445), 1, + STATE(6099), 1, sym_string, - ACTIONS(1183), 2, + ACTIONS(1195), 2, anon_sym_PIPE, anon_sym_RPAREN, - ACTIONS(13406), 2, + ACTIONS(12259), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13404), 8, + ACTIONS(12257), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -313025,4436 +297808,4020 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [285504] = 9, + [271407] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(12331), 1, + ACTIONS(11334), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(11336), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(11338), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13414), 1, + ACTIONS(12267), 1, aux_sym__simple_variable_name_token1, - ACTIONS(13416), 1, + ACTIONS(12269), 1, sym_variable_name, - ACTIONS(13412), 2, - anon_sym_DOLLAR, - anon_sym__, - STATE(6305), 2, + STATE(3292), 1, sym_subscript, + STATE(5977), 1, sym_command_substitution, - ACTIONS(13410), 6, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_AT2, - [285539] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6394), 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, + ACTIONS(12265), 2, + anon_sym_DOLLAR, + anon_sym__, + ACTIONS(12263), 6, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, - anon_sym_DOLLAR, anon_sym_POUND, anon_sym_AT2, - anon_sym__, - [285570] = 10, + [271444] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(12331), 1, + ACTIONS(11334), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(11336), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(11338), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13422), 1, + ACTIONS(12275), 1, aux_sym__simple_variable_name_token1, - ACTIONS(13424), 1, + ACTIONS(12277), 1, sym_variable_name, - STATE(3378), 1, - sym_subscript, - STATE(6305), 1, - sym_command_substitution, - ACTIONS(13420), 2, + ACTIONS(12273), 2, anon_sym_DOLLAR, anon_sym__, - ACTIONS(13418), 6, + STATE(5977), 2, + sym_subscript, + sym_command_substitution, + ACTIONS(12271), 6, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_POUND, anon_sym_AT2, - [285607] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(13430), 1, - anon_sym_DOLLAR, - ACTIONS(13432), 1, - anon_sym_DQUOTE, - ACTIONS(13434), 1, - sym_string_content, - ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, - anon_sym_BQUOTE, - ACTIONS(13442), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(5744), 1, - aux_sym_string_repeat1, - STATE(6063), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [285647] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, - ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, - anon_sym_BQUOTE, - ACTIONS(13442), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(13444), 1, - anon_sym_DOLLAR, - ACTIONS(13446), 1, - anon_sym_DQUOTE, - STATE(5744), 1, - aux_sym_string_repeat1, - STATE(6063), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [285687] = 12, + [271479] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, - ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, - anon_sym_BQUOTE, - ACTIONS(13442), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(13448), 1, - anon_sym_DOLLAR, - ACTIONS(13450), 1, - anon_sym_DQUOTE, - STATE(5622), 1, - aux_sym_string_repeat1, - STATE(6063), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [285727] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, - ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, - anon_sym_BQUOTE, - ACTIONS(13442), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(13452), 1, - anon_sym_DOLLAR, - ACTIONS(13454), 1, - anon_sym_DQUOTE, - STATE(5744), 1, - aux_sym_string_repeat1, - STATE(6063), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [285767] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, - ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, - anon_sym_BQUOTE, - ACTIONS(13442), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(13456), 1, - anon_sym_DOLLAR, - ACTIONS(13458), 1, - anon_sym_DQUOTE, - STATE(5626), 1, - aux_sym_string_repeat1, - STATE(6063), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [285807] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, - ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, - anon_sym_BQUOTE, - ACTIONS(13442), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(13460), 1, - anon_sym_DOLLAR, - ACTIONS(13462), 1, - anon_sym_DQUOTE, - STATE(5641), 1, - aux_sym_string_repeat1, - STATE(6063), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [285847] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, - ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, - anon_sym_BQUOTE, - ACTIONS(13442), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(13464), 1, - anon_sym_DOLLAR, - ACTIONS(13466), 1, - anon_sym_DQUOTE, - STATE(5653), 1, - aux_sym_string_repeat1, - STATE(6063), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [285887] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, - ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, - anon_sym_BQUOTE, - ACTIONS(13442), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(13468), 1, - anon_sym_DOLLAR, - ACTIONS(13470), 1, - anon_sym_DQUOTE, - STATE(5744), 1, - aux_sym_string_repeat1, - STATE(6063), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [285927] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, - ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, - anon_sym_BQUOTE, - ACTIONS(13442), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(13472), 1, - anon_sym_DOLLAR, - ACTIONS(13474), 1, - anon_sym_DQUOTE, - STATE(5628), 1, - aux_sym_string_repeat1, - STATE(6063), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [285967] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, - ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, - anon_sym_BQUOTE, - ACTIONS(13442), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(13476), 1, - anon_sym_DOLLAR, - ACTIONS(13478), 1, - anon_sym_DQUOTE, - STATE(5744), 1, - aux_sym_string_repeat1, - STATE(6063), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [286007] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, - ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, - anon_sym_BQUOTE, - ACTIONS(13442), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(13480), 1, - anon_sym_DOLLAR, - ACTIONS(13482), 1, - anon_sym_DQUOTE, - STATE(5630), 1, - aux_sym_string_repeat1, - STATE(6063), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [286047] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, - ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, - anon_sym_BQUOTE, - ACTIONS(13442), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(13484), 1, - anon_sym_DOLLAR, - ACTIONS(13486), 1, - anon_sym_DQUOTE, - STATE(5744), 1, - aux_sym_string_repeat1, - STATE(6063), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [286087] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, - ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, - anon_sym_BQUOTE, - ACTIONS(13442), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(13488), 1, + ACTIONS(12283), 1, anon_sym_DOLLAR, - ACTIONS(13490), 1, + ACTIONS(12285), 1, anon_sym_DQUOTE, - STATE(5632), 1, - aux_sym_string_repeat1, - STATE(6063), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [286127] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13492), 1, - anon_sym_DOLLAR, - ACTIONS(13494), 1, - anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286167] = 12, + [271519] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13496), 1, + ACTIONS(12297), 1, anon_sym_DOLLAR, - ACTIONS(13498), 1, + ACTIONS(12299), 1, anon_sym_DQUOTE, - STATE(5634), 1, + STATE(5337), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286207] = 12, + [271559] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13500), 1, + ACTIONS(12301), 1, anon_sym_DOLLAR, - ACTIONS(13502), 1, + ACTIONS(12303), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5365), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286247] = 12, + [271599] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13504), 1, + ACTIONS(12305), 1, anon_sym_DOLLAR, - ACTIONS(13506), 1, + ACTIONS(12307), 1, anon_sym_DQUOTE, - STATE(5637), 1, + STATE(5338), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286287] = 12, + [271639] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13508), 1, + ACTIONS(12309), 1, anon_sym_DOLLAR, - ACTIONS(13510), 1, + ACTIONS(12311), 1, anon_sym_DQUOTE, - STATE(5654), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286327] = 12, + [271679] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13512), 1, + ACTIONS(12313), 1, anon_sym_DOLLAR, - ACTIONS(13514), 1, + ACTIONS(12315), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286367] = 12, + [271719] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13516), 1, + ACTIONS(12317), 1, anon_sym_DOLLAR, - ACTIONS(13518), 1, + ACTIONS(12319), 1, anon_sym_DQUOTE, - STATE(5639), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286407] = 12, + [271759] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13520), 1, + ACTIONS(12321), 1, anon_sym_DOLLAR, - ACTIONS(13522), 1, + ACTIONS(12323), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5345), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286447] = 12, + [271799] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13524), 1, + ACTIONS(12325), 1, anon_sym_DOLLAR, - ACTIONS(13526), 1, + ACTIONS(12327), 1, anon_sym_DQUOTE, - STATE(5642), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286487] = 12, + [271839] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13528), 1, + ACTIONS(12329), 1, anon_sym_DOLLAR, - ACTIONS(13530), 1, + ACTIONS(12331), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286527] = 12, + [271879] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13532), 1, + ACTIONS(12333), 1, anon_sym_DOLLAR, - ACTIONS(13534), 1, + ACTIONS(12335), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286567] = 12, + [271919] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13536), 1, + ACTIONS(12337), 1, anon_sym_DOLLAR, - ACTIONS(13538), 1, + ACTIONS(12339), 1, anon_sym_DQUOTE, - STATE(5644), 1, + STATE(5341), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286607] = 12, + [271959] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13540), 1, + ACTIONS(12341), 1, anon_sym_DOLLAR, - ACTIONS(13542), 1, + ACTIONS(12343), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286647] = 12, + [271999] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13544), 1, + ACTIONS(12345), 1, anon_sym_DOLLAR, - ACTIONS(13546), 1, + ACTIONS(12347), 1, anon_sym_DQUOTE, - STATE(5646), 1, + STATE(5344), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286687] = 12, + [272039] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13548), 1, + ACTIONS(12349), 1, anon_sym_DOLLAR, - ACTIONS(13550), 1, + ACTIONS(12351), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5375), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286727] = 12, + [272079] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13552), 1, + ACTIONS(12353), 1, anon_sym_DOLLAR, - ACTIONS(13554), 1, + ACTIONS(12355), 1, anon_sym_DQUOTE, - STATE(5619), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286767] = 12, + [272119] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13556), 1, + ACTIONS(12357), 1, anon_sym_DOLLAR, - ACTIONS(13558), 1, + ACTIONS(12359), 1, anon_sym_DQUOTE, - STATE(5649), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286807] = 12, + [272159] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13560), 1, + ACTIONS(12361), 1, anon_sym_DOLLAR, - ACTIONS(13562), 1, + ACTIONS(12363), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5347), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286847] = 12, + [272199] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13564), 1, + ACTIONS(12365), 1, anon_sym_DOLLAR, - ACTIONS(13566), 1, + ACTIONS(12367), 1, anon_sym_DQUOTE, - STATE(5651), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286887] = 12, + [272239] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13568), 1, + ACTIONS(12369), 1, anon_sym_DOLLAR, - ACTIONS(13570), 1, + ACTIONS(12371), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5349), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286927] = 12, + [272279] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13572), 1, + ACTIONS(12373), 1, anon_sym_DOLLAR, - ACTIONS(13574), 1, + ACTIONS(12375), 1, anon_sym_DQUOTE, - STATE(5655), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286967] = 12, + [272319] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13576), 1, + ACTIONS(12377), 1, anon_sym_DOLLAR, - ACTIONS(13578), 1, + ACTIONS(12379), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5353), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287007] = 12, + [272359] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13580), 1, + ACTIONS(12381), 1, anon_sym_DOLLAR, - ACTIONS(13582), 1, + ACTIONS(12383), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5358), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287047] = 12, + [272399] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13584), 1, + ACTIONS(12385), 1, anon_sym_DOLLAR, - ACTIONS(13586), 1, + ACTIONS(12387), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287087] = 12, + [272439] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13588), 1, + ACTIONS(12389), 1, anon_sym_DOLLAR, - ACTIONS(13590), 1, + ACTIONS(12391), 1, anon_sym_DQUOTE, - STATE(5657), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287127] = 12, + [272479] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13592), 1, + ACTIONS(12393), 1, anon_sym_DOLLAR, - ACTIONS(13594), 1, + ACTIONS(12395), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5355), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287167] = 12, + [272519] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13596), 1, + ACTIONS(12397), 1, anon_sym_DOLLAR, - ACTIONS(13598), 1, + ACTIONS(12399), 1, anon_sym_DQUOTE, - STATE(5671), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287207] = 12, + [272559] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13600), 1, + ACTIONS(12401), 1, anon_sym_DOLLAR, - ACTIONS(13602), 1, + ACTIONS(12403), 1, anon_sym_DQUOTE, - STATE(5661), 1, + STATE(5360), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287247] = 12, + [272599] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13604), 1, + ACTIONS(12405), 1, anon_sym_DOLLAR, - ACTIONS(13606), 1, + ACTIONS(12407), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5367), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287287] = 12, + [272639] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13608), 1, + ACTIONS(12409), 1, anon_sym_DOLLAR, - ACTIONS(13610), 1, + ACTIONS(12411), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287327] = 12, + [272679] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13612), 1, + ACTIONS(12413), 1, anon_sym_DOLLAR, - ACTIONS(13614), 1, + ACTIONS(12415), 1, anon_sym_DQUOTE, - STATE(5668), 1, + STATE(5361), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287367] = 12, + [272719] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13616), 1, + ACTIONS(12417), 1, anon_sym_DOLLAR, - ACTIONS(13618), 1, + ACTIONS(12419), 1, anon_sym_DQUOTE, - STATE(5664), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287407] = 12, + [272759] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13620), 1, + ACTIONS(12421), 1, anon_sym_DOLLAR, - ACTIONS(13622), 1, + ACTIONS(12423), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287447] = 12, + [272799] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13624), 1, + ACTIONS(12425), 1, anon_sym_DOLLAR, - ACTIONS(13626), 1, + ACTIONS(12427), 1, anon_sym_DQUOTE, - STATE(5666), 1, + STATE(5372), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287487] = 12, + [272839] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13628), 1, + ACTIONS(12429), 1, anon_sym_DOLLAR, - ACTIONS(13630), 1, + ACTIONS(12431), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5364), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287527] = 12, + [272879] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13632), 1, + ACTIONS(12433), 1, anon_sym_DOLLAR, - ACTIONS(13634), 1, + ACTIONS(12435), 1, anon_sym_DQUOTE, - STATE(5669), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287567] = 12, + [272919] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13636), 1, + ACTIONS(12437), 1, anon_sym_DOLLAR, - ACTIONS(13638), 1, + ACTIONS(12439), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287607] = 12, + [272959] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13640), 1, + ACTIONS(12441), 1, anon_sym_DOLLAR, - ACTIONS(13642), 1, + ACTIONS(12443), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5370), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287647] = 12, + [272999] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13644), 1, + ACTIONS(12445), 1, anon_sym_DOLLAR, - ACTIONS(13646), 1, + ACTIONS(12447), 1, anon_sym_DQUOTE, - STATE(5672), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287687] = 12, + [273039] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12449), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12452), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, - sym_string_content, - ACTIONS(13436), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, - anon_sym_BQUOTE, - ACTIONS(13442), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(13648), 1, + ACTIONS(12455), 1, anon_sym_DOLLAR, - ACTIONS(13650), 1, + ACTIONS(12458), 1, anon_sym_DQUOTE, - STATE(5744), 1, - aux_sym_string_repeat1, - STATE(6063), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [287727] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13426), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12460), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12463), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12466), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12469), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12472), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13652), 1, - anon_sym_DOLLAR, - ACTIONS(13654), 1, - anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287767] = 12, + [273079] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13656), 1, + ACTIONS(12475), 1, anon_sym_DOLLAR, - ACTIONS(13658), 1, + ACTIONS(12477), 1, anon_sym_DQUOTE, - STATE(5674), 1, + STATE(5376), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287807] = 12, + [273119] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13660), 1, + ACTIONS(12479), 1, anon_sym_DOLLAR, - ACTIONS(13662), 1, + ACTIONS(12481), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287847] = 12, + [273159] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13664), 1, + ACTIONS(12483), 1, anon_sym_DOLLAR, - ACTIONS(13666), 1, + ACTIONS(12485), 1, anon_sym_DQUOTE, - STATE(5686), 1, + STATE(5380), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287887] = 12, + [273199] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13668), 1, + ACTIONS(12487), 1, anon_sym_DOLLAR, - ACTIONS(13670), 1, + ACTIONS(12489), 1, anon_sym_DQUOTE, - STATE(5677), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287927] = 12, + [273239] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13672), 1, + ACTIONS(12491), 1, anon_sym_DOLLAR, - ACTIONS(13674), 1, + ACTIONS(12493), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5388), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287967] = 12, + [273279] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13676), 1, + ACTIONS(12495), 1, anon_sym_DOLLAR, - ACTIONS(13678), 1, + ACTIONS(12497), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5381), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288007] = 12, + [273319] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13680), 1, + ACTIONS(12499), 1, anon_sym_DOLLAR, - ACTIONS(13682), 1, + ACTIONS(12501), 1, anon_sym_DQUOTE, - STATE(5680), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288047] = 12, + [273359] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13684), 1, + ACTIONS(12503), 1, anon_sym_DOLLAR, - ACTIONS(13686), 1, + ACTIONS(12505), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288087] = 12, + [273399] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13688), 1, + ACTIONS(12507), 1, anon_sym_DOLLAR, - ACTIONS(13690), 1, + ACTIONS(12509), 1, anon_sym_DQUOTE, - STATE(5682), 1, + STATE(5352), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288127] = 12, + [273439] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13692), 1, + ACTIONS(12511), 1, anon_sym_DOLLAR, - ACTIONS(13694), 1, + ACTIONS(12513), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5386), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288167] = 12, + [273479] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13696), 1, + ACTIONS(12515), 1, anon_sym_DOLLAR, - ACTIONS(13698), 1, + ACTIONS(12517), 1, anon_sym_DQUOTE, - STATE(5684), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288207] = 12, + [273519] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13700), 1, + ACTIONS(12519), 1, anon_sym_DOLLAR, - ACTIONS(13702), 1, + ACTIONS(12521), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288247] = 12, + [273559] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13704), 1, + ACTIONS(12523), 1, anon_sym_DOLLAR, - ACTIONS(13706), 1, + ACTIONS(12525), 1, anon_sym_DQUOTE, - STATE(5687), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288287] = 12, + [273599] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13708), 1, + ACTIONS(12527), 1, anon_sym_DOLLAR, - ACTIONS(13710), 1, + ACTIONS(12529), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5389), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288327] = 12, + [273639] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13712), 1, + ACTIONS(12531), 1, anon_sym_DOLLAR, - ACTIONS(13714), 1, + ACTIONS(12533), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5384), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288367] = 12, + [273679] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13716), 1, + ACTIONS(12535), 1, anon_sym_DOLLAR, - ACTIONS(13718), 1, + ACTIONS(12537), 1, anon_sym_DQUOTE, - STATE(5690), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288407] = 12, + [273719] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13720), 1, + ACTIONS(12539), 1, anon_sym_DOLLAR, - ACTIONS(13722), 1, + ACTIONS(12541), 1, anon_sym_DQUOTE, - STATE(5759), 1, + STATE(5392), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288447] = 12, + [273759] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13724), 1, + ACTIONS(12543), 1, anon_sym_DOLLAR, - ACTIONS(13726), 1, + ACTIONS(12545), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288487] = 12, + [273799] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13728), 1, + ACTIONS(12547), 1, anon_sym_DOLLAR, - ACTIONS(13730), 1, + ACTIONS(12549), 1, anon_sym_DQUOTE, - STATE(5705), 1, + STATE(5379), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288527] = 12, + [273839] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13732), 1, + ACTIONS(12551), 1, anon_sym_DOLLAR, - ACTIONS(13734), 1, + ACTIONS(12553), 1, anon_sym_DQUOTE, - STATE(5694), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288567] = 12, + [273879] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13736), 1, + ACTIONS(12555), 1, anon_sym_DOLLAR, - ACTIONS(13738), 1, + ACTIONS(12557), 1, anon_sym_DQUOTE, - STATE(5697), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288607] = 12, + [273919] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13740), 1, + ACTIONS(12559), 1, anon_sym_DOLLAR, - ACTIONS(13742), 1, + ACTIONS(12561), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5395), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288647] = 12, + [273959] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13744), 1, + ACTIONS(12563), 1, anon_sym_DOLLAR, - ACTIONS(13746), 1, + ACTIONS(12565), 1, anon_sym_DQUOTE, - STATE(5696), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288687] = 12, + [273999] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13748), 1, + ACTIONS(12567), 1, anon_sym_DOLLAR, - ACTIONS(13750), 1, + ACTIONS(12569), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288727] = 12, + [274039] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13752), 1, + ACTIONS(12571), 1, anon_sym_DOLLAR, - ACTIONS(13754), 1, + ACTIONS(12573), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5402), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288767] = 12, + [274079] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13756), 1, + ACTIONS(12575), 1, anon_sym_DOLLAR, - ACTIONS(13758), 1, + ACTIONS(12577), 1, anon_sym_DQUOTE, - STATE(5699), 1, + STATE(5404), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288807] = 12, + [274119] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13760), 1, + ACTIONS(12579), 1, anon_sym_DOLLAR, - ACTIONS(13762), 1, + ACTIONS(12581), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288847] = 12, + [274159] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13764), 1, + ACTIONS(12583), 1, anon_sym_DOLLAR, - ACTIONS(13766), 1, + ACTIONS(12585), 1, anon_sym_DQUOTE, - STATE(5702), 1, + STATE(5401), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288887] = 12, + [274199] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13768), 1, + ACTIONS(12587), 1, anon_sym_DOLLAR, - ACTIONS(13770), 1, + ACTIONS(12589), 1, anon_sym_DQUOTE, - STATE(5725), 1, + STATE(5398), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288927] = 12, + [274239] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13772), 1, + ACTIONS(12591), 1, anon_sym_DOLLAR, - ACTIONS(13774), 1, + ACTIONS(12593), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288967] = 12, + [274279] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13776), 1, + ACTIONS(12595), 1, anon_sym_DOLLAR, - ACTIONS(13778), 1, + ACTIONS(12597), 1, anon_sym_DQUOTE, - STATE(5620), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289007] = 12, + [274319] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13780), 1, + ACTIONS(12599), 1, anon_sym_DOLLAR, - ACTIONS(13782), 1, + ACTIONS(12601), 1, anon_sym_DQUOTE, - STATE(5706), 1, + STATE(5469), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289047] = 12, + [274359] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13784), 1, + ACTIONS(12603), 1, anon_sym_DOLLAR, - ACTIONS(13786), 1, + ACTIONS(12605), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289087] = 12, + [274399] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13788), 1, + ACTIONS(12607), 1, anon_sym_DOLLAR, - ACTIONS(13790), 1, + ACTIONS(12609), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289127] = 12, + [274439] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13792), 1, + ACTIONS(12611), 1, anon_sym_DOLLAR, - ACTIONS(13794), 1, + ACTIONS(12613), 1, anon_sym_DQUOTE, - STATE(5708), 1, + STATE(5408), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289167] = 12, + [274479] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13796), 1, + ACTIONS(12615), 1, anon_sym_DOLLAR, - ACTIONS(13798), 1, + ACTIONS(12617), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289207] = 12, + [274519] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13800), 1, + ACTIONS(12619), 1, anon_sym_DOLLAR, - ACTIONS(13802), 1, + ACTIONS(12621), 1, anon_sym_DQUOTE, - STATE(5710), 1, + STATE(5462), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289247] = 12, + [274559] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13804), 1, + ACTIONS(12623), 1, anon_sym_DOLLAR, - ACTIONS(13806), 1, + ACTIONS(12625), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5409), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289287] = 12, + [274599] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13808), 1, + ACTIONS(12627), 1, anon_sym_DOLLAR, - ACTIONS(13810), 1, + ACTIONS(12629), 1, anon_sym_DQUOTE, - STATE(5716), 1, + STATE(5436), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289327] = 12, + [274639] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13812), 1, + ACTIONS(12631), 1, anon_sym_DOLLAR, - ACTIONS(13814), 1, + ACTIONS(12633), 1, anon_sym_DQUOTE, - STATE(5713), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289367] = 12, + [274679] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13816), 1, + ACTIONS(12635), 1, anon_sym_DOLLAR, - ACTIONS(13818), 1, + ACTIONS(12637), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289407] = 12, + [274719] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13820), 1, + ACTIONS(12639), 1, anon_sym_DOLLAR, - ACTIONS(13822), 1, + ACTIONS(12641), 1, anon_sym_DQUOTE, - STATE(5715), 1, + STATE(5432), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289447] = 12, + [274759] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13824), 1, + ACTIONS(12643), 1, anon_sym_DOLLAR, - ACTIONS(13826), 1, + ACTIONS(12645), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5412), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289487] = 12, + [274799] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13828), 1, + ACTIONS(12647), 1, anon_sym_DOLLAR, - ACTIONS(13830), 1, + ACTIONS(12649), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289527] = 12, + [274839] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13832), 1, + ACTIONS(12651), 1, anon_sym_DOLLAR, - ACTIONS(13834), 1, + ACTIONS(12653), 1, anon_sym_DQUOTE, - STATE(5719), 1, + STATE(5414), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289567] = 12, + [274879] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13836), 1, + ACTIONS(12655), 1, anon_sym_DOLLAR, - ACTIONS(13838), 1, + ACTIONS(12657), 1, anon_sym_DQUOTE, - STATE(5721), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289607] = 12, + [274919] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13840), 1, + ACTIONS(12659), 1, anon_sym_DOLLAR, - ACTIONS(13842), 1, + ACTIONS(12661), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5416), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289647] = 12, + [274959] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13844), 1, + ACTIONS(12663), 1, anon_sym_DOLLAR, - ACTIONS(13846), 1, + ACTIONS(12665), 1, anon_sym_DQUOTE, - STATE(5723), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289687] = 12, + [274999] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13848), 1, + ACTIONS(12667), 1, anon_sym_DOLLAR, - ACTIONS(13850), 1, + ACTIONS(12669), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5423), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289727] = 12, + [275039] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13852), 1, + ACTIONS(12671), 1, anon_sym_DOLLAR, - ACTIONS(13854), 1, + ACTIONS(12673), 1, anon_sym_DQUOTE, - STATE(5727), 1, + STATE(5425), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289767] = 12, + [275079] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13856), 1, + ACTIONS(12675), 1, anon_sym_DOLLAR, - ACTIONS(13858), 1, + ACTIONS(12677), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5433), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289807] = 12, + [275119] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13860), 1, + ACTIONS(12679), 1, anon_sym_DOLLAR, - ACTIONS(13862), 1, + ACTIONS(12681), 1, anon_sym_DQUOTE, - STATE(5726), 1, + STATE(5399), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289847] = 12, + [275159] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13864), 1, + ACTIONS(12683), 1, anon_sym_DOLLAR, - ACTIONS(13866), 1, + ACTIONS(12685), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5422), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289887] = 12, + [275199] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13868), 1, + ACTIONS(12687), 1, anon_sym_DOLLAR, - ACTIONS(13870), 1, + ACTIONS(12689), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289927] = 12, + [275239] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13872), 1, + ACTIONS(12691), 1, anon_sym_DOLLAR, - ACTIONS(13874), 1, + ACTIONS(12693), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289967] = 12, + [275279] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13876), 1, + ACTIONS(12695), 1, anon_sym_DOLLAR, - ACTIONS(13878), 1, + ACTIONS(12697), 1, anon_sym_DQUOTE, - STATE(5729), 1, + STATE(5429), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290007] = 12, + [275319] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13880), 1, + ACTIONS(12699), 1, anon_sym_DOLLAR, - ACTIONS(13882), 1, + ACTIONS(12701), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290047] = 12, + [275359] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13884), 1, + ACTIONS(12703), 1, anon_sym_DOLLAR, - ACTIONS(13886), 1, + ACTIONS(12705), 1, anon_sym_DQUOTE, - STATE(5731), 1, + STATE(5430), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290087] = 12, + [275399] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13888), 1, + ACTIONS(12707), 1, anon_sym_DOLLAR, - ACTIONS(13890), 1, + ACTIONS(12709), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5428), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290127] = 12, + [275439] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13892), 1, + ACTIONS(12711), 1, anon_sym_DOLLAR, - ACTIONS(13894), 1, + ACTIONS(12713), 1, anon_sym_DQUOTE, - STATE(5733), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290167] = 12, + [275479] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13896), 1, + ACTIONS(12715), 1, anon_sym_DOLLAR, - ACTIONS(13898), 1, + ACTIONS(12717), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290207] = 12, + [275519] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13900), 1, + ACTIONS(12719), 1, anon_sym_DOLLAR, - ACTIONS(13902), 1, + ACTIONS(12721), 1, anon_sym_DQUOTE, - STATE(5735), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290247] = 12, + [275559] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13904), 1, + ACTIONS(12723), 1, anon_sym_DOLLAR, - ACTIONS(13906), 1, + ACTIONS(12725), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5333), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290287] = 12, + [275599] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13908), 1, + ACTIONS(12727), 1, anon_sym_DOLLAR, - ACTIONS(13910), 1, + ACTIONS(12729), 1, anon_sym_DQUOTE, - STATE(5738), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290327] = 12, + [275639] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13912), 1, + ACTIONS(12731), 1, anon_sym_DOLLAR, - ACTIONS(13914), 1, + ACTIONS(12733), 1, anon_sym_DQUOTE, - STATE(5740), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290367] = 12, + [275679] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13916), 1, + ACTIONS(12735), 1, anon_sym_DOLLAR, - ACTIONS(13918), 1, + ACTIONS(12737), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5437), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290407] = 12, + [275719] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13920), 1, + ACTIONS(12739), 1, anon_sym_DOLLAR, - ACTIONS(13922), 1, + ACTIONS(12741), 1, anon_sym_DQUOTE, - STATE(5752), 1, + STATE(5439), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290447] = 12, + [275759] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13924), 1, + ACTIONS(12743), 1, anon_sym_DOLLAR, - ACTIONS(13926), 1, + ACTIONS(12745), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290487] = 12, + [275799] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13928), 1, + ACTIONS(12747), 1, anon_sym_DOLLAR, - ACTIONS(13930), 1, + ACTIONS(12749), 1, anon_sym_DQUOTE, - STATE(5742), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290527] = 12, + [275839] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13932), 1, + ACTIONS(12751), 1, anon_sym_DOLLAR, - ACTIONS(13934), 1, + ACTIONS(12753), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5335), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290567] = 12, + [275879] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13936), 1, + ACTIONS(12755), 1, anon_sym_DOLLAR, - ACTIONS(13938), 1, + ACTIONS(12757), 1, anon_sym_DQUOTE, - STATE(5746), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290607] = 12, + [275919] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13940), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13943), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13946), 1, - anon_sym_DOLLAR, - ACTIONS(13949), 1, - anon_sym_DQUOTE, - ACTIONS(13951), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13954), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13957), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13960), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13963), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - STATE(5744), 1, + ACTIONS(12759), 1, + anon_sym_DOLLAR, + ACTIONS(12761), 1, + anon_sym_DQUOTE, + STATE(5442), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290647] = 12, + [275959] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13966), 1, + ACTIONS(12763), 1, anon_sym_DOLLAR, - ACTIONS(13968), 1, + ACTIONS(12765), 1, anon_sym_DQUOTE, - STATE(5748), 1, + STATE(5443), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290687] = 12, + [275999] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13970), 1, + ACTIONS(12767), 1, anon_sym_DOLLAR, - ACTIONS(13972), 1, + ACTIONS(12769), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290727] = 12, + [276039] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13974), 1, + ACTIONS(12771), 1, anon_sym_DOLLAR, - ACTIONS(13976), 1, + ACTIONS(12773), 1, anon_sym_DQUOTE, - STATE(5750), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290767] = 12, + [276079] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13978), 1, + ACTIONS(12775), 1, anon_sym_DOLLAR, - ACTIONS(13980), 1, + ACTIONS(12777), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5447), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290807] = 12, + [276119] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13982), 1, + ACTIONS(12779), 1, anon_sym_DOLLAR, - ACTIONS(13984), 1, + ACTIONS(12781), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5451), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290847] = 12, + [276159] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13986), 1, + ACTIONS(12783), 1, anon_sym_DOLLAR, - ACTIONS(13988), 1, + ACTIONS(12785), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5329), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290887] = 12, + [276199] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13990), 1, + ACTIONS(12787), 1, anon_sym_DOLLAR, - ACTIONS(13992), 1, + ACTIONS(12789), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290927] = 12, + [276239] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13994), 1, + ACTIONS(12791), 1, anon_sym_DOLLAR, - ACTIONS(13996), 1, + ACTIONS(12793), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5339), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290967] = 12, + [276279] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13998), 1, + ACTIONS(12795), 1, anon_sym_DOLLAR, - ACTIONS(14000), 1, + ACTIONS(12797), 1, anon_sym_DQUOTE, - STATE(5756), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [291007] = 12, + [276319] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14002), 1, + ACTIONS(12799), 1, anon_sym_DOLLAR, - ACTIONS(14004), 1, + ACTIONS(12801), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5459), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [291047] = 12, + [276359] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14006), 1, + ACTIONS(12803), 1, anon_sym_DOLLAR, - ACTIONS(14008), 1, + ACTIONS(12805), 1, anon_sym_DQUOTE, - STATE(5757), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [291087] = 12, + [276399] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14010), 1, + ACTIONS(12807), 1, anon_sym_DOLLAR, - ACTIONS(14012), 1, + ACTIONS(12809), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5449), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [291127] = 12, + [276439] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14014), 1, + ACTIONS(12811), 1, anon_sym_DOLLAR, - ACTIONS(14016), 1, + ACTIONS(12813), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5466), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [291167] = 12, + [276479] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14018), 1, + ACTIONS(12815), 1, anon_sym_DOLLAR, - ACTIONS(14020), 1, + ACTIONS(12817), 1, anon_sym_DQUOTE, - STATE(5761), 1, + STATE(5391), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [291207] = 12, + [276519] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14022), 1, + ACTIONS(12819), 1, anon_sym_DOLLAR, - ACTIONS(14024), 1, + ACTIONS(12821), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5461), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [291247] = 12, + [276559] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14026), 1, + ACTIONS(12823), 1, anon_sym_DOLLAR, - ACTIONS(14028), 1, + ACTIONS(12825), 1, anon_sym_DQUOTE, - STATE(5764), 1, + STATE(5467), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [291287] = 12, + [276599] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14030), 1, + ACTIONS(12827), 1, anon_sym_DOLLAR, - ACTIONS(14032), 1, + ACTIONS(12829), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5334), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [291327] = 12, + [276639] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14034), 1, + ACTIONS(12831), 1, anon_sym_DOLLAR, - ACTIONS(14036), 1, + ACTIONS(12833), 1, anon_sym_DQUOTE, - STATE(5771), 1, + STATE(5465), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [291367] = 12, + [276679] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14038), 1, + ACTIONS(12835), 1, anon_sym_DOLLAR, - ACTIONS(14040), 1, + ACTIONS(12837), 1, anon_sym_DQUOTE, - STATE(5765), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [291407] = 12, + [276719] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14042), 1, + ACTIONS(12839), 1, anon_sym_DOLLAR, - ACTIONS(14044), 1, + ACTIONS(12841), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5468), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [291447] = 12, + [276759] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14046), 1, + ACTIONS(12843), 1, anon_sym_DOLLAR, - ACTIONS(14048), 1, + ACTIONS(12845), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [291487] = 12, + [276799] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14050), 1, + ACTIONS(12847), 1, anon_sym_DOLLAR, - ACTIONS(14052), 1, + ACTIONS(12849), 1, anon_sym_DQUOTE, - STATE(5767), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [291527] = 12, + [276839] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14054), 1, + ACTIONS(12851), 1, anon_sym_DOLLAR, - ACTIONS(14056), 1, + ACTIONS(12853), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5464), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [291567] = 12, + [276879] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14058), 1, + ACTIONS(12855), 1, anon_sym_DOLLAR, - ACTIONS(14060), 1, + ACTIONS(12857), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [291607] = 12, + [276919] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14062), 1, + ACTIONS(12859), 1, anon_sym_DOLLAR, - ACTIONS(14064), 1, + ACTIONS(12861), 1, anon_sym_DQUOTE, - STATE(5770), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [291647] = 12, + [276959] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14066), 1, + ACTIONS(12863), 1, anon_sym_DOLLAR, - ACTIONS(14068), 1, + ACTIONS(12865), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [291687] = 12, + [276999] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14070), 1, + ACTIONS(12867), 1, anon_sym_DOLLAR, - ACTIONS(14072), 1, + ACTIONS(12869), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [291727] = 12, + [277039] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14074), 1, + ACTIONS(12871), 1, anon_sym_DOLLAR, - ACTIONS(14076), 1, + ACTIONS(12873), 1, anon_sym_DQUOTE, - STATE(5660), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [291767] = 12, + [277079] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(12279), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(12281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(12287), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(12289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(12291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(12293), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(12295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14078), 1, + ACTIONS(12875), 1, anon_sym_DOLLAR, - ACTIONS(14080), 1, + ACTIONS(12877), 1, anon_sym_DQUOTE, - STATE(5678), 1, + STATE(5368), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(5758), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [291807] = 6, + [277119] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13502), 1, + ACTIONS(12797), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -317463,19 +301830,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [291834] = 6, + [277146] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13494), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(12887), 1, + anon_sym_DQUOTE, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -317484,40 +301851,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [291861] = 6, + [277173] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14090), 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__, - [291888] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9622), 1, + ACTIONS(12889), 1, anon_sym_DQUOTE, - ACTIONS(9626), 1, - sym_variable_name, - STATE(5125), 1, - sym_string, - ACTIONS(9624), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9620), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -317526,41 +301872,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [291915] = 7, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14094), 1, - anon_sym_LT_LT, - ACTIONS(14100), 1, - anon_sym_LT_LT_DASH, - ACTIONS(14102), 1, - anon_sym_LT_LT_LT, - ACTIONS(14098), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(14096), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(14092), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [291944] = 6, + [277200] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13622), 1, + ACTIONS(12359), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -317569,40 +301893,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [291971] = 6, + [277227] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14104), 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__, - [291998] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3562), 1, + ACTIONS(12891), 1, anon_sym_DQUOTE, - ACTIONS(8294), 1, - sym_variable_name, - STATE(4874), 1, - sym_string, - ACTIONS(8292), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8290), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -317611,19 +301914,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292025] = 6, + [277254] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14106), 1, + ACTIONS(12893), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -317632,19 +301935,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292052] = 6, + [277281] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13630), 1, + ACTIONS(12411), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -317653,19 +301956,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292079] = 6, + [277308] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13454), 1, + ACTIONS(7558), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, + ACTIONS(7562), 1, sym_variable_name, - ACTIONS(14086), 2, + STATE(4897), 1, + sym_string, + ACTIONS(7560), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(7556), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -317674,41 +301977,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, + [277335] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14116), 1, + ACTIONS(12895), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -317717,19 +301998,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292162] = 6, + [277362] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13638), 1, + ACTIONS(3766), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, + ACTIONS(3770), 1, sym_variable_name, - ACTIONS(14086), 2, + STATE(2132), 1, + sym_string, + ACTIONS(3768), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(3764), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -317738,19 +302019,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292189] = 6, + [277389] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3642), 1, + ACTIONS(4129), 1, anon_sym_DQUOTE, - ACTIONS(3980), 1, + ACTIONS(4133), 1, sym_variable_name, - STATE(1912), 1, + STATE(2249), 1, sym_string, - ACTIONS(3978), 2, + ACTIONS(4131), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3976), 8, + ACTIONS(4127), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -317759,19 +302040,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292216] = 6, + [277416] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13642), 1, + ACTIONS(12335), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -317780,40 +302061,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292243] = 6, + [277443] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13606), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 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__, - [292270] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13650), 1, + ACTIONS(12897), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, - sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -317822,19 +302082,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292297] = 6, + [277470] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, - sym_variable_name, - ACTIONS(14118), 1, + ACTIONS(6677), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(6681), 1, + sym_variable_name, + STATE(4127), 1, + sym_string, + ACTIONS(6679), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(6675), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -317843,19 +302103,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292324] = 6, + [277497] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3014), 1, + ACTIONS(2198), 1, anon_sym_DQUOTE, - ACTIONS(3817), 1, + ACTIONS(2202), 1, sym_variable_name, - STATE(1777), 1, + STATE(1014), 1, sym_string, - ACTIONS(3815), 2, + ACTIONS(2200), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3813), 8, + ACTIONS(2196), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -317864,19 +302124,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292351] = 6, + [277524] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(12501), 1, + anon_sym_DQUOTE, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14120), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -317885,19 +302145,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292378] = 6, + [277551] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(12789), 1, + anon_sym_DQUOTE, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14122), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -317906,19 +302166,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292405] = 6, + [277578] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14124), 1, + ACTIONS(12899), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -317927,419 +302187,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292432] = 7, + [277605] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(14094), 1, + ACTIONS(12903), 1, anon_sym_LT_LT, - ACTIONS(14100), 1, + ACTIONS(12909), 1, anon_sym_LT_LT_DASH, - ACTIONS(14132), 1, + ACTIONS(12911), 1, anon_sym_LT_LT_LT, - ACTIONS(14130), 2, + ACTIONS(12907), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14128), 3, + ACTIONS(12905), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14126), 5, + ACTIONS(12901), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [292461] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13654), 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__, - [292488] = 6, - 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(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__, - [292515] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, - sym_variable_name, - ACTIONS(14134), 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__, - [292542] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6394), 1, - anon_sym_DQUOTE, - ACTIONS(13408), 1, - sym_variable_name, - STATE(6445), 1, - sym_string, - 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, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - [292569] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13662), 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__, - [292596] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, - sym_variable_name, - ACTIONS(14136), 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__, - [292623] = 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(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__, - [292650] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, - sym_variable_name, - ACTIONS(14138), 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__, - [292677] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13514), 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__, - [292704] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5194), 1, - anon_sym_DQUOTE, - ACTIONS(5198), 1, - sym_variable_name, - STATE(2456), 1, - sym_string, - ACTIONS(5196), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(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__, - [292731] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13446), 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__, - [292758] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13674), 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__, - [292785] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, - sym_variable_name, - ACTIONS(14140), 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__, - [292812] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, - sym_variable_name, - ACTIONS(14142), 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__, - [292839] = 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(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__, - [292866] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13686), 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__, - [292893] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, - sym_variable_name, - ACTIONS(14144), 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__, - [292920] = 6, + [277634] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9610), 1, + ACTIONS(8649), 1, anon_sym_DQUOTE, - ACTIONS(9614), 1, + ACTIONS(8653), 1, sym_variable_name, - STATE(5321), 1, + STATE(4988), 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__, - [292947] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13522), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, - sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(8651), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(8647), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318348,19 +302230,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292974] = 6, + [277661] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13694), 1, + ACTIONS(12545), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318369,19 +302251,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293001] = 6, + [277688] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14146), 1, + ACTIONS(12913), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318390,19 +302272,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293028] = 6, + [277715] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14148), 1, + ACTIONS(12915), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318411,40 +302293,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293055] = 6, + [277742] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4759), 1, + ACTIONS(12919), 1, anon_sym_DQUOTE, - ACTIONS(4763), 1, + ACTIONS(12923), 1, sym_variable_name, - STATE(2498), 1, + STATE(6369), 1, sym_string, - ACTIONS(4761), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - 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__, - [293082] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13530), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, - sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(12921), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12917), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318453,40 +302314,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293109] = 6, + [277769] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13702), 1, + ACTIONS(12311), 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__, - [293136] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14150), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318495,40 +302335,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293163] = 6, - ACTIONS(3), 1, + [277796] = 7, + ACTIONS(71), 1, sym_comment, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, - sym_variable_name, - ACTIONS(14152), 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__, - [293190] = 6, + ACTIONS(12927), 1, + anon_sym_LT_LT, + ACTIONS(12933), 1, + anon_sym_LT_LT_DASH, + ACTIONS(12935), 1, + anon_sym_LT_LT_LT, + ACTIONS(12931), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(12929), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(12925), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [277825] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13710), 1, + ACTIONS(12581), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318537,61 +302378,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293217] = 6, + [277852] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8452), 1, + ACTIONS(3682), 1, anon_sym_DQUOTE, - ACTIONS(8456), 1, + ACTIONS(3686), 1, sym_variable_name, - STATE(5176), 1, + STATE(2037), 1, sym_string, - ACTIONS(8454), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(8450), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - [293244] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13714), 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__, - [293271] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13534), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, - sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(3684), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(3680), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318600,19 +302399,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293298] = 6, + [277879] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14154), 1, + ACTIONS(12937), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318621,19 +302420,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293325] = 6, + [277906] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1458), 1, + ACTIONS(4996), 1, anon_sym_DQUOTE, - ACTIONS(2263), 1, + ACTIONS(10798), 1, sym_variable_name, - STATE(1246), 1, + STATE(5311), 1, sym_string, - ACTIONS(2261), 2, + ACTIONS(10796), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2259), 8, + ACTIONS(10794), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318642,19 +302441,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293352] = 6, + [277933] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7591), 1, + ACTIONS(12877), 1, anon_sym_DQUOTE, - ACTIONS(7595), 1, + ACTIONS(12881), 1, + sym_string_content, + ACTIONS(12885), 1, sym_variable_name, - STATE(4267), 1, - sym_string, - ACTIONS(7593), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7589), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318663,19 +302462,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293379] = 6, + [277960] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13470), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(12939), 1, + anon_sym_DQUOTE, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318684,19 +302483,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293406] = 6, + [277987] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(12517), 1, + anon_sym_DQUOTE, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14156), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318705,19 +302504,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293433] = 6, + [278014] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13726), 1, + ACTIONS(1684), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, + ACTIONS(1688), 1, sym_variable_name, - ACTIONS(14086), 2, + STATE(795), 1, + sym_string, + ACTIONS(1686), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(1682), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318726,19 +302525,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293460] = 6, + [278041] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(12565), 1, + anon_sym_DQUOTE, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14158), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318747,19 +302546,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293487] = 6, + [278068] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1187), 1, - anon_sym_DQUOTE, - ACTIONS(1193), 1, + ACTIONS(12881), 1, + sym_string_content, + ACTIONS(12885), 1, sym_variable_name, - STATE(470), 1, - sym_string, - ACTIONS(1189), 2, + ACTIONS(12941), 1, + anon_sym_DQUOTE, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1185), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318768,19 +302567,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293514] = 6, + [278095] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(12733), 1, + anon_sym_DQUOTE, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14160), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318789,19 +302588,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293541] = 6, + [278122] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14162), 1, + ACTIONS(12943), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318810,19 +302609,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293568] = 6, + [278149] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9998), 1, + ACTIONS(12319), 1, anon_sym_DQUOTE, - ACTIONS(10002), 1, + ACTIONS(12881), 1, + sym_string_content, + ACTIONS(12885), 1, sym_variable_name, - STATE(5275), 1, - sym_string, - ACTIONS(10000), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9996), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318831,19 +302630,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293595] = 6, + [278176] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14164), 1, + ACTIONS(12945), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318852,19 +302651,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293622] = 6, + [278203] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12903), 1, + anon_sym_LT_LT, + ACTIONS(12909), 1, + anon_sym_LT_LT_DASH, + ACTIONS(12953), 1, + anon_sym_LT_LT_LT, + ACTIONS(12951), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(12949), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(12947), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [278232] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2037), 1, + ACTIONS(3277), 1, anon_sym_DQUOTE, - ACTIONS(4145), 1, + ACTIONS(3281), 1, sym_variable_name, - STATE(1694), 1, + STATE(1412), 1, sym_string, - ACTIONS(4143), 2, + ACTIONS(3279), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4141), 8, + ACTIONS(3275), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318873,19 +302694,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293649] = 6, + [278259] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3620), 1, + ACTIONS(8693), 1, anon_sym_DQUOTE, - ACTIONS(3624), 1, + ACTIONS(8697), 1, sym_variable_name, - STATE(1625), 1, + STATE(5174), 1, sym_string, - ACTIONS(3622), 2, + ACTIONS(8695), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3618), 8, + ACTIONS(8691), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318894,19 +302715,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293676] = 6, + [278286] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13542), 1, + ACTIONS(2649), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(3718), 1, + sym_variable_name, + STATE(1911), 1, + sym_string, + ACTIONS(3716), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(3714), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [278313] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(12955), 1, + anon_sym_DQUOTE, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318915,19 +302757,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293703] = 6, + [278340] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13742), 1, + ACTIONS(12869), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318936,19 +302778,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293730] = 6, + [278367] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14166), 1, + ACTIONS(12957), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318957,19 +302799,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293757] = 6, + [278394] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14170), 1, + ACTIONS(4651), 1, anon_sym_DQUOTE, - ACTIONS(14174), 1, + ACTIONS(4655), 1, sym_variable_name, - STATE(6671), 1, + STATE(2861), 1, sym_string, - ACTIONS(14172), 2, + ACTIONS(4653), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14168), 8, + ACTIONS(4649), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318978,19 +302820,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293784] = 6, + [278421] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13750), 1, + ACTIONS(12729), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318999,19 +302841,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293811] = 6, + [278448] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(12331), 1, + anon_sym_DQUOTE, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14176), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319020,19 +302862,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293838] = 6, + [278475] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14178), 1, + ACTIONS(12959), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319041,19 +302883,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293865] = 6, + [278502] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5629), 1, - anon_sym_DQUOTE, - ACTIONS(5713), 1, + ACTIONS(12881), 1, + sym_string_content, + ACTIONS(12885), 1, sym_variable_name, - STATE(3346), 1, - sym_string, - ACTIONS(5711), 2, + ACTIONS(12961), 1, + anon_sym_DQUOTE, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(5709), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319062,19 +302904,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293892] = 6, + [278529] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2099), 1, + ACTIONS(7812), 1, anon_sym_DQUOTE, - ACTIONS(2103), 1, + ACTIONS(7816), 1, sym_variable_name, - STATE(1087), 1, + STATE(5020), 1, sym_string, - ACTIONS(2101), 2, + ACTIONS(7814), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2097), 8, + ACTIONS(7810), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319083,19 +302925,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293919] = 6, + [278556] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13754), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(12963), 1, + anon_sym_DQUOTE, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319104,19 +302946,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293946] = 6, + [278583] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(12343), 1, + anon_sym_DQUOTE, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14180), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319125,41 +302967,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293973] = 7, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14094), 1, - anon_sym_LT_LT, - ACTIONS(14100), 1, - anon_sym_LT_LT_DASH, - ACTIONS(14188), 1, - anon_sym_LT_LT_LT, - ACTIONS(14186), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(14184), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(14182), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [294002] = 6, + [278610] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13762), 1, + ACTIONS(3642), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, + ACTIONS(6673), 1, sym_variable_name, - ACTIONS(14086), 2, + STATE(4172), 1, + sym_string, + ACTIONS(6671), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(6669), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319168,19 +302988,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294029] = 6, + [278637] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13550), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(12965), 1, + anon_sym_DQUOTE, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319189,19 +303009,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294056] = 6, + [278664] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, - sym_variable_name, - ACTIONS(14190), 1, + ACTIONS(2553), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(2557), 1, + sym_variable_name, + STATE(1066), 1, + sym_string, + ACTIONS(2555), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(2551), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319210,19 +303030,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294083] = 6, + [278691] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5771), 1, + ACTIONS(12355), 1, anon_sym_DQUOTE, - ACTIONS(11749), 1, + ACTIONS(12881), 1, + sym_string_content, + ACTIONS(12885), 1, sym_variable_name, - STATE(5555), 1, - sym_string, - ACTIONS(11747), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11745), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319231,19 +303051,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294110] = 6, + [278718] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7484), 1, + ACTIONS(4594), 1, anon_sym_DQUOTE, - ACTIONS(7488), 1, + ACTIONS(4598), 1, sym_variable_name, - STATE(4380), 1, + STATE(2436), 1, sym_string, - ACTIONS(7486), 2, + ACTIONS(4596), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7482), 8, + ACTIONS(4592), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319252,19 +303072,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294137] = 6, + [278745] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13578), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(12967), 1, + anon_sym_DQUOTE, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319273,19 +303093,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294164] = 6, + [278772] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13678), 1, + ACTIONS(12773), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319294,19 +303114,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294191] = 6, + [278799] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13774), 1, + ACTIONS(1595), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, + ACTIONS(3119), 1, sym_variable_name, - ACTIONS(14086), 2, + STATE(1079), 1, + sym_string, + ACTIONS(3117), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(3115), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319315,19 +303135,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294218] = 6, + [278826] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14192), 1, + ACTIONS(12969), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319336,19 +303156,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294245] = 6, + [278853] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(12367), 1, + anon_sym_DQUOTE, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14194), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319357,19 +303177,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294272] = 6, + [278880] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14196), 1, + ACTIONS(12971), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319378,19 +303198,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294299] = 6, + [278907] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1678), 1, + ACTIONS(12387), 1, anon_sym_DQUOTE, - ACTIONS(1682), 1, + ACTIONS(12881), 1, + sym_string_content, + ACTIONS(12885), 1, sym_variable_name, - STATE(857), 1, - sym_string, - ACTIONS(1680), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1676), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319399,19 +303219,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294326] = 6, + [278934] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3950), 1, - anon_sym_DQUOTE, - ACTIONS(7601), 1, + ACTIONS(12881), 1, + sym_string_content, + ACTIONS(12885), 1, sym_variable_name, - STATE(4349), 1, - sym_string, - ACTIONS(7599), 2, + ACTIONS(12973), 1, + anon_sym_DQUOTE, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7597), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319420,19 +303240,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294353] = 6, + [278961] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13786), 1, + ACTIONS(2437), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, + ACTIONS(3125), 1, sym_variable_name, - ACTIONS(14086), 2, + STATE(1335), 1, + sym_string, + ACTIONS(3123), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(3121), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319441,19 +303261,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294380] = 6, + [278988] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13432), 1, + ACTIONS(2029), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, + ACTIONS(2033), 1, sym_variable_name, - ACTIONS(14086), 2, + STATE(993), 1, + sym_string, + ACTIONS(2031), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(2027), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319462,19 +303282,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294407] = 6, + [279015] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13790), 1, + ACTIONS(12161), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12165), 1, sym_variable_name, - ACTIONS(14086), 2, + STATE(5813), 1, + sym_string, + ACTIONS(12163), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12159), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319483,19 +303303,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294434] = 6, + [279042] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(12375), 1, + anon_sym_DQUOTE, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14198), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319504,19 +303324,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294461] = 6, + [279069] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14200), 1, + ACTIONS(12975), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319525,19 +303345,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294488] = 6, + [279096] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5381), 1, + ACTIONS(1378), 1, anon_sym_DQUOTE, - ACTIONS(5385), 1, + ACTIONS(1903), 1, sym_variable_name, - STATE(2864), 1, + STATE(813), 1, sym_string, - ACTIONS(5383), 2, + ACTIONS(1901), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(5379), 8, + ACTIONS(1899), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319546,19 +303366,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294515] = 6, + [279123] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, - sym_variable_name, - ACTIONS(14202), 1, + ACTIONS(3307), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(6481), 1, + sym_variable_name, + STATE(4065), 1, + sym_string, + ACTIONS(6479), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(6477), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319567,19 +303387,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294542] = 6, + [279150] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13798), 1, + ACTIONS(12553), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319588,19 +303408,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294569] = 6, + [279177] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(12391), 1, + anon_sym_DQUOTE, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14204), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319609,19 +303429,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294596] = 6, + [279204] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10006), 1, - anon_sym_DQUOTE, - ACTIONS(10010), 1, + ACTIONS(12881), 1, + sym_string_content, + ACTIONS(12885), 1, sym_variable_name, - STATE(5422), 1, - sym_string, - ACTIONS(10008), 2, + ACTIONS(12977), 1, + anon_sym_DQUOTE, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(10004), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319630,19 +303450,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294623] = 6, + [279231] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13806), 1, + ACTIONS(2055), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, + ACTIONS(2929), 1, sym_variable_name, - ACTIONS(14086), 2, + STATE(1415), 1, + sym_string, + ACTIONS(2927), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(2925), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319651,19 +303471,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294650] = 6, + [279258] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13562), 1, + ACTIONS(12399), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319672,19 +303492,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294677] = 6, + [279285] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5486), 1, + ACTIONS(12861), 1, anon_sym_DQUOTE, - ACTIONS(5490), 1, + ACTIONS(12881), 1, + sym_string_content, + ACTIONS(12885), 1, sym_variable_name, - STATE(2462), 1, - sym_string, - ACTIONS(5488), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(5484), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319693,19 +303513,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294704] = 6, + [279312] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14206), 1, + ACTIONS(12979), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319714,19 +303534,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294731] = 6, + [279339] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13478), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(12981), 1, + anon_sym_DQUOTE, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319735,19 +303555,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294758] = 6, + [279366] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5174), 1, + ACTIONS(3053), 1, anon_sym_DQUOTE, - ACTIONS(5178), 1, + ACTIONS(6343), 1, sym_variable_name, - STATE(2581), 1, + STATE(4150), 1, sym_string, - ACTIONS(5176), 2, + ACTIONS(6341), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(5172), 8, + ACTIONS(6339), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319756,19 +303576,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294785] = 6, + [279393] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13818), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(12983), 1, + anon_sym_DQUOTE, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319777,19 +303597,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294812] = 6, + [279420] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14208), 1, + ACTIONS(12985), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319798,19 +303618,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294839] = 6, + [279447] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(12447), 1, + anon_sym_DQUOTE, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14210), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319819,19 +303639,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294866] = 6, + [279474] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9376), 1, + ACTIONS(8781), 1, anon_sym_DQUOTE, - ACTIONS(9380), 1, + ACTIONS(8785), 1, sym_variable_name, - STATE(5347), 1, + STATE(4964), 1, sym_string, - ACTIONS(9378), 2, + ACTIONS(8783), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9374), 8, + ACTIONS(8779), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319840,19 +303660,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294893] = 6, + [279501] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14212), 1, + ACTIONS(12987), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319861,19 +303681,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294920] = 6, + [279528] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13830), 1, + ACTIONS(2573), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(6062), 1, + sym_variable_name, + STATE(4097), 1, + sym_string, + ACTIONS(6060), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(6058), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [279555] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12525), 1, + anon_sym_DQUOTE, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319882,19 +303723,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294947] = 6, + [279582] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13826), 1, + ACTIONS(12439), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319903,19 +303744,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294974] = 6, + [279609] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14214), 1, + ACTIONS(12989), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319924,19 +303765,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295001] = 6, + [279636] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13570), 1, + ACTIONS(1201), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, + ACTIONS(1205), 1, sym_variable_name, - ACTIONS(14086), 2, + STATE(473), 1, + sym_string, + ACTIONS(1203), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(1199), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319945,19 +303786,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295028] = 6, + [279663] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2781), 1, + ACTIONS(1907), 1, anon_sym_DQUOTE, - ACTIONS(2785), 1, + ACTIONS(1911), 1, sym_variable_name, - STATE(1143), 1, + STATE(822), 1, sym_string, - ACTIONS(2783), 2, + ACTIONS(1909), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2779), 8, + ACTIONS(1905), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319966,19 +303807,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295055] = 6, + [279690] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(12537), 1, + anon_sym_DQUOTE, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14216), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319987,19 +303828,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295082] = 6, + [279717] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2217), 1, + ACTIONS(12327), 1, anon_sym_DQUOTE, - ACTIONS(2221), 1, + ACTIONS(12881), 1, + sym_string_content, + ACTIONS(12885), 1, sym_variable_name, - STATE(983), 1, - sym_string, - ACTIONS(2219), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2215), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320008,19 +303849,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295109] = 6, + [279744] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14218), 1, + ACTIONS(12991), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320029,19 +303870,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295136] = 6, + [279771] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13842), 1, + ACTIONS(6359), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(6363), 1, + sym_variable_name, + STATE(4133), 1, + sym_string, + ACTIONS(6361), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(6357), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [279798] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12315), 1, + anon_sym_DQUOTE, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320050,19 +303912,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295163] = 6, + [279825] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14220), 1, + ACTIONS(12993), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320071,19 +303933,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295190] = 6, + [279852] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12997), 1, + anon_sym_LT_LT, + ACTIONS(13003), 1, + anon_sym_LT_LT_DASH, + ACTIONS(13005), 1, + anon_sym_LT_LT_LT, + ACTIONS(13001), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(12999), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(12995), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [279881] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(12609), 1, + anon_sym_DQUOTE, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, + sym_variable_name, + ACTIONS(12883), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(12879), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [279908] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12881), 1, + sym_string_content, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14222), 1, + ACTIONS(13007), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320092,19 +303997,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295217] = 6, + [279935] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5351), 1, + ACTIONS(3253), 1, anon_sym_DQUOTE, - ACTIONS(5355), 1, + ACTIONS(7013), 1, sym_variable_name, - STATE(2736), 1, + STATE(4577), 1, sym_string, - ACTIONS(5353), 2, + ACTIONS(7011), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(5349), 8, + ACTIONS(7009), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320113,19 +304018,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295244] = 6, + [279962] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1595), 1, + ACTIONS(3129), 1, anon_sym_DQUOTE, - ACTIONS(3421), 1, + ACTIONS(3133), 1, sym_variable_name, - STATE(1202), 1, + STATE(1259), 1, sym_string, - ACTIONS(3419), 2, + ACTIONS(3131), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3417), 8, + ACTIONS(3127), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320134,19 +304039,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295271] = 6, + [279989] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13850), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(13009), 1, + anon_sym_DQUOTE, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320155,41 +304060,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, + [280016] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13858), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(13011), 1, + anon_sym_DQUOTE, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320198,19 +304081,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295354] = 6, + [280043] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14236), 1, + ACTIONS(13013), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320219,19 +304102,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295381] = 6, + [280070] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2293), 1, + ACTIONS(12637), 1, anon_sym_DQUOTE, - ACTIONS(3427), 1, + ACTIONS(12881), 1, + sym_string_content, + ACTIONS(12885), 1, sym_variable_name, - STATE(1404), 1, - sym_string, - ACTIONS(3425), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3423), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320240,19 +304123,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295408] = 6, + [280097] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13866), 1, + ACTIONS(12713), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320261,19 +304144,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295435] = 6, + [280124] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, - sym_variable_name, - ACTIONS(14238), 1, + ACTIONS(1765), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(3439), 1, + sym_variable_name, + STATE(1297), 1, + sym_string, + ACTIONS(3437), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(3435), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320282,19 +304165,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295462] = 6, + [280151] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13870), 1, + ACTIONS(12419), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320303,19 +304186,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295489] = 6, + [280178] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13874), 1, + ACTIONS(12649), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320324,19 +304207,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295516] = 6, + [280205] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(1187), 1, + anon_sym_DQUOTE, + ACTIONS(1193), 1, + sym_variable_name, + STATE(459), 1, + sym_string, + ACTIONS(1189), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1185), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [280232] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14240), 1, + ACTIONS(13015), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320345,19 +304249,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295543] = 6, + [280259] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, + ACTIONS(2607), 1, anon_sym_DQUOTE, - ACTIONS(1767), 1, + ACTIONS(3445), 1, sym_variable_name, - STATE(890), 1, + STATE(1514), 1, sym_string, - ACTIONS(1765), 2, + ACTIONS(3443), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1763), 8, + ACTIONS(3441), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320366,19 +304270,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295570] = 6, + [280286] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, - sym_variable_name, - ACTIONS(14242), 1, + ACTIONS(260), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(4383), 1, + sym_variable_name, + STATE(2069), 1, + sym_string, + ACTIONS(4381), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(4379), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320387,19 +304291,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295597] = 6, + [280313] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(12657), 1, + anon_sym_DQUOTE, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14244), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320408,19 +304312,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295624] = 6, + [280340] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13882), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(13017), 1, + anon_sym_DQUOTE, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320429,19 +304333,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295651] = 6, + [280367] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14246), 1, + ACTIONS(13019), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320450,19 +304354,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295678] = 6, + [280394] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2805), 1, + ACTIONS(1418), 1, anon_sym_DQUOTE, - ACTIONS(3433), 1, + ACTIONS(2025), 1, sym_variable_name, - STATE(1473), 1, + STATE(1004), 1, sym_string, - ACTIONS(3431), 2, + ACTIONS(2023), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3429), 8, + ACTIONS(2021), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320471,19 +304375,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295705] = 6, + [280421] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13890), 1, + ACTIONS(12489), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320492,19 +304396,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295732] = 6, + [280448] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14024), 1, + ACTIONS(12665), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320513,19 +304417,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295759] = 6, + [280475] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(2794), 1, + anon_sym_DQUOTE, + ACTIONS(3572), 1, + sym_variable_name, + STATE(1763), 1, + sym_string, + ACTIONS(3570), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(3568), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [280502] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13023), 1, + anon_sym_LT_LT, + ACTIONS(13029), 1, + anon_sym_LT_LT_DASH, + ACTIONS(13031), 1, + anon_sym_LT_LT_LT, + ACTIONS(13027), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(13025), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(13021), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [280531] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, + sym_variable_name, + ACTIONS(13033), 1, + anon_sym_DQUOTE, + ACTIONS(12883), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(12879), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [280558] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12881), 1, + sym_string_content, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14248), 1, + ACTIONS(13035), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320534,19 +304502,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295786] = 6, + [280585] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3127), 1, + ACTIONS(2401), 1, anon_sym_DQUOTE, - ACTIONS(7190), 1, + ACTIONS(3518), 1, sym_variable_name, - STATE(4397), 1, + STATE(1623), 1, sym_string, - ACTIONS(7188), 2, + ACTIONS(3516), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7186), 8, + ACTIONS(3514), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320555,19 +304523,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295813] = 6, + [280612] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13898), 1, + ACTIONS(12689), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320576,19 +304544,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295840] = 6, + [280639] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13582), 1, + ACTIONS(2087), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, + ACTIONS(3692), 1, sym_variable_name, - ACTIONS(14086), 2, + STATE(1355), 1, + sym_string, + ACTIONS(3690), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(3688), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320597,19 +304565,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295867] = 6, + [280666] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14250), 1, + ACTIONS(13037), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320618,19 +304586,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295894] = 6, + [280693] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2341), 1, + ACTIONS(3341), 1, anon_sym_DQUOTE, - ACTIONS(2793), 1, + ACTIONS(6619), 1, sym_variable_name, - STATE(1340), 1, + STATE(4342), 1, sym_string, - ACTIONS(2791), 2, + ACTIONS(6617), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2789), 8, + ACTIONS(6615), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320639,19 +304607,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295921] = 6, + [280720] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13906), 1, + ACTIONS(12717), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320660,19 +304628,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295948] = 6, + [280747] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(12557), 1, + anon_sym_DQUOTE, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14252), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320681,19 +304649,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295975] = 6, + [280774] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2932), 1, + ACTIONS(12505), 1, anon_sym_DQUOTE, - ACTIONS(6820), 1, + ACTIONS(12881), 1, + sym_string_content, + ACTIONS(12885), 1, sym_variable_name, - STATE(4240), 1, - sym_string, - ACTIONS(6818), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(6816), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320702,40 +304670,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296002] = 6, + [280801] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4247), 1, - anon_sym_DQUOTE, - ACTIONS(4251), 1, + ACTIONS(12881), 1, + sym_string_content, + ACTIONS(12885), 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(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__, - [296029] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13338), 1, + ACTIONS(13039), 1, anon_sym_DQUOTE, - ACTIONS(13342), 1, - sym_variable_name, - STATE(6110), 1, - sym_string, - ACTIONS(13340), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13336), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320744,19 +304691,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296056] = 6, + [280828] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13918), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(13041), 1, + anon_sym_DQUOTE, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320765,19 +304712,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296083] = 6, + [280855] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13926), 1, + ACTIONS(3087), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, + ACTIONS(6371), 1, sym_variable_name, - ACTIONS(14086), 2, + STATE(4321), 1, + sym_string, + ACTIONS(6369), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(6367), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320786,41 +304733,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, + [280882] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, - sym_variable_name, - ACTIONS(14262), 1, + ACTIONS(3021), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(3566), 1, + sym_variable_name, + STATE(1695), 1, + sym_string, + ACTIONS(3564), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(3562), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320829,19 +304754,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296166] = 6, + [280909] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1757), 1, + ACTIONS(4635), 1, anon_sym_DQUOTE, - ACTIONS(1761), 1, + ACTIONS(4639), 1, sym_variable_name, - STATE(898), 1, + STATE(2604), 1, sym_string, - ACTIONS(1759), 2, + ACTIONS(4637), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1755), 8, + ACTIONS(4633), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320850,19 +304775,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296193] = 6, + [280936] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14264), 1, + ACTIONS(13043), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320871,19 +304796,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296220] = 6, + [280963] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13934), 1, + ACTIONS(12749), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320892,19 +304817,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296247] = 6, + [280990] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, - sym_variable_name, - ACTIONS(14266), 1, + ACTIONS(5522), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(12261), 1, + sym_variable_name, + STATE(6099), 1, + sym_string, + ACTIONS(12259), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12257), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320913,19 +304838,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296274] = 6, + [281017] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14268), 1, + ACTIONS(13045), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320934,19 +304859,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296301] = 6, + [281044] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7265), 1, + ACTIONS(6623), 1, anon_sym_DQUOTE, - ACTIONS(7269), 1, + ACTIONS(6627), 1, sym_variable_name, - STATE(4167), 1, + STATE(4161), 1, sym_string, - ACTIONS(7267), 2, + ACTIONS(6625), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7263), 8, + ACTIONS(6621), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320955,19 +304880,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296328] = 6, + [281071] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13586), 1, + ACTIONS(12617), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320976,40 +304901,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296355] = 6, - ACTIONS(3), 1, + [281098] = 7, + ACTIONS(71), 1, sym_comment, - ACTIONS(13486), 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__, - [296382] = 6, + ACTIONS(13049), 1, + anon_sym_LT_LT, + ACTIONS(13055), 1, + anon_sym_LT_LT_DASH, + ACTIONS(13057), 1, + anon_sym_LT_LT_LT, + ACTIONS(13053), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(13051), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(13047), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [281127] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13972), 1, + ACTIONS(12285), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321018,40 +304944,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296409] = 6, + [281154] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1201), 1, + ACTIONS(12569), 1, anon_sym_DQUOTE, - ACTIONS(1205), 1, - sym_variable_name, - STATE(516), 1, - sym_string, - ACTIONS(1203), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1199), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - [296436] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14270), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321060,19 +304965,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296463] = 6, + [281181] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14272), 1, + ACTIONS(13059), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321081,19 +304986,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296490] = 6, + [281208] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14274), 1, + ACTIONS(13061), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321102,19 +305007,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296517] = 6, + [281235] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3089), 1, + ACTIONS(12865), 1, anon_sym_DQUOTE, - ACTIONS(3986), 1, + ACTIONS(12881), 1, + sym_string_content, + ACTIONS(12885), 1, sym_variable_name, - STATE(1710), 1, - sym_string, - ACTIONS(3984), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3982), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321123,19 +305028,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296544] = 6, + [281262] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3437), 1, + ACTIONS(1515), 1, anon_sym_DQUOTE, - ACTIONS(3441), 1, + ACTIONS(2317), 1, sym_variable_name, - STATE(1296), 1, + STATE(1127), 1, sym_string, - ACTIONS(3439), 2, + ACTIONS(2315), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3435), 8, + ACTIONS(2313), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321144,40 +305049,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296571] = 6, + [281289] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13980), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 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__, - [296598] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3211), 1, + ACTIONS(13063), 1, anon_sym_DQUOTE, - ACTIONS(3905), 1, - sym_variable_name, - STATE(1724), 1, - sym_string, - ACTIONS(3903), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3901), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321186,19 +305070,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296625] = 6, + [281316] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14276), 1, + ACTIONS(13065), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321207,19 +305091,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296652] = 6, + [281343] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13996), 1, + ACTIONS(12597), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321228,19 +305112,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296679] = 6, + [281370] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13988), 1, + ACTIONS(12849), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321249,19 +305133,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296706] = 6, + [281397] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(12693), 1, + anon_sym_DQUOTE, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14278), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321270,19 +305154,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296733] = 6, + [281424] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1887), 1, + ACTIONS(4410), 1, anon_sym_DQUOTE, - ACTIONS(3809), 1, + ACTIONS(4414), 1, sym_variable_name, - STATE(1336), 1, + STATE(2389), 1, sym_string, - ACTIONS(3807), 2, + ACTIONS(4412), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3805), 8, + ACTIONS(4408), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321291,19 +305175,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296760] = 6, + [281451] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(260), 1, - anon_sym_DQUOTE, - ACTIONS(4957), 1, + ACTIONS(12881), 1, + sym_string_content, + ACTIONS(12885), 1, sym_variable_name, - STATE(2219), 1, - sym_string, - ACTIONS(4955), 2, + ACTIONS(13067), 1, + anon_sym_DQUOTE, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4953), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321312,19 +305196,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296787] = 6, + [281478] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14280), 1, + ACTIONS(13069), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321333,19 +305217,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296814] = 6, + [281505] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14004), 1, + ACTIONS(4269), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, + ACTIONS(4273), 1, sym_variable_name, - ACTIONS(14086), 2, + STATE(2341), 1, + sym_string, + ACTIONS(4271), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(4267), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321354,40 +305238,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296841] = 6, + [281532] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, - sym_variable_name, - ACTIONS(14282), 1, + ACTIONS(12423), 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__, - [296868] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14284), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321396,19 +305259,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296895] = 6, + [281559] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2544), 1, + ACTIONS(12721), 1, anon_sym_DQUOTE, - ACTIONS(3889), 1, + ACTIONS(12881), 1, + sym_string_content, + ACTIONS(12885), 1, sym_variable_name, - STATE(1503), 1, - sym_string, - ACTIONS(3887), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3885), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321417,19 +305280,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296922] = 6, + [281586] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14012), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(13071), 1, + anon_sym_DQUOTE, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321438,41 +305301,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296949] = 7, + [281613] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(14288), 1, + ACTIONS(12903), 1, anon_sym_LT_LT, - ACTIONS(14294), 1, + ACTIONS(12909), 1, anon_sym_LT_LT_DASH, - ACTIONS(14296), 1, + ACTIONS(13073), 1, anon_sym_LT_LT_LT, - ACTIONS(14292), 2, + ACTIONS(12907), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14290), 3, + ACTIONS(12905), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14286), 5, + ACTIONS(12901), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [296978] = 6, + [281642] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14016), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(13075), 1, + anon_sym_DQUOTE, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321481,19 +305344,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297005] = 6, + [281669] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(3429), 1, + anon_sym_DQUOTE, + ACTIONS(3433), 1, + sym_variable_name, + STATE(1410), 1, + sym_string, + ACTIONS(3431), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(3427), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [281696] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12435), 1, + anon_sym_DQUOTE, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14298), 1, + ACTIONS(12883), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(12879), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [281723] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12605), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(12881), 1, + sym_string_content, + ACTIONS(12885), 1, + sym_variable_name, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321502,19 +305407,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297032] = 6, + [281750] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14300), 1, + ACTIONS(13077), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321523,19 +305428,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297059] = 6, + [281777] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(12757), 1, anon_sym_DQUOTE, - ACTIONS(2025), 1, + ACTIONS(12881), 1, + sym_string_content, + ACTIONS(12885), 1, sym_variable_name, - STATE(1012), 1, - sym_string, - ACTIONS(2023), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2021), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321544,19 +305449,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297086] = 6, + [281804] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13594), 1, + ACTIONS(12481), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321565,19 +305470,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297113] = 6, + [281831] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2071), 1, - anon_sym_DQUOTE, - ACTIONS(3974), 1, + ACTIONS(12881), 1, + sym_string_content, + ACTIONS(12885), 1, sym_variable_name, - STATE(1616), 1, - sym_string, - ACTIONS(3972), 2, + ACTIONS(13079), 1, + anon_sym_DQUOTE, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3970), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321586,19 +305491,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297140] = 6, + [281858] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14032), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(13081), 1, + anon_sym_DQUOTE, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321607,19 +305512,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297167] = 6, + [281885] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, + ACTIONS(12881), 1, + sym_string_content, + ACTIONS(12885), 1, sym_variable_name, - STATE(1273), 1, - sym_string, - ACTIONS(2267), 2, + ACTIONS(13083), 1, + anon_sym_DQUOTE, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2265), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321628,19 +305533,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297194] = 6, + [281912] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4044), 1, + ACTIONS(4418), 1, anon_sym_DQUOTE, - ACTIONS(4048), 1, + ACTIONS(4422), 1, sym_variable_name, - STATE(2111), 1, + STATE(2511), 1, sym_string, - ACTIONS(4046), 2, + ACTIONS(4420), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4042), 8, + ACTIONS(4416), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321649,19 +305554,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297221] = 6, + [281939] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(12873), 1, + anon_sym_DQUOTE, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14302), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321670,19 +305575,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297248] = 6, + [281966] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3909), 1, + ACTIONS(2172), 1, anon_sym_DQUOTE, - ACTIONS(3913), 1, + ACTIONS(3672), 1, sym_variable_name, - STATE(1657), 1, + STATE(1426), 1, sym_string, - ACTIONS(3911), 2, + ACTIONS(3670), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3907), 8, + ACTIONS(3668), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321691,19 +305596,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297275] = 6, + [281993] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3241), 1, + ACTIONS(12521), 1, anon_sym_DQUOTE, - ACTIONS(3803), 1, + ACTIONS(12881), 1, + sym_string_content, + ACTIONS(12885), 1, sym_variable_name, - STATE(1839), 1, - sym_string, - ACTIONS(3801), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3799), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321712,19 +305617,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297302] = 6, + [282020] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(12745), 1, + anon_sym_DQUOTE, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14304), 1, + ACTIONS(12883), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(12879), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [282047] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12881), 1, + sym_string_content, + ACTIONS(12885), 1, + sym_variable_name, + ACTIONS(13085), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321733,19 +305659,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297329] = 6, + [282074] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14044), 1, + ACTIONS(12593), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321754,19 +305680,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297356] = 6, + [282101] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(12805), 1, + anon_sym_DQUOTE, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14306), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321775,41 +305701,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297383] = 7, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14310), 1, - anon_sym_LT_LT, - ACTIONS(14316), 1, - anon_sym_LT_LT_DASH, - ACTIONS(14318), 1, - anon_sym_LT_LT_LT, - ACTIONS(14314), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(14312), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(14308), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [297412] = 6, + [282128] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14320), 1, + ACTIONS(13087), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321818,19 +305722,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297439] = 6, + [282155] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14048), 1, + ACTIONS(12701), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321839,19 +305743,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297466] = 6, + [282182] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14322), 1, + ACTIONS(13089), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321860,19 +305764,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297493] = 6, + [282209] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14060), 1, + ACTIONS(12633), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321881,19 +305785,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297520] = 6, + [282236] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3482), 1, + ACTIONS(2989), 1, anon_sym_DQUOTE, - ACTIONS(7480), 1, + ACTIONS(3678), 1, sym_variable_name, - STATE(4595), 1, + STATE(1607), 1, sym_string, - ACTIONS(7478), 2, + ACTIONS(3676), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7476), 8, + ACTIONS(3674), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321902,19 +305806,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297547] = 6, + [282263] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3512), 1, - anon_sym_DQUOTE, - ACTIONS(7420), 1, + ACTIONS(12881), 1, + sym_string_content, + ACTIONS(12885), 1, sym_variable_name, - STATE(4218), 1, - sym_string, - ACTIONS(7418), 2, + ACTIONS(13091), 1, + anon_sym_DQUOTE, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7416), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321923,19 +305827,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297574] = 6, + [282290] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14056), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(13093), 1, + anon_sym_DQUOTE, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321944,19 +305848,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297601] = 6, + [282317] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4927), 1, + ACTIONS(12769), 1, anon_sym_DQUOTE, - ACTIONS(4931), 1, + ACTIONS(12881), 1, + sym_string_content, + ACTIONS(12885), 1, sym_variable_name, - STATE(2500), 1, - sym_string, - ACTIONS(4929), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4925), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321965,19 +305869,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297628] = 6, + [282344] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, - sym_variable_name, - ACTIONS(14324), 1, + ACTIONS(7654), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(7658), 1, + sym_variable_name, + STATE(5125), 1, + sym_string, + ACTIONS(7656), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(7652), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321986,19 +305890,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297655] = 6, + [282371] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2623), 1, + ACTIONS(12845), 1, anon_sym_DQUOTE, - ACTIONS(3115), 1, + ACTIONS(12881), 1, + sym_string_content, + ACTIONS(12885), 1, sym_variable_name, - STATE(1528), 1, - sym_string, - ACTIONS(3113), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3111), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -322007,19 +305911,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297682] = 6, + [282398] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14326), 1, + ACTIONS(13095), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -322028,19 +305932,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297709] = 6, + [282425] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14072), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(13097), 1, + anon_sym_DQUOTE, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -322049,19 +305953,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297736] = 6, + [282452] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14068), 1, + ACTIONS(1559), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, + ACTIONS(2295), 1, sym_variable_name, - ACTIONS(14086), 2, + STATE(1157), 1, + sym_string, + ACTIONS(2293), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(2291), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -322070,19 +305974,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297763] = 6, + [282479] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6344), 1, + ACTIONS(5495), 1, anon_sym_DQUOTE, - ACTIONS(6348), 1, + ACTIONS(5499), 1, sym_variable_name, - STATE(3422), 1, + STATE(3293), 1, sym_string, - ACTIONS(6346), 2, + ACTIONS(5497), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(6342), 8, + ACTIONS(5493), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -322091,19 +305995,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297790] = 6, + [282506] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3316), 1, + ACTIONS(12857), 1, anon_sym_DQUOTE, - ACTIONS(3938), 1, + ACTIONS(12881), 1, + sym_string_content, + ACTIONS(12885), 1, sym_variable_name, - STATE(1838), 1, - sym_string, - ACTIONS(3936), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3934), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -322112,19 +306016,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297817] = 6, + [282533] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13610), 1, + ACTIONS(12837), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -322133,19 +306037,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297844] = 6, + [282560] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14328), 1, + ACTIONS(13099), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -322154,19 +306058,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297871] = 6, + [282587] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3348), 1, - anon_sym_DQUOTE, - ACTIONS(7275), 1, + ACTIONS(12881), 1, + sym_string_content, + ACTIONS(12885), 1, sym_variable_name, - STATE(4355), 1, - sym_string, - ACTIONS(7273), 2, + ACTIONS(13101), 1, + anon_sym_DQUOTE, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7271), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -322175,19 +306079,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297898] = 6, + [282614] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12903), 1, + anon_sym_LT_LT, + ACTIONS(12909), 1, + anon_sym_LT_LT_DASH, + ACTIONS(13109), 1, + anon_sym_LT_LT_LT, + ACTIONS(13107), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(13105), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(13103), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [282643] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(12881), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(12885), 1, sym_variable_name, - ACTIONS(14330), 1, + ACTIONS(13111), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(12883), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(12879), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -322196,92 +306122,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297925] = 6, + [282670] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14094), 1, + ACTIONS(12927), 1, anon_sym_LT_LT, - ACTIONS(14100), 1, + ACTIONS(12933), 1, anon_sym_LT_LT_DASH, - ACTIONS(14112), 2, + ACTIONS(12931), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14110), 3, + ACTIONS(12929), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14108), 5, + ACTIONS(12925), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [297951] = 6, + [282696] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14094), 1, + ACTIONS(12903), 1, anon_sym_LT_LT, - ACTIONS(14100), 1, + ACTIONS(12909), 1, anon_sym_LT_LT_DASH, - ACTIONS(14098), 2, + ACTIONS(12907), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14096), 3, + ACTIONS(12905), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14092), 5, + ACTIONS(12901), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [297977] = 6, + [282722] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14094), 1, + ACTIONS(12903), 1, anon_sym_LT_LT, - ACTIONS(14100), 1, + ACTIONS(12909), 1, anon_sym_LT_LT_DASH, - ACTIONS(14258), 2, + ACTIONS(12951), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14256), 3, + ACTIONS(12949), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14254), 5, + ACTIONS(12947), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298003] = 6, + [282748] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14094), 1, + ACTIONS(13115), 1, anon_sym_LT_LT, - ACTIONS(14100), 1, + ACTIONS(13121), 1, anon_sym_LT_LT_DASH, - ACTIONS(14130), 2, + ACTIONS(13119), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14128), 3, + ACTIONS(13117), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14126), 5, + ACTIONS(13113), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298029] = 3, + [282774] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 1, + ACTIONS(1286), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 11, + ACTIONS(1284), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -322293,7 +306219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, aux_sym__simple_variable_name_token1, - [298049] = 3, + [282794] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1290), 1, @@ -322310,97 +306236,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, aux_sym__simple_variable_name_token1, - [298069] = 6, + [282814] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13049), 1, + anon_sym_LT_LT, + ACTIONS(13055), 1, + anon_sym_LT_LT_DASH, + ACTIONS(13053), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(13051), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(13047), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [282840] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12881), 1, + sym_string_content, + ACTIONS(12885), 1, + sym_variable_name, + ACTIONS(12883), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(12879), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [282864] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14094), 1, + ACTIONS(12997), 1, anon_sym_LT_LT, - ACTIONS(14100), 1, + ACTIONS(13003), 1, anon_sym_LT_LT_DASH, - ACTIONS(14186), 2, + ACTIONS(13001), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14184), 3, + ACTIONS(12999), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14182), 5, + ACTIONS(12995), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298095] = 6, + [282890] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14334), 1, + ACTIONS(12903), 1, anon_sym_LT_LT, - ACTIONS(14340), 1, + ACTIONS(12909), 1, anon_sym_LT_LT_DASH, - ACTIONS(14338), 2, + ACTIONS(13107), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14336), 3, + ACTIONS(13105), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14332), 5, + ACTIONS(13103), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298121] = 6, + [282916] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14226), 1, + ACTIONS(13023), 1, anon_sym_LT_LT, - ACTIONS(14232), 1, + ACTIONS(13029), 1, anon_sym_LT_LT_DASH, - ACTIONS(14230), 2, + ACTIONS(13027), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14228), 3, + ACTIONS(13025), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14224), 5, + ACTIONS(13021), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298147] = 6, + [282942] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14288), 1, - anon_sym_LT_LT, - ACTIONS(14294), 1, - anon_sym_LT_LT_DASH, - ACTIONS(14292), 2, + ACTIONS(13109), 1, + anon_sym_LT_LT_LT, + ACTIONS(13127), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(13125), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(13123), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [282965] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13135), 1, + anon_sym_LT_LT_LT, + ACTIONS(13133), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14290), 3, + ACTIONS(13131), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14286), 5, + ACTIONS(13129), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298173] = 5, + [282988] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, + ACTIONS(13141), 1, + sym_variable_name, + ACTIONS(13139), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(13137), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [283009] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13147), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(13145), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(13143), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -322409,109 +306405,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [298197] = 6, + [283030] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(14310), 1, - anon_sym_LT_LT, - ACTIONS(14316), 1, - anon_sym_LT_LT_DASH, - ACTIONS(14314), 2, + ACTIONS(13149), 1, + anon_sym_DOLLAR, + ACTIONS(13152), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13155), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13158), 1, + anon_sym_BQUOTE, + ACTIONS(13161), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13164), 1, + sym_heredoc_content, + ACTIONS(13167), 1, + sym_heredoc_end, + STATE(5690), 4, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + aux_sym_heredoc_body_repeat1, + [283061] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13175), 1, + anon_sym_LT_LT_LT, + ACTIONS(13173), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14312), 3, + ACTIONS(13171), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14308), 5, + ACTIONS(13169), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298223] = 5, + [283084] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14348), 1, + ACTIONS(13057), 1, anon_sym_LT_LT_LT, - ACTIONS(14346), 2, + ACTIONS(13181), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14344), 3, + ACTIONS(13179), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14342), 5, + ACTIONS(13177), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298246] = 9, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14350), 1, - anon_sym_DOLLAR, - ACTIONS(14352), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(14354), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(14356), 1, - anon_sym_BQUOTE, - ACTIONS(14358), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(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, + [283107] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14114), 1, + ACTIONS(13189), 1, anon_sym_LT_LT_LT, - ACTIONS(14112), 2, + ACTIONS(13187), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14110), 3, + ACTIONS(13185), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14108), 5, + ACTIONS(13183), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298300] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14364), 1, - anon_sym_RBRACE3, - ACTIONS(14366), 10, - anon_sym_U, - anon_sym_u, - anon_sym_L, - anon_sym_Q, - anon_sym_E, - anon_sym_P, - anon_sym_A, - anon_sym_K, - anon_sym_a, - anon_sym_k, - [298319] = 4, + [283130] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14372), 1, + ACTIONS(13195), 1, sym_variable_name, - ACTIONS(14370), 2, + ACTIONS(13193), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14368), 8, + ACTIONS(13191), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -322520,51 +306498,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [298340] = 5, - ACTIONS(71), 1, + [283151] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(14380), 1, - anon_sym_LT_LT_LT, - ACTIONS(14378), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(14376), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(14374), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [298363] = 5, + ACTIONS(13201), 1, + sym_variable_name, + ACTIONS(13199), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(13197), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [283172] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14388), 1, + ACTIONS(13031), 1, anon_sym_LT_LT_LT, - ACTIONS(14386), 2, + ACTIONS(13207), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14384), 3, + ACTIONS(13205), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14382), 5, + ACTIONS(13203), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298386] = 4, + [283195] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14394), 1, + ACTIONS(13213), 1, sym_variable_name, - ACTIONS(14392), 2, + ACTIONS(13211), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14390), 8, + ACTIONS(13209), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -322573,197 +306550,199 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [298407] = 5, + [283216] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14396), 1, + ACTIONS(13221), 1, anon_sym_LT_LT_LT, - ACTIONS(14338), 2, + ACTIONS(13219), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14336), 3, + ACTIONS(13217), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14332), 5, + ACTIONS(13215), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298430] = 5, + [283239] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14404), 1, + ACTIONS(13229), 1, anon_sym_LT_LT_LT, - ACTIONS(14402), 2, + ACTIONS(13227), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14400), 3, + ACTIONS(13225), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14398), 5, + ACTIONS(13223), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298453] = 5, + [283262] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14412), 1, + ACTIONS(12911), 1, anon_sym_LT_LT_LT, - ACTIONS(14410), 2, + ACTIONS(13235), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14408), 3, + ACTIONS(13233), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14406), 5, + ACTIONS(13231), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298476] = 9, + [283285] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(14414), 1, + ACTIONS(13237), 1, anon_sym_DOLLAR, - ACTIONS(14417), 1, + ACTIONS(13239), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(14420), 1, + ACTIONS(13241), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(14423), 1, + ACTIONS(13243), 1, anon_sym_BQUOTE, - ACTIONS(14426), 1, + ACTIONS(13245), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14429), 1, + ACTIONS(13247), 1, sym_heredoc_content, - ACTIONS(14432), 1, + ACTIONS(13249), 1, sym_heredoc_end, - STATE(6023), 4, + STATE(5720), 4, sym_simple_expansion, sym_expansion, sym_command_substitution, aux_sym_heredoc_body_repeat1, - [298507] = 4, - ACTIONS(3), 1, + [283316] = 5, + ACTIONS(71), 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(13257), 1, + anon_sym_LT_LT_LT, + ACTIONS(13255), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(13253), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(13251), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [283339] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14296), 1, + ACTIONS(13265), 1, anon_sym_LT_LT_LT, - ACTIONS(14292), 2, + ACTIONS(13263), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14290), 3, + ACTIONS(13261), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14286), 5, + ACTIONS(13259), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298551] = 5, + [283362] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14188), 1, + ACTIONS(13273), 1, anon_sym_LT_LT_LT, - ACTIONS(14186), 2, + ACTIONS(13271), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14184), 3, + ACTIONS(13269), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14182), 5, + ACTIONS(13267), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298574] = 5, + [283385] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14102), 1, + ACTIONS(13281), 1, anon_sym_LT_LT_LT, - ACTIONS(14098), 2, + ACTIONS(13279), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14096), 3, + ACTIONS(13277), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14092), 5, + ACTIONS(13275), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298597] = 4, - ACTIONS(3), 1, + [283408] = 5, + ACTIONS(71), 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, + ACTIONS(13005), 1, + anon_sym_LT_LT_LT, + ACTIONS(13287), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(13285), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(13283), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [283431] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14446), 1, + ACTIONS(13295), 1, anon_sym_LT_LT_LT, - ACTIONS(14444), 2, + ACTIONS(13293), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14442), 3, + ACTIONS(13291), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14440), 5, + ACTIONS(13289), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298641] = 4, + [283454] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14452), 1, + ACTIONS(13301), 1, sym_variable_name, - ACTIONS(14450), 2, + ACTIONS(13299), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14448), 8, + ACTIONS(13297), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -322772,37 +306751,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [298662] = 9, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14350), 1, - anon_sym_DOLLAR, - ACTIONS(14352), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(14354), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(14356), 1, - anon_sym_BQUOTE, - ACTIONS(14358), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(14454), 1, - sym_heredoc_content, - ACTIONS(14456), 1, - sym_heredoc_end, - STATE(6013), 4, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - aux_sym_heredoc_body_repeat1, - [298693] = 4, + [283475] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14462), 1, + ACTIONS(12923), 1, sym_variable_name, - ACTIONS(14460), 2, + ACTIONS(12921), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14458), 8, + ACTIONS(12917), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -322811,159 +306768,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [298714] = 5, - ACTIONS(71), 1, - sym_comment, - 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, - [298737] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14318), 1, - anon_sym_LT_LT_LT, - ACTIONS(14314), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(14312), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(14308), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [298760] = 5, + [283496] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14470), 1, + ACTIONS(13309), 1, anon_sym_LT_LT_LT, - ACTIONS(14468), 2, + ACTIONS(13307), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14466), 3, + ACTIONS(13305), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14464), 5, + ACTIONS(13303), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298783] = 5, + [283519] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14478), 1, + ACTIONS(13317), 1, anon_sym_LT_LT_LT, - ACTIONS(14476), 2, + ACTIONS(13315), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14474), 3, + ACTIONS(13313), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14472), 5, + ACTIONS(13311), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298806] = 5, + [283542] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14132), 1, + ACTIONS(12953), 1, anon_sym_LT_LT_LT, - ACTIONS(14130), 2, + ACTIONS(13323), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14128), 3, + ACTIONS(13321), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14126), 5, + ACTIONS(13319), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298829] = 5, + [283565] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14486), 1, + ACTIONS(13331), 1, anon_sym_LT_LT_LT, - ACTIONS(14484), 2, + ACTIONS(13329), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14482), 3, + ACTIONS(13327), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14480), 5, + ACTIONS(13325), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298852] = 5, + [283588] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14494), 1, + ACTIONS(13339), 1, anon_sym_LT_LT_LT, - ACTIONS(14492), 2, + ACTIONS(13337), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14490), 3, + ACTIONS(13335), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14488), 5, + ACTIONS(13333), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298875] = 5, + [283611] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14502), 1, + ACTIONS(13347), 1, anon_sym_LT_LT_LT, - ACTIONS(14500), 2, + ACTIONS(13345), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14498), 3, + ACTIONS(13343), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14496), 5, + ACTIONS(13341), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298898] = 4, + [283634] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14508), 1, + ACTIONS(13353), 1, sym_variable_name, - ACTIONS(14506), 2, + ACTIONS(13351), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14504), 8, + ACTIONS(13349), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -322972,158 +306893,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [298919] = 5, + [283655] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14516), 1, - anon_sym_LT_LT_LT, - ACTIONS(14514), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(14512), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(14510), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [298942] = 5, + ACTIONS(13355), 1, + anon_sym_RBRACE3, + ACTIONS(13357), 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, + [283674] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14524), 1, + ACTIONS(13365), 1, anon_sym_LT_LT_LT, - ACTIONS(14522), 2, + ACTIONS(13363), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14520), 3, + ACTIONS(13361), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14518), 5, + ACTIONS(13359), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298965] = 5, + [283697] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14532), 1, + ACTIONS(13073), 1, anon_sym_LT_LT_LT, - ACTIONS(14530), 2, + ACTIONS(13371), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14528), 3, + ACTIONS(13369), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14526), 5, + ACTIONS(13367), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298988] = 4, - ACTIONS(3), 1, + [283720] = 9, + ACTIONS(71), 1, sym_comment, - ACTIONS(14538), 1, - sym_variable_name, - ACTIONS(14536), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(14534), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, + ACTIONS(13237), 1, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - [299009] = 5, + ACTIONS(13239), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13241), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13243), 1, + anon_sym_BQUOTE, + ACTIONS(13245), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13373), 1, + sym_heredoc_content, + ACTIONS(13375), 1, + sym_heredoc_end, + STATE(5690), 4, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + aux_sym_heredoc_body_repeat1, + [283751] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14546), 1, + ACTIONS(13383), 1, anon_sym_LT_LT_LT, - ACTIONS(14544), 2, + ACTIONS(13381), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14542), 3, + ACTIONS(13379), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14540), 5, + ACTIONS(13377), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [299032] = 5, + [283774] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14554), 1, + ACTIONS(13391), 1, anon_sym_LT_LT_LT, - ACTIONS(14552), 2, + ACTIONS(13389), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14550), 3, + ACTIONS(13387), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14548), 5, + ACTIONS(13385), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [299055] = 5, + [283797] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14562), 1, + ACTIONS(13399), 1, anon_sym_LT_LT_LT, - ACTIONS(14560), 2, + ACTIONS(13397), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14558), 3, + ACTIONS(13395), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14556), 5, + ACTIONS(13393), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [299078] = 5, + [283820] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14570), 1, + ACTIONS(13407), 1, anon_sym_LT_LT_LT, - ACTIONS(14568), 2, + ACTIONS(13405), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14566), 3, + ACTIONS(13403), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14564), 5, + ACTIONS(13401), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [299101] = 4, + [283843] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14576), 1, + ACTIONS(13413), 1, sym_variable_name, - ACTIONS(14574), 2, + ACTIONS(13411), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14572), 8, + ACTIONS(13409), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -323132,105 +307056,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [299122] = 5, - ACTIONS(71), 1, + [283864] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(14584), 1, - anon_sym_LT_LT_LT, - ACTIONS(14582), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(14580), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(14578), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [299145] = 8, + ACTIONS(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, + [283882] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1306), 1, + sym__concat, + ACTIONS(1304), 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, + [283900] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 1, + sym__concat, + ACTIONS(1296), 9, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + [283918] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13415), 1, + sym__concat, + ACTIONS(12458), 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, + [283936] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14586), 1, + ACTIONS(13417), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14588), 1, + ACTIONS(13419), 1, anon_sym_LPAREN, - ACTIONS(14590), 1, + ACTIONS(13421), 1, anon_sym_if, - ACTIONS(14592), 1, + ACTIONS(13423), 1, anon_sym_LBRACE, - ACTIONS(14594), 1, + ACTIONS(13425), 1, anon_sym_LBRACK, - ACTIONS(14596), 1, + ACTIONS(13427), 1, anon_sym_LBRACK_LBRACK, - STATE(4551), 4, + STATE(5141), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [299173] = 8, + [283964] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14598), 1, + ACTIONS(13429), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14600), 1, + ACTIONS(13431), 1, anon_sym_LPAREN, - ACTIONS(14602), 1, + ACTIONS(13433), 1, anon_sym_if, - ACTIONS(14604), 1, + ACTIONS(13435), 1, anon_sym_LBRACE, - ACTIONS(14606), 1, + ACTIONS(13437), 1, anon_sym_LBRACK, - ACTIONS(14608), 1, + ACTIONS(13439), 1, anon_sym_LBRACK_LBRACK, - STATE(5310), 4, + STATE(4482), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [299201] = 8, + [283992] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14586), 1, + ACTIONS(13429), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14588), 1, + ACTIONS(13431), 1, anon_sym_LPAREN, - ACTIONS(14590), 1, + ACTIONS(13433), 1, anon_sym_if, - ACTIONS(14592), 1, + ACTIONS(13435), 1, anon_sym_LBRACE, - ACTIONS(14594), 1, + ACTIONS(13437), 1, anon_sym_LBRACK, - ACTIONS(14596), 1, + ACTIONS(13439), 1, anon_sym_LBRACK_LBRACK, - STATE(4537), 4, + STATE(4470), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [299229] = 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, + [284020] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 1, + ACTIONS(1270), 1, sym__concat, - ACTIONS(1304), 9, + ACTIONS(1268), 9, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -323240,72 +307191,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [299265] = 8, + [284038] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14610), 1, + ACTIONS(13429), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14612), 1, + ACTIONS(13431), 1, anon_sym_LPAREN, - ACTIONS(14614), 1, + ACTIONS(13433), 1, anon_sym_if, - ACTIONS(14616), 1, + ACTIONS(13435), 1, anon_sym_LBRACE, - ACTIONS(14618), 1, + ACTIONS(13437), 1, anon_sym_LBRACK, - ACTIONS(14620), 1, + ACTIONS(13439), 1, anon_sym_LBRACK_LBRACK, - STATE(4330), 4, + STATE(4360), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [299293] = 8, + [284066] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14610), 1, + ACTIONS(13429), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14614), 1, + ACTIONS(13433), 1, anon_sym_if, - ACTIONS(14616), 1, + ACTIONS(13435), 1, anon_sym_LBRACE, - ACTIONS(14618), 1, + ACTIONS(13437), 1, anon_sym_LBRACK, - ACTIONS(14620), 1, + ACTIONS(13439), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14622), 1, + ACTIONS(13441), 1, anon_sym_LPAREN, - STATE(4452), 4, + STATE(4412), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [299321] = 8, + [284094] = 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, + [284112] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14586), 1, + ACTIONS(13443), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14588), 1, + ACTIONS(13445), 1, anon_sym_LPAREN, - ACTIONS(14590), 1, + ACTIONS(13447), 1, anon_sym_if, - ACTIONS(14592), 1, + ACTIONS(13449), 1, anon_sym_LBRACE, - ACTIONS(14594), 1, + ACTIONS(13451), 1, anon_sym_LBRACK, - ACTIONS(14596), 1, + ACTIONS(13453), 1, anon_sym_LBRACK_LBRACK, - STATE(4588), 4, + STATE(4186), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [299349] = 3, + [284140] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 1, + ACTIONS(1290), 1, sym__concat, - ACTIONS(1300), 9, + ACTIONS(1288), 9, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -323315,402 +307281,292 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [299367] = 8, + [284158] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14598), 1, + ACTIONS(13417), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14602), 1, + ACTIONS(13421), 1, anon_sym_if, - ACTIONS(14604), 1, + ACTIONS(13423), 1, anon_sym_LBRACE, - ACTIONS(14606), 1, + ACTIONS(13425), 1, anon_sym_LBRACK, - ACTIONS(14608), 1, + ACTIONS(13427), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14624), 1, + ACTIONS(13455), 1, anon_sym_LPAREN, - STATE(5292), 4, + STATE(5062), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [299395] = 8, + [284186] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14586), 1, + ACTIONS(13417), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14588), 1, - anon_sym_LPAREN, - ACTIONS(14590), 1, + ACTIONS(13421), 1, anon_sym_if, - ACTIONS(14592), 1, + ACTIONS(13423), 1, anon_sym_LBRACE, - ACTIONS(14594), 1, + ACTIONS(13425), 1, anon_sym_LBRACK, - ACTIONS(14596), 1, + ACTIONS(13427), 1, anon_sym_LBRACK_LBRACK, - STATE(4744), 4, + ACTIONS(13455), 1, + anon_sym_LPAREN, + STATE(5018), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [299423] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14628), 1, - sym__concat, - ACTIONS(14626), 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, - [299441] = 8, + [284214] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14586), 1, + ACTIONS(13429), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14590), 1, + ACTIONS(13431), 1, + anon_sym_LPAREN, + ACTIONS(13433), 1, anon_sym_if, - ACTIONS(14592), 1, + ACTIONS(13435), 1, anon_sym_LBRACE, - ACTIONS(14594), 1, + ACTIONS(13437), 1, anon_sym_LBRACK, - ACTIONS(14596), 1, + ACTIONS(13439), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14630), 1, - anon_sym_LPAREN, - STATE(4534), 4, + STATE(4671), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [299469] = 8, + [284242] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14632), 1, + ACTIONS(13429), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14634), 1, + ACTIONS(13431), 1, anon_sym_LPAREN, - ACTIONS(14636), 1, + ACTIONS(13433), 1, anon_sym_if, - ACTIONS(14638), 1, + ACTIONS(13435), 1, anon_sym_LBRACE, - ACTIONS(14640), 1, + ACTIONS(13437), 1, anon_sym_LBRACK, - ACTIONS(14642), 1, + ACTIONS(13439), 1, anon_sym_LBRACK_LBRACK, - STATE(4286), 4, + STATE(4672), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [299497] = 8, + [284270] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14598), 1, + ACTIONS(13429), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14602), 1, + ACTIONS(13431), 1, + anon_sym_LPAREN, + ACTIONS(13433), 1, anon_sym_if, - ACTIONS(14604), 1, + ACTIONS(13435), 1, anon_sym_LBRACE, - ACTIONS(14606), 1, + ACTIONS(13437), 1, anon_sym_LBRACK, - ACTIONS(14608), 1, + ACTIONS(13439), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14624), 1, - anon_sym_LPAREN, - STATE(5325), 4, + STATE(4436), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [299525] = 8, + [284298] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14586), 1, + ACTIONS(13457), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14588), 1, + ACTIONS(13459), 1, anon_sym_LPAREN, - ACTIONS(14590), 1, + ACTIONS(13461), 1, anon_sym_if, - ACTIONS(14592), 1, + ACTIONS(13463), 1, anon_sym_LBRACE, - ACTIONS(14594), 1, + ACTIONS(13465), 1, anon_sym_LBRACK, - ACTIONS(14596), 1, + ACTIONS(13467), 1, anon_sym_LBRACK_LBRACK, - STATE(4561), 4, + STATE(4130), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [299553] = 8, + [284326] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14632), 1, + ACTIONS(13443), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14634), 1, + ACTIONS(13445), 1, anon_sym_LPAREN, - ACTIONS(14636), 1, + ACTIONS(13447), 1, anon_sym_if, - ACTIONS(14638), 1, + ACTIONS(13449), 1, anon_sym_LBRACE, - ACTIONS(14640), 1, + ACTIONS(13451), 1, anon_sym_LBRACK, - ACTIONS(14642), 1, + ACTIONS(13453), 1, anon_sym_LBRACK_LBRACK, - STATE(4288), 4, + STATE(4201), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [299581] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14644), 1, - sym__concat, - ACTIONS(13949), 9, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [299599] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1298), 1, - sym__concat, - ACTIONS(1296), 9, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [299617] = 8, + [284354] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14586), 1, + ACTIONS(13457), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14588), 1, - anon_sym_LPAREN, - ACTIONS(14590), 1, + ACTIONS(13461), 1, anon_sym_if, - ACTIONS(14592), 1, + ACTIONS(13463), 1, anon_sym_LBRACE, - ACTIONS(14594), 1, + ACTIONS(13465), 1, anon_sym_LBRACK, - ACTIONS(14596), 1, + ACTIONS(13467), 1, anon_sym_LBRACK_LBRACK, - STATE(4554), 4, + ACTIONS(13469), 1, + anon_sym_LPAREN, + STATE(4032), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [299645] = 8, + [284382] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14610), 1, + ACTIONS(13443), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14614), 1, + ACTIONS(13447), 1, anon_sym_if, - ACTIONS(14616), 1, + ACTIONS(13449), 1, anon_sym_LBRACE, - ACTIONS(14618), 1, + ACTIONS(13451), 1, anon_sym_LBRACK, - ACTIONS(14620), 1, + ACTIONS(13453), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14622), 1, + ACTIONS(13471), 1, anon_sym_LPAREN, - STATE(4478), 4, + STATE(4248), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [299673] = 8, + [284410] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14586), 1, + ACTIONS(13429), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14590), 1, + ACTIONS(13433), 1, anon_sym_if, - ACTIONS(14592), 1, + ACTIONS(13435), 1, anon_sym_LBRACE, - ACTIONS(14594), 1, + ACTIONS(13437), 1, anon_sym_LBRACK, - ACTIONS(14596), 1, + ACTIONS(13439), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14646), 1, + ACTIONS(13473), 1, anon_sym_LPAREN, - STATE(5164), 4, + STATE(4936), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [299701] = 8, + [284438] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14586), 1, + ACTIONS(13429), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14588), 1, + ACTIONS(13431), 1, anon_sym_LPAREN, - ACTIONS(14590), 1, + ACTIONS(13433), 1, anon_sym_if, - ACTIONS(14592), 1, + ACTIONS(13435), 1, anon_sym_LBRACE, - ACTIONS(14594), 1, + ACTIONS(13437), 1, anon_sym_LBRACK, - ACTIONS(14596), 1, + ACTIONS(13439), 1, anon_sym_LBRACK_LBRACK, - STATE(5168), 4, + STATE(4937), 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, - 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(3), 1, - sym_comment, - ACTIONS(1290), 1, - sym__concat, - ACTIONS(1288), 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, - [299793] = 8, + [284466] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14586), 1, + ACTIONS(13429), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14590), 1, + ACTIONS(13431), 1, + anon_sym_LPAREN, + ACTIONS(13433), 1, anon_sym_if, - ACTIONS(14592), 1, + ACTIONS(13435), 1, anon_sym_LBRACE, - ACTIONS(14594), 1, + ACTIONS(13437), 1, anon_sym_LBRACK, - ACTIONS(14596), 1, + ACTIONS(13439), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14658), 1, - anon_sym_LPAREN, - STATE(4556), 4, + STATE(4938), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [299821] = 8, + [284494] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14586), 1, + ACTIONS(13429), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14590), 1, + ACTIONS(13431), 1, + anon_sym_LPAREN, + ACTIONS(13433), 1, anon_sym_if, - ACTIONS(14592), 1, + ACTIONS(13435), 1, anon_sym_LBRACE, - ACTIONS(14594), 1, + ACTIONS(13437), 1, anon_sym_LBRACK, - ACTIONS(14596), 1, + ACTIONS(13439), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14660), 1, - anon_sym_LPAREN, - STATE(4733), 4, + STATE(4488), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [299849] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1294), 1, - sym__concat, - ACTIONS(1292), 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, - [299867] = 8, + [284522] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14632), 1, + ACTIONS(13429), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14636), 1, + ACTIONS(13433), 1, anon_sym_if, - ACTIONS(14638), 1, + ACTIONS(13435), 1, anon_sym_LBRACE, - ACTIONS(14640), 1, + ACTIONS(13437), 1, anon_sym_LBRACK, - ACTIONS(14642), 1, + ACTIONS(13439), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14662), 1, + ACTIONS(13475), 1, anon_sym_LPAREN, - STATE(4186), 4, + STATE(4444), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [299895] = 3, + [284550] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 1, + ACTIONS(1294), 1, sym__concat, - ACTIONS(1260), 9, + ACTIONS(1292), 9, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -323720,12 +307576,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [299913] = 3, + [284568] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13477), 1, + anon_sym_DQUOTE, + ACTIONS(13479), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13481), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13483), 1, + anon_sym_BQUOTE, + ACTIONS(13485), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4457), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + STATE(6270), 3, + sym_string, + sym_expansion, + sym_command_substitution, + [284596] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13357), 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, + [284612] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 1, + ACTIONS(1274), 1, sym__concat, - ACTIONS(1276), 9, + ACTIONS(1272), 9, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -323735,104 +307625,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [299931] = 8, + [284630] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14586), 1, + ACTIONS(13457), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14588), 1, + ACTIONS(13459), 1, anon_sym_LPAREN, - ACTIONS(14590), 1, + ACTIONS(13461), 1, anon_sym_if, - ACTIONS(14592), 1, + ACTIONS(13463), 1, anon_sym_LBRACE, - ACTIONS(14594), 1, + ACTIONS(13465), 1, anon_sym_LBRACK, - ACTIONS(14596), 1, + ACTIONS(13467), 1, anon_sym_LBRACK_LBRACK, - STATE(4742), 4, + STATE(4139), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [299959] = 2, - ACTIONS(71), 1, + [284658] = 3, + ACTIONS(3), 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(13489), 1, + sym__concat, + ACTIONS(13487), 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, + [284676] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14586), 1, + ACTIONS(13429), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14590), 1, + ACTIONS(13433), 1, anon_sym_if, - ACTIONS(14592), 1, + ACTIONS(13435), 1, anon_sym_LBRACE, - ACTIONS(14594), 1, + ACTIONS(13437), 1, anon_sym_LBRACK, - ACTIONS(14596), 1, + ACTIONS(13439), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14664), 1, + ACTIONS(13491), 1, anon_sym_LPAREN, - STATE(4550), 4, + STATE(4418), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [300003] = 8, + [284704] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14586), 1, + ACTIONS(13429), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14588), 1, + ACTIONS(13431), 1, anon_sym_LPAREN, - ACTIONS(14590), 1, + ACTIONS(13433), 1, anon_sym_if, - ACTIONS(14592), 1, + ACTIONS(13435), 1, anon_sym_LBRACE, - ACTIONS(14594), 1, + ACTIONS(13437), 1, anon_sym_LBRACK, - ACTIONS(14596), 1, + ACTIONS(13439), 1, anon_sym_LBRACK_LBRACK, - STATE(4599), 4, + STATE(4439), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [300031] = 8, + [284732] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14586), 1, + ACTIONS(13429), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14588), 1, - anon_sym_LPAREN, - ACTIONS(14590), 1, + ACTIONS(13433), 1, anon_sym_if, - ACTIONS(14592), 1, + ACTIONS(13435), 1, anon_sym_LBRACE, - ACTIONS(14594), 1, + ACTIONS(13437), 1, anon_sym_LBRACK, - ACTIONS(14596), 1, + ACTIONS(13439), 1, anon_sym_LBRACK_LBRACK, - STATE(5169), 4, + ACTIONS(13493), 1, + anon_sym_LPAREN, + STATE(4670), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [300059] = 2, + [284760] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13949), 9, + ACTIONS(1286), 1, + sym__concat, + ACTIONS(1284), 9, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -323842,48 +307735,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [300074] = 6, + [284778] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 1, + ACTIONS(1231), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(14666), 1, + ACTIONS(13495), 1, aux_sym_concatenation_token1, - ACTIONS(14668), 1, + ACTIONS(13497), 1, sym__concat, - STATE(6101), 1, + STATE(5781), 1, aux_sym_concatenation_repeat1, - ACTIONS(1223), 5, + ACTIONS(1229), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, sym__special_character, - [300097] = 10, + [284801] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13499), 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, + [284816] = 10, ACTIONS(71), 1, sym_comment, - ACTIONS(14670), 1, + ACTIONS(13501), 1, anon_sym_SLASH, - ACTIONS(14672), 1, + ACTIONS(13503), 1, anon_sym_DQUOTE, - ACTIONS(14674), 1, + ACTIONS(13505), 1, anon_sym_RBRACE3, - ACTIONS(14676), 1, + ACTIONS(13507), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(14678), 1, + ACTIONS(13509), 1, anon_sym_BQUOTE, - ACTIONS(14680), 1, + ACTIONS(13511), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14682), 1, + ACTIONS(13513), 1, sym__regex_no_slash, - STATE(6543), 1, + STATE(6221), 1, sym_string, - STATE(6638), 1, + STATE(6322), 1, sym_command_substitution, - [300128] = 2, + [284847] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14684), 9, + ACTIONS(12458), 9, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -323893,352 +307799,291 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [300143] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14666), 1, - aux_sym_concatenation_token1, - ACTIONS(14668), 1, - sym__concat, - ACTIONS(14686), 1, - anon_sym_in, - ACTIONS(14690), 1, - aux_sym_heredoc_redirect_token1, - STATE(6099), 1, - aux_sym_concatenation_repeat1, - ACTIONS(14688), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - [300167] = 8, + [284862] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(14692), 1, + ACTIONS(13515), 1, anon_sym_RPAREN, - ACTIONS(14694), 1, + ACTIONS(13517), 1, anon_sym_DQUOTE, - ACTIONS(14696), 1, + ACTIONS(13519), 1, sym_raw_string, - ACTIONS(14698), 1, + ACTIONS(13521), 1, anon_sym_RBRACE3, - ACTIONS(14700), 1, + ACTIONS(13523), 1, aux_sym__expansion_regex_token1, - ACTIONS(14702), 1, + ACTIONS(13525), 1, sym_regex, - STATE(6097), 2, + STATE(5770), 2, sym_string, aux_sym__expansion_regex_repeat1, - [300193] = 7, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7774), 1, - aux_sym_number_token1, - ACTIONS(7776), 1, - aux_sym_number_token2, - ACTIONS(14704), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(14706), 1, - aux_sym__simple_variable_name_token1, - STATE(6151), 1, - sym__expansion_max_length_binary_expression, - STATE(6128), 3, - sym_number, - sym_expansion, - sym__expansion_max_length_expression, - [300217] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14666), 1, - aux_sym_concatenation_token1, - ACTIONS(14668), 1, - sym__concat, - ACTIONS(14708), 1, - anon_sym_in, - ACTIONS(14712), 1, - aux_sym_heredoc_redirect_token1, - STATE(6101), 1, - aux_sym_concatenation_repeat1, - ACTIONS(14710), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - [300241] = 8, + [284888] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(14714), 1, + ACTIONS(13527), 1, anon_sym_RPAREN, - ACTIONS(14717), 1, + ACTIONS(13530), 1, anon_sym_DQUOTE, - ACTIONS(14720), 1, + ACTIONS(13533), 1, sym_raw_string, - ACTIONS(14723), 1, + ACTIONS(13536), 1, anon_sym_RBRACE3, - ACTIONS(14725), 1, + ACTIONS(13538), 1, aux_sym__expansion_regex_token1, - ACTIONS(14728), 1, + ACTIONS(13541), 1, sym_regex, - STATE(6097), 2, + STATE(5768), 2, sym_string, aux_sym__expansion_regex_repeat1, - [300267] = 6, + [284914] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(14731), 1, + ACTIONS(13495), 1, aux_sym_concatenation_token1, - ACTIONS(14734), 1, + ACTIONS(13497), 1, sym__concat, - STATE(6098), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1213), 4, + ACTIONS(13544), 1, anon_sym_in, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - [300289] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1209), 1, + ACTIONS(13548), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(14666), 1, - aux_sym_concatenation_token1, - ACTIONS(14737), 1, - sym__concat, - STATE(6098), 1, + STATE(5781), 1, aux_sym_concatenation_repeat1, - ACTIONS(1207), 4, - anon_sym_in, + ACTIONS(13546), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [300311] = 8, + [284938] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(14692), 1, + ACTIONS(13515), 1, anon_sym_RPAREN, - ACTIONS(14694), 1, + ACTIONS(13517), 1, anon_sym_DQUOTE, - ACTIONS(14700), 1, + ACTIONS(13523), 1, aux_sym__expansion_regex_token1, - ACTIONS(14739), 1, + ACTIONS(13550), 1, sym_raw_string, - ACTIONS(14741), 1, + ACTIONS(13552), 1, anon_sym_RBRACE3, - ACTIONS(14743), 1, + ACTIONS(13554), 1, sym_regex, - STATE(6094), 2, + STATE(5768), 2, sym_string, aux_sym__expansion_regex_repeat1, - [300337] = 6, + [284964] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1229), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(14666), 1, + ACTIONS(13495), 1, aux_sym_concatenation_token1, - ACTIONS(14745), 1, + ACTIONS(13497), 1, sym__concat, - STATE(6098), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1227), 4, + ACTIONS(13556), 1, anon_sym_in, + ACTIONS(13560), 1, + aux_sym_heredoc_redirect_token1, + STATE(5779), 1, + aux_sym_concatenation_repeat1, + ACTIONS(13558), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [300359] = 7, + [284988] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(14666), 1, + ACTIONS(13495), 1, aux_sym_concatenation_token1, - ACTIONS(14668), 1, + ACTIONS(13497), 1, sym__concat, - ACTIONS(14747), 1, + ACTIONS(13562), 1, anon_sym_in, - ACTIONS(14751), 1, + ACTIONS(13566), 1, aux_sym_heredoc_redirect_token1, - STATE(6101), 1, + STATE(5781), 1, aux_sym_concatenation_repeat1, - ACTIONS(14749), 3, + ACTIONS(13564), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [300383] = 7, + [285012] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(14666), 1, + ACTIONS(13495), 1, aux_sym_concatenation_token1, - ACTIONS(14668), 1, + ACTIONS(13497), 1, sym__concat, - ACTIONS(14753), 1, + ACTIONS(13568), 1, anon_sym_in, - ACTIONS(14757), 1, + ACTIONS(13572), 1, aux_sym_heredoc_redirect_token1, - STATE(6099), 1, + STATE(5781), 1, aux_sym_concatenation_repeat1, - ACTIONS(14755), 3, + ACTIONS(13570), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [300407] = 7, + [285036] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(7774), 1, + ACTIONS(6699), 1, aux_sym_number_token1, - ACTIONS(7776), 1, + ACTIONS(6701), 1, aux_sym_number_token2, - ACTIONS(14704), 1, + ACTIONS(13574), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(14759), 1, + ACTIONS(13576), 1, aux_sym__simple_variable_name_token1, - STATE(6151), 1, + STATE(5824), 1, sym__expansion_max_length_binary_expression, - STATE(6130), 3, + STATE(5804), 3, sym_number, sym_expansion, sym__expansion_max_length_expression, - [300431] = 7, + [285060] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(14666), 1, + ACTIONS(13495), 1, aux_sym_concatenation_token1, - ACTIONS(14668), 1, + ACTIONS(13497), 1, sym__concat, - ACTIONS(14761), 1, + ACTIONS(13578), 1, anon_sym_in, - ACTIONS(14765), 1, + ACTIONS(13582), 1, aux_sym_heredoc_redirect_token1, - STATE(6101), 1, + STATE(5779), 1, aux_sym_concatenation_repeat1, - ACTIONS(14763), 3, + ACTIONS(13580), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [300455] = 7, + [285084] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(14666), 1, + ACTIONS(13495), 1, aux_sym_concatenation_token1, - ACTIONS(14668), 1, + ACTIONS(13497), 1, sym__concat, - ACTIONS(14767), 1, + ACTIONS(13584), 1, anon_sym_in, - ACTIONS(14771), 1, + ACTIONS(13588), 1, aux_sym_heredoc_redirect_token1, - STATE(6099), 1, + STATE(5779), 1, aux_sym_concatenation_repeat1, - ACTIONS(14769), 3, + ACTIONS(13586), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [300479] = 7, + [285108] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(14666), 1, + ACTIONS(13495), 1, aux_sym_concatenation_token1, - ACTIONS(14668), 1, + ACTIONS(13497), 1, sym__concat, - ACTIONS(14773), 1, + ACTIONS(13590), 1, anon_sym_in, - ACTIONS(14777), 1, + ACTIONS(13594), 1, aux_sym_heredoc_redirect_token1, - STATE(6101), 1, + STATE(5779), 1, aux_sym_concatenation_repeat1, - ACTIONS(14775), 3, + ACTIONS(13592), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [300503] = 7, + [285132] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(14666), 1, + ACTIONS(13495), 1, aux_sym_concatenation_token1, - ACTIONS(14668), 1, + ACTIONS(13497), 1, sym__concat, - ACTIONS(14779), 1, + ACTIONS(13596), 1, anon_sym_in, - ACTIONS(14783), 1, + ACTIONS(13600), 1, aux_sym_heredoc_redirect_token1, - STATE(6099), 1, + STATE(5781), 1, aux_sym_concatenation_repeat1, - ACTIONS(14781), 3, + ACTIONS(13598), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [300527] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1298), 7, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_COLON, - anon_sym_RBRACE3, - [300540] = 3, + [285156] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 2, - sym__concat, + ACTIONS(1215), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 5, + ACTIONS(13495), 1, + aux_sym_concatenation_token1, + ACTIONS(13602), 1, + sym__concat, + STATE(5780), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1213), 4, 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, + [285178] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14708), 1, - anon_sym_in, - ACTIONS(14712), 1, + ACTIONS(1221), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(14785), 1, - sym__special_character, - STATE(6121), 1, - aux_sym__literal_repeat1, - ACTIONS(14710), 3, + ACTIONS(13604), 1, + aux_sym_concatenation_token1, + ACTIONS(13607), 1, + sym__concat, + STATE(5780), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1219), 4, + anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [300591] = 3, + [285200] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 2, - sym__concat, + ACTIONS(1209), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 5, + ACTIONS(13495), 1, + aux_sym_concatenation_token1, + ACTIONS(13610), 1, + sym__concat, + STATE(5780), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1207), 4, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - aux_sym_concatenation_token1, - [300606] = 2, + [285222] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(1302), 7, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6699), 1, + aux_sym_number_token1, + ACTIONS(6701), 1, + aux_sym_number_token2, + ACTIONS(13574), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13612), 1, + aux_sym__simple_variable_name_token1, + STATE(5824), 1, + sym__expansion_max_length_binary_expression, + STATE(5783), 3, + sym_number, + sym_expansion, + sym__expansion_max_length_expression, + [285246] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13616), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(13614), 4, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_COLON, anon_sym_RBRACE3, - [300619] = 2, + [285261] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(1306), 7, @@ -324249,7 +308094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_COLON, anon_sym_RBRACE3, - [300632] = 2, + [285274] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(1302), 7, @@ -324260,159 +308105,269 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_COLON, anon_sym_RBRACE3, - [300645] = 6, + [285287] = 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, + [285302] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1304), 1, + anon_sym_DOLLAR, + ACTIONS(1306), 6, + sym_heredoc_content, + sym_heredoc_end, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + [285317] = 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, + [285332] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13568), 1, + anon_sym_in, + ACTIONS(13572), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(13618), 1, + sym__special_character, + STATE(5811), 1, + aux_sym__literal_repeat1, + ACTIONS(13570), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + [285353] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1278), 7, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_RBRACE3, + [285366] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13562), 1, + anon_sym_in, + ACTIONS(13566), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(13618), 1, + sym__special_character, + STATE(5811), 1, + aux_sym__literal_repeat1, + ACTIONS(13564), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + [285387] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1282), 2, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1280), 5, + anon_sym_in, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + aux_sym_concatenation_token1, + [285402] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1270), 2, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1268), 5, + anon_sym_in, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + aux_sym_concatenation_token1, + [285417] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14773), 1, + ACTIONS(1278), 2, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1276), 5, anon_sym_in, - ACTIONS(14777), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(14785), 1, - sym__special_character, - STATE(6121), 1, - aux_sym__literal_repeat1, - ACTIONS(14775), 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, - 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(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, + aux_sym_concatenation_token1, + [285432] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 1, + ACTIONS(13596), 1, + anon_sym_in, + ACTIONS(13600), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(14787), 1, + ACTIONS(13618), 1, sym__special_character, - STATE(6121), 1, + STATE(5811), 1, aux_sym__literal_repeat1, - ACTIONS(1316), 4, - anon_sym_in, + ACTIONS(13598), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [300730] = 3, + [285453] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 2, + ACTIONS(1310), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 5, + ACTIONS(1308), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [300745] = 3, + [285468] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13622), 1, + anon_sym_COLON, + ACTIONS(13624), 1, + anon_sym_RBRACE3, + ACTIONS(13620), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [285485] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 2, + ACTIONS(1286), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 5, + ACTIONS(1284), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [300760] = 3, + [285500] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 2, + ACTIONS(1290), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 5, + ACTIONS(1288), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [300775] = 3, + [285515] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 2, + ACTIONS(1266), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 5, + ACTIONS(1264), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [300790] = 3, + [285530] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 2, + ACTIONS(1250), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 5, + ACTIONS(1248), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [300805] = 3, + [285545] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 2, + ACTIONS(1294), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 5, + ACTIONS(1292), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [300820] = 3, + [285560] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14792), 3, + ACTIONS(1302), 7, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(14790), 4, + anon_sym_COLON, + anon_sym_RBRACE3, + [285573] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13614), 7, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_COLON, anon_sym_RBRACE3, - [300835] = 2, + [285586] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1294), 7, + ACTIONS(1284), 1, + anon_sym_DOLLAR, + ACTIONS(1286), 6, + sym_heredoc_content, + sym_heredoc_end, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + [285601] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1288), 1, + anon_sym_DOLLAR, + ACTIONS(1290), 6, + sym_heredoc_content, + sym_heredoc_end, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + [285616] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1250), 7, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -324420,10 +308375,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_COLON, anon_sym_RBRACE3, - [300848] = 2, + [285629] = 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, + [285644] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1292), 1, + anon_sym_DOLLAR, + ACTIONS(1294), 6, + sym_heredoc_content, + sym_heredoc_end, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + [285659] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14790), 7, + ACTIONS(1294), 7, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -324431,3301 +308410,3267 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_COLON, anon_sym_RBRACE3, - [300861] = 3, + [285672] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 2, - sym__concat, + ACTIONS(1318), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 5, + ACTIONS(13626), 1, + sym__special_character, + STATE(5811), 1, + aux_sym__literal_repeat1, + ACTIONS(1316), 4, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - aux_sym_concatenation_token1, - [300876] = 3, + [285691] = 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, + [285704] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 2, + ACTIONS(1314), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 5, + ACTIONS(1312), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [300891] = 6, + [285719] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14747), 1, + ACTIONS(13544), 1, anon_sym_in, - ACTIONS(14751), 1, + ACTIONS(13548), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(14785), 1, + ACTIONS(13618), 1, sym__special_character, - STATE(6121), 1, + STATE(5811), 1, aux_sym__literal_repeat1, - ACTIONS(14749), 3, + ACTIONS(13546), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [300912] = 3, + [285740] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 2, + ACTIONS(1262), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 5, + ACTIONS(1260), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [300927] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14796), 1, - anon_sym_COLON, - ACTIONS(14798), 1, - anon_sym_RBRACE3, - ACTIONS(14794), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [300944] = 6, + [285755] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14761), 1, - anon_sym_in, - ACTIONS(14765), 1, + ACTIONS(1258), 2, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(14785), 1, - sym__special_character, - STATE(6121), 1, - aux_sym__literal_repeat1, - ACTIONS(14763), 3, + ACTIONS(1256), 5, + anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [300965] = 3, + aux_sym_concatenation_token1, + [285770] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 2, + ACTIONS(1298), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 5, + ACTIONS(1296), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [300980] = 3, + [285785] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 2, + ACTIONS(1302), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 5, + ACTIONS(1300), 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, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1282), 7, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_COLON, - anon_sym_RBRACE3, - [301021] = 3, + [285800] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 2, + ACTIONS(1306), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 5, + ACTIONS(1304), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [301036] = 3, + [285815] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 2, + ACTIONS(1221), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 5, + ACTIONS(1219), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [301051] = 3, + [285830] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 2, + ACTIONS(1274), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 5, + ACTIONS(1272), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [301066] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1276), 1, - anon_sym_DOLLAR, - ACTIONS(1278), 6, - sym_heredoc_content, - sym_heredoc_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [301081] = 3, + [285845] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 2, + ACTIONS(1302), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 5, + ACTIONS(1300), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [301096] = 3, + [285860] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 2, + ACTIONS(1254), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 5, + ACTIONS(1252), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [301111] = 4, + [285875] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14802), 1, - anon_sym_COLON, - ACTIONS(14804), 1, - anon_sym_RBRACE3, - ACTIONS(14800), 5, + ACTIONS(13629), 7, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [301128] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1292), 1, - anon_sym_DOLLAR, - ACTIONS(1294), 6, - sym_heredoc_content, - sym_heredoc_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [301143] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1310), 2, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - aux_sym_concatenation_token1, - [301158] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1288), 1, - anon_sym_DOLLAR, - ACTIONS(1290), 6, - sym_heredoc_content, - sym_heredoc_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [301173] = 2, + anon_sym_COLON, + anon_sym_RBRACE3, + [285888] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14800), 7, + ACTIONS(13631), 1, + anon_sym_COLON, + ACTIONS(13633), 1, + anon_sym_RBRACE3, + ACTIONS(13629), 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, + [285905] = 6, + ACTIONS(3), 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, + ACTIONS(13637), 1, + anon_sym_COMMA, + ACTIONS(13639), 1, + aux_sym_heredoc_redirect_token1, + STATE(3988), 1, + sym__c_terminator, + STATE(5940), 1, + aux_sym__for_body_repeat1, + ACTIONS(13635), 2, + anon_sym_SEMI, + anon_sym_AMP, + [285925] = 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(203), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(65), 1, + ACTIONS(207), 1, anon_sym_BQUOTE, - ACTIONS(67), 1, + ACTIONS(209), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14814), 1, + ACTIONS(13641), 1, anon_sym_DOLLAR_LPAREN, - STATE(1090), 2, + STATE(481), 2, sym_expansion, sym_command_substitution, - [301246] = 6, + [285945] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(324), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(328), 1, - anon_sym_BQUOTE, - ACTIONS(330), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(14816), 1, - anon_sym_DOLLAR_LPAREN, - STATE(1069), 2, - sym_expansion, - sym_command_substitution, - [301266] = 6, + ACTIONS(362), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(386), 1, + anon_sym_LBRACE, + ACTIONS(13643), 1, + anon_sym_SEMI, + ACTIONS(13645), 1, + anon_sym_do, + STATE(4521), 1, + sym_do_group, + STATE(4522), 1, + sym_compound_statement, + [285967] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(9696), 1, + ACTIONS(7057), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9698), 1, + ACTIONS(7059), 1, anon_sym_BQUOTE, - ACTIONS(9700), 1, + ACTIONS(7061), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14818), 1, + ACTIONS(13647), 1, anon_sym_DOLLAR_LPAREN, - STATE(1807), 2, + STATE(1124), 2, sym_expansion, sym_command_substitution, - [301286] = 3, + [285987] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14820), 1, + ACTIONS(13649), 1, anon_sym_RBRACE3, - ACTIONS(14794), 5, + ACTIONS(13620), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [301300] = 6, + [286001] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(385), 1, + ACTIONS(11108), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5375), 1, - anon_sym_BQUOTE, - ACTIONS(14822), 1, + ACTIONS(11110), 1, anon_sym_DOLLAR_LPAREN, - STATE(2525), 2, + ACTIONS(11112), 1, + anon_sym_BQUOTE, + ACTIONS(11114), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3137), 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, + [286021] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(4080), 1, + ACTIONS(9397), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4084), 1, + ACTIONS(9399), 1, anon_sym_BQUOTE, - ACTIONS(4086), 1, + ACTIONS(9401), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14826), 1, + ACTIONS(13651), 1, anon_sym_DOLLAR_LPAREN, - STATE(2511), 2, + STATE(4010), 2, sym_expansion, sym_command_substitution, - [301354] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14828), 1, - anon_sym_RBRACE3, - ACTIONS(14800), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [301368] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7518), 1, + [286041] = 6, + ACTIONS(61), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, + ACTIONS(65), 1, anon_sym_BQUOTE, - ACTIONS(7522), 1, + ACTIONS(67), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14830), 1, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13653), 1, anon_sym_DOLLAR_LPAREN, - STATE(6402), 2, + STATE(1016), 2, sym_expansion, sym_command_substitution, - [301388] = 6, + [286061] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(4554), 1, + ACTIONS(3748), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4558), 1, + ACTIONS(3752), 1, anon_sym_BQUOTE, - ACTIONS(4560), 1, + ACTIONS(3754), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14832), 1, + ACTIONS(13655), 1, anon_sym_DOLLAR_LPAREN, - STATE(2601), 2, + STATE(2486), 2, sym_expansion, sym_command_substitution, - [301408] = 6, + [286081] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(8386), 1, + ACTIONS(6991), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8390), 1, + ACTIONS(6995), 1, anon_sym_BQUOTE, - ACTIONS(8392), 1, + ACTIONS(6997), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14834), 1, + ACTIONS(13657), 1, anon_sym_DOLLAR_LPAREN, - STATE(4393), 2, + STATE(5063), 2, sym_expansion, sym_command_substitution, - [301428] = 3, + [286101] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14836), 1, - anon_sym_RBRACE3, - ACTIONS(14800), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, + ACTIONS(13659), 1, anon_sym_SLASH, - anon_sym_PERCENT, - [301442] = 6, + ACTIONS(13663), 1, + anon_sym_RBRACE3, + ACTIONS(13665), 1, + sym__expansion_word, + STATE(5972), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(13661), 2, + sym__concat, + aux_sym_concatenation_token1, + [286121] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(8653), 1, + ACTIONS(4251), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8657), 1, + ACTIONS(4255), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(4257), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14838), 1, + ACTIONS(13667), 1, anon_sym_DOLLAR_LPAREN, - STATE(5144), 2, + STATE(2467), 2, sym_expansion, sym_command_substitution, - [301462] = 6, + [286141] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(4645), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4649), 1, - anon_sym_BQUOTE, - ACTIONS(4651), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(14840), 1, - anon_sym_DOLLAR_LPAREN, - STATE(2755), 2, - sym_expansion, - sym_command_substitution, - [301482] = 6, - ACTIONS(3), 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(13669), 1, + anon_sym_SLASH, + ACTIONS(13671), 1, + anon_sym_RBRACE3, + ACTIONS(13673), 1, + sym__expansion_word, + STATE(5972), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(13661), 2, + sym__concat, + aux_sym_concatenation_token1, + [286161] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(10502), 1, + ACTIONS(717), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, + ACTIONS(721), 1, anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(723), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14848), 1, + ACTIONS(13675), 1, anon_sym_DOLLAR_LPAREN, - STATE(4395), 2, + STATE(839), 2, sym_expansion, sym_command_substitution, - [301522] = 6, + [286181] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(9912), 1, + ACTIONS(8993), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9916), 1, + ACTIONS(8995), 1, anon_sym_BQUOTE, - ACTIONS(9918), 1, + ACTIONS(8997), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14850), 1, + ACTIONS(13677), 1, anon_sym_DOLLAR_LPAREN, - STATE(2339), 2, + STATE(4242), 2, sym_expansion, sym_command_substitution, - [301542] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14852), 1, - anon_sym_RBRACE3, - ACTIONS(14794), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [301556] = 6, + [286201] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(10154), 1, + ACTIONS(1113), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10156), 1, - anon_sym_BQUOTE, - ACTIONS(10158), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14854), 1, + ACTIONS(4951), 1, + anon_sym_BQUOTE, + ACTIONS(13679), 1, anon_sym_DOLLAR_LPAREN, - STATE(1413), 2, + STATE(2113), 2, sym_expansion, sym_command_substitution, - [301576] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14852), 1, - anon_sym_RBRACE3, - ACTIONS(14794), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [301590] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14852), 1, - anon_sym_RBRACE3, - ACTIONS(14794), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [301604] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14856), 1, - anon_sym_RBRACE3, - ACTIONS(14800), 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, + [286221] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14862), 1, + ACTIONS(13681), 1, anon_sym_fi, - ACTIONS(14864), 1, + ACTIONS(13683), 1, anon_sym_elif, - ACTIONS(14866), 1, + ACTIONS(13685), 1, anon_sym_else, - STATE(7173), 1, + STATE(7009), 1, sym_else_clause, - STATE(6335), 2, + STATE(5990), 2, sym_elif_clause, aux_sym_if_statement_repeat1, - [301660] = 6, + [286241] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14844), 1, + ACTIONS(13689), 2, + sym_regex, + aux_sym__expansion_regex_token1, + ACTIONS(13687), 4, + anon_sym_RPAREN, + anon_sym_DQUOTE, + sym_raw_string, + anon_sym_RBRACE3, + [286255] = 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, + [286269] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13637), 1, anon_sym_COMMA, - ACTIONS(14870), 1, + ACTIONS(13693), 1, aux_sym_heredoc_redirect_token1, - STATE(4151), 1, + STATE(4350), 1, sym__c_terminator, - STATE(6361), 1, + STATE(6062), 1, aux_sym__for_body_repeat1, - ACTIONS(14868), 2, + ACTIONS(13691), 2, anon_sym_SEMI, anon_sym_AMP, - [301680] = 6, + [286289] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(12313), 1, + ACTIONS(7137), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12315), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12317), 1, + ACTIONS(7141), 1, anon_sym_BQUOTE, - ACTIONS(12319), 1, + ACTIONS(7143), 1, anon_sym_DOLLAR_BQUOTE, - STATE(3215), 2, + ACTIONS(13695), 1, + anon_sym_DOLLAR_LPAREN, + STATE(4025), 2, sym_expansion, sym_command_substitution, - [301700] = 6, + [286309] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7952), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7956), 1, - anon_sym_BQUOTE, - ACTIONS(7958), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(14872), 1, - anon_sym_DOLLAR_LPAREN, - STATE(4261), 2, - sym_expansion, - sym_command_substitution, - [301720] = 6, + ACTIONS(13697), 1, + anon_sym_RBRACE3, + ACTIONS(13629), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [286323] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14864), 1, + ACTIONS(13683), 1, anon_sym_elif, - ACTIONS(14866), 1, + ACTIONS(13685), 1, anon_sym_else, - ACTIONS(14874), 1, + ACTIONS(13699), 1, anon_sym_fi, - STATE(7187), 1, + STATE(6861), 1, sym_else_clause, - STATE(6335), 2, + STATE(5990), 2, sym_elif_clause, aux_sym_if_statement_repeat1, - [301740] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(8617), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8619), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8621), 1, - anon_sym_BQUOTE, - ACTIONS(8623), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(3092), 2, - sym_expansion, - sym_command_substitution, - [301760] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(10052), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10054), 1, - anon_sym_BQUOTE, - ACTIONS(10056), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(14876), 1, - anon_sym_DOLLAR_LPAREN, - STATE(904), 2, - sym_expansion, - sym_command_substitution, - [301780] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(10306), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10308), 1, - anon_sym_BQUOTE, - ACTIONS(10310), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(14878), 1, - anon_sym_DOLLAR_LPAREN, - STATE(1856), 2, - sym_expansion, - sym_command_substitution, - [301800] = 6, + [286343] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(10448), 1, + ACTIONS(9221), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10450), 1, + ACTIONS(9225), 1, anon_sym_BQUOTE, - ACTIONS(10452), 1, + ACTIONS(9227), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14880), 1, + ACTIONS(13701), 1, anon_sym_DOLLAR_LPAREN, - STATE(4384), 2, + STATE(2282), 2, sym_expansion, sym_command_substitution, - [301820] = 6, + [286363] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(9844), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9846), 1, - anon_sym_BQUOTE, - ACTIONS(9848), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(14882), 1, - anon_sym_DOLLAR_LPAREN, - STATE(1758), 2, - sym_expansion, - sym_command_substitution, - [301840] = 6, + STATE(5998), 1, + aux_sym_concatenation_repeat1, + ACTIONS(13703), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1231), 3, + anon_sym_PIPE, + anon_sym_RPAREN, + sym__special_character, + [286379] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(7844), 1, + ACTIONS(6464), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7848), 1, + ACTIONS(6466), 1, anon_sym_BQUOTE, - ACTIONS(7850), 1, + ACTIONS(6468), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14884), 1, + ACTIONS(13705), 1, anon_sym_DOLLAR_LPAREN, - STATE(2450), 2, + STATE(6097), 2, sym_expansion, sym_command_substitution, - [301860] = 6, + [286399] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14844), 1, + ACTIONS(13637), 1, anon_sym_COMMA, - ACTIONS(14888), 1, + ACTIONS(13709), 1, aux_sym_heredoc_redirect_token1, - STATE(4671), 1, + STATE(4417), 1, sym__c_terminator, - STATE(6227), 1, + STATE(6062), 1, aux_sym__for_body_repeat1, - ACTIONS(14886), 2, + ACTIONS(13707), 2, anon_sym_SEMI, anon_sym_AMP, - [301880] = 6, + [286419] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(12093), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12095), 1, + ACTIONS(13683), 1, + anon_sym_elif, + ACTIONS(13685), 1, + anon_sym_else, + ACTIONS(13711), 1, + anon_sym_fi, + STATE(6421), 1, + sym_else_clause, + STATE(5990), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [286439] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13507), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12097), 1, + ACTIONS(13509), 1, anon_sym_BQUOTE, - ACTIONS(12099), 1, + ACTIONS(13511), 1, anon_sym_DOLLAR_BQUOTE, - STATE(3117), 2, + ACTIONS(13574), 1, + anon_sym_DOLLAR_LBRACE, + STATE(5807), 2, sym_expansion, sym_command_substitution, - [301900] = 6, + [286459] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14806), 1, + ACTIONS(13713), 1, anon_sym_PIPE, - ACTIONS(14890), 1, + ACTIONS(13715), 1, anon_sym_RPAREN, - STATE(6383), 1, + STATE(5998), 1, aux_sym_concatenation_repeat1, - STATE(6609), 1, + STATE(6253), 1, aux_sym_case_item_repeat1, - ACTIONS(14810), 2, + ACTIONS(13703), 2, sym__concat, aux_sym_concatenation_token1, - [301920] = 3, + [286479] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14892), 1, + ACTIONS(13649), 1, anon_sym_RBRACE3, - ACTIONS(14794), 5, + ACTIONS(13620), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [301934] = 6, + [286493] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(8022), 1, + ACTIONS(3544), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8024), 1, + ACTIONS(3548), 1, anon_sym_BQUOTE, - ACTIONS(8026), 1, + ACTIONS(3550), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14894), 1, + ACTIONS(13717), 1, anon_sym_DOLLAR_LPAREN, - STATE(1563), 2, + STATE(2443), 2, sym_expansion, sym_command_substitution, - [301954] = 6, + [286513] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_PIPE, + ACTIONS(13719), 1, + anon_sym_RPAREN, + STATE(5998), 1, + aux_sym_concatenation_repeat1, + STATE(6157), 1, + aux_sym_case_item_repeat1, + ACTIONS(13703), 2, + sym__concat, + aux_sym_concatenation_token1, + [286533] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(10334), 1, + ACTIONS(9097), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10338), 1, + ACTIONS(9099), 1, anon_sym_BQUOTE, - ACTIONS(10340), 1, + ACTIONS(9101), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14896), 1, + ACTIONS(13721), 1, anon_sym_DOLLAR_LPAREN, - STATE(6145), 2, + STATE(5269), 2, sym_expansion, sym_command_substitution, - [301974] = 7, + [286553] = 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(7029), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7031), 1, + anon_sym_BQUOTE, + ACTIONS(7033), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13723), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1377), 2, + sym_expansion, + sym_command_substitution, + [286573] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(10418), 1, + ACTIONS(7213), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10420), 1, + ACTIONS(7217), 1, anon_sym_BQUOTE, - ACTIONS(10422), 1, + ACTIONS(7219), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14902), 1, + ACTIONS(13725), 1, anon_sym_DOLLAR_LPAREN, - STATE(4647), 2, + STATE(1458), 2, sym_expansion, sym_command_substitution, - [302016] = 6, + [286593] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(9772), 1, + ACTIONS(7453), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9774), 1, + ACTIONS(7457), 1, anon_sym_BQUOTE, - ACTIONS(9776), 1, + ACTIONS(7459), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14904), 1, + ACTIONS(13727), 1, anon_sym_DOLLAR_LPAREN, - STATE(1025), 2, + STATE(1273), 2, sym_expansion, sym_command_substitution, - [302036] = 6, + [286613] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14906), 1, - anon_sym_SLASH, - ACTIONS(14910), 1, + ACTIONS(13729), 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(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(13620), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [286627] = 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(7315), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7319), 1, + anon_sym_BQUOTE, + ACTIONS(7321), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13731), 1, + anon_sym_DOLLAR_LPAREN, + STATE(2330), 2, + sym_expansion, + sym_command_substitution, + [286647] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14864), 1, - anon_sym_elif, - ACTIONS(14866), 1, - anon_sym_else, - ACTIONS(14916), 1, - anon_sym_fi, - STATE(7430), 1, - sym_else_clause, - STATE(6335), 2, - sym_elif_clause, - aux_sym_if_statement_repeat1, - [302112] = 6, + ACTIONS(7503), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7505), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7507), 1, + anon_sym_BQUOTE, + ACTIONS(7509), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2628), 2, + sym_expansion, + sym_command_substitution, + [286667] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(9940), 1, + ACTIONS(7091), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9942), 1, + ACTIONS(7095), 1, anon_sym_BQUOTE, - ACTIONS(9944), 1, + ACTIONS(7097), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14918), 1, + ACTIONS(13733), 1, anon_sym_DOLLAR_LPAREN, - STATE(1493), 2, + STATE(1118), 2, sym_expansion, sym_command_substitution, - [302132] = 6, + [286687] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(8084), 1, + ACTIONS(1055), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8088), 1, + ACTIONS(1059), 1, anon_sym_BQUOTE, - ACTIONS(8090), 1, + ACTIONS(1061), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14920), 1, + ACTIONS(13735), 1, anon_sym_DOLLAR_LPAREN, - STATE(5340), 2, + STATE(1741), 2, sym_expansion, sym_command_substitution, - [302152] = 6, + [286707] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(9984), 1, + ACTIONS(9753), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9986), 1, + ACTIONS(9755), 1, anon_sym_BQUOTE, - ACTIONS(9988), 1, + ACTIONS(9757), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14922), 1, + ACTIONS(13737), 1, anon_sym_DOLLAR_LPAREN, - STATE(1152), 2, + STATE(1229), 2, sym_expansion, sym_command_substitution, - [302172] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14806), 1, - anon_sym_PIPE, - ACTIONS(14924), 1, - 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, + [286727] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14892), 1, + ACTIONS(13739), 1, anon_sym_RBRACE3, - ACTIONS(14794), 5, + ACTIONS(13620), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [302206] = 6, - 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(71), 1, - sym_comment, - ACTIONS(4851), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4855), 1, - anon_sym_BQUOTE, - ACTIONS(4857), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(14930), 1, - anon_sym_DOLLAR_LPAREN, - STATE(5204), 2, - sym_expansion, - sym_command_substitution, - [302246] = 3, + [286741] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14932), 1, + ACTIONS(13741), 1, anon_sym_RBRACE3, - ACTIONS(14794), 5, + ACTIONS(13629), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [302260] = 6, + [286755] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(4819), 1, + ACTIONS(7353), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4823), 1, + ACTIONS(7357), 1, anon_sym_BQUOTE, - ACTIONS(4825), 1, + ACTIONS(7359), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14934), 1, + ACTIONS(13743), 1, anon_sym_DOLLAR_LPAREN, - STATE(2796), 2, + STATE(3281), 2, sym_expansion, sym_command_substitution, - [302280] = 6, + [286775] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(9734), 1, + ACTIONS(7273), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9736), 1, + ACTIONS(7275), 1, anon_sym_BQUOTE, - ACTIONS(9738), 1, + ACTIONS(7277), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14936), 1, + ACTIONS(13745), 1, anon_sym_DOLLAR_LPAREN, - STATE(1714), 2, + STATE(1270), 2, sym_expansion, sym_command_substitution, - [302300] = 6, + [286795] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(2669), 1, + ACTIONS(9591), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2673), 1, + ACTIONS(9593), 1, anon_sym_BQUOTE, - ACTIONS(2675), 1, + ACTIONS(9595), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14938), 1, + ACTIONS(13747), 1, anon_sym_DOLLAR_LPAREN, - STATE(2272), 2, + STATE(4103), 2, sym_expansion, sym_command_substitution, - [302320] = 6, - ACTIONS(71), 1, + [286815] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(10800), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10802), 1, - anon_sym_BQUOTE, - ACTIONS(10804), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(14940), 1, - anon_sym_DOLLAR_LPAREN, - STATE(1881), 2, - sym_expansion, - sym_command_substitution, - [302340] = 6, + ACTIONS(1282), 2, + sym_regex, + aux_sym__expansion_regex_token1, + ACTIONS(1280), 4, + anon_sym_RPAREN, + anon_sym_DQUOTE, + sym_raw_string, + anon_sym_RBRACE3, + [286829] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(10214), 1, + ACTIONS(6915), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10216), 1, + ACTIONS(6917), 1, anon_sym_BQUOTE, - ACTIONS(10218), 1, + ACTIONS(6919), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14942), 1, + ACTIONS(13749), 1, anon_sym_DOLLAR_LPAREN, - STATE(4484), 2, + STATE(1476), 2, sym_expansion, sym_command_substitution, - [302360] = 6, + [286849] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5111), 1, - anon_sym_BQUOTE, - ACTIONS(5113), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(14944), 1, - anon_sym_DOLLAR_LPAREN, - STATE(5260), 2, - sym_expansion, - sym_command_substitution, - [302380] = 6, + ACTIONS(13751), 1, + anon_sym_SLASH, + ACTIONS(13753), 1, + anon_sym_RBRACE3, + ACTIONS(13755), 1, + sym__expansion_word, + STATE(5972), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(13661), 2, + sym__concat, + aux_sym_concatenation_token1, + [286869] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(9884), 1, + ACTIONS(418), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9886), 1, + ACTIONS(422), 1, anon_sym_BQUOTE, - ACTIONS(9888), 1, + ACTIONS(424), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14946), 1, + ACTIONS(13757), 1, anon_sym_DOLLAR_LPAREN, - STATE(3329), 2, + STATE(754), 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, + [286889] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(9796), 1, + ACTIONS(9831), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9798), 1, + ACTIONS(9833), 1, anon_sym_BQUOTE, - ACTIONS(9800), 1, + ACTIONS(9835), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14948), 1, + ACTIONS(13759), 1, anon_sym_DOLLAR_LPAREN, - STATE(4747), 2, + STATE(1359), 2, sym_expansion, sym_command_substitution, - [302434] = 7, + [286909] = 7, ACTIONS(71), 1, sym_comment, ACTIONS(147), 1, anon_sym_LPAREN_LPAREN, ACTIONS(163), 1, anon_sym_LBRACE, - ACTIONS(14950), 1, + ACTIONS(13761), 1, anon_sym_SEMI, - ACTIONS(14952), 1, + ACTIONS(13763), 1, anon_sym_do, - STATE(5536), 1, - sym_do_group, - STATE(5544), 1, + STATE(5273), 1, sym_compound_statement, - [302456] = 6, + STATE(5309), 1, + sym_do_group, + [286931] = 3, 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, + ACTIONS(13765), 1, + anon_sym_RBRACE3, + ACTIONS(13629), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [286945] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(9638), 1, + ACTIONS(324), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9640), 1, + ACTIONS(328), 1, anon_sym_BQUOTE, - ACTIONS(9642), 1, + ACTIONS(330), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14956), 1, + ACTIONS(13767), 1, anon_sym_DOLLAR_LPAREN, - STATE(1388), 2, + STATE(946), 2, sym_expansion, sym_command_substitution, - [302496] = 6, + [286965] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(8426), 1, + ACTIONS(10411), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(10413), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(10415), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2745), 2, + ACTIONS(13769), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1570), 2, sym_expansion, sym_command_substitution, - [302516] = 6, + [286985] = 3, 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(13771), 1, + anon_sym_RBRACE3, + ACTIONS(13620), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [286999] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14806), 1, + ACTIONS(13713), 1, anon_sym_PIPE, - ACTIONS(14960), 1, + ACTIONS(13773), 1, anon_sym_RPAREN, - STATE(6303), 1, + STATE(6005), 1, aux_sym_concatenation_repeat1, - STATE(6458), 1, + STATE(6190), 1, aux_sym_case_item_repeat1, - ACTIONS(14810), 2, + ACTIONS(13703), 2, sym__concat, aux_sym_concatenation_token1, - [302556] = 6, + [287019] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14962), 1, - anon_sym_SLASH, - ACTIONS(14964), 1, - anon_sym_RBRACE3, - ACTIONS(14966), 1, - sym__expansion_word, - STATE(6309), 1, - aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(14908), 2, - sym__concat, - aux_sym_concatenation_token1, - [302576] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1266), 2, - sym_regex, - aux_sym__expansion_regex_token1, - ACTIONS(1264), 4, - anon_sym_RPAREN, - anon_sym_DQUOTE, - sym_raw_string, - anon_sym_RBRACE3, - [302590] = 6, + ACTIONS(8739), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8741), 1, + anon_sym_BQUOTE, + ACTIONS(8743), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13775), 1, + anon_sym_DOLLAR_LPAREN, + STATE(905), 2, + sym_expansion, + sym_command_substitution, + [287039] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(12475), 1, + ACTIONS(9285), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12477), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12479), 1, + ACTIONS(9287), 1, anon_sym_BQUOTE, - ACTIONS(12481), 1, + ACTIONS(9289), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2882), 2, + ACTIONS(13777), 1, + anon_sym_DOLLAR_LPAREN, + STATE(4151), 2, sym_expansion, sym_command_substitution, - [302610] = 6, + [287059] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13779), 1, + anon_sym_RBRACE3, + ACTIONS(13620), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [287073] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14844), 1, + ACTIONS(13637), 1, anon_sym_COMMA, - ACTIONS(14970), 1, + ACTIONS(13783), 1, aux_sym_heredoc_redirect_token1, - STATE(4563), 1, + STATE(4462), 1, sym__c_terminator, - STATE(6361), 1, + STATE(6062), 1, aux_sym__for_body_repeat1, - ACTIONS(14968), 2, + ACTIONS(13781), 2, anon_sym_SEMI, anon_sym_AMP, - [302630] = 6, + [287093] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(10378), 1, + ACTIONS(123), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10380), 1, + ACTIONS(127), 1, anon_sym_BQUOTE, - ACTIONS(10382), 1, + ACTIONS(129), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14972), 1, + ACTIONS(13785), 1, anon_sym_DOLLAR_LPAREN, - STATE(1540), 2, + STATE(441), 2, sym_expansion, sym_command_substitution, - [302650] = 6, + [287113] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14864), 1, + ACTIONS(13683), 1, anon_sym_elif, - ACTIONS(14866), 1, + ACTIONS(13685), 1, anon_sym_else, - ACTIONS(14974), 1, + ACTIONS(13787), 1, anon_sym_fi, - STATE(6734), 1, + STATE(6988), 1, sym_else_clause, - STATE(6335), 2, + STATE(5990), 2, sym_elif_clause, aux_sym_if_statement_repeat1, - [302670] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7882), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7886), 1, - anon_sym_BQUOTE, - ACTIONS(7888), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(14976), 1, - anon_sym_DOLLAR_LPAREN, - STATE(1650), 2, - sym_expansion, - sym_command_substitution, - [302690] = 6, + [287133] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(10246), 1, + ACTIONS(8893), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10248), 1, + ACTIONS(8897), 1, anon_sym_BQUOTE, - ACTIONS(10250), 1, + ACTIONS(8899), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14978), 1, + ACTIONS(13789), 1, anon_sym_DOLLAR_LPAREN, - STATE(4248), 2, + STATE(5128), 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, + [287153] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(10614), 1, + ACTIONS(9549), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10616), 1, + ACTIONS(9551), 1, anon_sym_BQUOTE, - ACTIONS(10618), 1, + ACTIONS(9553), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14986), 1, + ACTIONS(13791), 1, anon_sym_DOLLAR_LPAREN, - STATE(5546), 2, + STATE(1642), 2, sym_expansion, sym_command_substitution, - [302764] = 6, + [287173] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1121), 1, + ACTIONS(7690), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - ACTIONS(14988), 1, + ACTIONS(7692), 1, anon_sym_DOLLAR_LPAREN, - STATE(2236), 2, - sym_expansion, - sym_command_substitution, - [302784] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(10528), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, + ACTIONS(7694), 1, anon_sym_BQUOTE, - ACTIONS(10532), 1, + ACTIONS(7696), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14990), 1, - anon_sym_DOLLAR_LPAREN, - STATE(4177), 2, + STATE(3068), 2, sym_expansion, sym_command_substitution, - [302804] = 6, + [287193] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(8585), 1, + ACTIONS(4747), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(4751), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(4753), 1, anon_sym_DOLLAR_BQUOTE, - STATE(3177), 2, + ACTIONS(13793), 1, + anon_sym_DOLLAR_LPAREN, + STATE(5189), 2, sym_expansion, sym_command_substitution, - [302824] = 6, + [287213] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(8130), 1, + ACTIONS(8813), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8134), 1, + ACTIONS(8815), 1, anon_sym_BQUOTE, - ACTIONS(8136), 1, + ACTIONS(8817), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14992), 1, + ACTIONS(13795), 1, anon_sym_DOLLAR_LPAREN, - STATE(1168), 2, + STATE(1184), 2, sym_expansion, sym_command_substitution, - [302844] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14994), 1, - anon_sym_RBRACE3, - ACTIONS(14794), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [302858] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14844), 1, - anon_sym_COMMA, - ACTIONS(14998), 1, - aux_sym_heredoc_redirect_token1, - STATE(4623), 1, - sym__c_terminator, - STATE(6206), 1, - aux_sym__for_body_repeat1, - ACTIONS(14996), 2, - anon_sym_SEMI, - anon_sym_AMP, - [302878] = 6, + [287233] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(5335), 1, + ACTIONS(7942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5339), 1, + ACTIONS(7946), 1, anon_sym_BQUOTE, - ACTIONS(5341), 1, + ACTIONS(7948), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(15000), 1, + ACTIONS(13797), 1, anon_sym_DOLLAR_LPAREN, - STATE(5450), 2, + STATE(4947), 2, sym_expansion, sym_command_substitution, - [302898] = 6, + [287253] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14844), 1, - anon_sym_COMMA, - ACTIONS(15004), 1, + ACTIONS(1231), 1, aux_sym_heredoc_redirect_token1, - STATE(4644), 1, - sym__c_terminator, - STATE(6168), 1, - aux_sym__for_body_repeat1, - ACTIONS(15002), 2, + ACTIONS(1229), 5, + anon_sym_in, anon_sym_SEMI, anon_sym_AMP, - [302918] = 6, + anon_sym_SEMI_SEMI, + sym__special_character, + [287267] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(717), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(721), 1, - anon_sym_BQUOTE, - ACTIONS(723), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(15006), 1, - anon_sym_DOLLAR_LPAREN, - STATE(914), 2, - sym_expansion, - sym_command_substitution, - [302938] = 6, + ACTIONS(13739), 1, + anon_sym_RBRACE3, + ACTIONS(13620), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [287281] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(123), 1, + ACTIONS(2697), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(127), 1, + ACTIONS(2701), 1, anon_sym_BQUOTE, - ACTIONS(129), 1, + ACTIONS(2703), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(15008), 1, + ACTIONS(13799), 1, anon_sym_DOLLAR_LPAREN, - STATE(477), 2, + STATE(2149), 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, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14806), 1, - anon_sym_PIPE, - ACTIONS(15010), 1, - anon_sym_RPAREN, - STATE(6383), 1, - aux_sym_concatenation_repeat1, - STATE(6575), 1, - aux_sym_case_item_repeat1, - ACTIONS(14810), 2, - sym__concat, - aux_sym_concatenation_token1, - [302992] = 6, + [287301] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14864), 1, + ACTIONS(13683), 1, anon_sym_elif, - ACTIONS(14866), 1, + ACTIONS(13685), 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, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14806), 1, - anon_sym_PIPE, - ACTIONS(15014), 1, - anon_sym_RPAREN, - STATE(6303), 1, - aux_sym_concatenation_repeat1, - STATE(6490), 1, - aux_sym_case_item_repeat1, - ACTIONS(14810), 2, - sym__concat, - aux_sym_concatenation_token1, - [303032] = 3, + ACTIONS(13801), 1, + anon_sym_fi, + STATE(6391), 1, + sym_else_clause, + STATE(5990), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [287321] = 6, 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, + ACTIONS(8679), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8681), 1, + anon_sym_BQUOTE, + ACTIONS(8683), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13803), 1, + anon_sym_DOLLAR_LPAREN, + STATE(829), 2, + sym_expansion, + sym_command_substitution, + [287341] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14676), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(14678), 1, + ACTIONS(9469), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9471), 1, anon_sym_BQUOTE, - ACTIONS(14680), 1, + ACTIONS(9473), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14704), 1, - anon_sym_DOLLAR_LBRACE, - STATE(6140), 2, + ACTIONS(13805), 1, + anon_sym_DOLLAR_LPAREN, + STATE(4435), 2, sym_expansion, sym_command_substitution, - [303066] = 6, + [287361] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(8274), 1, + ACTIONS(3986), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8276), 1, + ACTIONS(3990), 1, anon_sym_BQUOTE, - ACTIONS(8278), 1, + ACTIONS(3992), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(15018), 1, + ACTIONS(13807), 1, anon_sym_DOLLAR_LPAREN, - STATE(1333), 2, + STATE(2827), 2, sym_expansion, sym_command_substitution, - [303086] = 6, + [287381] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13637), 1, + anon_sym_COMMA, + ACTIONS(13811), 1, + aux_sym_heredoc_redirect_token1, + STATE(4390), 1, + sym__c_terminator, + STATE(5888), 1, + aux_sym__for_body_repeat1, + ACTIONS(13809), 2, + anon_sym_SEMI, + anon_sym_AMP, + [287401] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(5232), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5236), 1, + ACTIONS(8713), 1, anon_sym_BQUOTE, - ACTIONS(5238), 1, + ACTIONS(8715), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(15020), 1, + ACTIONS(13813), 1, anon_sym_DOLLAR_LPAREN, - STATE(5290), 2, + STATE(1138), 2, sym_expansion, sym_command_substitution, - [303106] = 3, + [287421] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15022), 1, + ACTIONS(13649), 1, anon_sym_RBRACE3, - ACTIONS(14800), 5, + ACTIONS(13620), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [303120] = 6, + [287435] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(8316), 1, + ACTIONS(9503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8320), 1, + ACTIONS(9505), 1, anon_sym_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(9507), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(15024), 1, + ACTIONS(13815), 1, anon_sym_DOLLAR_LPAREN, - STATE(1495), 2, + STATE(1751), 2, sym_expansion, sym_command_substitution, - [303140] = 6, + [287455] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(461), 1, + ACTIONS(8851), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(465), 1, + ACTIONS(8853), 1, anon_sym_BQUOTE, - ACTIONS(467), 1, + ACTIONS(8855), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(15026), 1, + ACTIONS(13817), 1, anon_sym_DOLLAR_LPAREN, - STATE(812), 2, + STATE(4219), 2, sym_expansion, sym_command_substitution, - [303160] = 3, - ACTIONS(3), 1, + [287475] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(1258), 2, - sym_regex, - aux_sym__expansion_regex_token1, - ACTIONS(1256), 4, + ACTIONS(13713), 1, + anon_sym_PIPE, + ACTIONS(13819), 1, anon_sym_RPAREN, - anon_sym_DQUOTE, - sym_raw_string, - anon_sym_RBRACE3, - [303174] = 6, + STATE(5998), 1, + aux_sym_concatenation_repeat1, + STATE(6192), 1, + aux_sym_case_item_repeat1, + ACTIONS(13703), 2, + sym__concat, + aux_sym_concatenation_token1, + [287495] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_PIPE, + ACTIONS(13821), 1, + anon_sym_RPAREN, + STATE(6005), 1, + aux_sym_concatenation_repeat1, + STATE(6195), 1, + aux_sym_case_item_repeat1, + ACTIONS(13703), 2, + sym__concat, + aux_sym_concatenation_token1, + [287515] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(8204), 1, + ACTIONS(4213), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8208), 1, + ACTIONS(4217), 1, anon_sym_BQUOTE, - ACTIONS(8210), 1, + ACTIONS(4219), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(15028), 1, + ACTIONS(13823), 1, anon_sym_DOLLAR_LPAREN, - STATE(4241), 2, + STATE(4912), 2, sym_expansion, sym_command_substitution, - [303194] = 6, + [287535] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(8170), 1, + ACTIONS(7391), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8172), 1, + ACTIONS(7395), 1, anon_sym_BQUOTE, - ACTIONS(8174), 1, + ACTIONS(7397), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(15030), 1, + ACTIONS(13825), 1, anon_sym_DOLLAR_LPAREN, - STATE(1173), 2, + STATE(4228), 2, sym_expansion, sym_command_substitution, - [303214] = 6, + [287555] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(9716), 1, + ACTIONS(595), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9718), 1, - anon_sym_BQUOTE, - ACTIONS(9720), 1, + ACTIONS(601), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(15032), 1, + ACTIONS(4667), 1, + anon_sym_BQUOTE, + ACTIONS(13827), 1, anon_sym_DOLLAR_LPAREN, - STATE(2021), 2, + STATE(2381), 2, sym_expansion, sym_command_substitution, - [303234] = 6, + [287575] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1055), 1, + ACTIONS(9975), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1059), 1, + ACTIONS(9979), 1, anon_sym_BQUOTE, - ACTIONS(1061), 1, + ACTIONS(9981), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(15034), 1, + ACTIONS(13829), 1, anon_sym_DOLLAR_LPAREN, - STATE(1985), 2, + STATE(5801), 2, sym_expansion, sym_command_substitution, - [303254] = 7, - ACTIONS(13), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15036), 1, - anon_sym_SEMI, - ACTIONS(15038), 1, - anon_sym_do, - STATE(4930), 1, - sym_do_group, - STATE(4934), 1, - sym_compound_statement, - [303276] = 6, + [287595] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(9658), 1, + ACTIONS(4523), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9660), 1, + ACTIONS(4527), 1, anon_sym_BQUOTE, - ACTIONS(9662), 1, + ACTIONS(4529), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(15040), 1, + ACTIONS(13831), 1, anon_sym_DOLLAR_LPAREN, - STATE(1262), 2, + STATE(5061), 2, sym_expansion, sym_command_substitution, - [303296] = 6, + [287615] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(8242), 1, + ACTIONS(11316), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8246), 1, + ACTIONS(11318), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11320), 1, anon_sym_BQUOTE, - ACTIONS(8248), 1, + ACTIONS(11322), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(15042), 1, - anon_sym_DOLLAR_LPAREN, - STATE(1439), 2, + STATE(2962), 2, sym_expansion, sym_command_substitution, - [303316] = 6, + [287635] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(667), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(685), 1, + anon_sym_LBRACE, + ACTIONS(13833), 1, + anon_sym_SEMI, + ACTIONS(13835), 1, + anon_sym_do, + STATE(4723), 1, + sym_do_group, + STATE(4728), 1, + sym_compound_statement, + [287657] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(7990), 1, + ACTIONS(7175), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7994), 1, + ACTIONS(7179), 1, anon_sym_BQUOTE, - ACTIONS(7996), 1, + ACTIONS(7181), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(15044), 1, + ACTIONS(13837), 1, anon_sym_DOLLAR_LPAREN, - STATE(3406), 2, + STATE(1495), 2, sym_expansion, sym_command_substitution, - [303336] = 3, + [287677] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(15046), 1, - anon_sym_RBRACE3, - ACTIONS(14800), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [303350] = 6, + ACTIONS(13713), 1, + anon_sym_PIPE, + ACTIONS(13839), 1, + anon_sym_RPAREN, + STATE(5998), 1, + aux_sym_concatenation_repeat1, + STATE(6144), 1, + aux_sym_case_item_repeat1, + ACTIONS(13703), 2, + sym__concat, + aux_sym_concatenation_token1, + [287697] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13683), 1, + anon_sym_elif, + ACTIONS(13685), 1, + anon_sym_else, + ACTIONS(13841), 1, + anon_sym_fi, + STATE(6459), 1, + sym_else_clause, + STATE(5990), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [287717] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13683), 1, + anon_sym_elif, + ACTIONS(13685), 1, + anon_sym_else, + ACTIONS(13843), 1, + anon_sym_fi, + STATE(6487), 1, + sym_else_clause, + STATE(5990), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [287737] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(9752), 1, + ACTIONS(6953), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9754), 1, + ACTIONS(6957), 1, anon_sym_BQUOTE, - ACTIONS(9756), 1, + ACTIONS(6959), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(15048), 1, + ACTIONS(13845), 1, anon_sym_DOLLAR_LPAREN, - STATE(1554), 2, + STATE(4060), 2, sym_expansion, sym_command_substitution, - [303370] = 6, + [287757] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13739), 1, + anon_sym_RBRACE3, + ACTIONS(13620), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [287771] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14844), 1, + ACTIONS(13637), 1, anon_sym_COMMA, - ACTIONS(15052), 1, + ACTIONS(13849), 1, aux_sym_heredoc_redirect_token1, - STATE(4154), 1, + STATE(4465), 1, sym__c_terminator, - STATE(6178), 1, + STATE(5845), 1, aux_sym__for_body_repeat1, - ACTIONS(15050), 2, + ACTIONS(13847), 2, anon_sym_SEMI, anon_sym_AMP, - [303390] = 6, + [287791] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(9814), 1, + ACTIONS(9375), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9816), 1, + ACTIONS(9377), 1, anon_sym_BQUOTE, - ACTIONS(9818), 1, + ACTIONS(9379), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(15054), 1, + ACTIONS(13851), 1, anon_sym_DOLLAR_LPAREN, - STATE(2008), 2, + STATE(1479), 2, sym_expansion, sym_command_substitution, - [303410] = 6, + [287811] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(7918), 1, + ACTIONS(13713), 1, + anon_sym_PIPE, + ACTIONS(13853), 1, + anon_sym_RPAREN, + STATE(6005), 1, + aux_sym_concatenation_repeat1, + STATE(6286), 1, + aux_sym_case_item_repeat1, + ACTIONS(13703), 2, + sym__concat, + aux_sym_concatenation_token1, + [287831] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13855), 1, + anon_sym_RBRACE3, + ACTIONS(13629), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [287845] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9077), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7920), 1, + ACTIONS(9079), 1, anon_sym_BQUOTE, - ACTIONS(7922), 1, + ACTIONS(9081), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(15056), 1, + ACTIONS(13857), 1, anon_sym_DOLLAR_LPAREN, - STATE(1633), 2, + STATE(1596), 2, sym_expansion, sym_command_substitution, - [303430] = 6, + [287865] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14864), 1, + ACTIONS(13683), 1, anon_sym_elif, - ACTIONS(14866), 1, + ACTIONS(13685), 1, anon_sym_else, - ACTIONS(15058), 1, + ACTIONS(13859), 1, anon_sym_fi, - STATE(6820), 1, + STATE(6478), 1, sym_else_clause, - STATE(6335), 2, + STATE(5990), 2, sym_elif_clause, aux_sym_if_statement_repeat1, - [303450] = 6, + [287885] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(4339), 1, + ACTIONS(11294), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4343), 1, + ACTIONS(11296), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11298), 1, anon_sym_BQUOTE, - ACTIONS(4345), 1, + ACTIONS(11300), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(15060), 1, + STATE(2696), 2, + sym_expansion, + sym_command_substitution, + [287905] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_PIPE, + ACTIONS(13861), 1, + anon_sym_RPAREN, + STATE(6005), 1, + aux_sym_concatenation_repeat1, + STATE(6146), 1, + aux_sym_case_item_repeat1, + ACTIONS(13703), 2, + sym__concat, + aux_sym_concatenation_token1, + [287925] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7902), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7904), 1, anon_sym_DOLLAR_LPAREN, - STATE(2463), 2, + ACTIONS(7906), 1, + anon_sym_BQUOTE, + ACTIONS(7908), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2923), 2, sym_expansion, sym_command_substitution, - [303470] = 3, + [287945] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13863), 1, + anon_sym_RBRACE3, + ACTIONS(13620), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [287959] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13865), 1, + anon_sym_RBRACE3, + ACTIONS(13629), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [287973] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13637), 1, + anon_sym_COMMA, + ACTIONS(13869), 1, + aux_sym_heredoc_redirect_token1, + STATE(4475), 1, + sym__c_terminator, + STATE(5852), 1, + aux_sym__for_body_repeat1, + ACTIONS(13867), 2, + anon_sym_SEMI, + anon_sym_AMP, + [287993] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15064), 2, + ACTIONS(1262), 2, sym_regex, aux_sym__expansion_regex_token1, - ACTIONS(15062), 4, + ACTIONS(1260), 4, anon_sym_RPAREN, anon_sym_DQUOTE, sym_raw_string, anon_sym_RBRACE3, - [303484] = 6, + [288007] = 7, + ACTIONS(13), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(29), 1, + anon_sym_LBRACE, ACTIONS(71), 1, sym_comment, - ACTIONS(5027), 1, + ACTIONS(13871), 1, + anon_sym_SEMI, + ACTIONS(13873), 1, + anon_sym_do, + STATE(4706), 1, + sym_do_group, + STATE(4707), 1, + sym_compound_statement, + [288029] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8769), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5031), 1, + ACTIONS(8771), 1, anon_sym_BQUOTE, - ACTIONS(5033), 1, + ACTIONS(8773), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(15066), 1, + ACTIONS(13875), 1, anon_sym_DOLLAR_LPAREN, - STATE(2860), 2, + STATE(4651), 2, sym_expansion, sym_command_substitution, - [303504] = 6, + [288049] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(203), 1, + ACTIONS(9327), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(207), 1, + ACTIONS(9329), 1, anon_sym_BQUOTE, - ACTIONS(209), 1, + ACTIONS(9331), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(15068), 1, + ACTIONS(13877), 1, anon_sym_DOLLAR_LPAREN, - STATE(506), 2, + STATE(1783), 2, sym_expansion, sym_command_substitution, - [303524] = 5, - ACTIONS(71), 1, + [288069] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(15070), 1, - anon_sym_SLASH, - ACTIONS(15072), 1, - anon_sym_RBRACE3, - STATE(6309), 1, - aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(14908), 2, - sym__concat, - aux_sym_concatenation_token1, - [303541] = 3, + ACTIONS(13637), 1, + anon_sym_COMMA, + ACTIONS(13881), 1, + aux_sym_heredoc_redirect_token1, + STATE(3987), 1, + sym__c_terminator, + STATE(6062), 1, + aux_sym__for_body_repeat1, + ACTIONS(13879), 2, + anon_sym_SEMI, + anon_sym_AMP, + [288089] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15074), 1, - sym__concat, - ACTIONS(6651), 4, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, + ACTIONS(13883), 1, anon_sym_RBRACE3, - [303554] = 4, + ACTIONS(13629), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [288103] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15076), 1, + ACTIONS(13885), 1, anon_sym_RBRACE3, - STATE(6379), 1, + STATE(6030), 1, aux_sym__expansion_body_repeat1, - ACTIONS(7752), 3, + ACTIONS(6879), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - [303569] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14806), 1, - anon_sym_PIPE, - ACTIONS(14890), 1, - anon_sym_RPAREN, - ACTIONS(15078), 1, - sym__special_character, - STATE(6394), 1, - aux_sym__literal_repeat1, - STATE(6622), 1, - aux_sym_case_item_repeat1, - [303588] = 5, + [288118] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(15080), 1, + ACTIONS(13887), 1, sym_simple_heredoc_body, - ACTIONS(15082), 1, + ACTIONS(13889), 1, sym__heredoc_body_beginning, - STATE(7267), 1, - sym_heredoc_body, - STATE(4962), 2, + STATE(1836), 1, sym__heredoc_body, + STATE(1837), 1, sym__simple_heredoc_body, - [303605] = 5, + STATE(6593), 1, + sym_heredoc_body, + [288137] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(15080), 1, + ACTIONS(13887), 1, sym_simple_heredoc_body, - ACTIONS(15082), 1, + ACTIONS(13889), 1, sym__heredoc_body_beginning, - STATE(7267), 1, - sym_heredoc_body, - STATE(4990), 2, + STATE(1838), 1, sym__heredoc_body, + STATE(1839), 1, sym__simple_heredoc_body, - [303622] = 5, + STATE(6593), 1, + sym_heredoc_body, + [288156] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(15080), 1, - sym_simple_heredoc_body, - ACTIONS(15082), 1, + ACTIONS(13889), 1, sym__heredoc_body_beginning, - STATE(7267), 1, - sym_heredoc_body, - STATE(5013), 2, + ACTIONS(13891), 1, + sym_simple_heredoc_body, + STATE(2182), 1, sym__heredoc_body, + STATE(2183), 1, sym__simple_heredoc_body, - [303639] = 6, + STATE(6901), 1, + sym_heredoc_body, + [288175] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15080), 1, - sym_simple_heredoc_body, - ACTIONS(15082), 1, + ACTIONS(13889), 1, sym__heredoc_body_beginning, - STATE(4944), 1, + ACTIONS(13893), 1, + sym_simple_heredoc_body, + STATE(6465), 1, + sym_heredoc_body, + STATE(3031), 2, sym__heredoc_body, - STATE(4948), 1, sym__simple_heredoc_body, - STATE(7267), 1, - sym_heredoc_body, - [303658] = 6, + [288192] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15080), 1, - sym_simple_heredoc_body, - ACTIONS(15082), 1, + ACTIONS(13889), 1, sym__heredoc_body_beginning, - STATE(4955), 1, + ACTIONS(13895), 1, + sym_simple_heredoc_body, + STATE(6789), 1, + sym_heredoc_body, + STATE(2240), 2, sym__heredoc_body, - STATE(4959), 1, sym__simple_heredoc_body, - STATE(7267), 1, - sym_heredoc_body, - [303677] = 5, + [288209] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15080), 1, - sym_simple_heredoc_body, - ACTIONS(15082), 1, + ACTIONS(13889), 1, sym__heredoc_body_beginning, - STATE(7267), 1, + ACTIONS(13891), 1, + sym_simple_heredoc_body, + STATE(6901), 1, sym_heredoc_body, - STATE(4967), 2, + STATE(2285), 2, sym__heredoc_body, sym__simple_heredoc_body, - [303694] = 5, + [288226] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15080), 1, - sym_simple_heredoc_body, - ACTIONS(15082), 1, + ACTIONS(13897), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(13616), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [288239] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13889), 1, sym__heredoc_body_beginning, - STATE(7267), 1, + ACTIONS(13891), 1, + sym_simple_heredoc_body, + STATE(6901), 1, sym_heredoc_body, - STATE(4977), 2, + STATE(2216), 2, sym__heredoc_body, sym__simple_heredoc_body, - [303711] = 6, + [288256] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15080), 1, - sym_simple_heredoc_body, - ACTIONS(15082), 1, + ACTIONS(13889), 1, sym__heredoc_body_beginning, - STATE(4941), 1, + ACTIONS(13893), 1, + sym_simple_heredoc_body, + STATE(6465), 1, + sym_heredoc_body, + STATE(3037), 2, sym__heredoc_body, - STATE(4985), 1, sym__simple_heredoc_body, - STATE(7267), 1, - sym_heredoc_body, - [303730] = 6, + [288273] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(15080), 1, - sym_simple_heredoc_body, - ACTIONS(15082), 1, + ACTIONS(13889), 1, sym__heredoc_body_beginning, - STATE(4986), 1, + ACTIONS(13893), 1, + sym_simple_heredoc_body, + STATE(3038), 1, sym__heredoc_body, - STATE(4994), 1, + STATE(3039), 1, sym__simple_heredoc_body, - STATE(7267), 1, + STATE(6465), 1, sym_heredoc_body, - [303749] = 5, + [288292] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15080), 1, - sym_simple_heredoc_body, - ACTIONS(15082), 1, + ACTIONS(13889), 1, sym__heredoc_body_beginning, - STATE(7267), 1, + ACTIONS(13893), 1, + sym_simple_heredoc_body, + STATE(6465), 1, sym_heredoc_body, - STATE(4998), 2, + STATE(3024), 2, sym__heredoc_body, sym__simple_heredoc_body, - [303766] = 6, + [288309] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(15080), 1, - sym_simple_heredoc_body, - ACTIONS(15082), 1, + ACTIONS(362), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(386), 1, + anon_sym_LBRACE, + ACTIONS(13645), 1, + anon_sym_do, + STATE(4552), 1, + sym_do_group, + STATE(4554), 1, + sym_compound_statement, + [288328] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13889), 1, sym__heredoc_body_beginning, - STATE(5002), 1, + ACTIONS(13893), 1, + sym_simple_heredoc_body, + STATE(3040), 1, sym__heredoc_body, - STATE(5015), 1, + STATE(3043), 1, sym__simple_heredoc_body, - STATE(7267), 1, + STATE(6465), 1, sym_heredoc_body, - [303785] = 6, + [288347] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15080), 1, - sym_simple_heredoc_body, - ACTIONS(15082), 1, + ACTIONS(13889), 1, sym__heredoc_body_beginning, - STATE(4942), 1, - sym__simple_heredoc_body, - STATE(4981), 1, + ACTIONS(13895), 1, + sym_simple_heredoc_body, + STATE(6789), 1, + sym_heredoc_body, + STATE(2237), 2, sym__heredoc_body, - STATE(7267), 1, + sym__simple_heredoc_body, + [288364] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13889), 1, + sym__heredoc_body_beginning, + ACTIONS(13893), 1, + sym_simple_heredoc_body, + STATE(6465), 1, sym_heredoc_body, - [303804] = 6, + STATE(3044), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [288381] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(13889), 1, sym__heredoc_body_beginning, - ACTIONS(15084), 1, + ACTIONS(13891), 1, sym_simple_heredoc_body, - STATE(5478), 1, + STATE(2186), 1, sym__heredoc_body, - STATE(5479), 1, + STATE(2212), 1, sym__simple_heredoc_body, - STATE(6814), 1, + STATE(6901), 1, sym_heredoc_body, - [303823] = 5, + [288400] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(15086), 1, - anon_sym_SLASH, - ACTIONS(15088), 1, - anon_sym_RBRACE3, - STATE(6309), 1, - aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(14908), 2, - sym__concat, - aux_sym_concatenation_token1, - [303840] = 5, + ACTIONS(13713), 1, + anon_sym_PIPE, + ACTIONS(13719), 1, + anon_sym_RPAREN, + ACTIONS(13899), 1, + sym__special_character, + STATE(6090), 1, + aux_sym__literal_repeat1, + STATE(6198), 1, + aux_sym_case_item_repeat1, + [288419] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(13889), 1, sym__heredoc_body_beginning, - ACTIONS(15090), 1, + ACTIONS(13893), 1, sym_simple_heredoc_body, - STATE(7024), 1, + STATE(6465), 1, sym_heredoc_body, - STATE(5562), 2, + STATE(3047), 2, sym__heredoc_body, sym__simple_heredoc_body, - [303857] = 4, + [288436] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13901), 1, + anon_sym_in, + ACTIONS(13905), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(13903), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + [288451] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(15076), 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, - [303872] = 4, + ACTIONS(13889), 1, + sym__heredoc_body_beginning, + ACTIONS(13895), 1, + sym_simple_heredoc_body, + STATE(2241), 1, + sym__heredoc_body, + STATE(2245), 1, + sym__simple_heredoc_body, + STATE(6789), 1, + sym_heredoc_body, + [288470] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15076), 1, + ACTIONS(13907), 1, anon_sym_RBRACE3, - STATE(6379), 1, + STATE(6030), 1, aux_sym__expansion_body_repeat1, - ACTIONS(7752), 3, + ACTIONS(6879), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - [303887] = 4, + [288485] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15092), 1, + ACTIONS(13909), 1, anon_sym_RBRACE3, - STATE(6379), 1, + STATE(6030), 1, aux_sym__expansion_body_repeat1, - ACTIONS(7752), 3, + ACTIONS(6879), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - [303902] = 5, + [288500] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13556), 1, + anon_sym_in, + ACTIONS(13560), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(13558), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + [288515] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(13889), 1, sym__heredoc_body_beginning, - ACTIONS(15084), 1, + ACTIONS(13893), 1, sym_simple_heredoc_body, - STATE(6814), 1, - sym_heredoc_body, - STATE(5455), 2, + STATE(3049), 1, sym__heredoc_body, + STATE(3051), 1, sym__simple_heredoc_body, - [303919] = 6, + STATE(6465), 1, + sym_heredoc_body, + [288534] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(13889), 1, sym__heredoc_body_beginning, - ACTIONS(15084), 1, + ACTIONS(13891), 1, sym_simple_heredoc_body, - STATE(5480), 1, + STATE(2213), 1, sym__heredoc_body, - STATE(5481), 1, + STATE(2258), 1, sym__simple_heredoc_body, - STATE(6814), 1, + STATE(6901), 1, sym_heredoc_body, - [303938] = 6, + [288553] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13911), 1, + anon_sym_in, + ACTIONS(13915), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(13913), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + [288568] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(13889), 1, sym__heredoc_body_beginning, - ACTIONS(15084), 1, + ACTIONS(13893), 1, sym_simple_heredoc_body, - STATE(5487), 1, + STATE(3052), 1, sym__heredoc_body, - STATE(5488), 1, + STATE(3053), 1, sym__simple_heredoc_body, - STATE(6814), 1, + STATE(6465), 1, sym_heredoc_body, - [303957] = 6, + [288587] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(405), 1, + ACTIONS(147), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(429), 1, + ACTIONS(163), 1, anon_sym_LBRACE, - ACTIONS(14900), 1, + ACTIONS(13763), 1, anon_sym_do, - STATE(4771), 1, + STATE(5258), 1, sym_do_group, - STATE(4893), 1, + STATE(5259), 1, sym_compound_statement, - [303976] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14779), 1, - anon_sym_in, - ACTIONS(14783), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(14781), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - [303991] = 5, + [288606] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(13889), 1, sym__heredoc_body_beginning, - ACTIONS(15084), 1, + ACTIONS(13891), 1, sym_simple_heredoc_body, - STATE(6814), 1, + STATE(6901), 1, sym_heredoc_body, - STATE(5459), 2, + STATE(2270), 2, sym__heredoc_body, sym__simple_heredoc_body, - [304008] = 5, - 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, + [288623] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1306), 5, + STATE(6001), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(13661), 2, sym__concat, - sym__expansion_word, - anon_sym_SLASH, aux_sym_concatenation_token1, + ACTIONS(13917), 2, + anon_sym_SLASH, anon_sym_RBRACE3, - [304036] = 4, + [288638] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(7740), 1, + ACTIONS(13889), 1, + sym__heredoc_body_beginning, + ACTIONS(13893), 1, + sym_simple_heredoc_body, + STATE(6465), 1, + sym_heredoc_body, + STATE(3054), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [288655] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13889), 1, + sym__heredoc_body_beginning, + ACTIONS(13893), 1, + sym_simple_heredoc_body, + STATE(3055), 1, + sym__heredoc_body, + STATE(3056), 1, + sym__simple_heredoc_body, + STATE(6465), 1, + sym_heredoc_body, + [288674] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13889), 1, + sym__heredoc_body_beginning, + ACTIONS(13895), 1, + sym_simple_heredoc_body, + STATE(6789), 1, + sym_heredoc_body, + STATE(2275), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [288691] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13889), 1, + sym__heredoc_body_beginning, + ACTIONS(13893), 1, + sym_simple_heredoc_body, + STATE(3059), 1, + sym__heredoc_body, + STATE(3062), 1, + sym__simple_heredoc_body, + STATE(6465), 1, + sym_heredoc_body, + [288710] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6867), 1, anon_sym_RBRACE3, - STATE(6294), 1, + STATE(6000), 1, aux_sym__expansion_body_repeat1, - ACTIONS(7752), 3, + ACTIONS(6879), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - [304051] = 3, + [288725] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15096), 1, + ACTIONS(13919), 1, + anon_sym_SLASH, + ACTIONS(13921), 1, + anon_sym_RBRACE3, + STATE(5972), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(13661), 2, + sym__concat, + aux_sym_concatenation_token1, + [288742] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13889), 1, + sym__heredoc_body_beginning, + ACTIONS(13895), 1, + sym_simple_heredoc_body, + STATE(2295), 1, + sym__heredoc_body, + STATE(2300), 1, + sym__simple_heredoc_body, + STATE(6789), 1, + sym_heredoc_body, + [288761] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13889), 1, + sym__heredoc_body_beginning, + ACTIONS(13891), 1, + sym_simple_heredoc_body, + STATE(6901), 1, + sym_heredoc_body, + STATE(2278), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [288778] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13923), 1, sym__concat, - ACTIONS(6703), 4, + ACTIONS(5770), 4, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, anon_sym_RBRACE3, - [304064] = 6, + [288791] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14806), 1, - anon_sym_PIPE, - ACTIONS(14914), 1, - anon_sym_RPAREN, - ACTIONS(15078), 1, - sym__special_character, - STATE(6394), 1, - aux_sym__literal_repeat1, - STATE(6502), 1, - aux_sym_case_item_repeat1, - [304083] = 6, - ACTIONS(71), 1, + ACTIONS(13889), 1, + sym__heredoc_body_beginning, + ACTIONS(13891), 1, + sym_simple_heredoc_body, + STATE(2280), 1, + sym__heredoc_body, + STATE(2287), 1, + sym__simple_heredoc_body, + STATE(6901), 1, + sym_heredoc_body, + [288810] = 4, + ACTIONS(3), 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(13925), 1, + anon_sym_in, + ACTIONS(13929), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(13927), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + [288825] = 2, ACTIONS(71), 1, sym_comment, - STATE(6314), 1, - aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(14908), 2, + ACTIONS(1302), 5, sym__concat, + sym__expansion_word, + anon_sym_SLASH, aux_sym_concatenation_token1, - ACTIONS(15098), 2, + anon_sym_RBRACE3, + [288836] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13907), 1, + anon_sym_RBRACE3, + STATE(6030), 1, + aux_sym__expansion_body_repeat1, + ACTIONS(6879), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + [288851] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13887), 1, + sym_simple_heredoc_body, + ACTIONS(13889), 1, + sym__heredoc_body_beginning, + STATE(6593), 1, + sym_heredoc_body, + STATE(1820), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [288868] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13584), 1, + anon_sym_in, + ACTIONS(13588), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(13586), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + [288883] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13931), 1, anon_sym_SLASH, + ACTIONS(13933), 1, anon_sym_RBRACE3, - [304117] = 5, + STATE(5972), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(13661), 2, + sym__concat, + aux_sym_concatenation_token1, + [288900] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15100), 1, + ACTIONS(13659), 1, anon_sym_SLASH, - ACTIONS(15102), 1, + ACTIONS(13663), 1, anon_sym_RBRACE3, - STATE(6309), 1, + STATE(5972), 1, aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(14908), 2, + ACTIONS(13661), 2, sym__concat, aux_sym_concatenation_token1, - [304134] = 4, + [288917] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15104), 1, + ACTIONS(13937), 1, + anon_sym_elif, + ACTIONS(13935), 2, + anon_sym_fi, + anon_sym_else, + STATE(5990), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [288932] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13940), 1, + sym__concat, + ACTIONS(5776), 4, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, anon_sym_RBRACE3, - STATE(6379), 1, + [288945] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_PIPE, + ACTIONS(13839), 1, + anon_sym_RPAREN, + ACTIONS(13899), 1, + sym__special_character, + STATE(6090), 1, + aux_sym__literal_repeat1, + STATE(6148), 1, + aux_sym_case_item_repeat1, + [288964] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6929), 1, + anon_sym_RBRACE3, + STATE(6014), 1, aux_sym__expansion_body_repeat1, - ACTIONS(7752), 3, + ACTIONS(6879), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - [304149] = 5, + [288979] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14980), 1, - anon_sym_SLASH, - ACTIONS(14982), 1, - anon_sym_RBRACE3, - STATE(6309), 1, - aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(14908), 2, + STATE(5998), 1, + aux_sym_concatenation_repeat1, + ACTIONS(13703), 2, sym__concat, aux_sym_concatenation_token1, - [304166] = 4, + ACTIONS(13942), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + [288994] = 6, ACTIONS(71), 1, sym_comment, - STATE(6303), 1, + ACTIONS(13889), 1, + sym__heredoc_body_beginning, + ACTIONS(13891), 1, + sym_simple_heredoc_body, + STATE(2173), 1, + sym__simple_heredoc_body, + STATE(2320), 1, + sym__heredoc_body, + STATE(6901), 1, + sym_heredoc_body, + [289013] = 4, + ACTIONS(71), 1, + sym_comment, + STATE(6005), 1, aux_sym_concatenation_repeat1, - ACTIONS(14810), 2, + ACTIONS(13703), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(15106), 2, + ACTIONS(13944), 2, anon_sym_PIPE, anon_sym_RPAREN, - [304181] = 4, + [289028] = 5, ACTIONS(71), 1, sym_comment, - STATE(6314), 1, - aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(15108), 2, - anon_sym_SLASH, - anon_sym_RBRACE3, - ACTIONS(15110), 2, - sym__concat, - aux_sym_concatenation_token1, - [304196] = 5, + ACTIONS(13887), 1, + sym_simple_heredoc_body, + ACTIONS(13889), 1, + sym__heredoc_body_beginning, + STATE(6593), 1, + sym_heredoc_body, + STATE(1821), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [289045] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14962), 1, - anon_sym_SLASH, - ACTIONS(14964), 1, - anon_sym_RBRACE3, - STATE(6309), 1, - aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(14908), 2, - sym__concat, + ACTIONS(13703), 1, aux_sym_concatenation_token1, - [304213] = 2, + ACTIONS(13946), 1, + sym__concat, + STATE(6020), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + [289062] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1302), 5, - sym__concat, - sym__expansion_word, - anon_sym_SLASH, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [304224] = 4, + ACTIONS(13889), 1, + sym__heredoc_body_beginning, + ACTIONS(13948), 1, + sym_simple_heredoc_body, + STATE(6697), 1, + sym_heredoc_body, + STATE(2083), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [289079] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15113), 1, + ACTIONS(13907), 1, anon_sym_RBRACE3, - STATE(6379), 1, + STATE(6030), 1, aux_sym__expansion_body_repeat1, - ACTIONS(7752), 3, + ACTIONS(6879), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - [304239] = 4, + [289094] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15115), 1, + STATE(6001), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(13950), 2, + anon_sym_SLASH, anon_sym_RBRACE3, - STATE(6379), 1, + ACTIONS(13952), 2, + sym__concat, + aux_sym_concatenation_token1, + [289109] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7473), 1, + anon_sym_RBRACE3, + STATE(6061), 1, aux_sym__expansion_body_repeat1, - ACTIONS(7752), 3, + ACTIONS(6879), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - [304254] = 5, + [289124] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(13889), 1, sym__heredoc_body_beginning, - ACTIONS(15117), 1, + ACTIONS(13948), 1, sym_simple_heredoc_body, - STATE(6932), 1, + STATE(6697), 1, sym_heredoc_body, - STATE(4919), 2, + STATE(2084), 2, sym__heredoc_body, sym__simple_heredoc_body, - [304271] = 4, - ACTIONS(3), 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, - anon_sym_SEMI_SEMI, - [304286] = 5, + [289141] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(13889), 1, sym__heredoc_body_beginning, - ACTIONS(15125), 1, + ACTIONS(13948), 1, sym_simple_heredoc_body, - STATE(7181), 1, + STATE(6697), 1, sym_heredoc_body, - STATE(4861), 2, + STATE(2087), 2, sym__heredoc_body, sym__simple_heredoc_body, - [304303] = 5, + [289158] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(13703), 1, + aux_sym_concatenation_token1, + ACTIONS(13955), 1, + sym__concat, + STATE(6020), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1215), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + [289175] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13889), 1, sym__heredoc_body_beginning, - ACTIONS(15117), 1, + ACTIONS(13948), 1, sym_simple_heredoc_body, - STATE(6932), 1, - sym_heredoc_body, - STATE(4746), 2, + STATE(2092), 1, sym__heredoc_body, + STATE(2093), 1, sym__simple_heredoc_body, - [304320] = 3, + STATE(6697), 1, + sym_heredoc_body, + [289194] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(15127), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(14792), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [304333] = 4, + ACTIONS(13889), 1, + sym__heredoc_body_beginning, + ACTIONS(13948), 1, + sym_simple_heredoc_body, + STATE(2094), 1, + sym__heredoc_body, + STATE(2095), 1, + sym__simple_heredoc_body, + STATE(6697), 1, + sym_heredoc_body, + [289213] = 6, ACTIONS(71), 1, sym_comment, - STATE(6324), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 2, + ACTIONS(13713), 1, anon_sym_PIPE, + ACTIONS(13715), 1, anon_sym_RPAREN, - ACTIONS(15129), 2, - sym__concat, - aux_sym_concatenation_token1, - [304348] = 2, + ACTIONS(13899), 1, + sym__special_character, + STATE(6090), 1, + aux_sym__literal_repeat1, + STATE(6293), 1, + aux_sym_case_item_repeat1, + [289232] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1302), 5, - sym__concat, - sym__expansion_word, - anon_sym_SLASH, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [304359] = 6, + ACTIONS(13889), 1, + sym__heredoc_body_beginning, + ACTIONS(13948), 1, + sym_simple_heredoc_body, + STATE(6697), 1, + sym_heredoc_body, + STATE(2096), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [289249] = 5, 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, - sym_comment, - ACTIONS(15132), 1, - anon_sym_in, - ACTIONS(15136), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(15134), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - [304393] = 5, + ACTIONS(13889), 1, + sym__heredoc_body_beginning, + ACTIONS(13948), 1, + sym_simple_heredoc_body, + STATE(6697), 1, + sym_heredoc_body, + STATE(2097), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [289266] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(13889), 1, sym__heredoc_body_beginning, - ACTIONS(15117), 1, + ACTIONS(13895), 1, sym_simple_heredoc_body, - STATE(6932), 1, + STATE(6789), 1, sym_heredoc_body, - STATE(4843), 2, + STATE(2220), 2, sym__heredoc_body, sym__simple_heredoc_body, - [304410] = 6, + [289283] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(13889), 1, sym__heredoc_body_beginning, - ACTIONS(15117), 1, + ACTIONS(13895), 1, sym_simple_heredoc_body, - STATE(4849), 1, + STATE(2246), 1, sym__heredoc_body, - STATE(4888), 1, + STATE(2247), 1, sym__simple_heredoc_body, - STATE(6932), 1, + STATE(6789), 1, sym_heredoc_body, - [304429] = 5, + [289302] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(13889), 1, sym__heredoc_body_beginning, - ACTIONS(15125), 1, + ACTIONS(13895), 1, sym_simple_heredoc_body, - STATE(7181), 1, - sym_heredoc_body, - STATE(4674), 2, + STATE(2271), 1, sym__heredoc_body, + STATE(2272), 1, sym__simple_heredoc_body, - [304446] = 4, + STATE(6789), 1, + sym_heredoc_body, + [289321] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13885), 1, + anon_sym_RBRACE3, + STATE(6030), 1, + aux_sym__expansion_body_repeat1, + ACTIONS(6879), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + [289336] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14753), 1, + ACTIONS(13578), 1, anon_sym_in, - ACTIONS(14757), 1, + ACTIONS(13582), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(14755), 3, + ACTIONS(13580), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [304461] = 6, + [289351] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(13889), 1, sym__heredoc_body_beginning, - ACTIONS(15125), 1, + ACTIONS(13948), 1, sym_simple_heredoc_body, - STATE(4936), 1, + STATE(2098), 1, sym__heredoc_body, - STATE(4938), 1, + STATE(2100), 1, sym__simple_heredoc_body, - STATE(7181), 1, + STATE(6697), 1, sym_heredoc_body, - [304480] = 6, + [289370] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(13889), 1, sym__heredoc_body_beginning, - ACTIONS(15125), 1, + ACTIONS(13948), 1, sym_simple_heredoc_body, - STATE(4705), 1, + STATE(2101), 1, sym__heredoc_body, - STATE(4708), 1, + STATE(2102), 1, sym__simple_heredoc_body, - STATE(7181), 1, + STATE(6697), 1, sym_heredoc_body, - [304499] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15138), 1, - sym__concat, - ACTIONS(6673), 4, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - anon_sym_RBRACE3, - [304512] = 4, - 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, + [289389] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(13889), 1, sym__heredoc_body_beginning, - ACTIONS(15125), 1, + ACTIONS(13948), 1, sym_simple_heredoc_body, - STATE(7181), 1, + STATE(6697), 1, sym_heredoc_body, - STATE(4788), 2, + STATE(2103), 2, sym__heredoc_body, sym__simple_heredoc_body, - [304544] = 5, + [289406] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(13889), 1, sym__heredoc_body_beginning, - ACTIONS(15125), 1, + ACTIONS(13895), 1, sym_simple_heredoc_body, - STATE(7181), 1, - sym_heredoc_body, - STATE(4732), 2, + STATE(2276), 1, sym__heredoc_body, + STATE(2277), 1, sym__simple_heredoc_body, - [304561] = 6, + STATE(6789), 1, + sym_heredoc_body, + [289425] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + STATE(6020), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1221), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + ACTIONS(13957), 2, + sym__concat, + aux_sym_concatenation_token1, + [289440] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13889), 1, sym__heredoc_body_beginning, - ACTIONS(15125), 1, + ACTIONS(13948), 1, sym_simple_heredoc_body, - STATE(4780), 1, + STATE(2104), 1, sym__heredoc_body, - STATE(4800), 1, + STATE(2105), 1, sym__simple_heredoc_body, - STATE(7181), 1, + STATE(6697), 1, sym_heredoc_body, - [304580] = 6, + [289459] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(13889), 1, sym__heredoc_body_beginning, - ACTIONS(15125), 1, + ACTIONS(13948), 1, sym_simple_heredoc_body, - STATE(4801), 1, + STATE(2106), 1, sym__heredoc_body, - STATE(4820), 1, + STATE(2107), 1, sym__simple_heredoc_body, - STATE(7181), 1, + STATE(6697), 1, sym_heredoc_body, - [304599] = 5, + [289478] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, - sym__heredoc_body_beginning, - ACTIONS(15125), 1, + ACTIONS(13887), 1, sym_simple_heredoc_body, - STATE(7181), 1, + ACTIONS(13889), 1, + sym__heredoc_body_beginning, + STATE(6593), 1, sym_heredoc_body, - STATE(4827), 2, + STATE(1824), 2, sym__heredoc_body, sym__simple_heredoc_body, - [304616] = 4, + [289495] = 6, 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(13713), 1, + anon_sym_PIPE, + ACTIONS(13819), 1, + anon_sym_RPAREN, + ACTIONS(13899), 1, + sym__special_character, + STATE(6090), 1, + aux_sym__literal_repeat1, + STATE(6204), 1, + aux_sym_case_item_repeat1, + [289514] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, - sym__heredoc_body_beginning, - ACTIONS(15125), 1, + ACTIONS(13887), 1, sym_simple_heredoc_body, - STATE(4828), 1, + ACTIONS(13889), 1, + sym__heredoc_body_beginning, + STATE(1825), 1, sym__heredoc_body, - STATE(4831), 1, + STATE(1826), 1, sym__simple_heredoc_body, - STATE(7181), 1, + STATE(6593), 1, sym_heredoc_body, - [304650] = 6, + [289533] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, - sym__heredoc_body_beginning, - ACTIONS(15125), 1, + ACTIONS(13887), 1, sym_simple_heredoc_body, - STATE(4852), 1, + ACTIONS(13889), 1, + sym__heredoc_body_beginning, + STATE(1827), 1, sym__heredoc_body, - STATE(4862), 1, + STATE(1828), 1, sym__simple_heredoc_body, - STATE(7181), 1, + STATE(6593), 1, sym_heredoc_body, - [304669] = 6, + [289552] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(13889), 1, sym__heredoc_body_beginning, - ACTIONS(15117), 1, + ACTIONS(13891), 1, sym_simple_heredoc_body, - STATE(4922), 1, + STATE(6901), 1, + sym_heredoc_body, + STATE(2174), 2, sym__heredoc_body, - STATE(4932), 1, sym__simple_heredoc_body, - STATE(6932), 1, - sym_heredoc_body, - [304688] = 4, + [289569] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15092), 1, + ACTIONS(1306), 5, + sym__concat, + sym__expansion_word, + anon_sym_SLASH, + aux_sym_concatenation_token1, anon_sym_RBRACE3, - STATE(6379), 1, + [289580] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1302), 5, + sym__concat, + sym__expansion_word, + anon_sym_SLASH, + aux_sym_concatenation_token1, + anon_sym_RBRACE3, + [289591] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13960), 1, + anon_sym_RBRACE3, + STATE(6030), 1, aux_sym__expansion_body_repeat1, - ACTIONS(7752), 3, + ACTIONS(13962), 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, + [289606] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13590), 1, + anon_sym_in, + ACTIONS(13594), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(13592), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + [289621] = 6, 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(13889), 1, + sym__heredoc_body_beginning, + ACTIONS(13895), 1, + sym_simple_heredoc_body, + STATE(2273), 1, + sym__heredoc_body, + STATE(2274), 1, + sym__simple_heredoc_body, + STATE(6789), 1, + sym_heredoc_body, + [289640] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14806), 1, - anon_sym_PIPE, - ACTIONS(14924), 1, - anon_sym_RPAREN, - ACTIONS(15078), 1, - sym__special_character, - STATE(6394), 1, - aux_sym__literal_repeat1, - STATE(6511), 1, - aux_sym_case_item_repeat1, - [304741] = 5, + ACTIONS(13889), 1, + sym__heredoc_body_beginning, + ACTIONS(13965), 1, + sym_simple_heredoc_body, + STATE(6471), 1, + sym_heredoc_body, + STATE(3196), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [289657] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(13889), 1, sym__heredoc_body_beginning, - ACTIONS(15090), 1, + ACTIONS(13891), 1, sym_simple_heredoc_body, - STATE(7024), 1, + STATE(6901), 1, sym_heredoc_body, - STATE(5565), 2, + STATE(2326), 2, sym__heredoc_body, sym__simple_heredoc_body, - [304758] = 4, + [289674] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(667), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(685), 1, + anon_sym_LBRACE, + ACTIONS(13835), 1, + anon_sym_do, + STATE(4744), 1, + sym_compound_statement, + STATE(4770), 1, + sym_do_group, + [289693] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15113), 1, + ACTIONS(13669), 1, + anon_sym_SLASH, + ACTIONS(13671), 1, anon_sym_RBRACE3, - STATE(6379), 1, + STATE(5972), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(13661), 2, + sym__concat, + aux_sym_concatenation_token1, + [289710] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13967), 1, + anon_sym_RBRACE3, + STATE(6030), 1, aux_sym__expansion_body_repeat1, - ACTIONS(7752), 3, + ACTIONS(6879), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - [304773] = 5, + [289725] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, - sym__heredoc_body_beginning, - ACTIONS(15117), 1, + ACTIONS(13969), 1, + anon_sym_SLASH, + ACTIONS(13971), 1, + anon_sym_RBRACE3, + STATE(5972), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(13661), 2, + sym__concat, + aux_sym_concatenation_token1, + [289742] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13887), 1, sym_simple_heredoc_body, - STATE(6932), 1, + ACTIONS(13889), 1, + sym__heredoc_body_beginning, + STATE(6593), 1, sym_heredoc_body, - STATE(4713), 2, + STATE(1829), 2, sym__heredoc_body, sym__simple_heredoc_body, - [304790] = 5, + [289759] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(13889), 1, sym__heredoc_body_beginning, - ACTIONS(15090), 1, + ACTIONS(13965), 1, sym_simple_heredoc_body, - STATE(7024), 1, + STATE(6471), 1, sym_heredoc_body, - STATE(5586), 2, + STATE(3174), 2, sym__heredoc_body, sym__simple_heredoc_body, - [304807] = 5, + [289776] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(13889), 1, sym__heredoc_body_beginning, - ACTIONS(15117), 1, + ACTIONS(13965), 1, sym_simple_heredoc_body, - STATE(6932), 1, + STATE(6471), 1, sym_heredoc_body, - STATE(4681), 2, + STATE(3181), 2, sym__heredoc_body, sym__simple_heredoc_body, - [304824] = 6, + [289793] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(13889), 1, sym__heredoc_body_beginning, - ACTIONS(15090), 1, + ACTIONS(13965), 1, sym_simple_heredoc_body, - STATE(5588), 1, + STATE(3191), 1, sym__heredoc_body, - STATE(5605), 1, + STATE(3195), 1, sym__simple_heredoc_body, - STATE(7024), 1, + STATE(6471), 1, sym_heredoc_body, - [304843] = 6, + [289812] = 6, + ACTIONS(13), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(29), 1, + anon_sym_LBRACE, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(13873), 1, + anon_sym_do, + STATE(4661), 1, + sym_do_group, + STATE(4662), 1, + sym_compound_statement, + [289831] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13889), 1, sym__heredoc_body_beginning, - ACTIONS(15090), 1, + ACTIONS(13965), 1, sym_simple_heredoc_body, - STATE(5547), 1, - sym__simple_heredoc_body, - STATE(5553), 1, + STATE(3198), 1, sym__heredoc_body, - STATE(7024), 1, + STATE(3199), 1, + sym__simple_heredoc_body, + STATE(6471), 1, sym_heredoc_body, - [304862] = 5, + [289850] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(13889), 1, sym__heredoc_body_beginning, - ACTIONS(15090), 1, + ACTIONS(13965), 1, sym_simple_heredoc_body, - STATE(7024), 1, + STATE(6471), 1, sym_heredoc_body, - STATE(5551), 2, + STATE(3200), 2, sym__heredoc_body, sym__simple_heredoc_body, - [304879] = 6, + [289867] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14806), 1, - anon_sym_PIPE, - ACTIONS(15010), 1, - anon_sym_RPAREN, - ACTIONS(15078), 1, - sym__special_character, - STATE(6394), 1, - aux_sym__literal_repeat1, - STATE(6617), 1, - aux_sym_case_item_repeat1, - [304898] = 5, + ACTIONS(13751), 1, + anon_sym_SLASH, + ACTIONS(13753), 1, + anon_sym_RBRACE3, + STATE(5972), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(13661), 2, + sym__concat, + aux_sym_concatenation_token1, + [289884] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(13889), 1, sym__heredoc_body_beginning, - ACTIONS(15090), 1, + ACTIONS(13965), 1, sym_simple_heredoc_body, - STATE(7024), 1, + STATE(6471), 1, sym_heredoc_body, - STATE(5573), 2, + STATE(3183), 2, sym__heredoc_body, sym__simple_heredoc_body, - [304915] = 6, + [289901] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(13889), 1, sym__heredoc_body_beginning, - ACTIONS(15090), 1, + ACTIONS(13965), 1, sym_simple_heredoc_body, - STATE(5554), 1, + STATE(3162), 1, sym__heredoc_body, - STATE(5577), 1, + STATE(3172), 1, sym__simple_heredoc_body, - STATE(7024), 1, + STATE(6471), 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, + [289920] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(13889), 1, sym__heredoc_body_beginning, - ACTIONS(15117), 1, + ACTIONS(13965), 1, sym_simple_heredoc_body, - STATE(4680), 1, + STATE(3156), 1, sym__simple_heredoc_body, - STATE(4902), 1, + STATE(3180), 1, sym__heredoc_body, - STATE(6932), 1, + STATE(6471), 1, sym_heredoc_body, - [304968] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15147), 1, - anon_sym_COMMA, - ACTIONS(15150), 1, - aux_sym_heredoc_redirect_token1, - STATE(6361), 1, - aux_sym__for_body_repeat1, - ACTIONS(15145), 2, - anon_sym_SEMI, - anon_sym_AMP, - [304985] = 5, + [289939] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(13889), 1, sym__heredoc_body_beginning, - ACTIONS(15084), 1, + ACTIONS(13965), 1, sym_simple_heredoc_body, - STATE(6814), 1, + STATE(6471), 1, sym_heredoc_body, - STATE(5465), 2, + STATE(3157), 2, sym__heredoc_body, sym__simple_heredoc_body, - [305002] = 5, + [289956] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(13889), 1, sym__heredoc_body_beginning, - ACTIONS(15084), 1, + ACTIONS(13895), 1, sym_simple_heredoc_body, - STATE(6814), 1, + STATE(6789), 1, sym_heredoc_body, - STATE(5468), 2, + STATE(2269), 2, sym__heredoc_body, sym__simple_heredoc_body, - [305019] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15152), 1, - anon_sym_in, - ACTIONS(15156), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(15154), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - [305034] = 6, + [289973] = 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(13973), 1, + anon_sym_RBRACE3, + STATE(6030), 1, + aux_sym__expansion_body_repeat1, + ACTIONS(6879), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + [289988] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, - sym__heredoc_body_beginning, - ACTIONS(15117), 1, + ACTIONS(13887), 1, sym_simple_heredoc_body, - STATE(4693), 1, + ACTIONS(13889), 1, + sym__heredoc_body_beginning, + STATE(6593), 1, + sym_heredoc_body, + STATE(1830), 2, sym__heredoc_body, - STATE(4715), 1, sym__simple_heredoc_body, - STATE(6932), 1, - sym_heredoc_body, - [305072] = 5, + [290005] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, - sym__heredoc_body_beginning, - ACTIONS(15090), 1, + ACTIONS(13887), 1, sym_simple_heredoc_body, - STATE(7024), 1, - sym_heredoc_body, - STATE(5582), 2, + ACTIONS(13889), 1, + sym__heredoc_body_beginning, + STATE(1831), 1, sym__heredoc_body, + STATE(1832), 1, sym__simple_heredoc_body, - [305089] = 6, + STATE(6593), 1, + sym_heredoc_body, + [290024] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(13889), 1, sym__heredoc_body_beginning, - ACTIONS(15090), 1, + ACTIONS(13965), 1, sym_simple_heredoc_body, - STATE(5592), 1, + STATE(3158), 1, sym__heredoc_body, - STATE(5602), 1, + STATE(3159), 1, sym__simple_heredoc_body, - STATE(7024), 1, + STATE(6471), 1, sym_heredoc_body, - [305108] = 6, + [290043] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(13889), 1, sym__heredoc_body_beginning, - ACTIONS(15090), 1, + ACTIONS(13965), 1, sym_simple_heredoc_body, - STATE(5550), 1, - sym__simple_heredoc_body, - STATE(5604), 1, + STATE(3160), 1, sym__heredoc_body, - STATE(7024), 1, + STATE(3161), 1, + sym__simple_heredoc_body, + STATE(6471), 1, sym_heredoc_body, - [305127] = 6, + [290062] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(13889), 1, sym__heredoc_body_beginning, - ACTIONS(15084), 1, + ACTIONS(13891), 1, sym_simple_heredoc_body, - STATE(5469), 1, + STATE(2177), 1, sym__heredoc_body, - STATE(5470), 1, + STATE(2178), 1, sym__simple_heredoc_body, - STATE(6814), 1, + STATE(6901), 1, sym_heredoc_body, - [305146] = 5, + [290081] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14906), 1, - anon_sym_SLASH, - ACTIONS(14910), 1, - anon_sym_RBRACE3, - STATE(6309), 1, - aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(14908), 2, + ACTIONS(13975), 1, sym__concat, - aux_sym_concatenation_token1, - [305163] = 6, + ACTIONS(5745), 4, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_RBRACE3, + [290094] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, - sym__heredoc_body_beginning, - ACTIONS(15117), 1, + ACTIONS(13887), 1, sym_simple_heredoc_body, - STATE(4730), 1, + ACTIONS(13889), 1, + sym__heredoc_body_beginning, + STATE(1833), 1, sym__heredoc_body, - STATE(4784), 1, + STATE(1834), 1, sym__simple_heredoc_body, - STATE(6932), 1, + STATE(6593), 1, sym_heredoc_body, - [305182] = 4, + [290113] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14767), 1, + ACTIONS(13977), 1, anon_sym_in, - ACTIONS(14771), 1, + ACTIONS(13981), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(14769), 3, + ACTIONS(13979), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [305197] = 3, + [290128] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15158), 1, - sym__concat, - ACTIONS(6639), 4, + ACTIONS(13967), 1, + anon_sym_RBRACE3, + STATE(6030), 1, + aux_sym__expansion_body_repeat1, + ACTIONS(6879), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - anon_sym_RBRACE3, - [305210] = 4, + [290143] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(15160), 1, - anon_sym_in, - ACTIONS(15164), 1, + ACTIONS(13985), 1, + anon_sym_COMMA, + ACTIONS(13988), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(15162), 3, + STATE(6062), 1, + aux_sym__for_body_repeat1, + ACTIONS(13983), 2, anon_sym_SEMI, anon_sym_AMP, - anon_sym_SEMI_SEMI, - [305225] = 6, + [290160] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, - sym__heredoc_body_beginning, - ACTIONS(15084), 1, + ACTIONS(13887), 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(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(71), 1, - sym_comment, - ACTIONS(15082), 1, + ACTIONS(13889), 1, sym__heredoc_body_beginning, - ACTIONS(15084), 1, - sym_simple_heredoc_body, - STATE(6814), 1, + STATE(6593), 1, sym_heredoc_body, - STATE(5473), 2, + STATE(1835), 2, sym__heredoc_body, sym__simple_heredoc_body, - [305276] = 4, + [290177] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15166), 1, - anon_sym_RBRACE3, - STATE(6379), 1, - aux_sym__expansion_body_repeat1, - ACTIONS(15168), 3, + ACTIONS(13990), 1, + sym__concat, + ACTIONS(5819), 4, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - [305291] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15082), 1, - sym__heredoc_body_beginning, - ACTIONS(15084), 1, - sym_simple_heredoc_body, - STATE(6814), 1, - sym_heredoc_body, - STATE(5475), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [305308] = 6, - ACTIONS(71), 1, - 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(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(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(71), 1, - sym_comment, - ACTIONS(15082), 1, - sym__heredoc_body_beginning, - ACTIONS(15084), 1, - sym_simple_heredoc_body, - STATE(5476), 1, - sym__heredoc_body, - STATE(5477), 1, - sym__simple_heredoc_body, - STATE(6814), 1, - sym_heredoc_body, - [305378] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15082), 1, - sym__heredoc_body_beginning, - ACTIONS(15117), 1, - sym_simple_heredoc_body, - STATE(6932), 1, - sym_heredoc_body, - STATE(4762), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [305395] = 5, + anon_sym_RBRACE3, + [290190] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(13889), 1, sym__heredoc_body_beginning, - ACTIONS(15125), 1, + ACTIONS(13895), 1, sym_simple_heredoc_body, - STATE(7181), 1, + STATE(6789), 1, sym_heredoc_body, - STATE(4912), 2, + STATE(2248), 2, sym__heredoc_body, sym__simple_heredoc_body, - [305412] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1274), 4, - sym__concat, - anon_sym_PIPE, - anon_sym_RPAREN, - aux_sym_concatenation_token1, - [305422] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1310), 4, - sym__concat, - anon_sym_PIPE, - anon_sym_RPAREN, - aux_sym_concatenation_token1, - [305432] = 2, + [290207] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1262), 4, + ACTIONS(1290), 4, sym__concat, - anon_sym_PIPE, - anon_sym_RPAREN, + anon_sym_SLASH, aux_sym_concatenation_token1, - [305442] = 2, + anon_sym_RBRACE3, + [290217] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1270), 4, + ACTIONS(1221), 4, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, aux_sym_concatenation_token1, - [305452] = 2, + [290227] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1302), 4, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, + ACTIONS(6693), 1, + sym__special_character, + ACTIONS(13969), 1, + anon_sym_SLASH, + ACTIONS(13971), 1, anon_sym_RBRACE3, - [305462] = 2, + STATE(6072), 1, + aux_sym__literal_repeat1, + [290243] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(1306), 4, @@ -327733,349 +311678,434 @@ static const uint16_t ts_small_parse_table[] = { sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, anon_sym_RBRACE3, - [305472] = 2, - 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, + [290253] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15175), 1, + ACTIONS(6693), 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, - sym_comment, - ACTIONS(15180), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(15178), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_AMP, - [305508] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6639), 4, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, + ACTIONS(13919), 1, + anon_sym_SLASH, + ACTIONS(13921), 1, anon_sym_RBRACE3, - [305518] = 5, + STATE(6072), 1, + aux_sym__literal_repeat1, + [290269] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15182), 1, + ACTIONS(13992), 1, anon_sym_esac, - ACTIONS(15184), 1, + ACTIONS(13994), 1, anon_sym_SEMI_SEMI, - ACTIONS(15186), 1, + ACTIONS(13996), 2, anon_sym_SEMI_AMP, - ACTIONS(15188), 1, anon_sym_SEMI_SEMI_AMP, - [305534] = 5, + [290283] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(7768), 1, + ACTIONS(13998), 1, sym__special_character, - ACTIONS(15086), 1, + STATE(6072), 1, + aux_sym__literal_repeat1, + ACTIONS(1318), 2, anon_sym_SLASH, - ACTIONS(15088), 1, anon_sym_RBRACE3, - STATE(6419), 1, - aux_sym__literal_repeat1, - [305550] = 2, + [290297] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6724), 4, + ACTIONS(5776), 4, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, anon_sym_RBRACE3, - [305560] = 2, + [290307] = 5, 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(14001), 1, + anon_sym_esac, + ACTIONS(14003), 1, + anon_sym_SEMI_SEMI, + ACTIONS(14005), 1, + anon_sym_SEMI_AMP, + ACTIONS(14007), 1, + anon_sym_SEMI_SEMI_AMP, + [290323] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1266), 4, + ACTIONS(1302), 4, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, aux_sym_concatenation_token1, - [305580] = 2, + [290333] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1282), 4, + ACTIONS(1298), 4, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, aux_sym_concatenation_token1, - [305590] = 2, + [290343] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1250), 4, + ACTIONS(14009), 1, + anon_sym_esac, + ACTIONS(14011), 1, + anon_sym_SEMI_SEMI, + ACTIONS(14013), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [290357] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1286), 4, sym__concat, - anon_sym_PIPE, - anon_sym_RPAREN, + anon_sym_SLASH, aux_sym_concatenation_token1, - [305600] = 2, + anon_sym_RBRACE3, + [290367] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1258), 4, + ACTIONS(14015), 1, + anon_sym_RBRACE3, + STATE(5972), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(13661), 2, sym__concat, - anon_sym_PIPE, - anon_sym_RPAREN, aux_sym_concatenation_token1, - [305610] = 2, + [290381] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1278), 4, + ACTIONS(14001), 1, + anon_sym_esac, + ACTIONS(14017), 1, + anon_sym_SEMI_SEMI, + ACTIONS(14019), 1, + anon_sym_SEMI_AMP, + ACTIONS(14021), 1, + anon_sym_SEMI_SEMI_AMP, + [290397] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1310), 4, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, aux_sym_concatenation_token1, - [305620] = 2, + [290407] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1290), 4, + ACTIONS(6693), 1, + sym__special_character, + ACTIONS(13931), 1, + anon_sym_SLASH, + ACTIONS(13933), 1, + anon_sym_RBRACE3, + STATE(6072), 1, + aux_sym__literal_repeat1, + [290423] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1278), 4, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, aux_sym_concatenation_token1, - [305630] = 2, + [290433] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14025), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(14023), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_AMP, + [290445] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1294), 4, + ACTIONS(1262), 4, sym__concat, - anon_sym_PIPE, - anon_sym_RPAREN, + anon_sym_SLASH, aux_sym_concatenation_token1, - [305640] = 2, + anon_sym_RBRACE3, + [290455] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1298), 4, + ACTIONS(1274), 4, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, aux_sym_concatenation_token1, - [305650] = 5, + [290465] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15190), 1, + ACTIONS(14027), 4, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_RBRACE3, + [290475] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14029), 1, anon_sym_esac, - ACTIONS(15192), 1, + ACTIONS(14031), 1, anon_sym_SEMI_SEMI, - ACTIONS(15194), 1, + ACTIONS(14033), 1, anon_sym_SEMI_AMP, - ACTIONS(15196), 1, + ACTIONS(14035), 1, anon_sym_SEMI_SEMI_AMP, - [305666] = 2, + [290491] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1302), 4, + ACTIONS(1254), 4, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, aux_sym_concatenation_token1, - [305676] = 2, + [290501] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1306), 4, - sym__concat, + ACTIONS(14037), 1, + sym__special_character, + STATE(6090), 1, + aux_sym__literal_repeat1, + ACTIONS(1318), 2, anon_sym_PIPE, anon_sym_RPAREN, - aux_sym_concatenation_token1, - [305686] = 2, + [290515] = 2, 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, + [290525] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13899), 1, + sym__special_character, + STATE(6090), 1, + aux_sym__literal_repeat1, + ACTIONS(13942), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + [290539] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1306), 4, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, aux_sym_concatenation_token1, - [305696] = 4, + [290549] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15078), 1, - sym__special_character, - STATE(6394), 1, - aux_sym__literal_repeat1, - ACTIONS(15171), 2, + ACTIONS(1258), 4, + sym__concat, anon_sym_PIPE, anon_sym_RPAREN, - [305710] = 4, + aux_sym_concatenation_token1, + [290559] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15198), 1, - anon_sym_esac, - ACTIONS(15200), 1, - anon_sym_SEMI_SEMI, - ACTIONS(15202), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [305724] = 2, + ACTIONS(5770), 4, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_RBRACE3, + [290569] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1314), 4, + ACTIONS(1266), 4, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, aux_sym_concatenation_token1, - [305734] = 4, + [290579] = 2, 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(1250), 4, + sym__concat, + anon_sym_PIPE, + anon_sym_RPAREN, + aux_sym_concatenation_token1, + [290589] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15190), 1, + ACTIONS(14040), 1, anon_sym_esac, - ACTIONS(15210), 1, + ACTIONS(14042), 1, anon_sym_SEMI_SEMI, - ACTIONS(15212), 1, + ACTIONS(14044), 1, anon_sym_SEMI_AMP, - ACTIONS(15214), 1, + ACTIONS(14046), 1, anon_sym_SEMI_SEMI_AMP, - [305764] = 2, + [290605] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1314), 4, + sym__concat, + anon_sym_PIPE, + anon_sym_RPAREN, + aux_sym_concatenation_token1, + [290615] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15216), 4, + ACTIONS(1302), 4, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, anon_sym_RBRACE3, - [305774] = 4, + [290625] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15218), 1, - sym__special_character, - STATE(6419), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 2, + ACTIONS(1282), 4, + sym__concat, anon_sym_SLASH, + aux_sym_concatenation_token1, anon_sym_RBRACE3, - [305788] = 5, + [290635] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(7768), 1, - sym__special_character, - ACTIONS(15100), 1, + ACTIONS(1266), 4, + sym__concat, anon_sym_SLASH, - ACTIONS(15102), 1, + aux_sym_concatenation_token1, anon_sym_RBRACE3, - STATE(6419), 1, - aux_sym__literal_repeat1, - [305804] = 2, + [290645] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1278), 4, + ACTIONS(14048), 1, + anon_sym_esac, + ACTIONS(14050), 1, + anon_sym_SEMI_SEMI, + ACTIONS(14052), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [290659] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4971), 4, sym__concat, anon_sym_SLASH, aux_sym_concatenation_token1, anon_sym_RBRACE3, - [305814] = 2, + [290669] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14056), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(14054), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_AMP, + [290681] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1290), 4, + ACTIONS(1310), 4, sym__concat, anon_sym_SLASH, aux_sym_concatenation_token1, anon_sym_RBRACE3, - [305824] = 5, + [290691] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15182), 1, + ACTIONS(1262), 4, + sym__concat, + anon_sym_PIPE, + anon_sym_RPAREN, + aux_sym_concatenation_token1, + [290701] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14029), 1, anon_sym_esac, - ACTIONS(15221), 1, + ACTIONS(14058), 1, anon_sym_SEMI_SEMI, - ACTIONS(15223), 1, + ACTIONS(14060), 1, anon_sym_SEMI_AMP, - ACTIONS(15225), 1, + ACTIONS(14062), 1, anon_sym_SEMI_SEMI_AMP, - [305840] = 2, + [290717] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1266), 4, + ACTIONS(1294), 4, sym__concat, anon_sym_SLASH, aux_sym_concatenation_token1, anon_sym_RBRACE3, - [305850] = 2, + [290727] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1294), 4, - sym__concat, - anon_sym_SLASH, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [305860] = 2, + ACTIONS(14064), 1, + anon_sym_esac, + ACTIONS(14066), 1, + anon_sym_SEMI_SEMI, + ACTIONS(14068), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [290741] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1250), 4, + ACTIONS(14070), 1, + anon_sym_esac, + ACTIONS(14072), 1, + anon_sym_SEMI_SEMI, + ACTIONS(14074), 1, + anon_sym_SEMI_AMP, + ACTIONS(14076), 1, + anon_sym_SEMI_SEMI_AMP, + [290757] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1306), 4, sym__concat, anon_sym_SLASH, aux_sym_concatenation_token1, anon_sym_RBRACE3, - [305870] = 2, + [290767] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1298), 4, + ACTIONS(4967), 4, sym__concat, anon_sym_SLASH, aux_sym_concatenation_token1, anon_sym_RBRACE3, - [305880] = 2, + [290777] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1258), 4, + ACTIONS(1282), 4, sym__concat, - anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_RPAREN, aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [305890] = 3, + [290787] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15229), 1, + ACTIONS(13988), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(15227), 3, + ACTIONS(13983), 3, anon_sym_SEMI, anon_sym_COMMA, anon_sym_AMP, - [305902] = 2, + [290799] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1302), 4, + ACTIONS(1286), 4, sym__concat, - anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_RPAREN, aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [305912] = 2, + [290809] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1306), 4, + ACTIONS(1290), 4, sym__concat, - anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_RPAREN, aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [305922] = 2, + [290819] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(1302), 4, @@ -328083,13577 +312113,12824 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, aux_sym_concatenation_token1, anon_sym_RBRACE3, - [305932] = 5, + [290829] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(7768), 1, - sym__special_character, - ACTIONS(15070), 1, - anon_sym_SLASH, - ACTIONS(15072), 1, + ACTIONS(6076), 4, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, anon_sym_RBRACE3, - STATE(6419), 1, - aux_sym__literal_repeat1, - [305948] = 2, + [290839] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14070), 1, + anon_sym_esac, + ACTIONS(14078), 1, + anon_sym_SEMI_SEMI, + ACTIONS(14080), 1, + anon_sym_SEMI_AMP, + ACTIONS(14082), 1, + anon_sym_SEMI_SEMI_AMP, + [290855] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(5888), 4, + ACTIONS(1270), 4, sym__concat, - anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_RPAREN, aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [305958] = 2, + [290865] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15108), 4, + ACTIONS(1294), 4, sym__concat, - anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_RPAREN, aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [305968] = 2, + [290875] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6651), 4, + ACTIONS(6082), 4, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, anon_sym_RBRACE3, - [305978] = 4, + [290885] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15231), 1, - anon_sym_RBRACE3, - STATE(6309), 1, - aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(14908), 2, + ACTIONS(13950), 4, sym__concat, + anon_sym_SLASH, aux_sym_concatenation_token1, - [305992] = 2, + anon_sym_RBRACE3, + [290895] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(5707), 4, + ACTIONS(1298), 4, sym__concat, anon_sym_SLASH, aux_sym_concatenation_token1, anon_sym_RBRACE3, - [306002] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15150), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(15145), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_AMP, - [306014] = 5, - 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(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, + [290905] = 5, 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(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(71), 1, - sym_comment, - ACTIONS(15253), 1, + ACTIONS(14040), 1, anon_sym_esac, - ACTIONS(15261), 1, + ACTIONS(14084), 1, anon_sym_SEMI_SEMI, - ACTIONS(15263), 1, + ACTIONS(14086), 1, anon_sym_SEMI_AMP, - ACTIONS(15265), 1, + ACTIONS(14088), 1, anon_sym_SEMI_SEMI_AMP, - [306090] = 2, + [290921] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1254), 4, + ACTIONS(1302), 4, sym__concat, - anon_sym_PIPE, - anon_sym_RPAREN, + anon_sym_SLASH, aux_sym_concatenation_token1, - [306100] = 2, + anon_sym_RBRACE3, + [290931] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1286), 4, + ACTIONS(1302), 4, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, aux_sym_concatenation_token1, - [306110] = 2, + [290941] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1215), 4, - sym__concat, + ACTIONS(11579), 1, anon_sym_PIPE, - anon_sym_RPAREN, - aux_sym_concatenation_token1, - [306120] = 5, + ACTIONS(14090), 1, + anon_sym_PIPE_AMP, + STATE(4729), 1, + aux_sym_pipeline_repeat1, + [290954] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15233), 1, - anon_sym_esac, - ACTIONS(15267), 1, - anon_sym_SEMI_SEMI, - ACTIONS(15269), 1, - anon_sym_SEMI_AMP, - ACTIONS(15271), 1, - anon_sym_SEMI_SEMI_AMP, - [306136] = 2, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(14092), 1, + anon_sym_RPAREN_RPAREN, + STATE(6179), 1, + aux_sym_arithmetic_expansion_repeat1, + [290967] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1314), 4, - sym__concat, - anon_sym_SLASH, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [306146] = 4, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(14094), 1, + anon_sym_RPAREN_RPAREN, + STATE(6179), 1, + aux_sym_arithmetic_expansion_repeat1, + [290980] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(1282), 3, + sym_extglob_pattern, + anon_sym_PIPE, + anon_sym_RPAREN, + [290989] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14096), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(14098), 1, + anon_sym_COMMA, + STATE(6154), 1, + aux_sym__for_body_repeat1, + [291002] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5833), 1, anon_sym_COMMA, - ACTIONS(15273), 1, + ACTIONS(14100), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6179), 1, aux_sym_arithmetic_expansion_repeat1, - [306159] = 4, + [291015] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(5833), 1, anon_sym_COMMA, - ACTIONS(15275), 1, + ACTIONS(14102), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6179), 1, aux_sym_arithmetic_expansion_repeat1, - [306172] = 4, + [291028] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(5833), 1, anon_sym_COMMA, - ACTIONS(15277), 1, + ACTIONS(14104), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6179), 1, aux_sym_arithmetic_expansion_repeat1, - [306185] = 4, + [291041] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14806), 1, - anon_sym_PIPE, - ACTIONS(15279), 1, + ACTIONS(14106), 1, + anon_sym_COMMA, + ACTIONS(14108), 1, anon_sym_RPAREN, - STATE(6493), 1, - aux_sym_case_item_repeat1, - [306198] = 4, + STATE(6145), 1, + aux_sym__for_body_repeat1, + [291054] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14112), 1, + anon_sym_LBRACK, + ACTIONS(14110), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [291065] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(14106), 1, anon_sym_COMMA, - ACTIONS(15281), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [306211] = 4, + ACTIONS(14114), 1, + anon_sym_RPAREN, + STATE(6239), 1, + aux_sym__for_body_repeat1, + [291078] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14106), 1, + anon_sym_COMMA, + ACTIONS(14116), 1, + anon_sym_RPAREN, + STATE(6239), 1, + aux_sym__for_body_repeat1, + [291091] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1282), 3, + sym__regex_no_slash, + anon_sym_SLASH, + anon_sym_RBRACE3, + [291100] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15223), 1, + ACTIONS(14118), 1, + anon_sym_SEMI_SEMI, + ACTIONS(14068), 2, anon_sym_SEMI_AMP, - ACTIONS(15225), 1, anon_sym_SEMI_SEMI_AMP, - ACTIONS(15283), 1, - anon_sym_SEMI_SEMI, - [306224] = 4, + [291111] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14806), 1, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(14120), 1, + anon_sym_RPAREN_RPAREN, + STATE(6179), 1, + aux_sym_arithmetic_expansion_repeat1, + [291124] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13713), 1, anon_sym_PIPE, - ACTIONS(14812), 1, + ACTIONS(14122), 1, anon_sym_RPAREN, - STATE(6501), 1, + STATE(6182), 1, aux_sym_case_item_repeat1, - [306237] = 3, + [291137] = 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(14106), 1, + anon_sym_COMMA, + ACTIONS(14124), 1, + anon_sym_RPAREN, + STATE(6239), 1, + aux_sym__for_body_repeat1, + [291150] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14806), 1, + ACTIONS(13713), 1, anon_sym_PIPE, - ACTIONS(15289), 1, + ACTIONS(14126), 1, anon_sym_RPAREN, - STATE(6493), 1, + STATE(6182), 1, aux_sym_case_item_repeat1, - [306261] = 4, + [291163] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(15291), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [306274] = 3, + ACTIONS(13713), 1, + anon_sym_PIPE, + ACTIONS(14128), 1, + anon_sym_RPAREN, + STATE(6182), 1, + aux_sym_case_item_repeat1, + [291176] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15287), 1, - anon_sym_LBRACK, - ACTIONS(15293), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [306285] = 4, + ACTIONS(13713), 1, + anon_sym_PIPE, + ACTIONS(14130), 1, + anon_sym_RPAREN, + STATE(6182), 1, + aux_sym_case_item_repeat1, + [291189] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14132), 1, + anon_sym_SEMI_SEMI, + ACTIONS(14013), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [291200] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(5833), 1, anon_sym_COMMA, - ACTIONS(15295), 1, + ACTIONS(14134), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6179), 1, aux_sym_arithmetic_expansion_repeat1, - [306298] = 4, + [291213] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(12681), 1, + ACTIONS(11586), 1, anon_sym_PIPE, - ACTIONS(15297), 1, + ACTIONS(14136), 1, anon_sym_PIPE_AMP, - STATE(4965), 1, + STATE(4736), 1, aux_sym_pipeline_repeat1, - [306311] = 3, + [291226] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15287), 1, + ACTIONS(14112), 1, anon_sym_LBRACK, - ACTIONS(15299), 2, + ACTIONS(14138), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [306322] = 4, + [291237] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15301), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(15303), 1, + ACTIONS(5833), 1, anon_sym_COMMA, - STATE(6579), 1, - aux_sym__for_body_repeat1, - [306335] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15287), 1, - anon_sym_LBRACK, - ACTIONS(15305), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [306346] = 4, + ACTIONS(14140), 1, + anon_sym_RPAREN_RPAREN, + STATE(6179), 1, + aux_sym_arithmetic_expansion_repeat1, + [291250] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15303), 1, - anon_sym_COMMA, - ACTIONS(15307), 1, + ACTIONS(13988), 1, anon_sym_RPAREN_RPAREN, - STATE(6584), 1, + ACTIONS(14142), 1, + anon_sym_COMMA, + STATE(6154), 1, aux_sym__for_body_repeat1, - [306359] = 4, + [291263] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(5833), 1, anon_sym_COMMA, - ACTIONS(15309), 1, + ACTIONS(14145), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6179), 1, aux_sym_arithmetic_expansion_repeat1, - [306372] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15303), 1, - anon_sym_COMMA, - ACTIONS(15311), 1, - anon_sym_RPAREN_RPAREN, - STATE(6477), 1, - aux_sym__for_body_repeat1, - [306385] = 3, + [291276] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15287), 1, + ACTIONS(14112), 1, anon_sym_LBRACK, - ACTIONS(15313), 2, + ACTIONS(14147), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [306396] = 3, + [291287] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15287), 1, - anon_sym_LBRACK, - ACTIONS(15315), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [306407] = 4, + ACTIONS(13713), 1, + anon_sym_PIPE, + ACTIONS(14149), 1, + anon_sym_RPAREN, + STATE(6182), 1, + aux_sym_case_item_repeat1, + [291300] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(5833), 1, anon_sym_COMMA, - ACTIONS(15317), 1, + ACTIONS(14151), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6179), 1, aux_sym_arithmetic_expansion_repeat1, - [306420] = 4, + [291313] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15303), 1, + ACTIONS(5833), 1, anon_sym_COMMA, - ACTIONS(15319), 1, + ACTIONS(14153), 1, anon_sym_RPAREN_RPAREN, - STATE(6477), 1, - aux_sym__for_body_repeat1, - [306433] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15321), 1, - anon_sym_SEMI_SEMI, - ACTIONS(15208), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [306444] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15287), 1, - anon_sym_LBRACK, - ACTIONS(15323), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [306455] = 4, + STATE(6179), 1, + aux_sym_arithmetic_expansion_repeat1, + [291326] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15303), 1, + ACTIONS(5833), 1, anon_sym_COMMA, - ACTIONS(15325), 1, + ACTIONS(14155), 1, anon_sym_RPAREN_RPAREN, - STATE(6477), 1, - aux_sym__for_body_repeat1, - [306468] = 3, + STATE(6179), 1, + aux_sym_arithmetic_expansion_repeat1, + [291339] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15287), 1, + ACTIONS(14112), 1, anon_sym_LBRACK, - ACTIONS(15327), 2, + ACTIONS(14157), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [306479] = 4, + [291350] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15150), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(15329), 1, + ACTIONS(14098), 1, anon_sym_COMMA, - STATE(6477), 1, + ACTIONS(14159), 1, + anon_sym_RPAREN_RPAREN, + STATE(6154), 1, aux_sym__for_body_repeat1, - [306492] = 4, + [291363] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15303), 1, + ACTIONS(14098), 1, anon_sym_COMMA, - ACTIONS(15332), 1, + ACTIONS(14161), 1, anon_sym_RPAREN_RPAREN, - STATE(6477), 1, + STATE(6154), 1, aux_sym__for_body_repeat1, - [306505] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1262), 3, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_RBRACE3, - [306514] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15287), 1, - anon_sym_LBRACK, - ACTIONS(15334), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [306525] = 3, + [291376] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15287), 1, + ACTIONS(14112), 1, anon_sym_LBRACK, - ACTIONS(15336), 2, + ACTIONS(14163), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [306536] = 4, + [291387] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15303), 1, + ACTIONS(14098), 1, anon_sym_COMMA, - ACTIONS(15338), 1, + ACTIONS(14165), 1, anon_sym_RPAREN_RPAREN, - STATE(6478), 1, + STATE(6209), 1, aux_sym__for_body_repeat1, - [306549] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(15340), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [306562] = 2, + [291400] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1225), 3, - anon_sym_PIPE, - anon_sym_RPAREN, - sym__special_character, - [306571] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1270), 3, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_RBRACE3, - [306580] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15287), 1, + ACTIONS(14112), 1, anon_sym_LBRACK, - ACTIONS(15342), 2, + ACTIONS(14167), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [306591] = 4, + [291411] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(5833), 1, anon_sym_COMMA, - ACTIONS(15344), 1, + ACTIONS(14169), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6179), 1, aux_sym_arithmetic_expansion_repeat1, - [306604] = 4, + [291424] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14806), 1, + ACTIONS(11577), 1, anon_sym_PIPE, - ACTIONS(15346), 1, - anon_sym_RPAREN, - STATE(6493), 1, - aux_sym_case_item_repeat1, - [306617] = 3, + ACTIONS(14171), 1, + anon_sym_PIPE_AMP, + STATE(4721), 1, + aux_sym_pipeline_repeat1, + [291437] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15287), 1, + ACTIONS(14112), 1, anon_sym_LBRACK, - ACTIONS(15348), 2, + ACTIONS(14173), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [306628] = 4, + [291448] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14806), 1, + ACTIONS(13713), 1, anon_sym_PIPE, - ACTIONS(15350), 1, + ACTIONS(13861), 1, anon_sym_RPAREN, - STATE(6493), 1, + STATE(6147), 1, aux_sym_case_item_repeat1, - [306641] = 3, + [291461] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15287), 1, + ACTIONS(14112), 1, anon_sym_LBRACK, - ACTIONS(15352), 2, + ACTIONS(14175), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [306652] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1223), 1, - sym__special_character, - ACTIONS(1225), 2, - anon_sym_SLASH, - anon_sym_RBRACE3, - [306663] = 4, - 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, + [291472] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(5833), 1, anon_sym_COMMA, - ACTIONS(15359), 1, + ACTIONS(14177), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6179), 1, aux_sym_arithmetic_expansion_repeat1, - [306689] = 3, + [291485] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15287), 1, + ACTIONS(14112), 1, anon_sym_LBRACK, - ACTIONS(15361), 2, + ACTIONS(14179), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [306700] = 3, + [291496] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15287), 1, + ACTIONS(14112), 1, anon_sym_LBRACK, - ACTIONS(15363), 2, + ACTIONS(14181), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [306711] = 4, + [291507] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(5833), 1, anon_sym_COMMA, - ACTIONS(15365), 1, + ACTIONS(14183), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6179), 1, aux_sym_arithmetic_expansion_repeat1, - [306724] = 4, + [291520] = 3, 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(14112), 1, + anon_sym_LBRACK, + ACTIONS(14185), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [291531] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14112), 1, + anon_sym_LBRACK, + ACTIONS(14187), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [291542] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14112), 1, + anon_sym_LBRACK, + ACTIONS(14189), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [291553] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15369), 1, + ACTIONS(6150), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(14191), 1, anon_sym_COMMA, - ACTIONS(15371), 1, - anon_sym_RPAREN, - STATE(6504), 1, - aux_sym__for_body_repeat1, - [306750] = 4, + STATE(6179), 1, + aux_sym_arithmetic_expansion_repeat1, + [291566] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14806), 1, - anon_sym_PIPE, - ACTIONS(15373), 1, - anon_sym_RPAREN, - STATE(6493), 1, - aux_sym_case_item_repeat1, - [306763] = 4, + ACTIONS(14074), 1, + anon_sym_SEMI_AMP, + ACTIONS(14076), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(14194), 1, + anon_sym_SEMI_SEMI, + [291579] = 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(14112), 1, + anon_sym_LBRACK, + ACTIONS(14196), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [291590] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14806), 1, + ACTIONS(14198), 1, anon_sym_PIPE, - ACTIONS(15377), 1, + ACTIONS(14201), 1, anon_sym_RPAREN, - STATE(6493), 1, + STATE(6182), 1, aux_sym_case_item_repeat1, - [306789] = 4, + [291603] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(15379), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [306802] = 4, + ACTIONS(14203), 1, + anon_sym_SEMI_SEMI, + ACTIONS(13996), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [291614] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15369), 1, - anon_sym_COMMA, - ACTIONS(15381), 1, - anon_sym_RPAREN, - STATE(6510), 1, - aux_sym__for_body_repeat1, - [306815] = 4, + ACTIONS(14112), 1, + anon_sym_LBRACK, + ACTIONS(14205), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [291625] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(5833), 1, anon_sym_COMMA, - ACTIONS(15383), 1, + ACTIONS(14207), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6179), 1, aux_sym_arithmetic_expansion_repeat1, - [306828] = 4, + [291638] = 3, 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(14209), 1, + anon_sym_SEMI_SEMI, + ACTIONS(14052), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [291649] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(5833), 1, anon_sym_COMMA, - ACTIONS(15387), 1, + ACTIONS(14211), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6179), 1, aux_sym_arithmetic_expansion_repeat1, - [306854] = 4, + [291662] = 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(14112), 1, + anon_sym_LBRACK, + ACTIONS(14213), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [291673] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(5833), 1, anon_sym_COMMA, - ACTIONS(15391), 1, + ACTIONS(14215), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6179), 1, aux_sym_arithmetic_expansion_repeat1, - [306880] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15150), 1, - anon_sym_RPAREN, - ACTIONS(15393), 1, - anon_sym_COMMA, - STATE(6510), 1, - aux_sym__for_body_repeat1, - [306893] = 4, + [291686] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14806), 1, + ACTIONS(13713), 1, anon_sym_PIPE, - ACTIONS(15396), 1, + ACTIONS(14217), 1, anon_sym_RPAREN, - STATE(6493), 1, + STATE(6182), 1, aux_sym_case_item_repeat1, - [306906] = 4, + [291699] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(7184), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(15398), 1, + ACTIONS(5833), 1, anon_sym_COMMA, - STATE(6512), 1, + ACTIONS(14219), 1, + anon_sym_RPAREN_RPAREN, + STATE(6179), 1, aux_sym_arithmetic_expansion_repeat1, - [306919] = 4, + [291712] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14806), 1, + ACTIONS(13713), 1, anon_sym_PIPE, - ACTIONS(14808), 1, + ACTIONS(14221), 1, anon_sym_RPAREN, - STATE(6615), 1, + STATE(6182), 1, aux_sym_case_item_repeat1, - [306932] = 4, - 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, + [291725] = 4, 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(13713), 1, + anon_sym_PIPE, + ACTIONS(14223), 1, + anon_sym_RPAREN, + STATE(6182), 1, + aux_sym_case_item_repeat1, + [291738] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(5833), 1, anon_sym_COMMA, - ACTIONS(15405), 1, + ACTIONS(14225), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6179), 1, aux_sym_arithmetic_expansion_repeat1, - [306971] = 4, + [291751] = 4, 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(13713), 1, + anon_sym_PIPE, + ACTIONS(14227), 1, + anon_sym_RPAREN, + STATE(6182), 1, + aux_sym_case_item_repeat1, + [291764] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14806), 1, + ACTIONS(13713), 1, anon_sym_PIPE, - ACTIONS(15409), 1, + ACTIONS(14229), 1, anon_sym_RPAREN, - STATE(6493), 1, + STATE(6182), 1, aux_sym_case_item_repeat1, - [306997] = 4, + [291777] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(5833), 1, anon_sym_COMMA, - ACTIONS(15411), 1, + ACTIONS(14231), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6179), 1, aux_sym_arithmetic_expansion_repeat1, - [307010] = 4, + [291790] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(13373), 1, + ACTIONS(13713), 1, anon_sym_PIPE, - ACTIONS(13375), 1, - anon_sym_PIPE_AMP, - STATE(5516), 1, - aux_sym_pipeline_repeat1, - [307023] = 4, + ACTIONS(14233), 1, + anon_sym_RPAREN, + STATE(6182), 1, + aux_sym_case_item_repeat1, + [291803] = 4, 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(14019), 1, + anon_sym_SEMI_AMP, + ACTIONS(14021), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(14235), 1, + anon_sym_SEMI_SEMI, + [291816] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(5833), 1, anon_sym_COMMA, - ACTIONS(15415), 1, + ACTIONS(14237), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6179), 1, aux_sym_arithmetic_expansion_repeat1, - [307049] = 4, + [291829] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(5833), 1, anon_sym_COMMA, - ACTIONS(15417), 1, + ACTIONS(14239), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6179), 1, aux_sym_arithmetic_expansion_repeat1, - [307062] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15419), 1, - sym__concat, - ACTIONS(6651), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [307073] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15421), 1, - sym__concat, - ACTIONS(6639), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [307084] = 4, + [291842] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(5833), 1, anon_sym_COMMA, - ACTIONS(15423), 1, + ACTIONS(14241), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6179), 1, aux_sym_arithmetic_expansion_repeat1, - [307097] = 4, + [291855] = 4, 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(14005), 1, + anon_sym_SEMI_AMP, + ACTIONS(14007), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(14243), 1, + anon_sym_SEMI_SEMI, + [291868] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1266), 3, - sym__regex_no_slash, - anon_sym_SLASH, - anon_sym_RBRACE3, - [307119] = 4, + ACTIONS(13713), 1, + anon_sym_PIPE, + ACTIONS(14245), 1, + anon_sym_RPAREN, + STATE(6182), 1, + aux_sym_case_item_repeat1, + [291881] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(5833), 1, anon_sym_COMMA, - ACTIONS(15427), 1, + ACTIONS(14247), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6179), 1, aux_sym_arithmetic_expansion_repeat1, - [307132] = 4, + [291894] = 4, 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(11162), 1, + anon_sym_PIPE, + ACTIONS(14249), 1, + anon_sym_PIPE_AMP, + STATE(4380), 1, + aux_sym_pipeline_repeat1, + [291907] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(5833), 1, anon_sym_COMMA, - ACTIONS(15431), 1, + ACTIONS(14251), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6179), 1, aux_sym_arithmetic_expansion_repeat1, - [307158] = 4, - 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, + [291920] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1250), 3, - sym__regex_no_slash, - anon_sym_SLASH, - anon_sym_RBRACE3, - [307180] = 4, + ACTIONS(14080), 1, + anon_sym_SEMI_AMP, + ACTIONS(14082), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(14253), 1, + anon_sym_SEMI_SEMI, + [291933] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15369), 1, + ACTIONS(14098), 1, anon_sym_COMMA, - ACTIONS(15435), 1, - anon_sym_RPAREN, - STATE(6539), 1, + ACTIONS(14255), 1, + anon_sym_RPAREN_RPAREN, + STATE(6154), 1, aux_sym__for_body_repeat1, - [307193] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1258), 3, - sym__regex_no_slash, - anon_sym_SLASH, - anon_sym_RBRACE3, - [307202] = 4, + [291946] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(5833), 1, anon_sym_COMMA, - ACTIONS(15437), 1, + ACTIONS(14257), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6179), 1, aux_sym_arithmetic_expansion_repeat1, - [307215] = 4, + [291959] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15369), 1, + ACTIONS(5833), 1, anon_sym_COMMA, - ACTIONS(15439), 1, - anon_sym_RPAREN, - STATE(6510), 1, - aux_sym__for_body_repeat1, - [307228] = 3, + ACTIONS(14259), 1, + anon_sym_RPAREN_RPAREN, + STATE(6179), 1, + aux_sym_arithmetic_expansion_repeat1, + [291972] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15441), 1, - sym_extglob_pattern, - ACTIONS(6468), 2, - anon_sym_PIPE, - anon_sym_RPAREN, - [307239] = 4, + ACTIONS(14044), 1, + anon_sym_SEMI_AMP, + ACTIONS(14046), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(14261), 1, + anon_sym_SEMI_SEMI, + [291985] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15369), 1, - anon_sym_COMMA, - ACTIONS(15443), 1, + ACTIONS(13713), 1, + anon_sym_PIPE, + ACTIONS(13773), 1, anon_sym_RPAREN, - STATE(6510), 1, - aux_sym__for_body_repeat1, - [307252] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(15445), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [307265] = 4, + STATE(6193), 1, + aux_sym_case_item_repeat1, + [291998] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15257), 1, + ACTIONS(14033), 1, anon_sym_SEMI_AMP, - ACTIONS(15259), 1, + ACTIONS(14035), 1, anon_sym_SEMI_SEMI_AMP, - ACTIONS(15447), 1, + ACTIONS(14263), 1, anon_sym_SEMI_SEMI, - [307278] = 4, + [292011] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(5833), 1, anon_sym_COMMA, - ACTIONS(15449), 1, + ACTIONS(14265), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6179), 1, aux_sym_arithmetic_expansion_repeat1, - [307291] = 4, + [292024] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15451), 1, - anon_sym_SLASH, - ACTIONS(15453), 1, - anon_sym_RBRACE3, - ACTIONS(15455), 1, - sym__regex_no_slash, - [307304] = 4, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(14267), 1, + anon_sym_RPAREN_RPAREN, + STATE(6179), 1, + aux_sym_arithmetic_expansion_repeat1, + [292037] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(5833), 1, anon_sym_COMMA, - ACTIONS(15457), 1, + ACTIONS(14269), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6179), 1, aux_sym_arithmetic_expansion_repeat1, - [307317] = 4, + [292050] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15263), 1, + ACTIONS(14060), 1, anon_sym_SEMI_AMP, - ACTIONS(15265), 1, + ACTIONS(14062), 1, anon_sym_SEMI_SEMI_AMP, - ACTIONS(15459), 1, + ACTIONS(14271), 1, anon_sym_SEMI_SEMI, - [307330] = 4, + [292063] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15269), 1, + ACTIONS(14086), 1, anon_sym_SEMI_AMP, - ACTIONS(15271), 1, + ACTIONS(14088), 1, anon_sym_SEMI_SEMI_AMP, - ACTIONS(15461), 1, + ACTIONS(14273), 1, anon_sym_SEMI_SEMI, - [307343] = 4, - 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, + [292076] = 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(1302), 3, + sym_extglob_pattern, + anon_sym_PIPE, + anon_sym_RPAREN, + [292085] = 4, 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(14275), 1, + anon_sym_SLASH, + ACTIONS(14277), 1, + anon_sym_RBRACE3, + ACTIONS(14279), 1, + sym__regex_no_slash, + [292098] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(5833), 1, anon_sym_COMMA, - ACTIONS(15469), 1, + ACTIONS(14281), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6179), 1, aux_sym_arithmetic_expansion_repeat1, - [307395] = 4, + [292111] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15303), 1, + ACTIONS(14098), 1, anon_sym_COMMA, - ACTIONS(15471), 1, + ACTIONS(14283), 1, anon_sym_RPAREN_RPAREN, - STATE(6477), 1, + STATE(6256), 1, aux_sym__for_body_repeat1, - [307408] = 4, - 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(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(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, + [292124] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(12688), 1, + ACTIONS(11348), 1, anon_sym_PIPE, - ACTIONS(15479), 1, + ACTIONS(14285), 1, anon_sym_PIPE_AMP, - STATE(4992), 1, + STATE(4502), 1, aux_sym_pipeline_repeat1, - [307460] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15287), 1, - anon_sym_LBRACK, - ACTIONS(15481), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [307471] = 4, + [292137] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(5833), 1, anon_sym_COMMA, - ACTIONS(15483), 1, + ACTIONS(14287), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6179), 1, aux_sym_arithmetic_expansion_repeat1, - [307484] = 4, + [292150] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(5833), 1, anon_sym_COMMA, - ACTIONS(15485), 1, + ACTIONS(14289), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6179), 1, aux_sym_arithmetic_expansion_repeat1, - [307497] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15287), 1, - anon_sym_LBRACK, - ACTIONS(15487), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [307508] = 4, + [292163] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(5833), 1, anon_sym_COMMA, - ACTIONS(15489), 1, + ACTIONS(14291), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6179), 1, aux_sym_arithmetic_expansion_repeat1, - [307521] = 3, - 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(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, + [292176] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(5833), 1, anon_sym_COMMA, - ACTIONS(15495), 1, + ACTIONS(14293), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6179), 1, aux_sym_arithmetic_expansion_repeat1, - [307558] = 4, + [292189] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(5833), 1, anon_sym_COMMA, - ACTIONS(15497), 1, + ACTIONS(14295), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6179), 1, aux_sym_arithmetic_expansion_repeat1, - [307571] = 4, + [292202] = 4, 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(71), 1, - sym_comment, - ACTIONS(6824), 1, + ACTIONS(5833), 1, anon_sym_COMMA, - ACTIONS(15501), 1, + ACTIONS(14297), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6179), 1, aux_sym_arithmetic_expansion_repeat1, - [307597] = 3, - ACTIONS(71), 1, - sym_comment, - STATE(6309), 1, - aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(14908), 2, - sym__concat, - aux_sym_concatenation_token1, - [307608] = 4, + [292215] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(5833), 1, anon_sym_COMMA, - ACTIONS(15503), 1, + ACTIONS(14299), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6179), 1, aux_sym_arithmetic_expansion_repeat1, - [307621] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1266), 3, - sym_extglob_pattern, - anon_sym_PIPE, - anon_sym_RPAREN, - [307630] = 2, + [292228] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1294), 3, + ACTIONS(1306), 3, sym_extglob_pattern, anon_sym_PIPE, anon_sym_RPAREN, - [307639] = 4, + [292237] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15186), 1, - anon_sym_SEMI_AMP, - ACTIONS(15188), 1, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(15505), 1, - anon_sym_SEMI_SEMI, - [307652] = 4, + ACTIONS(14098), 1, + anon_sym_COMMA, + ACTIONS(14301), 1, + anon_sym_RPAREN_RPAREN, + STATE(6154), 1, + aux_sym__for_body_repeat1, + [292250] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(5833), 1, anon_sym_COMMA, - ACTIONS(15507), 1, + ACTIONS(14303), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6179), 1, aux_sym_arithmetic_expansion_repeat1, - [307665] = 4, - 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(71), 1, - sym_comment, - ACTIONS(1250), 3, - sym_extglob_pattern, - anon_sym_PIPE, - anon_sym_RPAREN, - [307687] = 4, + [292263] = 4, 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(14098), 1, + anon_sym_COMMA, + ACTIONS(14305), 1, + anon_sym_RPAREN_RPAREN, + STATE(6133), 1, + aux_sym__for_body_repeat1, + [292276] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1298), 3, - sym_extglob_pattern, + ACTIONS(1231), 3, anon_sym_PIPE, anon_sym_RPAREN, - [307709] = 2, + sym__special_character, + [292285] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1258), 3, + ACTIONS(1302), 3, sym_extglob_pattern, anon_sym_PIPE, anon_sym_RPAREN, - [307718] = 4, + [292294] = 3, 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(14112), 1, + anon_sym_LBRACK, + ACTIONS(14307), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [292305] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15303), 1, + ACTIONS(13988), 1, + anon_sym_RPAREN, + ACTIONS(14309), 1, anon_sym_COMMA, - ACTIONS(15515), 1, - anon_sym_RPAREN_RPAREN, - STATE(6477), 1, + STATE(6239), 1, aux_sym__for_body_repeat1, - [307744] = 4, + [292318] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15303), 1, + ACTIONS(5833), 1, anon_sym_COMMA, - ACTIONS(15517), 1, + ACTIONS(14312), 1, anon_sym_RPAREN_RPAREN, - STATE(6472), 1, - aux_sym__for_body_repeat1, - [307757] = 4, + STATE(6179), 1, + aux_sym_arithmetic_expansion_repeat1, + [292331] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(5833), 1, anon_sym_COMMA, - ACTIONS(15519), 1, + ACTIONS(14314), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6179), 1, aux_sym_arithmetic_expansion_repeat1, - [307770] = 4, + [292344] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(5833), 1, anon_sym_COMMA, - ACTIONS(15521), 1, + ACTIONS(14316), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6179), 1, aux_sym_arithmetic_expansion_repeat1, - [307783] = 4, + [292357] = 3, 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, + STATE(5972), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(13661), 2, + sym__concat, + aux_sym_concatenation_token1, + [292368] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15303), 1, + ACTIONS(5833), 1, anon_sym_COMMA, - ACTIONS(15525), 1, + ACTIONS(14318), 1, anon_sym_RPAREN_RPAREN, - STATE(6477), 1, - aux_sym__for_body_repeat1, - [307809] = 4, + STATE(6179), 1, + aux_sym_arithmetic_expansion_repeat1, + [292381] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15303), 1, + ACTIONS(5833), 1, anon_sym_COMMA, - ACTIONS(15527), 1, + ACTIONS(14320), 1, anon_sym_RPAREN_RPAREN, - STATE(6475), 1, - aux_sym__for_body_repeat1, - [307822] = 4, + STATE(6179), 1, + aux_sym_arithmetic_expansion_repeat1, + [292394] = 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(1266), 3, + sym__regex_no_slash, + anon_sym_SLASH, + anon_sym_RBRACE3, + [292403] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15287), 1, - anon_sym_LBRACK, - ACTIONS(15531), 2, + ACTIONS(14322), 1, + sym__concat, + ACTIONS(5745), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [307846] = 3, + [292414] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15287), 1, - anon_sym_LBRACK, - ACTIONS(15533), 2, + ACTIONS(14324), 1, + sym__concat, + ACTIONS(5819), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [307857] = 4, + [292425] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15237), 1, - anon_sym_SEMI_AMP, - ACTIONS(15239), 1, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(15535), 1, - anon_sym_SEMI_SEMI, - [307870] = 3, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(14326), 1, + anon_sym_RPAREN_RPAREN, + STATE(6179), 1, + aux_sym_arithmetic_expansion_repeat1, + [292438] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15537), 1, - anon_sym_SEMI_SEMI, - ACTIONS(15245), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [307881] = 2, + ACTIONS(11607), 1, + anon_sym_PIPE, + ACTIONS(14328), 1, + anon_sym_PIPE_AMP, + STATE(4776), 1, + aux_sym_pipeline_repeat1, + [292451] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1302), 3, - sym_extglob_pattern, - anon_sym_PIPE, - anon_sym_RPAREN, - [307890] = 4, + ACTIONS(14330), 1, + sym__concat, + ACTIONS(5770), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [292462] = 3, 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(14112), 1, + anon_sym_LBRACK, + ACTIONS(14332), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [292473] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1306), 3, - sym_extglob_pattern, + ACTIONS(13713), 1, anon_sym_PIPE, + ACTIONS(14334), 1, anon_sym_RPAREN, - [307912] = 2, + STATE(6182), 1, + aux_sym_case_item_repeat1, + [292486] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1302), 3, - sym_extglob_pattern, - anon_sym_PIPE, - anon_sym_RPAREN, - [307921] = 3, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(14336), 1, + anon_sym_RPAREN_RPAREN, + STATE(6179), 1, + aux_sym_arithmetic_expansion_repeat1, + [292499] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15287), 1, + ACTIONS(14112), 1, anon_sym_LBRACK, - ACTIONS(15541), 2, + ACTIONS(14338), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [307932] = 4, + [292510] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(14098), 1, anon_sym_COMMA, - ACTIONS(15543), 1, + ACTIONS(14340), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [307945] = 4, + STATE(6154), 1, + aux_sym__for_body_repeat1, + [292523] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(14098), 1, anon_sym_COMMA, - ACTIONS(15545), 1, + ACTIONS(14342), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [307958] = 4, + STATE(6162), 1, + aux_sym__for_body_repeat1, + [292536] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(14098), 1, anon_sym_COMMA, - ACTIONS(15547), 1, + ACTIONS(14344), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [307971] = 4, + STATE(6163), 1, + aux_sym__for_body_repeat1, + [292549] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14806), 1, + ACTIONS(1266), 3, + sym_extglob_pattern, anon_sym_PIPE, - ACTIONS(14960), 1, anon_sym_RPAREN, - STATE(6488), 1, - aux_sym_case_item_repeat1, - [307984] = 4, + [292558] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(5833), 1, anon_sym_COMMA, - ACTIONS(15549), 1, + ACTIONS(14346), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6179), 1, aux_sym_arithmetic_expansion_repeat1, - [307997] = 4, + [292571] = 3, 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(14112), 1, + anon_sym_LBRACK, + ACTIONS(14348), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [292582] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15194), 1, - anon_sym_SEMI_AMP, - ACTIONS(15196), 1, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(15553), 1, - anon_sym_SEMI_SEMI, - [308023] = 4, + ACTIONS(14098), 1, + anon_sym_COMMA, + ACTIONS(14350), 1, + anon_sym_RPAREN_RPAREN, + STATE(6154), 1, + aux_sym__for_body_repeat1, + [292595] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(14098), 1, anon_sym_COMMA, - ACTIONS(15555), 1, + ACTIONS(14352), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [308036] = 4, + STATE(6154), 1, + aux_sym__for_body_repeat1, + [292608] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(13281), 1, + ACTIONS(1294), 3, + sym_extglob_pattern, anon_sym_PIPE, - ACTIONS(15557), 1, - anon_sym_PIPE_AMP, - STATE(5441), 1, - aux_sym_pipeline_repeat1, - [308049] = 4, + anon_sym_RPAREN, + [292617] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13713), 1, + anon_sym_PIPE, + ACTIONS(13853), 1, + anon_sym_RPAREN, + STATE(6290), 1, + aux_sym_case_item_repeat1, + [292630] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15303), 1, + ACTIONS(14098), 1, anon_sym_COMMA, - ACTIONS(15559), 1, + ACTIONS(14354), 1, anon_sym_RPAREN_RPAREN, - STATE(6468), 1, + STATE(6262), 1, aux_sym__for_body_repeat1, - [308062] = 4, + [292643] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(5833), 1, anon_sym_COMMA, - ACTIONS(15561), 1, + ACTIONS(14356), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6179), 1, aux_sym_arithmetic_expansion_repeat1, - [308075] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15287), 1, - anon_sym_LBRACK, - ACTIONS(15563), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [308086] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15287), 1, - anon_sym_LBRACK, - ACTIONS(15565), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [308097] = 4, + [292656] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14806), 1, + ACTIONS(12177), 1, anon_sym_PIPE, - ACTIONS(15567), 1, - anon_sym_RPAREN, - STATE(6493), 1, - aux_sym_case_item_repeat1, - [308110] = 3, + ACTIONS(12179), 1, + anon_sym_PIPE_AMP, + STATE(5236), 1, + aux_sym_pipeline_repeat1, + [292669] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15569), 1, + ACTIONS(14358), 1, sym__concat, - ACTIONS(6673), 2, + ACTIONS(5776), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [308121] = 4, + [292680] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14806), 1, + ACTIONS(14360), 1, + sym_extglob_pattern, + ACTIONS(5674), 2, anon_sym_PIPE, - ACTIONS(15014), 1, anon_sym_RPAREN, - STATE(6453), 1, - aux_sym_case_item_repeat1, - [308134] = 4, + [292691] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(5833), 1, anon_sym_COMMA, - ACTIONS(15571), 1, + ACTIONS(14362), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6179), 1, aux_sym_arithmetic_expansion_repeat1, - [308147] = 4, + [292704] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(5833), 1, anon_sym_COMMA, - ACTIONS(15573), 1, + ACTIONS(14364), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6179), 1, aux_sym_arithmetic_expansion_repeat1, - [308160] = 4, + [292717] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14806), 1, - anon_sym_PIPE, - ACTIONS(15575), 1, + ACTIONS(14106), 1, + anon_sym_COMMA, + ACTIONS(14366), 1, anon_sym_RPAREN, - STATE(6493), 1, - aux_sym_case_item_repeat1, - [308173] = 4, + STATE(6140), 1, + aux_sym__for_body_repeat1, + [292730] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14806), 1, - anon_sym_PIPE, - ACTIONS(15577), 1, - anon_sym_RPAREN, - STATE(6493), 1, - aux_sym_case_item_repeat1, - [308186] = 4, + ACTIONS(14098), 1, + anon_sym_COMMA, + ACTIONS(14368), 1, + anon_sym_RPAREN_RPAREN, + STATE(6233), 1, + aux_sym__for_body_repeat1, + [292743] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(14098), 1, anon_sym_COMMA, - ACTIONS(15579), 1, + ACTIONS(14370), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [308199] = 4, + STATE(6154), 1, + aux_sym__for_body_repeat1, + [292756] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14806), 1, - anon_sym_PIPE, - ACTIONS(15581), 1, - anon_sym_RPAREN, - STATE(6493), 1, - aux_sym_case_item_repeat1, - [308212] = 4, + ACTIONS(14112), 1, + anon_sym_LBRACK, + ACTIONS(14372), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [292767] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12668), 1, + ACTIONS(1262), 3, + sym_extglob_pattern, anon_sym_PIPE, - ACTIONS(15583), 1, - anon_sym_PIPE_AMP, - STATE(4945), 1, - aux_sym_pipeline_repeat1, - [308225] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15585), 1, - anon_sym_SEMI_SEMI, - ACTIONS(15251), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [308236] = 4, - 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, + anon_sym_RPAREN, + [292776] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15303), 1, + ACTIONS(14098), 1, anon_sym_COMMA, - ACTIONS(15589), 1, + ACTIONS(14374), 1, anon_sym_RPAREN_RPAREN, - STATE(6477), 1, + STATE(6263), 1, aux_sym__for_body_repeat1, - [308262] = 4, + [292789] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14806), 1, + ACTIONS(13713), 1, anon_sym_PIPE, - ACTIONS(15591), 1, + ACTIONS(13821), 1, anon_sym_RPAREN, - STATE(6493), 1, + STATE(6196), 1, aux_sym_case_item_repeat1, - [308275] = 3, + [292802] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15593), 1, - sym__concat, - ACTIONS(6703), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [308286] = 3, + ACTIONS(1270), 3, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_RBRACE3, + [292811] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15287), 1, - anon_sym_LBRACK, - ACTIONS(15595), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [308297] = 4, + ACTIONS(14106), 1, + anon_sym_COMMA, + ACTIONS(14376), 1, + anon_sym_RPAREN, + STATE(6139), 1, + aux_sym__for_body_repeat1, + [292824] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(14098), 1, anon_sym_COMMA, - ACTIONS(15597), 1, + ACTIONS(14378), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [308310] = 4, + STATE(6275), 1, + aux_sym__for_body_repeat1, + [292837] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1274), 3, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_RBRACE3, + [292846] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(5833), 1, anon_sym_COMMA, - ACTIONS(15599), 1, + ACTIONS(14380), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6179), 1, aux_sym_arithmetic_expansion_repeat1, - [308323] = 4, + [292859] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12154), 1, + anon_sym_PIPE, + ACTIONS(14382), 1, + anon_sym_PIPE_AMP, + STATE(5200), 1, + aux_sym_pipeline_repeat1, + [292872] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(13713), 1, + anon_sym_PIPE, + ACTIONS(14384), 1, + anon_sym_RPAREN, + STATE(6182), 1, + aux_sym_case_item_repeat1, + [292885] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5833), 1, anon_sym_COMMA, - ACTIONS(15601), 1, + ACTIONS(14386), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(6179), 1, aux_sym_arithmetic_expansion_repeat1, - [308336] = 2, + [292898] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15150), 2, + ACTIONS(5833), 1, anon_sym_COMMA, + ACTIONS(14388), 1, + anon_sym_RPAREN_RPAREN, + STATE(6179), 1, + aux_sym_arithmetic_expansion_repeat1, + [292911] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1298), 3, + sym_extglob_pattern, + anon_sym_PIPE, anon_sym_RPAREN, - [308344] = 3, + [292920] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15603), 1, - anon_sym_RBRACE3, - ACTIONS(15605), 1, - sym_regex, - [308354] = 3, + ACTIONS(13713), 1, + anon_sym_PIPE, + ACTIONS(14390), 1, + anon_sym_RPAREN, + STATE(6182), 1, + aux_sym_case_item_repeat1, + [292933] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14952), 1, - anon_sym_do, - STATE(5569), 1, - sym_do_group, - [308364] = 2, + ACTIONS(14112), 1, + anon_sym_LBRACK, + ACTIONS(14392), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [292944] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6639), 2, + ACTIONS(14112), 1, + anon_sym_LBRACK, + ACTIONS(14394), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [308372] = 3, + [292955] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14900), 1, - anon_sym_do, - STATE(4819), 1, - sym_do_group, - [308382] = 2, + ACTIONS(13713), 1, + anon_sym_PIPE, + ACTIONS(14396), 1, + anon_sym_RPAREN, + STATE(6182), 1, + aux_sym_case_item_repeat1, + [292968] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15334), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [308390] = 2, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(14398), 1, + anon_sym_RPAREN_RPAREN, + STATE(6179), 1, + aux_sym_arithmetic_expansion_repeat1, + [292981] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15487), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [308398] = 2, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(14400), 1, + anon_sym_RPAREN_RPAREN, + STATE(6179), 1, + aux_sym_arithmetic_expansion_repeat1, + [292994] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(12180), 2, - sym__concat, - anon_sym_RBRACK, - [308406] = 2, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(14402), 1, + anon_sym_RPAREN_RPAREN, + STATE(6179), 1, + aux_sym_arithmetic_expansion_repeat1, + [293007] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15293), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [308414] = 2, + ACTIONS(5833), 1, + anon_sym_COMMA, + ACTIONS(14404), 1, + anon_sym_RPAREN_RPAREN, + STATE(6179), 1, + aux_sym_arithmetic_expansion_repeat1, + [293020] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15313), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [308422] = 3, + ACTIONS(1229), 1, + sym__special_character, + ACTIONS(1231), 2, + anon_sym_SLASH, + anon_sym_RBRACE3, + [293031] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15451), 1, + ACTIONS(1262), 3, + sym__regex_no_slash, anon_sym_SLASH, - ACTIONS(15453), 1, anon_sym_RBRACE3, - [308432] = 3, + [293040] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6589), 1, + ACTIONS(13931), 1, + anon_sym_SLASH, + ACTIONS(13933), 1, + anon_sym_RBRACE3, + [293050] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5595), 1, anon_sym_RBRACK, - ACTIONS(6844), 1, + ACTIONS(5879), 1, sym__concat, - [308442] = 3, + [293060] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15086), 1, + ACTIONS(1262), 2, anon_sym_SLASH, - ACTIONS(15088), 1, anon_sym_RBRACE3, - [308452] = 2, + [293068] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15481), 2, + ACTIONS(14138), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [308460] = 2, + [293076] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1310), 2, + ACTIONS(13669), 1, anon_sym_SLASH, + ACTIONS(13671), 1, anon_sym_RBRACE3, - [308468] = 2, + [293086] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6728), 2, + ACTIONS(6076), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [308476] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14952), 1, - anon_sym_do, - STATE(5542), 1, - sym_do_group, - [308486] = 3, + [293094] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15607), 1, + ACTIONS(1254), 2, anon_sym_SLASH, - ACTIONS(15609), 1, anon_sym_RBRACE3, - [308496] = 2, + [293102] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15229), 2, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - [308504] = 2, + ACTIONS(13835), 1, + anon_sym_do, + STATE(4751), 1, + sym_do_group, + [293112] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12101), 2, - sym__concat, - anon_sym_RBRACK, - [308512] = 2, + ACTIONS(13763), 1, + anon_sym_do, + STATE(5293), 1, + sym_do_group, + [293122] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1250), 2, + ACTIONS(1266), 2, anon_sym_SLASH, anon_sym_RBRACE3, - [308520] = 2, + [293130] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12107), 2, - sym__concat, + ACTIONS(5631), 1, anon_sym_RBRACK, - [308528] = 2, + ACTIONS(5885), 1, + sym__concat, + [293140] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15531), 2, + ACTIONS(14189), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [308536] = 2, + [293148] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15336), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [308544] = 2, + ACTIONS(5659), 1, + anon_sym_RBRACK, + ACTIONS(5881), 1, + sym__concat, + [293158] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15533), 2, + ACTIONS(14163), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [308552] = 3, + [293166] = 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(5827), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + [293174] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14900), 1, + ACTIONS(13645), 1, anon_sym_do, - STATE(4704), 1, + STATE(4555), 1, sym_do_group, - [308572] = 2, + [293184] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15363), 2, + ACTIONS(14338), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [308580] = 2, + [293192] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15285), 2, + ACTIONS(14196), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [308588] = 2, + [293200] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15315), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [308596] = 3, + ACTIONS(11082), 2, + sym__concat, + anon_sym_RBRACK, + [293208] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14962), 1, - anon_sym_SLASH, - ACTIONS(14964), 1, - anon_sym_RBRACE3, - [308606] = 2, + ACTIONS(14025), 2, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + [293216] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15229), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [308614] = 2, + ACTIONS(14167), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [293224] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15106), 2, - anon_sym_PIPE, - anon_sym_RPAREN, - [308622] = 3, + ACTIONS(11239), 2, + sym__concat, + anon_sym_RBRACK, + [293232] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14796), 1, - anon_sym_COLON, - ACTIONS(14798), 1, + ACTIONS(14275), 1, + anon_sym_SLASH, + ACTIONS(14277), 1, anon_sym_RBRACE3, - [308632] = 2, + [293242] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12228), 2, - sym__concat, - anon_sym_RBRACK, - [308640] = 3, + ACTIONS(14348), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [293250] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6489), 1, - anon_sym_RBRACK, - ACTIONS(6998), 1, - sym__concat, - [308650] = 2, + ACTIONS(14406), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(14408), 1, + aux_sym__simple_variable_name_token1, + [293260] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15541), 2, + ACTIONS(6082), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [308658] = 3, + [293268] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14906), 1, - anon_sym_SLASH, - ACTIONS(14910), 1, - anon_sym_RBRACE3, - [308668] = 3, + ACTIONS(14205), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [293276] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6483), 1, - anon_sym_RBRACK, - ACTIONS(6848), 1, + ACTIONS(11186), 2, sym__concat, - [308678] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6472), 1, anon_sym_RBRACK, - ACTIONS(6834), 1, - sym__concat, - [308688] = 3, + [293284] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6605), 1, - anon_sym_RBRACK, - ACTIONS(6838), 1, - sym__concat, - [308698] = 2, + ACTIONS(14410), 1, + anon_sym_SLASH, + ACTIONS(14412), 1, + anon_sym_RBRACE3, + [293294] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15342), 2, + ACTIONS(14213), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [308706] = 3, + [293302] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15615), 1, - anon_sym_SLASH, - ACTIONS(15617), 1, - anon_sym_RBRACE3, - [308716] = 2, + ACTIONS(11158), 2, + sym__concat, + anon_sym_RBRACK, + [293310] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1254), 2, + ACTIONS(14414), 1, anon_sym_SLASH, + ACTIONS(14416), 1, anon_sym_RBRACE3, - [308724] = 2, + [293320] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15323), 2, + ACTIONS(14173), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [308732] = 2, + [293328] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15348), 2, + ACTIONS(5770), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [308740] = 2, + [293336] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1258), 2, - anon_sym_SLASH, + ACTIONS(13873), 1, + anon_sym_do, + STATE(4558), 1, + sym_do_group, + [293346] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14056), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [293354] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13622), 1, + anon_sym_COLON, + ACTIONS(13624), 1, anon_sym_RBRACE3, - [308748] = 2, + [293364] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5645), 1, + anon_sym_RBRACK, + ACTIONS(5889), 1, + sym__concat, + [293374] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15595), 2, + ACTIONS(14332), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [308756] = 3, + [293382] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15038), 1, + ACTIONS(13645), 1, anon_sym_do, - STATE(4749), 1, + STATE(4674), 1, sym_do_group, - [308766] = 3, + [293392] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15100), 1, + ACTIONS(14157), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [293400] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13969), 1, anon_sym_SLASH, - ACTIONS(15102), 1, + ACTIONS(13971), 1, anon_sym_RBRACE3, - [308776] = 2, + [293410] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6667), 2, - anon_sym_COLON, + ACTIONS(13659), 1, + anon_sym_SLASH, + ACTIONS(13663), 1, anon_sym_RBRACE3, - [308784] = 2, + [293420] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15563), 2, + ACTIONS(14147), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [308792] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15038), 1, - anon_sym_do, - STATE(4792), 1, - sym_do_group, - [308802] = 2, + [293428] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15565), 2, + ACTIONS(14175), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [308810] = 3, + [293436] = 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(1282), 2, + anon_sym_SLASH, + anon_sym_RBRACE3, + [293444] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14980), 1, + ACTIONS(13835), 1, + anon_sym_do, + STATE(4753), 1, + sym_do_group, + [293454] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13751), 1, anon_sym_SLASH, - ACTIONS(14982), 1, + ACTIONS(13753), 1, anon_sym_RBRACE3, - [308830] = 3, + [293464] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15623), 1, + ACTIONS(14418), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(15625), 1, + ACTIONS(14420), 1, aux_sym__simple_variable_name_token1, - [308840] = 2, + [293474] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15150), 2, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - [308848] = 2, + ACTIONS(13944), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + [293482] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15180), 2, + ACTIONS(14056), 2, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, - [308856] = 3, + [293490] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6495), 1, - anon_sym_RBRACK, - ACTIONS(6840), 1, - sym__concat, - [308866] = 2, + ACTIONS(5756), 2, + anon_sym_COLON, + anon_sym_RBRACE3, + [293498] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6663), 2, - anon_sym_PIPE, + ACTIONS(14025), 2, + anon_sym_COMMA, anon_sym_RPAREN, - [308874] = 3, + [293506] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14860), 1, + ACTIONS(14372), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [293514] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13763), 1, anon_sym_do, - STATE(4954), 1, + STATE(5310), 1, sym_do_group, - [308884] = 3, + [293524] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15627), 1, + ACTIONS(14422), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(15629), 1, + ACTIONS(14424), 1, aux_sym__simple_variable_name_token1, - [308894] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1266), 2, - anon_sym_SLASH, - anon_sym_RBRACE3, - [308902] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15180), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [308910] = 2, + [293534] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6724), 2, + ACTIONS(14179), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [308918] = 3, + [293542] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15631), 1, - anon_sym_SLASH, - ACTIONS(15633), 1, - anon_sym_RBRACE3, - [308928] = 2, + ACTIONS(13988), 2, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + [293550] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15352), 2, + ACTIONS(14110), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [308936] = 3, + [293558] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15070), 1, + ACTIONS(14426), 1, anon_sym_SLASH, - ACTIONS(15072), 1, + ACTIONS(14428), 1, anon_sym_RBRACE3, - [308946] = 2, + [293568] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15327), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [308954] = 3, + ACTIONS(14430), 1, + anon_sym_RBRACE3, + ACTIONS(14432), 1, + sym_regex, + [293578] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14860), 1, + ACTIONS(13873), 1, anon_sym_do, - STATE(4997), 1, + STATE(4675), 1, sym_do_group, - [308964] = 2, + [293588] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6651), 2, + ACTIONS(14392), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [308972] = 3, + [293596] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15635), 1, - anon_sym_SLASH, - ACTIONS(15637), 1, - anon_sym_RBRACE3, - [308982] = 2, + ACTIONS(5695), 1, + anon_sym_RBRACK, + ACTIONS(6080), 1, + sym__concat, + [293606] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15305), 2, + ACTIONS(14394), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [308990] = 2, + [293614] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15361), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [308998] = 2, + ACTIONS(14434), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(14436), 1, + aux_sym__simple_variable_name_token1, + [293624] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15299), 2, + ACTIONS(14181), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [309006] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15113), 1, - anon_sym_RBRACE3, - [309013] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15639), 1, - anon_sym_BQUOTE, - [309020] = 2, + [293632] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15641), 1, + ACTIONS(13988), 2, + anon_sym_COMMA, anon_sym_RPAREN, - [309027] = 2, + [293640] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14892), 1, + ACTIONS(14438), 1, + anon_sym_SLASH, + ACTIONS(14440), 1, anon_sym_RBRACE3, - [309034] = 2, + [293650] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15643), 1, + ACTIONS(1314), 2, + anon_sym_SLASH, anon_sym_RBRACE3, - [309041] = 2, + [293658] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15645), 1, - anon_sym_RPAREN, - [309048] = 2, + ACTIONS(14185), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [293666] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15647), 1, - aux_sym_brace_expression_token1, - [309055] = 2, + ACTIONS(5726), 1, + anon_sym_RBRACK, + ACTIONS(6100), 1, + sym__concat, + [293676] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15649), 1, - anon_sym_BQUOTE, - [309062] = 2, + ACTIONS(14307), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [293684] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15651), 1, - anon_sym_RPAREN_RPAREN, - [309069] = 2, + ACTIONS(13919), 1, + anon_sym_SLASH, + ACTIONS(13921), 1, + anon_sym_RBRACE3, + [293694] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15076), 1, - anon_sym_RBRACE3, - [309076] = 2, + ACTIONS(14187), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [293702] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5776), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [293710] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15653), 1, + ACTIONS(14442), 1, anon_sym_BQUOTE, - [309083] = 2, + [293717] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15113), 1, - anon_sym_RBRACE3, - [309090] = 2, + ACTIONS(14444), 1, + anon_sym_RBRACE2, + [293724] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15655), 1, + ACTIONS(14446), 1, anon_sym_RBRACE3, - [309097] = 2, + [293731] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15657), 1, - anon_sym_RBRACE3, - [309104] = 2, + ACTIONS(14448), 1, + anon_sym_esac, + [293738] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15659), 1, + ACTIONS(14450), 1, anon_sym_RPAREN, - [309111] = 2, + [293745] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15661), 1, + ACTIONS(14452), 1, aux_sym_brace_expression_token1, - [309118] = 2, + [293752] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15663), 1, + ACTIONS(13885), 1, anon_sym_RBRACE3, - [309125] = 2, + [293759] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15665), 1, - anon_sym_BQUOTE, - [309132] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15667), 1, + ACTIONS(13885), 1, anon_sym_RBRACE3, - [309139] = 2, + [293766] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15669), 1, + ACTIONS(14454), 1, anon_sym_RPAREN, - [309146] = 2, + [293773] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15076), 1, + ACTIONS(13885), 1, anon_sym_RBRACE3, - [309153] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15659), 1, - anon_sym_BQUOTE, - [309160] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15671), 1, - anon_sym_BQUOTE, - [309167] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15673), 1, - anon_sym_RPAREN, - [309174] = 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, + [293780] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15679), 1, - anon_sym_RPAREN, - [309195] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15681), 1, + ACTIONS(14456), 1, anon_sym_RPAREN, - [309202] = 2, + [293787] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15683), 1, - anon_sym_RBRACE2, - [309209] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15669), 1, + ACTIONS(14458), 1, anon_sym_BQUOTE, - [309216] = 2, + [293794] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15685), 1, - anon_sym_fi, - [309223] = 2, + ACTIONS(14454), 1, + anon_sym_BQUOTE, + [293801] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15687), 1, + ACTIONS(14460), 1, anon_sym_RBRACE2, - [309230] = 2, + [293808] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15689), 1, - anon_sym_RBRACE3, - [309237] = 2, + ACTIONS(14462), 1, + aux_sym_brace_expression_token1, + [293815] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15691), 1, - aux_sym_brace_expression_token1, - [309244] = 2, + ACTIONS(13681), 1, + anon_sym_fi, + [293822] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15693), 1, + ACTIONS(14464), 1, anon_sym_RPAREN, - [309251] = 2, + [293829] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15695), 1, - anon_sym_RPAREN, - [309258] = 2, + ACTIONS(14466), 1, + anon_sym_esac, + [293836] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15697), 1, + ACTIONS(14468), 1, anon_sym_BQUOTE, - [309265] = 2, + [293843] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15699), 1, + ACTIONS(14470), 1, anon_sym_RBRACE3, - [309272] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15701), 1, - anon_sym_BQUOTE, - [309279] = 2, + [293850] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15703), 1, - anon_sym_RBRACE2, - [309286] = 2, + ACTIONS(14472), 1, + anon_sym_RPAREN, + [293857] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15693), 1, - anon_sym_BQUOTE, - [309293] = 2, + ACTIONS(13771), 1, + anon_sym_RBRACE3, + [293864] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15705), 1, + ACTIONS(14474), 1, anon_sym_RPAREN, - [309300] = 2, + [293871] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15707), 1, + ACTIONS(14476), 1, aux_sym_brace_expression_token1, - [309307] = 2, + [293878] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15709), 1, - anon_sym_RPAREN, - [309314] = 2, - ACTIONS(71), 1, + ACTIONS(14478), 1, + anon_sym_LT_LT_LT, + [293885] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15711), 1, - anon_sym_RPAREN, - [309321] = 2, - ACTIONS(71), 1, + ACTIONS(14480), 1, + aux_sym_heredoc_redirect_token1, + [293892] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(14892), 1, - anon_sym_RBRACE3, - [309328] = 2, + ACTIONS(14482), 1, + aux_sym_heredoc_redirect_token1, + [293899] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15713), 1, - anon_sym_RBRACE2, - [309335] = 2, + ACTIONS(14484), 1, + anon_sym_RBRACE3, + [293906] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15715), 1, - anon_sym_BQUOTE, - [309342] = 2, + ACTIONS(14486), 1, + anon_sym_esac, + [293913] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15717), 1, - anon_sym_RBRACE3, - [309349] = 2, + ACTIONS(14488), 1, + anon_sym_RPAREN, + [293920] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15711), 1, + ACTIONS(14490), 1, anon_sym_BQUOTE, - [309356] = 2, + [293927] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15719), 1, - anon_sym_RPAREN, - [309363] = 2, + ACTIONS(14492), 1, + anon_sym_RBRACE3, + [293934] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15721), 1, + ACTIONS(14494), 1, aux_sym_brace_expression_token1, - [309370] = 2, + [293941] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15092), 1, + ACTIONS(14496), 1, anon_sym_RBRACE3, - [309377] = 2, + [293948] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15723), 1, + ACTIONS(14498), 1, anon_sym_BQUOTE, - [309384] = 2, + [293955] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15719), 1, + ACTIONS(14500), 1, anon_sym_BQUOTE, - [309391] = 2, + [293962] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15725), 1, + ACTIONS(14502), 1, aux_sym_heredoc_redirect_token1, - [309398] = 2, + [293969] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15679), 1, + ACTIONS(14488), 1, anon_sym_BQUOTE, - [309405] = 2, - ACTIONS(71), 1, + [293976] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15727), 1, - anon_sym_RPAREN, - [309412] = 2, + ACTIONS(14504), 1, + aux_sym_heredoc_redirect_token1, + [293983] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15729), 1, + ACTIONS(14506), 1, anon_sym_RPAREN, - [309419] = 2, + [293990] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15731), 1, - anon_sym_esac, - [309426] = 2, + ACTIONS(14474), 1, + anon_sym_BQUOTE, + [293997] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15733), 1, + ACTIONS(14508), 1, aux_sym_brace_expression_token1, - [309433] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15735), 1, - anon_sym_RBRACE2, - [309440] = 2, - ACTIONS(71), 1, + [294004] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15076), 1, - anon_sym_RBRACE3, - [309447] = 2, + ACTIONS(14510), 1, + aux_sym_heredoc_redirect_token1, + [294011] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15737), 1, + ACTIONS(14512), 1, anon_sym_RPAREN, - [309454] = 2, + [294018] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15076), 1, - anon_sym_RBRACE3, - [309461] = 2, + ACTIONS(14514), 1, + anon_sym_esac, + [294025] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15739), 1, - anon_sym_esac, - [309468] = 2, + ACTIONS(13843), 1, + anon_sym_fi, + [294032] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15741), 1, + ACTIONS(14516), 1, anon_sym_RBRACE3, - [309475] = 2, + [294039] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15743), 1, + ACTIONS(14518), 1, anon_sym_RBRACE2, - [309482] = 2, + [294046] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14520), 1, + aux_sym_heredoc_redirect_token1, + [294053] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15092), 1, - anon_sym_RBRACE3, - [309489] = 2, + ACTIONS(14522), 1, + anon_sym_RPAREN, + [294060] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15745), 1, + ACTIONS(14524), 1, aux_sym_brace_expression_token1, - [309496] = 2, + [294067] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14526), 1, + anon_sym_esac, + [294074] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15747), 1, + ACTIONS(14528), 1, anon_sym_RBRACE2, - [309503] = 2, + [294081] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15749), 1, + ACTIONS(14530), 1, anon_sym_RPAREN, - [309510] = 2, + [294088] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(9852), 1, - anon_sym_RBRACK, - [309517] = 2, + ACTIONS(14472), 1, + anon_sym_BQUOTE, + [294095] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(9784), 1, - anon_sym_RBRACK, - [309524] = 2, + ACTIONS(14532), 1, + anon_sym_BQUOTE, + [294102] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15751), 1, - anon_sym_RBRACE2, - [309531] = 2, + ACTIONS(14530), 1, + anon_sym_BQUOTE, + [294109] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15753), 1, - sym_word, - [309538] = 2, + ACTIONS(8725), 1, + anon_sym_RBRACK, + [294116] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15755), 1, - aux_sym_brace_expression_token1, - [309545] = 2, + ACTIONS(14534), 1, + anon_sym_esac, + [294123] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15757), 1, - anon_sym_RBRACE3, - [309552] = 2, + ACTIONS(14536), 1, + aux_sym_brace_expression_token1, + [294130] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15759), 1, - anon_sym_RPAREN, - [309559] = 2, + ACTIONS(8723), 1, + anon_sym_RBRACK, + [294137] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15761), 1, + ACTIONS(14538), 1, anon_sym_RBRACE2, - [309566] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15113), 1, - anon_sym_RBRACE3, - [309573] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14954), 1, - anon_sym_fi, - [309580] = 2, + [294144] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15763), 1, + ACTIONS(14540), 1, anon_sym_RPAREN, - [309587] = 2, + [294151] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15765), 1, - aux_sym_brace_expression_token1, - [309594] = 2, + ACTIONS(14542), 1, + anon_sym_BQUOTE, + [294158] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15767), 1, + ACTIONS(13909), 1, anon_sym_RBRACE3, - [309601] = 2, + [294165] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15769), 1, - anon_sym_esac, - [309608] = 2, + ACTIONS(13841), 1, + anon_sym_fi, + [294172] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15076), 1, - anon_sym_RBRACE3, - [309615] = 2, + ACTIONS(14544), 1, + aux_sym_brace_expression_token1, + [294179] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15771), 1, + ACTIONS(14506), 1, anon_sym_BQUOTE, - [309622] = 2, + [294186] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15773), 1, + ACTIONS(14546), 1, anon_sym_esac, - [309629] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15763), 1, - anon_sym_BQUOTE, - [309636] = 2, + [294193] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15775), 1, - aux_sym_brace_expression_token1, - [309643] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15777), 1, - anon_sym_RPAREN, - [309650] = 2, + ACTIONS(14548), 1, + anon_sym_esac, + [294200] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15779), 1, + ACTIONS(14550), 1, anon_sym_RPAREN, - [309657] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15781), 1, - anon_sym_RBRACE3, - [309664] = 2, + [294207] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15783), 1, - anon_sym_RBRACE2, - [309671] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14892), 1, + ACTIONS(14552), 1, anon_sym_RBRACE3, - [309678] = 2, + [294214] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15785), 1, - anon_sym_RBRACE2, - [309685] = 2, + ACTIONS(14554), 1, + anon_sym_RPAREN, + [294221] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15787), 1, + ACTIONS(14556), 1, aux_sym_brace_expression_token1, - [309692] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15789), 1, - anon_sym_RBRACE3, - [309699] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15058), 1, - anon_sym_fi, - [309706] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15791), 1, - anon_sym_RBRACE3, - [309713] = 2, + [294228] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15793), 1, + ACTIONS(14558), 1, anon_sym_esac, - [309720] = 2, + [294235] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15795), 1, + ACTIONS(14560), 1, anon_sym_RPAREN, - [309727] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15797), 1, - anon_sym_esac, - [309734] = 2, + [294242] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15799), 1, - aux_sym_brace_expression_token1, - [309741] = 2, + ACTIONS(14562), 1, + anon_sym_RBRACK_RBRACK, + [294249] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15801), 1, + ACTIONS(14564), 1, anon_sym_BQUOTE, - [309748] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15803), 1, - anon_sym_RBRACE3, - [309755] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15113), 1, - anon_sym_RBRACE3, - [309762] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15805), 1, - anon_sym_RBRACK_RBRACK, - [309769] = 2, + [294256] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15807), 1, - sym_heredoc_end, - [309776] = 2, + ACTIONS(14420), 1, + aux_sym__simple_variable_name_token1, + [294263] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15809), 1, - sym_heredoc_end, - [309783] = 2, + ACTIONS(14554), 1, + anon_sym_BQUOTE, + [294270] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15811), 1, + ACTIONS(14566), 1, aux_sym_brace_expression_token1, - [309790] = 2, + [294277] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15813), 1, + ACTIONS(14568), 1, anon_sym_RPAREN, - [309797] = 2, + [294284] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15815), 1, - anon_sym_RBRACK_RBRACK, - [309804] = 2, + ACTIONS(14570), 1, + anon_sym_RBRACE3, + [294291] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15817), 1, - anon_sym_BQUOTE, - [309811] = 2, + ACTIONS(13859), 1, + anon_sym_fi, + [294298] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15819), 1, - anon_sym_RBRACE3, - [309818] = 2, + ACTIONS(14572), 1, + sym_heredoc_end, + [294305] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15821), 1, - anon_sym_fi, - [309825] = 2, + ACTIONS(14574), 1, + anon_sym_RBRACE2, + [294312] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15823), 1, - anon_sym_esac, - [309832] = 2, + ACTIONS(14576), 1, + anon_sym_RBRACE2, + [294319] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15825), 1, + ACTIONS(14578), 1, aux_sym_brace_expression_token1, - [309839] = 2, + [294326] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15827), 1, + ACTIONS(14580), 1, anon_sym_esac, - [309846] = 2, + [294333] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15829), 1, - anon_sym_RPAREN, - [309853] = 2, + ACTIONS(14582), 1, + sym_heredoc_end, + [294340] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15831), 1, - anon_sym_RBRACE3, - [309860] = 2, + ACTIONS(14584), 1, + anon_sym_esac, + [294347] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15833), 1, - anon_sym_BQUOTE, - [309867] = 2, + ACTIONS(14586), 1, + anon_sym_RPAREN, + [294354] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15829), 1, - anon_sym_BQUOTE, - [309874] = 2, + ACTIONS(14588), 1, + anon_sym_RBRACE2, + [294361] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15835), 1, - anon_sym_RPAREN, - [309881] = 2, + ACTIONS(14590), 1, + sym_heredoc_end, + [294368] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15837), 1, + ACTIONS(14592), 1, aux_sym_brace_expression_token1, - [309888] = 2, + [294375] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15839), 1, - anon_sym_esac, - [309895] = 2, + ACTIONS(14594), 1, + sym_heredoc_end, + [294382] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15841), 1, - anon_sym_esac, - [309902] = 2, + ACTIONS(14596), 1, + anon_sym_BQUOTE, + [294389] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15843), 1, + ACTIONS(14598), 1, anon_sym_BQUOTE, - [309909] = 2, + [294396] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15845), 1, - anon_sym_RPAREN, - [309916] = 2, + ACTIONS(14600), 1, + anon_sym_RBRACE2, + [294403] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15847), 1, - anon_sym_RBRACE2, - [309923] = 2, + ACTIONS(14602), 1, + anon_sym_esac, + [294410] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15813), 1, + ACTIONS(14586), 1, anon_sym_BQUOTE, - [309930] = 2, + [294417] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15849), 1, + ACTIONS(14604), 1, aux_sym_brace_expression_token1, - [309937] = 2, + [294424] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15851), 1, - anon_sym_BQUOTE, - [309944] = 2, + ACTIONS(14606), 1, + anon_sym_fi, + [294431] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15845), 1, - anon_sym_BQUOTE, - [309951] = 2, + ACTIONS(14608), 1, + anon_sym_esac, + [294438] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15853), 1, - anon_sym_RPAREN, - [309958] = 2, + ACTIONS(14610), 1, + anon_sym_esac, + [294445] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15795), 1, - anon_sym_BQUOTE, - [309965] = 2, + ACTIONS(14612), 1, + anon_sym_esac, + [294452] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15855), 1, - anon_sym_RPAREN, - [309972] = 2, + ACTIONS(14456), 1, + anon_sym_BQUOTE, + [294459] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15857), 1, + ACTIONS(14614), 1, anon_sym_RPAREN, - [309979] = 2, + [294466] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15859), 1, + ACTIONS(14616), 1, aux_sym_brace_expression_token1, - [309986] = 2, + [294473] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15861), 1, - anon_sym_RBRACE2, - [309993] = 2, + ACTIONS(14618), 1, + anon_sym_RBRACE3, + [294480] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15863), 1, + ACTIONS(14620), 1, anon_sym_RPAREN, - [310000] = 2, + [294487] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15865), 1, - anon_sym_RBRACE3, - [310007] = 2, + ACTIONS(14622), 1, + anon_sym_fi, + [294494] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15867), 1, - anon_sym_RBRACE3, - [310014] = 2, + ACTIONS(14624), 1, + anon_sym_esac, + [294501] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15869), 1, - anon_sym_RPAREN, - [310021] = 2, + ACTIONS(14626), 1, + anon_sym_esac, + [294508] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15871), 1, - anon_sym_RBRACE2, - [310028] = 2, + ACTIONS(14628), 1, + anon_sym_esac, + [294515] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15873), 1, + ACTIONS(14630), 1, aux_sym_brace_expression_token1, - [310035] = 2, + [294522] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15875), 1, + ACTIONS(14632), 1, anon_sym_BQUOTE, - [310042] = 2, + [294529] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15869), 1, + ACTIONS(14620), 1, anon_sym_BQUOTE, - [310049] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15877), 1, - anon_sym_RBRACE2, - [310056] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15879), 1, - anon_sym_RPAREN, - [310063] = 2, + [294536] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15881), 1, + ACTIONS(14634), 1, anon_sym_RPAREN, - [310070] = 2, + [294543] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15883), 1, - anon_sym_RPAREN, - [310077] = 2, + ACTIONS(14636), 1, + anon_sym_esac, + [294550] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15885), 1, - aux_sym_brace_expression_token1, - [310084] = 2, + ACTIONS(14638), 1, + anon_sym_BQUOTE, + [294557] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15887), 1, + ACTIONS(14640), 1, anon_sym_RBRACE2, - [310091] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15889), 1, - anon_sym_LT_LT_LT, - [310098] = 2, + [294564] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15891), 1, + ACTIONS(14642), 1, aux_sym_brace_expression_token1, - [310105] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15893), 1, - anon_sym_RPAREN_RPAREN, - [310112] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15895), 1, - anon_sym_in, - [310119] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15897), 1, - anon_sym_RBRACE3, - [310126] = 2, + [294571] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15899), 1, - aux_sym_brace_expression_token1, - [310133] = 2, + ACTIONS(14644), 1, + anon_sym_RBRACE2, + [294578] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15901), 1, + ACTIONS(14646), 1, anon_sym_RBRACE3, - [310140] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15903), 1, - anon_sym_RPAREN, - [310147] = 2, + [294585] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15905), 1, + ACTIONS(14648), 1, anon_sym_RPAREN, - [310154] = 2, - ACTIONS(71), 1, + [294592] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15907), 1, - anon_sym_RBRACE3, - [310161] = 2, + ACTIONS(14650), 1, + aux_sym_heredoc_redirect_token1, + [294599] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15909), 1, - anon_sym_RPAREN, - [310168] = 2, + ACTIONS(14652), 1, + anon_sym_BQUOTE, + [294606] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15911), 1, - anon_sym_in, - [310175] = 2, + ACTIONS(14648), 1, + anon_sym_BQUOTE, + [294613] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15913), 1, + ACTIONS(14654), 1, aux_sym_brace_expression_token1, - [310182] = 2, + [294620] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15915), 1, - anon_sym_BQUOTE, - [310189] = 2, + ACTIONS(14656), 1, + anon_sym_RPAREN, + [294627] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15917), 1, - anon_sym_RBRACE3, - [310196] = 2, + ACTIONS(14658), 1, + anon_sym_BQUOTE, + [294634] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15919), 1, + ACTIONS(14660), 1, anon_sym_RPAREN, - [310203] = 2, + [294641] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15779), 1, - anon_sym_BQUOTE, - [310210] = 2, + ACTIONS(14662), 1, + anon_sym_RPAREN, + [294648] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15921), 1, - anon_sym_BQUOTE, - [310217] = 2, + ACTIONS(14664), 1, + anon_sym_RBRACE3, + [294655] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15923), 1, - anon_sym_BQUOTE, - [310224] = 2, + ACTIONS(14666), 1, + anon_sym_RPAREN, + [294662] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15925), 1, + ACTIONS(14668), 1, aux_sym_brace_expression_token1, - [310231] = 2, + [294669] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15927), 1, - ts_builtin_sym_end, - [310238] = 2, + ACTIONS(14670), 1, + anon_sym_RPAREN, + [294676] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15929), 1, - anon_sym_esac, - [310245] = 2, + ACTIONS(14672), 1, + anon_sym_RBRACE2, + [294683] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15931), 1, + ACTIONS(14674), 1, anon_sym_BQUOTE, - [310252] = 2, + [294690] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15919), 1, + ACTIONS(14670), 1, anon_sym_BQUOTE, - [310259] = 2, + [294697] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15933), 1, + ACTIONS(14676), 1, anon_sym_RPAREN, - [310266] = 2, + [294704] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15881), 1, - anon_sym_BQUOTE, - [310273] = 2, + ACTIONS(13885), 1, + anon_sym_RBRACE3, + [294711] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15935), 1, + ACTIONS(14678), 1, aux_sym_brace_expression_token1, - [310280] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15909), 1, - anon_sym_BQUOTE, - [310287] = 2, + [294718] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15937), 1, - anon_sym_RBRACE2, - [310294] = 2, + ACTIONS(14680), 1, + anon_sym_RPAREN, + [294725] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15939), 1, + ACTIONS(14682), 1, aux_sym_heredoc_redirect_token1, - [310301] = 2, + [294732] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15941), 1, - anon_sym_RPAREN, - [310308] = 2, + ACTIONS(14684), 1, + anon_sym_RBRACE2, + [294739] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15943), 1, + ACTIONS(14686), 1, anon_sym_RPAREN, - [310315] = 2, + [294746] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15945), 1, - sym_heredoc_end, - [310322] = 2, + ACTIONS(13885), 1, + anon_sym_RBRACE3, + [294753] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15947), 1, - aux_sym_brace_expression_token1, - [310329] = 2, + ACTIONS(13885), 1, + anon_sym_RBRACE3, + [294760] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15903), 1, - anon_sym_BQUOTE, - [310336] = 2, + ACTIONS(14688), 1, + aux_sym_brace_expression_token1, + [294767] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15949), 1, + ACTIONS(14690), 1, anon_sym_RBRACE2, - [310343] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15951), 1, - aux_sym_heredoc_redirect_token1, - [310350] = 2, + [294774] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15953), 1, + ACTIONS(14692), 1, anon_sym_RPAREN, - [310357] = 2, + [294781] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15955), 1, + ACTIONS(13885), 1, anon_sym_RBRACE3, - [310364] = 2, + [294788] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15076), 1, - anon_sym_RBRACE3, - [310371] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15957), 1, - aux_sym_brace_expression_token1, - [310378] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15959), 1, + ACTIONS(14694), 1, anon_sym_RPAREN, - [310385] = 2, + [294795] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15961), 1, + ACTIONS(14696), 1, anon_sym_RBRACE3, - [310392] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15963), 1, - anon_sym_RPAREN, - [310399] = 2, + [294802] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15965), 1, + ACTIONS(14698), 1, anon_sym_RPAREN, - [310406] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15967), 1, - anon_sym_BQUOTE, - [310413] = 2, + [294809] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15963), 1, - anon_sym_BQUOTE, - [310420] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15969), 1, + ACTIONS(14700), 1, aux_sym_brace_expression_token1, - [310427] = 2, + [294816] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15971), 1, - anon_sym_RPAREN, - [310434] = 2, + ACTIONS(14702), 1, + anon_sym_RBRACE3, + [294823] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15973), 1, - anon_sym_RBRACE2, - [310441] = 2, + ACTIONS(14704), 1, + anon_sym_RPAREN, + [294830] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15975), 1, - anon_sym_RBRACE2, - [310448] = 2, + ACTIONS(14706), 1, + anon_sym_RBRACK_RBRACK, + [294837] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15977), 1, - anon_sym_BQUOTE, - [310455] = 2, + ACTIONS(8665), 1, + anon_sym_RBRACK, + [294844] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15979), 1, - anon_sym_RBRACE2, - [310462] = 2, + ACTIONS(13885), 1, + anon_sym_RBRACE3, + [294851] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15981), 1, - anon_sym_RBRACE2, - [310469] = 2, + ACTIONS(14708), 1, + anon_sym_RBRACE3, + [294858] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15983), 1, + ACTIONS(14710), 1, aux_sym_brace_expression_token1, - [310476] = 2, + [294865] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15985), 1, + ACTIONS(14712), 1, anon_sym_BQUOTE, - [310483] = 2, + [294872] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15987), 1, - anon_sym_RBRACE3, - [310490] = 2, + ACTIONS(14704), 1, + anon_sym_BQUOTE, + [294879] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15989), 1, + ACTIONS(14714), 1, anon_sym_RPAREN, - [310497] = 2, + [294886] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15991), 1, + ACTIONS(13649), 1, anon_sym_RBRACE3, - [310504] = 2, + [294893] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15993), 1, - anon_sym_RPAREN, - [310511] = 2, + ACTIONS(14716), 1, + anon_sym_RBRACE2, + [294900] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15995), 1, - anon_sym_RBRACK_RBRACK, - [310518] = 2, + ACTIONS(14718), 1, + anon_sym_RBRACE3, + [294907] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15997), 1, + ACTIONS(14720), 1, aux_sym_brace_expression_token1, - [310525] = 2, - ACTIONS(3), 1, + [294914] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(15999), 1, - aux_sym_heredoc_redirect_token1, - [310532] = 2, + ACTIONS(14722), 1, + anon_sym_RBRACE3, + [294921] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16001), 1, + ACTIONS(14724), 1, anon_sym_RPAREN, - [310539] = 2, + [294928] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16003), 1, - anon_sym_BQUOTE, - [310546] = 2, + ACTIONS(14726), 1, + anon_sym_RBRACE2, + [294935] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16005), 1, - anon_sym_RBRACE3, - [310553] = 2, - ACTIONS(3), 1, + ACTIONS(14728), 1, + anon_sym_BQUOTE, + [294942] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(16007), 1, - aux_sym_heredoc_redirect_token1, - [310560] = 2, + ACTIONS(14724), 1, + anon_sym_BQUOTE, + [294949] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16009), 1, + ACTIONS(14730), 1, anon_sym_RPAREN, - [310567] = 2, + [294956] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16011), 1, + ACTIONS(14732), 1, aux_sym_brace_expression_token1, - [310574] = 2, + [294963] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16013), 1, - sym_heredoc_start, - [310581] = 2, + ACTIONS(14734), 1, + anon_sym_RPAREN, + [294970] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16015), 1, + ACTIONS(14736), 1, anon_sym_BQUOTE, - [310588] = 2, + [294977] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16009), 1, + ACTIONS(14738), 1, anon_sym_BQUOTE, - [310595] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16017), 1, - anon_sym_RPAREN, - [310602] = 2, + [294984] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16019), 1, - sym_heredoc_end, - [310609] = 2, + ACTIONS(14740), 1, + anon_sym_esac, + [294991] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15993), 1, + ACTIONS(14734), 1, anon_sym_BQUOTE, - [310616] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16021), 1, - aux_sym_brace_expression_token1, - [310623] = 2, + [294998] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16023), 1, - anon_sym_RBRACE2, - [310630] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16025), 1, + ACTIONS(14742), 1, anon_sym_RPAREN, - [310637] = 2, + [295005] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16027), 1, - anon_sym_RBRACK_RBRACK, - [310644] = 2, + ACTIONS(14744), 1, + aux_sym_brace_expression_token1, + [295012] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16029), 1, + ACTIONS(14746), 1, anon_sym_RBRACE3, - [310651] = 2, + [295019] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16031), 1, + ACTIONS(14748), 1, anon_sym_RBRACE3, - [310658] = 2, + [295026] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16033), 1, - anon_sym_BQUOTE, - [310665] = 2, + ACTIONS(14750), 1, + anon_sym_RPAREN, + [295033] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16035), 1, - aux_sym_brace_expression_token1, - [310672] = 2, + ACTIONS(14752), 1, + anon_sym_LT_LT_LT, + [295040] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16037), 1, - anon_sym_RBRACE2, - [310679] = 2, + ACTIONS(14754), 1, + anon_sym_RBRACE3, + [295047] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16039), 1, + ACTIONS(14756), 1, anon_sym_RPAREN, - [310686] = 2, + [295054] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16041), 1, - anon_sym_RBRACE3, - [310693] = 2, + ACTIONS(14758), 1, + aux_sym_brace_expression_token1, + [295061] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16043), 1, - anon_sym_RPAREN, - [310700] = 2, + ACTIONS(14760), 1, + anon_sym_esac, + [295068] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16045), 1, - anon_sym_RBRACE3, - [310707] = 2, + ACTIONS(14762), 1, + aux_sym_brace_expression_token1, + [295075] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16047), 1, + ACTIONS(14764), 1, anon_sym_BQUOTE, - [310714] = 2, + [295082] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16049), 1, - aux_sym_brace_expression_token1, - [310721] = 2, + ACTIONS(14766), 1, + anon_sym_esac, + [295089] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16043), 1, + ACTIONS(14756), 1, anon_sym_BQUOTE, - [310728] = 2, + [295096] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16051), 1, - anon_sym_RPAREN, - [310735] = 2, + ACTIONS(14768), 1, + anon_sym_esac, + [295103] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16053), 1, - anon_sym_LBRACK, - [310742] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16055), 1, - aux_sym_heredoc_redirect_token1, - [310749] = 2, + ACTIONS(14770), 1, + aux_sym_brace_expression_token1, + [295110] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16057), 1, + ACTIONS(14772), 1, aux_sym_heredoc_redirect_token1, - [310756] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16059), 1, - anon_sym_RBRACE3, - [310763] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16061), 1, - aux_sym_brace_expression_token1, - [310770] = 2, + [295117] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15989), 1, + ACTIONS(14698), 1, anon_sym_BQUOTE, - [310777] = 2, + [295124] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16063), 1, - anon_sym_RBRACE3, - [310784] = 2, + ACTIONS(14774), 1, + anon_sym_RBRACE2, + [295131] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16065), 1, - anon_sym_BQUOTE, - [310791] = 2, + ACTIONS(14776), 1, + anon_sym_RPAREN, + [295138] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16039), 1, - anon_sym_BQUOTE, - [310798] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16067), 1, - aux_sym_heredoc_redirect_token1, - [310805] = 2, + ACTIONS(8757), 1, + anon_sym_RBRACK, + [295145] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16069), 1, - anon_sym_RPAREN, - [310812] = 2, + ACTIONS(8755), 1, + anon_sym_RBRACK, + [295152] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16071), 1, + ACTIONS(14778), 1, aux_sym_brace_expression_token1, - [310819] = 2, + [295159] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16073), 1, - anon_sym_RPAREN, - [310826] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15863), 1, - anon_sym_BQUOTE, - [310833] = 2, + ACTIONS(14780), 1, + anon_sym_RBRACE2, + [295166] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16075), 1, + ACTIONS(14782), 1, aux_sym_heredoc_redirect_token1, - [310840] = 2, + [295173] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16077), 1, - anon_sym_BQUOTE, - [310847] = 2, + ACTIONS(14784), 1, + anon_sym_RBRACE2, + [295180] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16069), 1, - anon_sym_BQUOTE, - [310854] = 2, + ACTIONS(14786), 1, + anon_sym_esac, + [295187] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16079), 1, - anon_sym_RPAREN, - [310861] = 2, + ACTIONS(14788), 1, + anon_sym_RBRACE2, + [295194] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16081), 1, - aux_sym_brace_expression_token1, - [310868] = 2, + ACTIONS(14790), 1, + anon_sym_RBRACE3, + [295201] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16083), 1, - anon_sym_RBRACE3, - [310875] = 2, + ACTIONS(14792), 1, + aux_sym_brace_expression_token1, + [295208] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16085), 1, + ACTIONS(14794), 1, anon_sym_RPAREN, - [310882] = 2, + [295215] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16087), 1, - anon_sym_RBRACE2, - [310889] = 2, + ACTIONS(14796), 1, + sym_heredoc_end, + [295222] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16089), 1, - anon_sym_RBRACE2, - [310896] = 2, + ACTIONS(8657), 1, + anon_sym_RBRACK, + [295229] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15965), 1, - anon_sym_BQUOTE, - [310903] = 2, + ACTIONS(14798), 1, + sym_heredoc_end, + [295236] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15092), 1, + ACTIONS(14800), 1, anon_sym_RBRACE3, - [310910] = 2, + [295243] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14802), 1, + anon_sym_BQUOTE, + [295250] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16091), 1, + ACTIONS(14804), 1, aux_sym_brace_expression_token1, - [310917] = 2, + [295257] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16093), 1, - anon_sym_RBRACE3, - [310924] = 2, - ACTIONS(71), 1, + ACTIONS(14794), 1, + anon_sym_BQUOTE, + [295264] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(16095), 1, - anon_sym_RBRACE2, - [310931] = 2, + ACTIONS(14806), 1, + aux_sym_heredoc_redirect_token1, + [295271] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16097), 1, - anon_sym_RPAREN, - [310938] = 2, + ACTIONS(13909), 1, + anon_sym_RBRACE3, + [295278] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14994), 1, + ACTIONS(14808), 1, anon_sym_RBRACE3, - [310945] = 2, + [295285] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16099), 1, - anon_sym_LT_LT_LT, - [310952] = 2, + ACTIONS(13907), 1, + anon_sym_RBRACE3, + [295292] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16101), 1, + ACTIONS(14810), 1, anon_sym_RPAREN, - [310959] = 2, + [295299] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16103), 1, + ACTIONS(14812), 1, aux_sym_brace_expression_token1, - [310966] = 2, + [295306] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16105), 1, + ACTIONS(14814), 1, anon_sym_RBRACE3, - [310973] = 2, + [295313] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16107), 1, - anon_sym_RPAREN, - [310980] = 2, + ACTIONS(14816), 1, + anon_sym_RBRACE3, + [295320] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16109), 1, - anon_sym_BQUOTE, - [310987] = 2, + ACTIONS(14818), 1, + anon_sym_RPAREN, + [295327] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(9954), 1, - anon_sym_RBRACK, - [310994] = 2, + ACTIONS(14820), 1, + anon_sym_RPAREN, + [295334] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(9892), 1, - anon_sym_RBRACK, - [311001] = 2, + ACTIONS(14822), 1, + anon_sym_BQUOTE, + [295341] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16111), 1, - anon_sym_RBRACE2, - [311008] = 2, + ACTIONS(14818), 1, + anon_sym_BQUOTE, + [295348] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16113), 1, + ACTIONS(14824), 1, aux_sym_brace_expression_token1, - [311015] = 2, + [295355] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16115), 1, + ACTIONS(14826), 1, aux_sym_heredoc_redirect_token1, - [311022] = 2, + [295362] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16117), 1, + ACTIONS(13907), 1, anon_sym_RBRACE3, - [311029] = 2, + [295369] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16119), 1, - anon_sym_RPAREN, - [311036] = 2, + ACTIONS(14828), 1, + anon_sym_BQUOTE, + [295376] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16121), 1, + ACTIONS(14820), 1, anon_sym_BQUOTE, - [311043] = 2, + [295383] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16123), 1, - anon_sym_BQUOTE, - [311050] = 2, + ACTIONS(14830), 1, + anon_sym_RPAREN, + [295390] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14958), 1, - anon_sym_fi, - [311057] = 2, + ACTIONS(13885), 1, + anon_sym_RBRACE3, + [295397] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16125), 1, + ACTIONS(14832), 1, aux_sym_brace_expression_token1, - [311064] = 2, + [295404] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16119), 1, + ACTIONS(14834), 1, anon_sym_BQUOTE, - [311071] = 2, + [295411] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16127), 1, - anon_sym_RPAREN, - [311078] = 2, + ACTIONS(13907), 1, + anon_sym_RBRACE3, + [295418] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16129), 1, - anon_sym_esac, - [311085] = 2, + ACTIONS(14836), 1, + anon_sym_RBRACE3, + [295425] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15092), 1, - anon_sym_RBRACE3, - [311092] = 2, + ACTIONS(14838), 1, + anon_sym_RPAREN, + [295432] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16131), 1, - aux_sym_brace_expression_token1, - [311099] = 2, + ACTIONS(14840), 1, + anon_sym_RBRACE3, + [295439] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16133), 1, - anon_sym_esac, - [311106] = 2, + ACTIONS(14842), 1, + anon_sym_BQUOTE, + [295446] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16135), 1, + ACTIONS(14844), 1, aux_sym_brace_expression_token1, - [311113] = 2, + [295453] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16107), 1, + ACTIONS(14838), 1, anon_sym_BQUOTE, - [311120] = 2, + [295460] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16137), 1, + ACTIONS(14846), 1, anon_sym_RBRACE2, - [311127] = 2, + [295467] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16139), 1, - anon_sym_RPAREN, - [311134] = 2, - ACTIONS(71), 1, + ACTIONS(14848), 1, + anon_sym_BQUOTE, + [295474] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(16141), 1, - anon_sym_RPAREN, - [311141] = 2, + ACTIONS(14850), 1, + aux_sym_heredoc_redirect_token1, + [295481] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16143), 1, - anon_sym_RPAREN_RPAREN, - [311148] = 2, + ACTIONS(14810), 1, + anon_sym_BQUOTE, + [295488] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15092), 1, - anon_sym_RBRACE3, - [311155] = 2, + ACTIONS(14852), 1, + anon_sym_RPAREN, + [295495] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16145), 1, + ACTIONS(14854), 1, aux_sym_brace_expression_token1, - [311162] = 2, - ACTIONS(71), 1, + [295502] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(16147), 1, - anon_sym_RBRACE2, - [311169] = 2, + ACTIONS(14856), 1, + aux_sym_heredoc_redirect_token1, + [295509] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16149), 1, + ACTIONS(14858), 1, anon_sym_RBRACE3, - [311176] = 2, + [295516] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15012), 1, - anon_sym_fi, - [311183] = 2, + ACTIONS(14860), 1, + anon_sym_RBRACE2, + [295523] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16151), 1, - anon_sym_RBRACE2, - [311190] = 2, + ACTIONS(14862), 1, + anon_sym_RPAREN, + [295530] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16153), 1, - anon_sym_esac, - [311197] = 2, + ACTIONS(14750), 1, + anon_sym_BQUOTE, + [295537] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15905), 1, + ACTIONS(14864), 1, anon_sym_BQUOTE, - [311204] = 2, + [295544] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16155), 1, + ACTIONS(14866), 1, aux_sym_brace_expression_token1, - [311211] = 2, + [295551] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16157), 1, - anon_sym_esac, - [311218] = 2, + ACTIONS(14862), 1, + anon_sym_BQUOTE, + [295558] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16159), 1, - anon_sym_RPAREN, - [311225] = 2, + ACTIONS(14868), 1, + anon_sym_RBRACE3, + [295565] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16161), 1, - anon_sym_RBRACE2, - [311232] = 2, + ACTIONS(14870), 1, + anon_sym_RPAREN, + [295572] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16163), 1, + ACTIONS(14872), 1, anon_sym_RPAREN, - [311239] = 2, + [295579] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16165), 1, - sym_heredoc_end, - [311246] = 2, + ACTIONS(14874), 1, + sym_heredoc_start, + [295586] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16167), 1, - sym_heredoc_end, - [311253] = 2, + ACTIONS(14876), 1, + anon_sym_RBRACE3, + [295593] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16169), 1, + ACTIONS(14878), 1, aux_sym_brace_expression_token1, - [311260] = 2, + [295600] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16171), 1, + ACTIONS(14880), 1, anon_sym_RBRACE3, - [311267] = 2, + [295607] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16173), 1, - anon_sym_RPAREN, - [311274] = 2, + ACTIONS(14882), 1, + aux_sym_brace_expression_token1, + [295614] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14892), 1, - anon_sym_RBRACE3, - [311281] = 2, + ACTIONS(14884), 1, + anon_sym_RPAREN, + [295621] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16175), 1, - anon_sym_BQUOTE, - [311288] = 2, + ACTIONS(14886), 1, + anon_sym_RBRACE3, + [295628] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16177), 1, - anon_sym_fi, - [311295] = 2, + ACTIONS(14888), 1, + anon_sym_RBRACK_RBRACK, + [295635] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16179), 1, - anon_sym_esac, - [311302] = 2, + ACTIONS(14890), 1, + anon_sym_RBRACE3, + [295642] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16181), 1, + ACTIONS(14892), 1, aux_sym_brace_expression_token1, - [311309] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16183), 1, - anon_sym_esac, - [311316] = 2, + [295649] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16173), 1, - anon_sym_BQUOTE, - [311323] = 2, + ACTIONS(14894), 1, + anon_sym_RPAREN, + [295656] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16185), 1, - anon_sym_RPAREN, - [311330] = 2, + ACTIONS(14896), 1, + anon_sym_esac, + [295663] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16187), 1, + ACTIONS(14898), 1, anon_sym_RBRACE3, - [311337] = 2, + [295670] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15113), 1, - anon_sym_RBRACE3, - [311344] = 2, + ACTIONS(14900), 1, + anon_sym_BQUOTE, + [295677] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16189), 1, - anon_sym_RBRACE2, - [311351] = 2, + ACTIONS(14894), 1, + anon_sym_BQUOTE, + [295684] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16191), 1, - aux_sym_brace_expression_token1, - [311358] = 2, + ACTIONS(14902), 1, + anon_sym_RPAREN, + [295691] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16193), 1, - anon_sym_esac, - [311365] = 2, + ACTIONS(14904), 1, + aux_sym_brace_expression_token1, + [295698] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16195), 1, - anon_sym_esac, - [311372] = 2, + ACTIONS(14906), 1, + anon_sym_RBRACE3, + [295705] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16197), 1, + ACTIONS(14908), 1, anon_sym_RPAREN, - [311379] = 2, + [295712] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16199), 1, + ACTIONS(14910), 1, anon_sym_RBRACE3, - [311386] = 2, + [295719] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16201), 1, + ACTIONS(14912), 1, anon_sym_BQUOTE, - [311393] = 2, + [295726] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16203), 1, - anon_sym_RBRACE3, - [311400] = 2, + ACTIONS(14908), 1, + anon_sym_BQUOTE, + [295733] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16205), 1, - aux_sym_brace_expression_token1, - [311407] = 2, + ACTIONS(14914), 1, + anon_sym_RPAREN, + [295740] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16207), 1, - anon_sym_RBRACE3, - [311414] = 2, + ACTIONS(14916), 1, + aux_sym_brace_expression_token1, + [295747] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14918), 1, + aux_sym_heredoc_redirect_token1, + [295754] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16197), 1, + ACTIONS(14920), 1, anon_sym_BQUOTE, - [311421] = 2, + [295761] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16209), 1, - anon_sym_RPAREN, - [311428] = 2, + ACTIONS(13909), 1, + anon_sym_RBRACE3, + [295768] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16211), 1, - anon_sym_in, - [311435] = 2, + ACTIONS(14902), 1, + anon_sym_BQUOTE, + [295775] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16213), 1, - anon_sym_BQUOTE, - [311442] = 2, + ACTIONS(14922), 1, + anon_sym_RBRACE3, + [295782] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16209), 1, - anon_sym_BQUOTE, - [311449] = 2, + ACTIONS(14924), 1, + anon_sym_RPAREN, + [295789] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16215), 1, + ACTIONS(14926), 1, aux_sym_brace_expression_token1, - [311456] = 2, + [295796] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16217), 1, - anon_sym_RBRACE3, - [311463] = 2, + ACTIONS(14928), 1, + anon_sym_BQUOTE, + [295803] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16219), 1, - anon_sym_RPAREN, - [311470] = 2, + ACTIONS(14870), 1, + anon_sym_BQUOTE, + [295810] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16221), 1, + ACTIONS(14930), 1, anon_sym_RPAREN, - [311477] = 2, + [295817] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16223), 1, - anon_sym_RPAREN, - [311484] = 2, + ACTIONS(14932), 1, + anon_sym_BQUOTE, + [295824] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16225), 1, + ACTIONS(14934), 1, anon_sym_BQUOTE, - [311491] = 2, + [295831] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16227), 1, - anon_sym_in, - [311498] = 2, + ACTIONS(14924), 1, + anon_sym_BQUOTE, + [295838] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16229), 1, + ACTIONS(14936), 1, aux_sym_brace_expression_token1, - [311505] = 2, + [295845] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16219), 1, - anon_sym_BQUOTE, - [311512] = 2, + ACTIONS(14938), 1, + anon_sym_RBRACE3, + [295852] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16231), 1, + ACTIONS(14940), 1, anon_sym_RPAREN, - [311519] = 2, + [295859] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16233), 1, + ACTIONS(14942), 1, + anon_sym_RBRACE2, + [295866] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14944), 1, anon_sym_RPAREN, - [311526] = 2, + [295873] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16235), 1, + ACTIONS(14946), 1, anon_sym_BQUOTE, - [311533] = 2, + [295880] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16237), 1, + ACTIONS(14948), 1, anon_sym_RBRACE2, - [311540] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16239), 1, - anon_sym_esac, - [311547] = 2, + [295887] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16241), 1, + ACTIONS(14950), 1, aux_sym_brace_expression_token1, - [311554] = 2, + [295894] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16243), 1, - anon_sym_RBRACE2, - [311561] = 2, + ACTIONS(8787), 1, + anon_sym_RBRACK, + [295901] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16245), 1, - anon_sym_RBRACE2, - [311568] = 2, + ACTIONS(8777), 1, + anon_sym_RBRACK, + [295908] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16247), 1, + ACTIONS(14952), 1, anon_sym_RBRACE2, - [311575] = 2, + [295915] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16249), 1, + ACTIONS(14954), 1, anon_sym_RBRACE3, - [311582] = 2, + [295922] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16251), 1, + ACTIONS(14956), 1, anon_sym_RPAREN, - [311589] = 2, + [295929] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16253), 1, - anon_sym_RBRACE3, - [311596] = 2, + ACTIONS(14884), 1, + anon_sym_BQUOTE, + [295936] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16255), 1, + ACTIONS(14958), 1, aux_sym_brace_expression_token1, - [311603] = 2, + [295943] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16257), 1, + ACTIONS(14960), 1, anon_sym_BQUOTE, - [311610] = 2, + [295950] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16259), 1, - anon_sym_RBRACE3, - [311617] = 2, + ACTIONS(14962), 1, + sym_heredoc_end, + [295957] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16261), 1, - anon_sym_RPAREN, - [311624] = 2, + ACTIONS(14964), 1, + sym_heredoc_end, + [295964] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16251), 1, + ACTIONS(14956), 1, anon_sym_BQUOTE, - [311631] = 2, + [295971] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16263), 1, - anon_sym_BQUOTE, - [311638] = 2, + ACTIONS(14966), 1, + anon_sym_RPAREN, + [295978] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16261), 1, - anon_sym_BQUOTE, - [311645] = 2, + ACTIONS(14968), 1, + anon_sym_RPAREN, + [295985] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16265), 1, + ACTIONS(14970), 1, aux_sym_brace_expression_token1, - [311652] = 2, + [295992] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14972), 1, + aux_sym_heredoc_redirect_token1, + [295999] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16267), 1, + ACTIONS(14974), 1, anon_sym_RPAREN, - [311659] = 2, + [296006] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16269), 1, - anon_sym_RPAREN, - [311666] = 2, + ACTIONS(14976), 1, + anon_sym_RBRACE2, + [296013] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16271), 1, - anon_sym_BQUOTE, - [311673] = 2, + ACTIONS(14978), 1, + anon_sym_RBRACE3, + [296020] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16273), 1, + ACTIONS(14980), 1, anon_sym_RPAREN, - [311680] = 2, + [296027] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16275), 1, + ACTIONS(13967), 1, anon_sym_RBRACE3, - [311687] = 2, + [296034] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16277), 1, - anon_sym_RPAREN, - [311694] = 2, + ACTIONS(14982), 1, + anon_sym_BQUOTE, + [296041] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16279), 1, - aux_sym_brace_expression_token1, - [311701] = 2, + ACTIONS(14980), 1, + anon_sym_BQUOTE, + [296048] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16281), 1, - anon_sym_RBRACE2, - [311708] = 2, + ACTIONS(14984), 1, + anon_sym_BQUOTE, + [296055] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16283), 1, - anon_sym_RBRACE3, - [311715] = 2, + ACTIONS(14974), 1, + anon_sym_BQUOTE, + [296062] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16285), 1, + ACTIONS(14986), 1, anon_sym_RPAREN, - [311722] = 2, + [296069] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14820), 1, + ACTIONS(14988), 1, anon_sym_RBRACE3, - [311729] = 2, + [296076] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16287), 1, - anon_sym_LT_LT_LT, - [311736] = 2, + ACTIONS(14990), 1, + anon_sym_RPAREN, + [296083] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16289), 1, - anon_sym_BQUOTE, - [311743] = 2, + ACTIONS(14992), 1, + anon_sym_RBRACE3, + [296090] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16285), 1, - anon_sym_BQUOTE, - [311750] = 2, + ACTIONS(14994), 1, + anon_sym_RPAREN, + [296097] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16291), 1, + ACTIONS(14996), 1, anon_sym_BQUOTE, - [311757] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16293), 1, - aux_sym_brace_expression_token1, - [311764] = 2, + [296104] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16277), 1, + ACTIONS(14998), 1, anon_sym_BQUOTE, - [311771] = 2, + [296111] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16233), 1, + ACTIONS(14994), 1, anon_sym_BQUOTE, - [311778] = 2, + [296118] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16295), 1, - anon_sym_RPAREN, - [311785] = 2, + ACTIONS(13907), 1, + anon_sym_RBRACE3, + [296125] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16297), 1, - anon_sym_RPAREN, - [311792] = 2, + ACTIONS(15000), 1, + anon_sym_BQUOTE, + [296132] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15076), 1, - anon_sym_RBRACE3, - [311799] = 2, + ACTIONS(14990), 1, + anon_sym_BQUOTE, + [296139] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16299), 1, + ACTIONS(15002), 1, anon_sym_RPAREN, - [311806] = 2, + [296146] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15076), 1, - anon_sym_RBRACE3, - [311813] = 2, + ACTIONS(14944), 1, + anon_sym_BQUOTE, + [296153] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15113), 1, + ACTIONS(15004), 1, anon_sym_RBRACE3, - [311820] = 2, + [296160] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16301), 1, - anon_sym_RBRACE2, - [311827] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16303), 1, - anon_sym_RBRACE3, - [311834] = 2, + ACTIONS(14442), 1, + anon_sym_RPAREN, + [296167] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16305), 1, + ACTIONS(15006), 1, anon_sym_RPAREN, - [311841] = 2, + [296174] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16307), 1, + ACTIONS(15008), 1, anon_sym_BQUOTE, - [311848] = 2, + [296181] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16309), 1, - anon_sym_BQUOTE, - [311855] = 2, + ACTIONS(15010), 1, + anon_sym_esac, + [296188] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16305), 1, - anon_sym_BQUOTE, - [311862] = 2, + ACTIONS(15012), 1, + anon_sym_RPAREN, + [296195] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16311), 1, - anon_sym_RBRACK_RBRACK, - [311869] = 2, + ACTIONS(15014), 1, + anon_sym_RBRACE3, + [296202] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16273), 1, - anon_sym_BQUOTE, - [311876] = 2, + ACTIONS(15016), 1, + anon_sym_RBRACE2, + [296209] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16313), 1, + ACTIONS(15018), 1, anon_sym_RPAREN, - [311883] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16315), 1, - aux_sym_heredoc_redirect_token1, - [311890] = 2, - ACTIONS(3), 1, + [296216] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(16317), 1, - aux_sym_heredoc_redirect_token1, - [311897] = 2, + ACTIONS(15020), 1, + anon_sym_RPAREN, + [296223] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15115), 1, + ACTIONS(15022), 1, anon_sym_RBRACE3, - [311904] = 2, + [296230] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16319), 1, - anon_sym_RBRACE3, - [311911] = 2, + ACTIONS(15024), 1, + anon_sym_DOT_DOT, + [296237] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16321), 1, + ACTIONS(15026), 1, anon_sym_RPAREN, - [311918] = 2, + [296244] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16323), 1, + ACTIONS(13967), 1, anon_sym_RBRACE3, - [311925] = 2, + [296251] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16325), 1, - anon_sym_BQUOTE, - [311932] = 2, + ACTIONS(13649), 1, + anon_sym_RBRACE3, + [296258] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16321), 1, - anon_sym_BQUOTE, - [311939] = 2, + ACTIONS(15028), 1, + anon_sym_RBRACE3, + [296265] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16327), 1, + ACTIONS(15030), 1, anon_sym_RPAREN, - [311946] = 2, + [296272] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16329), 1, - anon_sym_RBRACE3, - [311953] = 2, + ACTIONS(15032), 1, + anon_sym_RBRACK_RBRACK, + [296279] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16331), 1, - anon_sym_RPAREN, - [311960] = 2, + ACTIONS(15034), 1, + anon_sym_BQUOTE, + [296286] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16333), 1, + ACTIONS(15036), 1, anon_sym_RBRACE2, - [311967] = 2, + [296293] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16335), 1, + ACTIONS(15038), 1, anon_sym_BQUOTE, - [311974] = 2, + [296300] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16331), 1, + ACTIONS(15030), 1, anon_sym_BQUOTE, - [311981] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14852), 1, - anon_sym_RBRACE3, - [311988] = 2, + [296307] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15076), 1, - anon_sym_RBRACE3, - [311995] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16337), 1, - anon_sym_RBRACE2, - [312002] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14852), 1, + ACTIONS(13907), 1, anon_sym_RBRACE3, - [312009] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16339), 1, - aux_sym_heredoc_redirect_token1, - [312016] = 2, + [296314] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14852), 1, + ACTIONS(15040), 1, anon_sym_RBRACE3, - [312023] = 2, + [296321] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16341), 1, - anon_sym_RBRACE3, - [312030] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16343), 1, - aux_sym_heredoc_redirect_token1, - [312037] = 2, + ACTIONS(15042), 1, + anon_sym_RPAREN, + [296328] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15629), 1, + ACTIONS(14424), 1, aux_sym__simple_variable_name_token1, - [312044] = 2, + [296335] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16345), 1, + ACTIONS(15044), 1, anon_sym_RPAREN, - [312051] = 2, + [296342] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16347), 1, - anon_sym_RBRACE2, - [312058] = 2, + ACTIONS(15046), 1, + anon_sym_RBRACE3, + [296349] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16349), 1, + ACTIONS(15048), 1, sym_word, - [312065] = 2, + [296356] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16351), 1, + ACTIONS(15050), 1, anon_sym_DOT_DOT, - [312072] = 2, + [296363] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16353), 1, + ACTIONS(15052), 1, anon_sym_BQUOTE, - [312079] = 2, + [296370] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16355), 1, + ACTIONS(13907), 1, anon_sym_RBRACE3, - [312086] = 2, + [296377] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16357), 1, + ACTIONS(15054), 1, anon_sym_RPAREN, - [312093] = 2, + [296384] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16359), 1, + ACTIONS(15056), 1, sym_heredoc_start, - [312100] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16361), 1, - aux_sym_heredoc_redirect_token1, - [312107] = 2, + [296391] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16345), 1, + ACTIONS(15044), 1, anon_sym_BQUOTE, - [312114] = 2, + [296398] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16363), 1, - anon_sym_RBRACE3, - [312121] = 2, + ACTIONS(15058), 1, + anon_sym_RPAREN, + [296405] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16365), 1, + ACTIONS(15060), 1, anon_sym_RPAREN, - [312128] = 2, + [296412] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13649), 1, + anon_sym_RBRACE3, + [296419] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16367), 1, + ACTIONS(15062), 1, sym_heredoc_start, - [312135] = 2, + [296426] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16369), 1, + ACTIONS(15064), 1, anon_sym_RBRACE3, - [312142] = 2, + [296433] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16371), 1, - anon_sym_BQUOTE, - [312149] = 2, + ACTIONS(13967), 1, + anon_sym_RBRACE3, + [296440] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(9704), 1, - anon_sym_RBRACK, - [312156] = 2, + ACTIONS(15066), 1, + anon_sym_RPAREN, + [296447] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(9678), 1, - anon_sym_RBRACK, - [312163] = 2, + ACTIONS(15068), 1, + anon_sym_RBRACE3, + [296454] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15070), 1, + anon_sym_BQUOTE, + [296461] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16373), 1, + ACTIONS(15072), 1, anon_sym_RBRACE2, - [312170] = 2, + [296468] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16365), 1, + ACTIONS(15066), 1, anon_sym_BQUOTE, - [312177] = 2, + [296475] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16375), 1, + ACTIONS(15074), 1, anon_sym_RPAREN, - [312184] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14852), 1, - anon_sym_RBRACE3, - [312191] = 2, + [296482] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14862), 1, - anon_sym_fi, - [312198] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16377), 1, - aux_sym_heredoc_redirect_token1, - [312205] = 2, + ACTIONS(15076), 1, + anon_sym_RPAREN, + [296489] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16379), 1, + ACTIONS(13779), 1, anon_sym_RBRACE3, - [312212] = 2, + [296496] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16381), 1, - anon_sym_esac, - [312219] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14824), 1, - anon_sym_RBRACE3, - [312226] = 2, + ACTIONS(15078), 1, + anon_sym_BQUOTE, + [296503] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16383), 1, + ACTIONS(15080), 1, anon_sym_RBRACE2, - [312233] = 2, + [296510] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16385), 1, - anon_sym_esac, - [312240] = 2, + ACTIONS(13699), 1, + anon_sym_fi, + [296517] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15115), 1, - anon_sym_RBRACE3, - [312247] = 2, + ACTIONS(15076), 1, + anon_sym_BQUOTE, + [296524] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16387), 1, + ACTIONS(15082), 1, anon_sym_RPAREN, - [312254] = 2, + [296531] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16389), 1, + ACTIONS(15084), 1, anon_sym_RBRACE3, - [312261] = 2, + [296538] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16391), 1, - anon_sym_RPAREN, - [312268] = 2, + ACTIONS(13711), 1, + anon_sym_fi, + [296545] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16393), 1, + ACTIONS(15086), 1, anon_sym_RPAREN, - [312275] = 2, + [296552] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16395), 1, - anon_sym_BQUOTE, - [312282] = 2, + ACTIONS(13885), 1, + anon_sym_RBRACE3, + [296559] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15076), 1, - anon_sym_RBRACE3, - [312289] = 2, + ACTIONS(15088), 1, + anon_sym_BQUOTE, + [296566] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14874), 1, - anon_sym_fi, - [312296] = 2, + ACTIONS(15090), 1, + aux_sym_brace_expression_token1, + [296573] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16391), 1, + ACTIONS(15082), 1, anon_sym_BQUOTE, - [312303] = 2, + [296580] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16397), 1, - anon_sym_esac, - [312310] = 2, + ACTIONS(15092), 1, + anon_sym_RBRACE3, + [296587] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16399), 1, - anon_sym_RBRACE3, - [312317] = 2, + ACTIONS(15094), 1, + anon_sym_BQUOTE, + [296594] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16401), 1, - anon_sym_esac, - [312324] = 2, + ACTIONS(15074), 1, + anon_sym_BQUOTE, + [296601] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16403), 1, - anon_sym_RPAREN, - [312331] = 2, + ACTIONS(15096), 1, + sym_heredoc_end, + [296608] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16405), 1, + ACTIONS(15098), 1, anon_sym_RBRACE3, - [312338] = 2, + [296615] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16407), 1, - sym_heredoc_end, - [312345] = 2, + ACTIONS(15100), 1, + sym_word, + [296622] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16409), 1, - sym_heredoc_end, - [312352] = 2, + ACTIONS(15102), 1, + aux_sym_brace_expression_token1, + [296629] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16411), 1, + ACTIONS(13729), 1, anon_sym_RBRACE3, - [312359] = 2, + [296636] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15104), 1, + anon_sym_RPAREN, + [296643] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16413), 1, + ACTIONS(15106), 1, anon_sym_BQUOTE, - [312366] = 2, + [296650] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16415), 1, - anon_sym_RBRACE3, - [312373] = 2, + ACTIONS(15108), 1, + anon_sym_BQUOTE, + [296657] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16417), 1, + ACTIONS(15110), 1, anon_sym_RPAREN, - [312380] = 2, + [296664] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16403), 1, - anon_sym_BQUOTE, - [312387] = 2, + ACTIONS(15112), 1, + anon_sym_RBRACE2, + [296671] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16419), 1, - anon_sym_fi, - [312394] = 2, + ACTIONS(13739), 1, + anon_sym_RBRACE3, + [296678] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16421), 1, - anon_sym_esac, - [312401] = 2, + ACTIONS(13907), 1, + anon_sym_RBRACE3, + [296685] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16423), 1, - anon_sym_esac, - [312408] = 2, + ACTIONS(15086), 1, + anon_sym_BQUOTE, + [296692] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16425), 1, - anon_sym_BQUOTE, - [312415] = 2, + ACTIONS(13739), 1, + anon_sym_RBRACE3, + [296699] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16417), 1, - anon_sym_BQUOTE, - [312422] = 2, + ACTIONS(15114), 1, + anon_sym_RBRACK_RBRACK, + [296706] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16427), 1, + ACTIONS(15060), 1, anon_sym_BQUOTE, - [312429] = 2, + [296713] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16429), 1, + ACTIONS(15116), 1, anon_sym_RPAREN, - [312436] = 2, + [296720] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16431), 1, - anon_sym_BQUOTE, - [312443] = 2, - ACTIONS(71), 1, + ACTIONS(13739), 1, + anon_sym_RBRACE3, + [296727] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(16433), 1, - anon_sym_esac, - [312450] = 2, - ACTIONS(71), 1, + ACTIONS(15118), 1, + aux_sym_heredoc_redirect_token1, + [296734] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(16435), 1, - anon_sym_esac, - [312457] = 2, + ACTIONS(15120), 1, + aux_sym_heredoc_redirect_token1, + [296741] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16437), 1, - anon_sym_BQUOTE, - [312464] = 2, + ACTIONS(13907), 1, + anon_sym_RBRACE3, + [296748] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16429), 1, - anon_sym_BQUOTE, - [312471] = 2, + ACTIONS(15122), 1, + anon_sym_RBRACE2, + [296755] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16439), 1, + ACTIONS(15124), 1, anon_sym_RBRACE3, - [312478] = 2, + [296762] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16441), 1, + ACTIONS(15126), 1, anon_sym_RPAREN, - [312485] = 2, + [296769] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16443), 1, - anon_sym_RPAREN, - [312492] = 2, + ACTIONS(13967), 1, + anon_sym_RBRACE3, + [296776] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16445), 1, + ACTIONS(15128), 1, anon_sym_BQUOTE, - [312499] = 2, + [296783] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16441), 1, + ACTIONS(15126), 1, anon_sym_BQUOTE, - [312506] = 2, + [296790] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16393), 1, - anon_sym_BQUOTE, - [312513] = 2, - ACTIONS(3), 1, + ACTIONS(15130), 1, + anon_sym_RPAREN, + [296797] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(16447), 1, - aux_sym_heredoc_redirect_token1, - [312520] = 2, + ACTIONS(15132), 1, + anon_sym_RBRACE2, + [296804] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16449), 1, + ACTIONS(15134), 1, anon_sym_RPAREN, - [312527] = 2, + [296811] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16451), 1, - anon_sym_RPAREN, - [312534] = 2, + ACTIONS(15136), 1, + anon_sym_RBRACE3, + [296818] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16453), 1, - anon_sym_RBRACE2, - [312541] = 2, + ACTIONS(15138), 1, + anon_sym_in, + [296825] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16455), 1, + ACTIONS(15140), 1, + anon_sym_BQUOTE, + [296832] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15142), 1, anon_sym_RPAREN, - [312548] = 2, + [296839] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16457), 1, - anon_sym_RBRACE2, - [312555] = 2, + ACTIONS(15144), 1, + anon_sym_LT_LT_LT, + [296846] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16459), 1, + ACTIONS(15146), 1, anon_sym_RBRACE2, - [312562] = 2, + [296853] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16461), 1, - ts_builtin_sym_end, - [312569] = 2, + ACTIONS(15148), 1, + aux_sym_brace_expression_token1, + [296860] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16463), 1, - anon_sym_RBRACE3, - [312576] = 2, + ACTIONS(15150), 1, + anon_sym_RPAREN, + [296867] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15076), 1, - anon_sym_RBRACE3, - [312583] = 2, + ACTIONS(15152), 1, + anon_sym_RPAREN_RPAREN, + [296874] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16465), 1, - anon_sym_RPAREN, - [312590] = 2, + ACTIONS(15154), 1, + anon_sym_RBRACE2, + [296881] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15115), 1, - anon_sym_RBRACE3, - [312597] = 2, + ACTIONS(15156), 1, + anon_sym_in, + [296888] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16467), 1, - anon_sym_BQUOTE, - [312604] = 2, + ACTIONS(15158), 1, + anon_sym_in, + [296895] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16465), 1, + ACTIONS(15160), 1, anon_sym_BQUOTE, - [312611] = 2, + [296902] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15076), 1, + ACTIONS(15162), 1, + anon_sym_RBRACE2, + [296909] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15164), 1, + anon_sym_RPAREN, + [296916] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15166), 1, + aux_sym_heredoc_redirect_token1, + [296923] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13967), 1, anon_sym_RBRACE3, - [312618] = 2, + [296930] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15168), 1, + aux_sym_heredoc_redirect_token1, + [296937] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16469), 1, + ACTIONS(15170), 1, anon_sym_RBRACE2, - [312625] = 2, + [296944] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15231), 1, + ACTIONS(13907), 1, anon_sym_RBRACE3, - [312632] = 2, + [296951] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15172), 1, + aux_sym_heredoc_redirect_token1, + [296958] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(9956), 1, - anon_sym_RBRACK, - [312639] = 2, + ACTIONS(13649), 1, + anon_sym_RBRACE3, + [296965] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16471), 1, - anon_sym_BQUOTE, - [312646] = 2, + ACTIONS(15174), 1, + anon_sym_RBRACE2, + [296972] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14364), 1, + ACTIONS(13907), 1, anon_sym_RBRACE3, - [312653] = 2, + [296979] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16473), 1, + ACTIONS(15176), 1, anon_sym_RPAREN, - [312660] = 2, - ACTIONS(71), 1, + [296986] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(16163), 1, - anon_sym_BQUOTE, - [312667] = 2, + ACTIONS(15178), 1, + aux_sym_heredoc_redirect_token1, + [296993] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15180), 1, + aux_sym_heredoc_redirect_token1, + [297000] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15182), 1, + aux_sym_heredoc_redirect_token1, + [297007] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16475), 1, - anon_sym_BQUOTE, - [312674] = 2, + ACTIONS(15184), 1, + anon_sym_RBRACK_RBRACK, + [297014] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15186), 1, + aux_sym_heredoc_redirect_token1, + [297021] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16477), 1, + ACTIONS(15188), 1, anon_sym_RBRACE3, - [312681] = 2, + [297028] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16479), 1, + ACTIONS(15190), 1, anon_sym_RBRACE3, - [312688] = 2, + [297035] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16481), 1, + ACTIONS(15192), 1, anon_sym_RPAREN, - [312695] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14916), 1, - anon_sym_fi, - [312702] = 2, + [297042] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16483), 1, - anon_sym_RBRACK_RBRACK, - [312709] = 2, + ACTIONS(15012), 1, + anon_sym_BQUOTE, + [297049] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16485), 1, - anon_sym_RPAREN, - [312716] = 2, + ACTIONS(15194), 1, + anon_sym_BQUOTE, + [297056] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16267), 1, + ACTIONS(15192), 1, anon_sym_BQUOTE, - [312723] = 2, + [297063] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16487), 1, - anon_sym_BQUOTE, - [312730] = 2, + ACTIONS(15196), 1, + anon_sym_RPAREN, + [297070] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16481), 1, - anon_sym_BQUOTE, - [312737] = 2, + ACTIONS(15198), 1, + anon_sym_RPAREN, + [297077] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16489), 1, + ACTIONS(13907), 1, anon_sym_RBRACE3, - [312744] = 2, + [297084] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16491), 1, + ACTIONS(13739), 1, anon_sym_RBRACE3, - [312751] = 2, + [297091] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16493), 1, - anon_sym_RPAREN, - [312758] = 2, - ACTIONS(71), 1, + ACTIONS(15200), 1, + anon_sym_esac, + [297098] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(16495), 1, - anon_sym_RPAREN, - [312765] = 2, + ACTIONS(15202), 1, + aux_sym_heredoc_redirect_token1, + [297105] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16497), 1, - anon_sym_BQUOTE, - [312772] = 2, + ACTIONS(13787), 1, + anon_sym_fi, + [297112] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16493), 1, - anon_sym_BQUOTE, - [312779] = 2, - ACTIONS(71), 1, + ACTIONS(15204), 1, + anon_sym_RBRACE2, + [297119] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(16499), 1, - anon_sym_RPAREN, - [312786] = 2, + ACTIONS(15206), 1, + aux_sym_heredoc_redirect_token1, + [297126] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16501), 1, + ACTIONS(15208), 1, anon_sym_RPAREN, - [312793] = 2, + [297133] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15076), 1, + ACTIONS(15210), 1, anon_sym_RBRACE3, - [312800] = 2, + [297140] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15212), 1, + aux_sym_heredoc_redirect_token1, + [297147] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16503), 1, + ACTIONS(15214), 1, anon_sym_RBRACE3, - [312807] = 2, + [297154] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16505), 1, - anon_sym_BQUOTE, - [312814] = 2, + ACTIONS(15216), 1, + anon_sym_RPAREN_RPAREN, + [297161] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15218), 1, + ts_builtin_sym_end, + [297168] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16507), 1, + ACTIONS(15220), 1, aux_sym_heredoc_redirect_token1, - [312821] = 2, + [297175] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15115), 1, + ACTIONS(15222), 1, anon_sym_RBRACE3, - [312828] = 2, + [297182] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16501), 1, - anon_sym_BQUOTE, - [312835] = 2, + ACTIONS(15224), 1, + anon_sym_RBRACE3, + [297189] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16509), 1, + ACTIONS(15226), 1, anon_sym_RBRACE3, - [312842] = 2, + [297196] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15228), 1, + anon_sym_RBRACE2, + [297203] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16511), 1, + ACTIONS(15230), 1, anon_sym_RPAREN, - [312849] = 2, - ACTIONS(3), 1, + [297210] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(16513), 1, - aux_sym_heredoc_redirect_token1, - [312856] = 2, + ACTIONS(13907), 1, + anon_sym_RBRACE3, + [297217] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16515), 1, + ACTIONS(15232), 1, anon_sym_RPAREN, - [312863] = 2, + [297224] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15092), 1, + ACTIONS(13909), 1, anon_sym_RBRACE3, - [312870] = 2, + [297231] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16517), 1, + ACTIONS(15234), 1, anon_sym_BQUOTE, - [312877] = 2, + [297238] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16519), 1, - anon_sym_RBRACE2, - [312884] = 2, + ACTIONS(15236), 1, + anon_sym_RBRACE3, + [297245] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16521), 1, - anon_sym_RBRACE2, - [312891] = 2, + ACTIONS(15238), 1, + anon_sym_RPAREN, + [297252] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16523), 1, - aux_sym_brace_expression_token1, - [312898] = 2, + ACTIONS(15232), 1, + anon_sym_BQUOTE, + [297259] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(9832), 1, - anon_sym_RBRACK, - [312905] = 2, + ACTIONS(15240), 1, + anon_sym_LBRACK, + [297266] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(9830), 1, - anon_sym_RBRACK, - [312912] = 2, + ACTIONS(15242), 1, + anon_sym_RPAREN, + [297273] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16525), 1, - anon_sym_RBRACE2, - [312919] = 2, + ACTIONS(15244), 1, + anon_sym_BQUOTE, + [297280] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16511), 1, + ACTIONS(15238), 1, anon_sym_BQUOTE, - [312926] = 2, + [297287] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16527), 1, - anon_sym_RPAREN, - [312933] = 2, + ACTIONS(15246), 1, + sym_word, + [297294] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16529), 1, - anon_sym_RBRACE2, - [312940] = 2, + ACTIONS(15248), 1, + anon_sym_BQUOTE, + [297301] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16531), 1, - sym_heredoc_end, - [312947] = 2, + ACTIONS(13907), 1, + anon_sym_RBRACE3, + [297308] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16533), 1, - sym_heredoc_end, - [312954] = 2, + ACTIONS(15250), 1, + anon_sym_RPAREN, + [297315] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16535), 1, - anon_sym_RBRACE3, - [312961] = 2, + ACTIONS(15252), 1, + anon_sym_LT_LT_LT, + [297322] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16537), 1, + ACTIONS(15254), 1, anon_sym_RBRACE2, - [312968] = 2, + [297329] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16539), 1, + ACTIONS(15256), 1, + anon_sym_esac, + [297336] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15258), 1, anon_sym_RPAREN, - [312975] = 2, + [297343] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15076), 1, - anon_sym_RBRACE3, - [312982] = 2, + ACTIONS(15260), 1, + anon_sym_esac, + [297350] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15262), 1, + aux_sym_brace_expression_token1, + [297357] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16541), 1, + ACTIONS(14666), 1, anon_sym_BQUOTE, - [312989] = 2, + [297364] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16543), 1, - anon_sym_LT_LT_LT, - [312996] = 2, + ACTIONS(8799), 1, + anon_sym_RBRACK, + [297371] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16545), 1, + ACTIONS(15264), 1, anon_sym_RBRACE3, - [313003] = 2, + [297378] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16539), 1, - anon_sym_BQUOTE, - [313010] = 2, + ACTIONS(15266), 1, + sym_heredoc_end, + [297385] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16547), 1, - anon_sym_RPAREN, - [313017] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16549), 1, - aux_sym_heredoc_redirect_token1, - [313024] = 2, + ACTIONS(15268), 1, + sym_heredoc_end, + [297392] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15613), 1, + ACTIONS(14408), 1, aux_sym__simple_variable_name_token1, - [313031] = 2, + [297399] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16551), 1, - anon_sym_RPAREN, - [313038] = 2, + ACTIONS(8797), 1, + anon_sym_RBRACK, + [297406] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16553), 1, - anon_sym_BQUOTE, - [313045] = 2, + ACTIONS(15270), 1, + anon_sym_RBRACE3, + [297413] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16555), 1, + ACTIONS(15272), 1, sym_word, - [313052] = 2, + [297420] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16557), 1, + ACTIONS(15274), 1, anon_sym_DOT_DOT, - [313059] = 2, + [297427] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16559), 1, - anon_sym_BQUOTE, - [313066] = 2, + ACTIONS(15276), 1, + anon_sym_esac, + [297434] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16551), 1, - anon_sym_BQUOTE, - [313073] = 2, + ACTIONS(15278), 1, + anon_sym_RBRACE2, + [297441] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16561), 1, + ACTIONS(15280), 1, anon_sym_RPAREN, - [313080] = 2, + [297448] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16563), 1, + ACTIONS(15282), 1, sym_heredoc_start, - [313087] = 2, + [297455] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16565), 1, - anon_sym_BQUOTE, - [313094] = 2, + ACTIONS(14638), 1, + anon_sym_RPAREN, + [297462] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15284), 1, + anon_sym_RBRACE2, + [297469] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16485), 1, + ACTIONS(15018), 1, anon_sym_BQUOTE, - [313101] = 2, + [297476] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15286), 1, + sym_heredoc_start, + [297483] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15288), 1, + anon_sym_RBRACE3, + [297490] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16567), 1, + ACTIONS(15290), 1, anon_sym_RPAREN, - [313108] = 2, + [297497] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16569), 1, - sym_heredoc_start, - [313115] = 2, + ACTIONS(15292), 1, + ts_builtin_sym_end, + [297504] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16387), 1, + ACTIONS(15294), 1, anon_sym_BQUOTE, - [313122] = 2, + [297511] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16571), 1, - anon_sym_RBRACE2, - [313129] = 2, + ACTIONS(15250), 1, + anon_sym_BQUOTE, + [297518] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16573), 1, - anon_sym_RBRACE3, - [313136] = 2, + ACTIONS(15296), 1, + anon_sym_RPAREN, + [297525] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16575), 1, + ACTIONS(15298), 1, anon_sym_RPAREN, - [313143] = 2, + [297532] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16577), 1, + ACTIONS(13909), 1, anon_sym_RBRACE3, - [313150] = 2, + [297539] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16579), 1, - anon_sym_BQUOTE, - [313157] = 2, + ACTIONS(13909), 1, + anon_sym_RBRACE3, + [297546] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13907), 1, + anon_sym_RBRACE3, + [297553] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16575), 1, + ACTIONS(15300), 1, anon_sym_BQUOTE, - [313164] = 2, - ACTIONS(3), 1, + [297560] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(16581), 1, - aux_sym_heredoc_redirect_token1, - [313171] = 2, + ACTIONS(15302), 1, + aux_sym_brace_expression_token1, + [297567] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15304), 1, + anon_sym_RBRACE2, + [297574] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15306), 1, + anon_sym_RBRACE3, + [297581] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15308), 1, + anon_sym_RBRACE3, + [297588] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16583), 1, + ACTIONS(15310), 1, anon_sym_RPAREN, - [313178] = 2, + [297595] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8753), 1, + anon_sym_RBRACK, + [297602] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16585), 1, + ACTIONS(15290), 1, + anon_sym_BQUOTE, + [297609] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15312), 1, anon_sym_RBRACE3, - [313185] = 2, + [297616] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16587), 1, + ACTIONS(15314), 1, anon_sym_BQUOTE, - [313192] = 2, + [297623] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15316), 1, + anon_sym_RPAREN, + [297630] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16583), 1, + ACTIONS(15310), 1, anon_sym_BQUOTE, - [313199] = 2, + [297637] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16589), 1, + ACTIONS(15318), 1, anon_sym_RPAREN, - [313206] = 2, + [297644] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16591), 1, + ACTIONS(15320), 1, anon_sym_RPAREN, - [313213] = 2, + [297651] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16593), 1, + ACTIONS(15322), 1, anon_sym_BQUOTE, - [313220] = 2, + [297658] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16595), 1, - anon_sym_RPAREN, - [313227] = 2, + ACTIONS(15316), 1, + anon_sym_BQUOTE, + [297665] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16597), 1, - anon_sym_BQUOTE, - [313234] = 2, + ACTIONS(15324), 1, + anon_sym_RPAREN, + [297672] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16599), 1, - aux_sym_brace_expression_token1, - [313241] = 2, + ACTIONS(15326), 1, + anon_sym_RBRACE3, + [297679] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16601), 1, + ACTIONS(15328), 1, aux_sym_heredoc_redirect_token1, - [313248] = 2, + [297686] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16589), 1, - anon_sym_BQUOTE, - [313255] = 2, + ACTIONS(15330), 1, + anon_sym_RPAREN, + [297693] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16603), 1, - anon_sym_RBRACE2, - [313262] = 2, + ACTIONS(15332), 1, + anon_sym_RBRACE3, + [297700] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16605), 1, - sym_word, - [313269] = 2, + ACTIONS(15334), 1, + anon_sym_RPAREN, + [297707] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16607), 1, - anon_sym_RBRACE3, - [313276] = 2, + ACTIONS(15336), 1, + anon_sym_RBRACE2, + [297714] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16609), 1, - anon_sym_RPAREN, - [313283] = 2, + ACTIONS(15338), 1, + anon_sym_RBRACE2, + [297721] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15113), 1, - anon_sym_RBRACE3, - [313290] = 2, + ACTIONS(8751), 1, + anon_sym_RBRACK, + [297728] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16611), 1, + ACTIONS(15340), 1, anon_sym_BQUOTE, - [313297] = 2, + [297735] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16613), 1, - anon_sym_in, - [313304] = 2, + ACTIONS(15342), 1, + anon_sym_esac, + [297742] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16615), 1, - sym_word, - [313311] = 2, + ACTIONS(15344), 1, + anon_sym_RBRACE2, + [297749] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16617), 1, - anon_sym_RBRACK_RBRACK, - [313318] = 2, + ACTIONS(15346), 1, + sym_word, + [297756] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16591), 1, + ACTIONS(15208), 1, anon_sym_BQUOTE, - [313325] = 2, + [297763] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16619), 1, - anon_sym_in, - [313332] = 2, + ACTIONS(15348), 1, + anon_sym_RBRACE2, + [297770] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16621), 1, + ACTIONS(15350), 1, anon_sym_RPAREN, - [313339] = 2, + [297777] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16623), 1, - anon_sym_RPAREN, - [313346] = 2, + ACTIONS(15352), 1, + anon_sym_RBRACE2, + [297784] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16625), 1, + ACTIONS(15354), 1, anon_sym_RPAREN, - [313353] = 2, + [297791] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16627), 1, - anon_sym_BQUOTE, - [313360] = 2, + ACTIONS(15356), 1, + anon_sym_RBRACE3, + [297798] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16629), 1, - anon_sym_RBRACE3, - [313367] = 2, + ACTIONS(15358), 1, + anon_sym_BQUOTE, + [297805] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16631), 1, - anon_sym_RPAREN, - [313374] = 2, + ACTIONS(15360), 1, + anon_sym_RBRACE3, + [297812] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16623), 1, - anon_sym_BQUOTE, - [313381] = 2, + ACTIONS(15362), 1, + aux_sym_brace_expression_token1, + [297819] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16633), 1, + ACTIONS(15364), 1, anon_sym_BQUOTE, - [313388] = 2, + [297826] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16631), 1, + ACTIONS(15366), 1, anon_sym_BQUOTE, - [313395] = 2, + [297833] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16635), 1, + ACTIONS(14934), 1, anon_sym_RPAREN, - [313402] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16515), 1, - anon_sym_BQUOTE, - [313409] = 2, + [297840] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16637), 1, - anon_sym_RPAREN, - [313416] = 2, + ACTIONS(15368), 1, + anon_sym_RBRACE3, + [297847] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16639), 1, + ACTIONS(15370), 1, anon_sym_RPAREN, - [313423] = 2, + [297854] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16641), 1, + ACTIONS(15372), 1, anon_sym_RPAREN, - [313430] = 2, + [297861] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16643), 1, - anon_sym_BQUOTE, - [313437] = 2, + ACTIONS(15374), 1, + anon_sym_RBRACK_RBRACK, + [297868] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15076), 1, - anon_sym_RBRACE3, - [313444] = 2, + ACTIONS(15376), 1, + sym_word, + [297875] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16645), 1, - anon_sym_RPAREN, - [313451] = 2, + ACTIONS(15378), 1, + anon_sym_RBRACK_RBRACK, + [297882] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16621), 1, + ACTIONS(15354), 1, anon_sym_BQUOTE, - [313458] = 2, + [297889] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16647), 1, - anon_sym_esac, - [313465] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16649), 1, + ACTIONS(15380), 1, anon_sym_RPAREN, - [313472] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16651), 1, - aux_sym_heredoc_redirect_token1, - [313479] = 2, + [297896] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16653), 1, + ACTIONS(15382), 1, anon_sym_RPAREN, - [313486] = 2, + [297903] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15113), 1, + ACTIONS(15384), 1, anon_sym_RBRACE3, - [313493] = 2, + [297910] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16655), 1, - anon_sym_RBRACE2, - [313500] = 2, + ACTIONS(15386), 1, + anon_sym_RPAREN, + [297917] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16657), 1, - anon_sym_RBRACE3, - [313507] = 2, + ACTIONS(15330), 1, + anon_sym_BQUOTE, + [297924] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(9952), 1, - anon_sym_RBRACK, - [313514] = 2, + ACTIONS(15388), 1, + anon_sym_BQUOTE, + [297931] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(9926), 1, - anon_sym_RBRACK, - [313521] = 2, + ACTIONS(15390), 1, + anon_sym_BQUOTE, + [297938] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16659), 1, - anon_sym_RBRACE2, - [313528] = 2, + ACTIONS(15370), 1, + anon_sym_BQUOTE, + [297945] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16661), 1, + ACTIONS(15392), 1, anon_sym_RPAREN, - [313535] = 2, + [297952] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16663), 1, - anon_sym_BQUOTE, - [313542] = 2, + ACTIONS(15394), 1, + anon_sym_RPAREN, + [297959] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16665), 1, - anon_sym_BQUOTE, - [313549] = 2, + ACTIONS(15396), 1, + aux_sym_brace_expression_token1, + [297966] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16661), 1, + ACTIONS(15298), 1, anon_sym_BQUOTE, - [313556] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16667), 1, - anon_sym_RPAREN, - [313563] = 2, + [297973] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16669), 1, - aux_sym_brace_expression_token1, - [313570] = 2, + ACTIONS(15386), 1, + anon_sym_BQUOTE, + [297980] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16671), 1, + ACTIONS(15398), 1, anon_sym_RPAREN, - [313577] = 2, + [297987] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16673), 1, - anon_sym_LT_LT_LT, - [313584] = 2, + ACTIONS(15400), 1, + anon_sym_RBRACE3, + [297994] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16675), 1, - aux_sym_brace_expression_token1, - [313591] = 2, + ACTIONS(15402), 1, + anon_sym_fi, + [298001] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16677), 1, + ACTIONS(13907), 1, anon_sym_RBRACE3, - [313598] = 2, + [298008] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16679), 1, - anon_sym_RPAREN_RPAREN, - [313605] = 2, + ACTIONS(15404), 1, + anon_sym_RBRACE2, + [298015] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16625), 1, - anon_sym_BQUOTE, - [313612] = 2, + ACTIONS(15406), 1, + anon_sym_RBRACE3, + [298022] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16681), 1, - anon_sym_in, - [313619] = 2, + ACTIONS(15408), 1, + anon_sym_RBRACE2, + [298029] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16683), 1, - anon_sym_in, - [313626] = 2, + ACTIONS(15410), 1, + anon_sym_RPAREN, + [298036] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16685), 1, + ACTIONS(15412), 1, anon_sym_RBRACE2, - [313633] = 2, + [298043] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16687), 1, + ACTIONS(14015), 1, anon_sym_RBRACE3, - [313640] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16689), 1, - anon_sym_esac, - [313647] = 2, + [298050] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16691), 1, - anon_sym_RPAREN, - [313654] = 2, + ACTIONS(15414), 1, + anon_sym_RBRACE3, + [298057] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16693), 1, + ACTIONS(15416), 1, anon_sym_RPAREN, - [313661] = 2, + [298064] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15625), 1, - aux_sym__simple_variable_name_token1, - [313668] = 2, + ACTIONS(15418), 1, + anon_sym_RBRACE3, + [298071] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16695), 1, + ACTIONS(15420), 1, anon_sym_RPAREN, - [313675] = 2, + [298078] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14932), 1, - anon_sym_RBRACE3, - [313682] = 2, + ACTIONS(15422), 1, + anon_sym_BQUOTE, + [298085] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16697), 1, - anon_sym_RBRACK_RBRACK, - [313689] = 2, + ACTIONS(15424), 1, + anon_sym_BQUOTE, + [298092] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15113), 1, + ACTIONS(13885), 1, anon_sym_RBRACE3, - [313696] = 2, + [298099] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16699), 1, - anon_sym_RBRACE3, - [313703] = 2, + ACTIONS(15426), 1, + aux_sym_brace_expression_token1, + [298106] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16701), 1, - anon_sym_LT_LT_LT, - [313710] = 2, + ACTIONS(15428), 1, + sym_heredoc_end, + [298113] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16703), 1, + ACTIONS(15430), 1, anon_sym_LT_LT_LT, - [313717] = 2, + [298120] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16705), 1, - anon_sym_BQUOTE, - [313724] = 2, + ACTIONS(15432), 1, + anon_sym_in, + [298127] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16707), 1, + ACTIONS(15434), 1, anon_sym_RPAREN, - [313731] = 2, + [298134] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16709), 1, - aux_sym_brace_expression_token1, - [313738] = 2, + ACTIONS(15436), 1, + anon_sym_RPAREN, + [298141] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15438), 1, + anon_sym_fi, + [298148] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15440), 1, + anon_sym_RBRACK_RBRACK, + [298155] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15621), 1, + ACTIONS(14436), 1, aux_sym__simple_variable_name_token1, - [313745] = 2, + [298162] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16711), 1, - aux_sym_brace_expression_token1, - [313752] = 2, + ACTIONS(15442), 1, + anon_sym_LT_LT_LT, + [298169] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16695), 1, - anon_sym_BQUOTE, - [313759] = 2, + ACTIONS(15444), 1, + aux_sym_brace_expression_token1, + [298176] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16713), 1, + ACTIONS(15446), 1, sym_word, - [313766] = 2, + [298183] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16715), 1, + ACTIONS(15448), 1, anon_sym_DOT_DOT, - [313773] = 2, + [298190] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16717), 1, + ACTIONS(15450), 1, anon_sym_BQUOTE, - [313780] = 2, + [298197] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16719), 1, - anon_sym_RBRACE2, - [313787] = 2, + ACTIONS(15452), 1, + anon_sym_RPAREN_RPAREN, + [298204] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16721), 1, + ACTIONS(15454), 1, anon_sym_RPAREN, - [313794] = 2, + [298211] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16723), 1, + ACTIONS(15456), 1, sym_heredoc_start, - [313801] = 2, + [298218] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16725), 1, - anon_sym_RBRACE3, - [313808] = 2, + ACTIONS(15416), 1, + anon_sym_BQUOTE, + [298225] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16727), 1, - anon_sym_RPAREN, - [313815] = 2, + ACTIONS(15458), 1, + anon_sym_BQUOTE, + [298232] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16729), 1, - aux_sym_brace_expression_token1, - [313822] = 2, + ACTIONS(15460), 1, + anon_sym_in, + [298239] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16731), 1, + ACTIONS(15462), 1, sym_heredoc_start, - [313829] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16733), 1, - anon_sym_BQUOTE, - [313836] = 2, + [298246] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16727), 1, - anon_sym_BQUOTE, - [313843] = 2, + ACTIONS(15464), 1, + anon_sym_in, + [298253] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16735), 1, + ACTIONS(15466), 1, anon_sym_RPAREN, - [313850] = 2, - ACTIONS(3), 1, + [298260] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(16737), 1, - aux_sym_heredoc_redirect_token1, - [313857] = 2, - ACTIONS(3), 1, + ACTIONS(15420), 1, + anon_sym_BQUOTE, + [298267] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(16739), 1, - aux_sym_heredoc_redirect_token1, - [313864] = 2, + ACTIONS(15468), 1, + anon_sym_RBRACE3, + [298274] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16741), 1, - anon_sym_BQUOTE, - [313871] = 2, + ACTIONS(15470), 1, + anon_sym_RPAREN, + [298281] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16693), 1, - anon_sym_BQUOTE, - [313878] = 2, + ACTIONS(13863), 1, + anon_sym_RBRACE3, + [298288] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16707), 1, + ACTIONS(15472), 1, anon_sym_BQUOTE, - [313885] = 2, + [298295] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16743), 1, - anon_sym_DOT_DOT, - [313892] = 2, + ACTIONS(15470), 1, + anon_sym_BQUOTE, + [298302] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16745), 1, + ACTIONS(15474), 1, anon_sym_RPAREN, - [313899] = 2, + [298309] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16747), 1, - anon_sym_RBRACK_RBRACK, - [313906] = 2, + ACTIONS(15476), 1, + anon_sym_esac, + [298316] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16749), 1, - anon_sym_RBRACE2, - [313913] = 2, + ACTIONS(15410), 1, + anon_sym_BQUOTE, + [298323] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15113), 1, - anon_sym_RBRACE3, - [313920] = 2, + ACTIONS(13801), 1, + anon_sym_fi, + [298330] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16751), 1, + ACTIONS(15478), 1, anon_sym_RPAREN, - [313927] = 2, - ACTIONS(3), 1, + [298337] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(16753), 1, - aux_sym_heredoc_redirect_token1, - [313934] = 2, + ACTIONS(15480), 1, + anon_sym_RBRACE2, + [298344] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16755), 1, - anon_sym_RPAREN, - [313941] = 2, - ACTIONS(3), 1, + ACTIONS(15482), 1, + anon_sym_LT_LT_LT, + [298351] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(16757), 1, - aux_sym_heredoc_redirect_token1, - [313948] = 2, + ACTIONS(15484), 1, + anon_sym_RBRACE3, + [298358] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16759), 1, + ACTIONS(13355), 1, + anon_sym_RBRACE3, + [298365] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15486), 1, sym_word, - [313955] = 2, + [298372] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16761), 1, + ACTIONS(15488), 1, anon_sym_DOT_DOT, - [313962] = 2, + [298379] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16763), 1, + ACTIONS(15490), 1, anon_sym_RPAREN, - [313969] = 2, + [298386] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16765), 1, + ACTIONS(15492), 1, sym_heredoc_start, - [313976] = 2, + [298393] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15113), 1, - anon_sym_RBRACE3, - [313983] = 2, + ACTIONS(15494), 1, + sym_heredoc_start, + [298400] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16767), 1, - anon_sym_RBRACE2, - [313990] = 2, + ACTIONS(15496), 1, + aux_sym_brace_expression_token1, + [298407] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16769), 1, + ACTIONS(15498), 1, sym_heredoc_start, - [313997] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16771), 1, - aux_sym_heredoc_redirect_token1, - [314004] = 2, + [298414] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16773), 1, + ACTIONS(15500), 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, + [298421] = 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(15382), 1, + anon_sym_BQUOTE, + [298428] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15759), 1, + ACTIONS(15502), 1, anon_sym_BQUOTE, - [314053] = 2, + [298435] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15076), 1, + ACTIONS(13907), 1, anon_sym_RBRACE3, - [314060] = 2, + [298442] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15076), 1, + ACTIONS(13907), 1, anon_sym_RBRACE3, - [314067] = 2, + [298449] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15076), 1, + ACTIONS(13907), 1, anon_sym_RBRACE3, - [314074] = 2, - ACTIONS(71), 1, + [298456] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(16781), 1, - anon_sym_RBRACE2, - [314081] = 2, - ACTIONS(71), 1, + ACTIONS(15504), 1, + aux_sym_heredoc_redirect_token1, + [298463] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(16783), 1, - anon_sym_RBRACE2, - [314088] = 2, + ACTIONS(15506), 1, + aux_sym_heredoc_redirect_token1, + [298470] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14974), 1, - anon_sym_fi, - [314095] = 2, + ACTIONS(15500), 1, + anon_sym_BQUOTE, + [298477] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16785), 1, - anon_sym_RBRACE2, - [314102] = 2, + ACTIONS(15508), 1, + anon_sym_RPAREN, + [298484] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16787), 1, - anon_sym_RBRACE3, - [314109] = 2, + ACTIONS(15510), 1, + anon_sym_RPAREN_RPAREN, + [298491] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16789), 1, + ACTIONS(15512), 1, anon_sym_RBRACE3, - [314116] = 2, + [298498] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16791), 1, - anon_sym_DOT_DOT, - [314123] = 2, + ACTIONS(15514), 1, + anon_sym_RPAREN, + [298505] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16793), 1, - anon_sym_DOT_DOT, - [314130] = 2, + ACTIONS(15516), 1, + aux_sym_brace_expression_token1, + [298512] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16795), 1, - anon_sym_DOT_DOT, - [314137] = 2, + ACTIONS(15518), 1, + anon_sym_BQUOTE, + [298519] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16797), 1, - anon_sym_DOT_DOT, - [314144] = 2, + ACTIONS(15514), 1, + anon_sym_BQUOTE, + [298526] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16799), 1, - anon_sym_DOT_DOT, - [314151] = 2, + ACTIONS(15520), 1, + anon_sym_RPAREN, + [298533] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16801), 1, + ACTIONS(15522), 1, anon_sym_DOT_DOT, - [314158] = 2, + [298540] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16803), 1, - anon_sym_DOT_DOT, - [314165] = 2, + ACTIONS(15524), 1, + sym_heredoc_start, + [298547] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16805), 1, - anon_sym_DOT_DOT, - [314172] = 2, + ACTIONS(15526), 1, + sym_heredoc_start, + [298554] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16807), 1, + ACTIONS(15528), 1, anon_sym_DOT_DOT, - [314179] = 2, + [298561] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16809), 1, + ACTIONS(15530), 1, anon_sym_DOT_DOT, - [314186] = 2, + [298568] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16811), 1, + ACTIONS(15532), 1, anon_sym_DOT_DOT, - [314193] = 2, + [298575] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16813), 1, + ACTIONS(15534), 1, anon_sym_DOT_DOT, - [314200] = 2, + [298582] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16815), 1, + ACTIONS(15536), 1, anon_sym_DOT_DOT, - [314207] = 2, + [298589] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16817), 1, + ACTIONS(15538), 1, anon_sym_DOT_DOT, - [314214] = 2, + [298596] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16819), 1, + ACTIONS(15540), 1, anon_sym_DOT_DOT, - [314221] = 2, + [298603] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16821), 1, + ACTIONS(15542), 1, anon_sym_DOT_DOT, - [314228] = 2, + [298610] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16823), 1, + ACTIONS(15544), 1, anon_sym_DOT_DOT, - [314235] = 2, + [298617] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16825), 1, + ACTIONS(15546), 1, anon_sym_DOT_DOT, - [314242] = 2, + [298624] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16827), 1, + ACTIONS(15548), 1, anon_sym_DOT_DOT, - [314249] = 2, + [298631] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16829), 1, + ACTIONS(15550), 1, anon_sym_DOT_DOT, - [314256] = 2, + [298638] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16831), 1, + ACTIONS(15552), 1, anon_sym_DOT_DOT, - [314263] = 2, + [298645] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16833), 1, + ACTIONS(15554), 1, anon_sym_DOT_DOT, - [314270] = 2, + [298652] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16835), 1, + ACTIONS(15556), 1, anon_sym_DOT_DOT, - [314277] = 2, + [298659] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16837), 1, + ACTIONS(15558), 1, anon_sym_DOT_DOT, - [314284] = 2, + [298666] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16839), 1, + ACTIONS(15560), 1, anon_sym_DOT_DOT, - [314291] = 2, + [298673] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16841), 1, + ACTIONS(15562), 1, anon_sym_DOT_DOT, - [314298] = 2, + [298680] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16843), 1, + ACTIONS(15564), 1, anon_sym_DOT_DOT, - [314305] = 2, + [298687] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16845), 1, + ACTIONS(15566), 1, anon_sym_DOT_DOT, - [314312] = 2, + [298694] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16847), 1, + ACTIONS(15568), 1, anon_sym_DOT_DOT, - [314319] = 2, + [298701] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16849), 1, + ACTIONS(15570), 1, anon_sym_DOT_DOT, - [314326] = 2, + [298708] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16851), 1, + ACTIONS(15572), 1, anon_sym_DOT_DOT, - [314333] = 2, + [298715] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16853), 1, + ACTIONS(15574), 1, anon_sym_DOT_DOT, - [314340] = 2, + [298722] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16855), 1, + ACTIONS(15576), 1, anon_sym_DOT_DOT, - [314347] = 2, + [298729] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16857), 1, + ACTIONS(15578), 1, anon_sym_DOT_DOT, - [314354] = 2, + [298736] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16859), 1, + ACTIONS(15580), 1, anon_sym_DOT_DOT, - [314361] = 2, + [298743] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16861), 1, + ACTIONS(15582), 1, anon_sym_DOT_DOT, - [314368] = 2, + [298750] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16863), 1, + ACTIONS(15584), 1, anon_sym_DOT_DOT, - [314375] = 2, + [298757] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16865), 1, + ACTIONS(15586), 1, anon_sym_DOT_DOT, - [314382] = 2, + [298764] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16867), 1, + ACTIONS(15588), 1, anon_sym_DOT_DOT, - [314389] = 2, + [298771] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16869), 1, + ACTIONS(15590), 1, anon_sym_DOT_DOT, - [314396] = 2, + [298778] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16871), 1, + ACTIONS(15592), 1, anon_sym_DOT_DOT, - [314403] = 2, + [298785] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16873), 1, + ACTIONS(15594), 1, anon_sym_DOT_DOT, - [314410] = 2, + [298792] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16875), 1, + ACTIONS(15596), 1, anon_sym_DOT_DOT, - [314417] = 2, + [298799] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16877), 1, + ACTIONS(15598), 1, anon_sym_DOT_DOT, - [314424] = 2, + [298806] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16879), 1, + ACTIONS(15600), 1, anon_sym_DOT_DOT, - [314431] = 2, + [298813] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16881), 1, + ACTIONS(15602), 1, anon_sym_DOT_DOT, - [314438] = 2, + [298820] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16883), 1, + ACTIONS(15604), 1, anon_sym_DOT_DOT, - [314445] = 2, + [298827] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16885), 1, + ACTIONS(15606), 1, anon_sym_DOT_DOT, - [314452] = 2, + [298834] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16887), 1, + ACTIONS(15608), 1, anon_sym_DOT_DOT, - [314459] = 2, + [298841] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16889), 1, + ACTIONS(15610), 1, anon_sym_DOT_DOT, - [314466] = 2, + [298848] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16891), 1, + ACTIONS(15612), 1, anon_sym_DOT_DOT, - [314473] = 2, + [298855] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16893), 1, + ACTIONS(15614), 1, anon_sym_DOT_DOT, - [314480] = 2, + [298862] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16895), 1, + ACTIONS(15616), 1, anon_sym_DOT_DOT, - [314487] = 2, + [298869] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16897), 1, + ACTIONS(15618), 1, anon_sym_DOT_DOT, - [314494] = 2, + [298876] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16899), 1, + ACTIONS(15620), 1, anon_sym_DOT_DOT, - [314501] = 2, + [298883] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16901), 1, + ACTIONS(15622), 1, anon_sym_DOT_DOT, - [314508] = 2, + [298890] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16903), 1, + ACTIONS(15624), 1, anon_sym_DOT_DOT, - [314515] = 2, + [298897] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16905), 1, + ACTIONS(15626), 1, anon_sym_DOT_DOT, - [314522] = 2, + [298904] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16907), 1, + ACTIONS(15628), 1, anon_sym_DOT_DOT, - [314529] = 2, + [298911] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16909), 1, + ACTIONS(15630), 1, aux_sym_brace_expression_token1, - [314536] = 2, - ACTIONS(71), 1, + [298918] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15639), 1, - anon_sym_RPAREN, - [314543] = 2, - ACTIONS(71), 1, + ACTIONS(15632), 1, + aux_sym_heredoc_redirect_token1, + [298925] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(16911), 1, - anon_sym_RPAREN, - [314550] = 2, + ACTIONS(15634), 1, + aux_sym_heredoc_redirect_token1, + [298932] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16913), 1, - anon_sym_esac, - [314557] = 2, + ACTIONS(15636), 1, + anon_sym_RBRACE2, + [298939] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16915), 1, - anon_sym_BQUOTE, - [314564] = 2, + ACTIONS(15638), 1, + anon_sym_in, + [298946] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16911), 1, - anon_sym_BQUOTE, - [314571] = 2, + ACTIONS(15640), 1, + anon_sym_RPAREN, + [298953] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16917), 1, - sym_word, - [314578] = 2, - ACTIONS(71), 1, + ACTIONS(15642), 1, + anon_sym_RBRACE2, + [298960] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(9958), 1, - anon_sym_RBRACK, - [314585] = 2, + ACTIONS(15644), 1, + aux_sym_heredoc_redirect_token1, + [298967] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16919), 1, + ACTIONS(15646), 1, anon_sym_RPAREN, - [314592] = 2, + [298974] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16921), 1, + ACTIONS(15648), 1, aux_sym_brace_expression_token1, - [314599] = 2, + [298981] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16923), 1, - aux_sym_brace_expression_token1, - [314606] = 2, + ACTIONS(15650), 1, + anon_sym_in, + [298988] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16925), 1, + ACTIONS(13885), 1, anon_sym_RBRACE3, - [314613] = 2, - ACTIONS(71), 1, + [298995] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(16927), 1, - anon_sym_esac, - [314620] = 2, + ACTIONS(15652), 1, + aux_sym_heredoc_redirect_token1, + [299002] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16929), 1, - anon_sym_RPAREN, - [314627] = 2, + ACTIONS(15654), 1, + anon_sym_RBRACE2, + [299009] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15113), 1, + ACTIONS(13967), 1, anon_sym_RBRACE3, - [314634] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15653), 1, - anon_sym_RPAREN, - [314641] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16931), 1, - aux_sym_brace_expression_token1, - [314648] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16933), 1, - aux_sym_brace_expression_token1, - [314655] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16935), 1, - aux_sym_brace_expression_token1, - [314662] = 2, + [299016] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16937), 1, - aux_sym_brace_expression_token1, - [314669] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16939), 1, - aux_sym_brace_expression_token1, - [314676] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16941), 1, - aux_sym_brace_expression_token1, - [314683] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16943), 1, - aux_sym_brace_expression_token1, - [314690] = 2, + ACTIONS(15656), 1, + anon_sym_RBRACE2, + [299023] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16945), 1, + ACTIONS(15658), 1, aux_sym_brace_expression_token1, - [314697] = 2, + [299030] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16947), 1, + ACTIONS(15660), 1, aux_sym_brace_expression_token1, - [314704] = 2, + [299037] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16949), 1, + ACTIONS(15662), 1, aux_sym_brace_expression_token1, - [314711] = 2, + [299044] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16951), 1, + ACTIONS(15664), 1, aux_sym_brace_expression_token1, - [314718] = 2, + [299051] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16953), 1, + ACTIONS(15666), 1, aux_sym_brace_expression_token1, - [314725] = 2, + [299058] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16955), 1, + ACTIONS(15668), 1, aux_sym_brace_expression_token1, - [314732] = 2, + [299065] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16957), 1, + ACTIONS(15670), 1, aux_sym_brace_expression_token1, - [314739] = 2, + [299072] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16959), 1, + ACTIONS(15672), 1, aux_sym_brace_expression_token1, - [314746] = 2, + [299079] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16961), 1, + ACTIONS(15674), 1, aux_sym_brace_expression_token1, - [314753] = 2, + [299086] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16963), 1, + ACTIONS(15676), 1, aux_sym_brace_expression_token1, - [314760] = 2, + [299093] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16965), 1, + ACTIONS(15678), 1, aux_sym_brace_expression_token1, - [314767] = 2, + [299100] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16967), 1, + ACTIONS(15680), 1, aux_sym_brace_expression_token1, - [314774] = 2, + [299107] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16969), 1, + ACTIONS(15682), 1, aux_sym_brace_expression_token1, - [314781] = 2, + [299114] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16971), 1, + ACTIONS(15684), 1, aux_sym_brace_expression_token1, - [314788] = 2, + [299121] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16973), 1, + ACTIONS(15686), 1, aux_sym_brace_expression_token1, - [314795] = 2, + [299128] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16975), 1, + ACTIONS(15688), 1, aux_sym_brace_expression_token1, - [314802] = 2, + [299135] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16977), 1, + ACTIONS(15690), 1, aux_sym_brace_expression_token1, - [314809] = 2, + [299142] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16979), 1, + ACTIONS(15692), 1, aux_sym_brace_expression_token1, - [314816] = 2, + [299149] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16981), 1, + ACTIONS(15694), 1, aux_sym_brace_expression_token1, - [314823] = 2, + [299156] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16983), 1, + ACTIONS(15696), 1, aux_sym_brace_expression_token1, - [314830] = 2, + [299163] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16985), 1, + ACTIONS(15698), 1, aux_sym_brace_expression_token1, - [314837] = 2, + [299170] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16987), 1, + ACTIONS(15700), 1, aux_sym_brace_expression_token1, - [314844] = 2, + [299177] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16989), 1, + ACTIONS(15702), 1, aux_sym_brace_expression_token1, - [314851] = 2, + [299184] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16991), 1, + ACTIONS(15704), 1, aux_sym_brace_expression_token1, - [314858] = 2, + [299191] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16993), 1, + ACTIONS(15706), 1, aux_sym_brace_expression_token1, - [314865] = 2, + [299198] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16995), 1, + ACTIONS(15708), 1, aux_sym_brace_expression_token1, - [314872] = 2, + [299205] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16997), 1, + ACTIONS(15710), 1, aux_sym_brace_expression_token1, - [314879] = 2, + [299212] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16999), 1, + ACTIONS(15712), 1, aux_sym_brace_expression_token1, - [314886] = 2, + [299219] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(17001), 1, + ACTIONS(15714), 1, aux_sym_brace_expression_token1, - [314893] = 2, + [299226] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(17003), 1, + ACTIONS(15716), 1, aux_sym_brace_expression_token1, - [314900] = 2, + [299233] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(17005), 1, + ACTIONS(15718), 1, aux_sym_brace_expression_token1, - [314907] = 2, + [299240] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(17007), 1, + ACTIONS(15720), 1, aux_sym_brace_expression_token1, - [314914] = 2, + [299247] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(17009), 1, + ACTIONS(15722), 1, aux_sym_brace_expression_token1, - [314921] = 2, + [299254] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(17011), 1, + ACTIONS(15724), 1, aux_sym_brace_expression_token1, - [314928] = 2, + [299261] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(17013), 1, + ACTIONS(15726), 1, aux_sym_brace_expression_token1, - [314935] = 2, + [299268] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(17015), 1, + ACTIONS(15728), 1, aux_sym_brace_expression_token1, - [314942] = 2, + [299275] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(17017), 1, + ACTIONS(15730), 1, aux_sym_brace_expression_token1, - [314949] = 2, + [299282] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(17019), 1, + ACTIONS(15732), 1, aux_sym_brace_expression_token1, - [314956] = 2, + [299289] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(17021), 1, + ACTIONS(15734), 1, aux_sym_brace_expression_token1, - [314963] = 2, + [299296] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(17023), 1, + ACTIONS(15736), 1, aux_sym_brace_expression_token1, - [314970] = 2, + [299303] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(17025), 1, + ACTIONS(15738), 1, aux_sym_brace_expression_token1, - [314977] = 2, + [299310] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(17027), 1, + ACTIONS(15740), 1, aux_sym_brace_expression_token1, - [314984] = 2, + [299317] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(17029), 1, + ACTIONS(15742), 1, aux_sym_brace_expression_token1, - [314991] = 2, + [299324] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(17031), 1, + ACTIONS(15744), 1, aux_sym_brace_expression_token1, - [314998] = 2, + [299331] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(17033), 1, + ACTIONS(15746), 1, aux_sym_brace_expression_token1, - [315005] = 2, + [299338] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(17035), 1, + ACTIONS(15748), 1, aux_sym_brace_expression_token1, - [315012] = 2, + [299345] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(17037), 1, + ACTIONS(15750), 1, aux_sym_brace_expression_token1, - [315019] = 2, + [299352] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(17039), 1, + ACTIONS(15752), 1, aux_sym_brace_expression_token1, - [315026] = 2, + [299359] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(17041), 1, + ACTIONS(15754), 1, aux_sym_brace_expression_token1, - [315033] = 2, + [299366] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(17043), 1, + ACTIONS(15756), 1, aux_sym_brace_expression_token1, - [315040] = 2, + [299373] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(17045), 1, + ACTIONS(15758), 1, aux_sym_brace_expression_token1, - [315047] = 2, + [299380] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(17047), 1, + ACTIONS(15760), 1, aux_sym_brace_expression_token1, - [315054] = 2, + [299387] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(17049), 1, + ACTIONS(15762), 1, aux_sym_brace_expression_token1, - [315061] = 2, + [299394] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(17051), 1, + ACTIONS(15764), 1, aux_sym_brace_expression_token1, - [315068] = 2, + [299401] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(17053), 1, - anon_sym_RBRACE3, + ACTIONS(15150), 1, + anon_sym_BQUOTE, }; 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(1324)] = 57829, - [SMALL_STATE(1325)] = 57888, - [SMALL_STATE(1326)] = 57947, - [SMALL_STATE(1327)] = 58006, - [SMALL_STATE(1328)] = 58059, - [SMALL_STATE(1329)] = 58112, - [SMALL_STATE(1330)] = 58165, - [SMALL_STATE(1331)] = 58218, - [SMALL_STATE(1332)] = 58271, - [SMALL_STATE(1333)] = 58324, - [SMALL_STATE(1334)] = 58377, - [SMALL_STATE(1335)] = 58434, - [SMALL_STATE(1336)] = 58487, - [SMALL_STATE(1337)] = 58540, - [SMALL_STATE(1338)] = 58597, - [SMALL_STATE(1339)] = 58656, - [SMALL_STATE(1340)] = 58709, - [SMALL_STATE(1341)] = 58762, - [SMALL_STATE(1342)] = 58821, - [SMALL_STATE(1343)] = 58874, - [SMALL_STATE(1344)] = 58927, - [SMALL_STATE(1345)] = 58986, - [SMALL_STATE(1346)] = 59045, - [SMALL_STATE(1347)] = 59104, - [SMALL_STATE(1348)] = 59157, - [SMALL_STATE(1349)] = 59216, - [SMALL_STATE(1350)] = 59269, - [SMALL_STATE(1351)] = 59322, - [SMALL_STATE(1352)] = 59375, - [SMALL_STATE(1353)] = 59434, - [SMALL_STATE(1354)] = 59493, - [SMALL_STATE(1355)] = 59552, - [SMALL_STATE(1356)] = 59611, - [SMALL_STATE(1357)] = 59670, - [SMALL_STATE(1358)] = 59729, - [SMALL_STATE(1359)] = 59782, - [SMALL_STATE(1360)] = 59835, - [SMALL_STATE(1361)] = 59892, - [SMALL_STATE(1362)] = 59945, - [SMALL_STATE(1363)] = 60004, - [SMALL_STATE(1364)] = 60063, - [SMALL_STATE(1365)] = 60116, - [SMALL_STATE(1366)] = 60169, - [SMALL_STATE(1367)] = 60226, - [SMALL_STATE(1368)] = 60285, - [SMALL_STATE(1369)] = 60344, - [SMALL_STATE(1370)] = 60397, - [SMALL_STATE(1371)] = 60456, - [SMALL_STATE(1372)] = 60515, - [SMALL_STATE(1373)] = 60574, - [SMALL_STATE(1374)] = 60633, - [SMALL_STATE(1375)] = 60692, - [SMALL_STATE(1376)] = 60751, - [SMALL_STATE(1377)] = 60810, - [SMALL_STATE(1378)] = 60869, - [SMALL_STATE(1379)] = 60928, - [SMALL_STATE(1380)] = 60987, - [SMALL_STATE(1381)] = 61040, - [SMALL_STATE(1382)] = 61099, - [SMALL_STATE(1383)] = 61158, - [SMALL_STATE(1384)] = 61211, - [SMALL_STATE(1385)] = 61264, - [SMALL_STATE(1386)] = 61329, - [SMALL_STATE(1387)] = 61388, - [SMALL_STATE(1388)] = 61445, - [SMALL_STATE(1389)] = 61498, - [SMALL_STATE(1390)] = 61557, - [SMALL_STATE(1391)] = 61646, - [SMALL_STATE(1392)] = 61703, - [SMALL_STATE(1393)] = 61756, - [SMALL_STATE(1394)] = 61815, - [SMALL_STATE(1395)] = 61868, - [SMALL_STATE(1396)] = 61925, - [SMALL_STATE(1397)] = 61978, - [SMALL_STATE(1398)] = 62035, - [SMALL_STATE(1399)] = 62088, - [SMALL_STATE(1400)] = 62141, - [SMALL_STATE(1401)] = 62194, - [SMALL_STATE(1402)] = 62253, - [SMALL_STATE(1403)] = 62312, - [SMALL_STATE(1404)] = 62365, - [SMALL_STATE(1405)] = 62418, - [SMALL_STATE(1406)] = 62471, - [SMALL_STATE(1407)] = 62524, - [SMALL_STATE(1408)] = 62577, - [SMALL_STATE(1409)] = 62630, - [SMALL_STATE(1410)] = 62683, - [SMALL_STATE(1411)] = 62740, - [SMALL_STATE(1412)] = 62797, - [SMALL_STATE(1413)] = 62854, - [SMALL_STATE(1414)] = 62907, - [SMALL_STATE(1415)] = 62960, - [SMALL_STATE(1416)] = 63013, - [SMALL_STATE(1417)] = 63072, - [SMALL_STATE(1418)] = 63125, - [SMALL_STATE(1419)] = 63184, - [SMALL_STATE(1420)] = 63237, - [SMALL_STATE(1421)] = 63296, - [SMALL_STATE(1422)] = 63355, - [SMALL_STATE(1423)] = 63414, - [SMALL_STATE(1424)] = 63471, - [SMALL_STATE(1425)] = 63528, - [SMALL_STATE(1426)] = 63585, - [SMALL_STATE(1427)] = 63638, - [SMALL_STATE(1428)] = 63695, - [SMALL_STATE(1429)] = 63748, - [SMALL_STATE(1430)] = 63837, - [SMALL_STATE(1431)] = 63896, - [SMALL_STATE(1432)] = 63949, - [SMALL_STATE(1433)] = 64002, - [SMALL_STATE(1434)] = 64055, - [SMALL_STATE(1435)] = 64108, - [SMALL_STATE(1436)] = 64161, - [SMALL_STATE(1437)] = 64218, - [SMALL_STATE(1438)] = 64277, - [SMALL_STATE(1439)] = 64330, - [SMALL_STATE(1440)] = 64383, - [SMALL_STATE(1441)] = 64436, - [SMALL_STATE(1442)] = 64489, - [SMALL_STATE(1443)] = 64542, - [SMALL_STATE(1444)] = 64601, - [SMALL_STATE(1445)] = 64660, - [SMALL_STATE(1446)] = 64719, - [SMALL_STATE(1447)] = 64778, - [SMALL_STATE(1448)] = 64837, - [SMALL_STATE(1449)] = 64894, - [SMALL_STATE(1450)] = 64947, - [SMALL_STATE(1451)] = 65006, - [SMALL_STATE(1452)] = 65059, - [SMALL_STATE(1453)] = 65112, - [SMALL_STATE(1454)] = 65165, - [SMALL_STATE(1455)] = 65224, - [SMALL_STATE(1456)] = 65277, - [SMALL_STATE(1457)] = 65336, - [SMALL_STATE(1458)] = 65393, - [SMALL_STATE(1459)] = 65446, - [SMALL_STATE(1460)] = 65499, - [SMALL_STATE(1461)] = 65552, - [SMALL_STATE(1462)] = 65611, - [SMALL_STATE(1463)] = 65670, - [SMALL_STATE(1464)] = 65727, - [SMALL_STATE(1465)] = 65783, - [SMALL_STATE(1466)] = 65835, - [SMALL_STATE(1467)] = 65887, - [SMALL_STATE(1468)] = 65939, - [SMALL_STATE(1469)] = 65991, - [SMALL_STATE(1470)] = 66053, - [SMALL_STATE(1471)] = 66115, - [SMALL_STATE(1472)] = 66171, - [SMALL_STATE(1473)] = 66223, - [SMALL_STATE(1474)] = 66275, - [SMALL_STATE(1475)] = 66331, - [SMALL_STATE(1476)] = 66383, - [SMALL_STATE(1477)] = 66435, - [SMALL_STATE(1478)] = 66487, - [SMALL_STATE(1479)] = 66539, - [SMALL_STATE(1480)] = 66591, - [SMALL_STATE(1481)] = 66647, - [SMALL_STATE(1482)] = 66699, - [SMALL_STATE(1483)] = 66751, - [SMALL_STATE(1484)] = 66803, - [SMALL_STATE(1485)] = 66859, - [SMALL_STATE(1486)] = 66911, - [SMALL_STATE(1487)] = 66963, - [SMALL_STATE(1488)] = 67015, - [SMALL_STATE(1489)] = 67073, - [SMALL_STATE(1490)] = 67125, - [SMALL_STATE(1491)] = 67177, - [SMALL_STATE(1492)] = 67233, - [SMALL_STATE(1493)] = 67285, - [SMALL_STATE(1494)] = 67337, - [SMALL_STATE(1495)] = 67389, - [SMALL_STATE(1496)] = 67441, - [SMALL_STATE(1497)] = 67499, - [SMALL_STATE(1498)] = 67551, - [SMALL_STATE(1499)] = 67603, - [SMALL_STATE(1500)] = 67655, - [SMALL_STATE(1501)] = 67707, - [SMALL_STATE(1502)] = 67763, - [SMALL_STATE(1503)] = 67819, - [SMALL_STATE(1504)] = 67871, - [SMALL_STATE(1505)] = 67927, - [SMALL_STATE(1506)] = 67979, - [SMALL_STATE(1507)] = 68031, - [SMALL_STATE(1508)] = 68083, - [SMALL_STATE(1509)] = 68139, - [SMALL_STATE(1510)] = 68191, - [SMALL_STATE(1511)] = 68249, - [SMALL_STATE(1512)] = 68301, - [SMALL_STATE(1513)] = 68353, - [SMALL_STATE(1514)] = 68411, - [SMALL_STATE(1515)] = 68467, - [SMALL_STATE(1516)] = 68525, - [SMALL_STATE(1517)] = 68577, - [SMALL_STATE(1518)] = 68629, - [SMALL_STATE(1519)] = 68681, - [SMALL_STATE(1520)] = 68783, - [SMALL_STATE(1521)] = 68835, - [SMALL_STATE(1522)] = 68887, - [SMALL_STATE(1523)] = 68945, - [SMALL_STATE(1524)] = 69003, - [SMALL_STATE(1525)] = 69061, - [SMALL_STATE(1526)] = 69113, - [SMALL_STATE(1527)] = 69165, - [SMALL_STATE(1528)] = 69217, - [SMALL_STATE(1529)] = 69269, - [SMALL_STATE(1530)] = 69321, - [SMALL_STATE(1531)] = 69373, - [SMALL_STATE(1532)] = 69425, - [SMALL_STATE(1533)] = 69477, - [SMALL_STATE(1534)] = 69529, - [SMALL_STATE(1535)] = 69581, - [SMALL_STATE(1536)] = 69633, - [SMALL_STATE(1537)] = 69685, - [SMALL_STATE(1538)] = 69737, - [SMALL_STATE(1539)] = 69789, - [SMALL_STATE(1540)] = 69841, - [SMALL_STATE(1541)] = 69893, - [SMALL_STATE(1542)] = 69981, - [SMALL_STATE(1543)] = 70037, - [SMALL_STATE(1544)] = 70125, - [SMALL_STATE(1545)] = 70177, - [SMALL_STATE(1546)] = 70229, - [SMALL_STATE(1547)] = 70281, - [SMALL_STATE(1548)] = 70333, - [SMALL_STATE(1549)] = 70391, - [SMALL_STATE(1550)] = 70443, - [SMALL_STATE(1551)] = 70495, - [SMALL_STATE(1552)] = 70547, - [SMALL_STATE(1553)] = 70599, - [SMALL_STATE(1554)] = 70651, - [SMALL_STATE(1555)] = 70703, - [SMALL_STATE(1556)] = 70755, - [SMALL_STATE(1557)] = 70807, - [SMALL_STATE(1558)] = 70859, - [SMALL_STATE(1559)] = 70911, - [SMALL_STATE(1560)] = 70963, - [SMALL_STATE(1561)] = 71015, - [SMALL_STATE(1562)] = 71067, - [SMALL_STATE(1563)] = 71119, - [SMALL_STATE(1564)] = 71171, - [SMALL_STATE(1565)] = 71273, - [SMALL_STATE(1566)] = 71325, - [SMALL_STATE(1567)] = 71377, - [SMALL_STATE(1568)] = 71429, - [SMALL_STATE(1569)] = 71487, - [SMALL_STATE(1570)] = 71539, - [SMALL_STATE(1571)] = 71591, - [SMALL_STATE(1572)] = 71643, - [SMALL_STATE(1573)] = 71701, - [SMALL_STATE(1574)] = 71753, - [SMALL_STATE(1575)] = 71805, - [SMALL_STATE(1576)] = 71857, - [SMALL_STATE(1577)] = 71909, - [SMALL_STATE(1578)] = 71961, - [SMALL_STATE(1579)] = 72013, - [SMALL_STATE(1580)] = 72065, - [SMALL_STATE(1581)] = 72117, - [SMALL_STATE(1582)] = 72169, - [SMALL_STATE(1583)] = 72221, - [SMALL_STATE(1584)] = 72279, - [SMALL_STATE(1585)] = 72331, - [SMALL_STATE(1586)] = 72433, - [SMALL_STATE(1587)] = 72485, - [SMALL_STATE(1588)] = 72537, - [SMALL_STATE(1589)] = 72595, - [SMALL_STATE(1590)] = 72697, - [SMALL_STATE(1591)] = 72755, - [SMALL_STATE(1592)] = 72813, - [SMALL_STATE(1593)] = 72871, - [SMALL_STATE(1594)] = 72929, - [SMALL_STATE(1595)] = 72987, - [SMALL_STATE(1596)] = 73045, - [SMALL_STATE(1597)] = 73097, - [SMALL_STATE(1598)] = 73155, - [SMALL_STATE(1599)] = 73213, - [SMALL_STATE(1600)] = 73271, - [SMALL_STATE(1601)] = 73329, - [SMALL_STATE(1602)] = 73397, - [SMALL_STATE(1603)] = 73465, - [SMALL_STATE(1604)] = 73523, - [SMALL_STATE(1605)] = 73579, - [SMALL_STATE(1606)] = 73635, - [SMALL_STATE(1607)] = 73687, - [SMALL_STATE(1608)] = 73739, - [SMALL_STATE(1609)] = 73799, - [SMALL_STATE(1610)] = 73859, - [SMALL_STATE(1611)] = 73917, - [SMALL_STATE(1612)] = 73975, - [SMALL_STATE(1613)] = 74027, - [SMALL_STATE(1614)] = 74079, - [SMALL_STATE(1615)] = 74137, - [SMALL_STATE(1616)] = 74195, - [SMALL_STATE(1617)] = 74247, - [SMALL_STATE(1618)] = 74299, - [SMALL_STATE(1619)] = 74351, - [SMALL_STATE(1620)] = 74403, - [SMALL_STATE(1621)] = 74455, - [SMALL_STATE(1622)] = 74507, - [SMALL_STATE(1623)] = 74559, - [SMALL_STATE(1624)] = 74617, - [SMALL_STATE(1625)] = 74669, - [SMALL_STATE(1626)] = 74721, - [SMALL_STATE(1627)] = 74779, - [SMALL_STATE(1628)] = 74835, - [SMALL_STATE(1629)] = 74887, - [SMALL_STATE(1630)] = 74939, - [SMALL_STATE(1631)] = 74991, - [SMALL_STATE(1632)] = 75043, - [SMALL_STATE(1633)] = 75101, - [SMALL_STATE(1634)] = 75153, - [SMALL_STATE(1635)] = 75205, - [SMALL_STATE(1636)] = 75257, - [SMALL_STATE(1637)] = 75315, - [SMALL_STATE(1638)] = 75367, - [SMALL_STATE(1639)] = 75419, - [SMALL_STATE(1640)] = 75471, - [SMALL_STATE(1641)] = 75523, - [SMALL_STATE(1642)] = 75575, - [SMALL_STATE(1643)] = 75627, - [SMALL_STATE(1644)] = 75679, - [SMALL_STATE(1645)] = 75731, - [SMALL_STATE(1646)] = 75783, - [SMALL_STATE(1647)] = 75835, - [SMALL_STATE(1648)] = 75887, - [SMALL_STATE(1649)] = 75939, - [SMALL_STATE(1650)] = 75991, - [SMALL_STATE(1651)] = 76043, - [SMALL_STATE(1652)] = 76095, - [SMALL_STATE(1653)] = 76153, - [SMALL_STATE(1654)] = 76211, - [SMALL_STATE(1655)] = 76263, - [SMALL_STATE(1656)] = 76315, - [SMALL_STATE(1657)] = 76367, - [SMALL_STATE(1658)] = 76419, - [SMALL_STATE(1659)] = 76471, - [SMALL_STATE(1660)] = 76523, - [SMALL_STATE(1661)] = 76575, - [SMALL_STATE(1662)] = 76627, - [SMALL_STATE(1663)] = 76685, - [SMALL_STATE(1664)] = 76743, - [SMALL_STATE(1665)] = 76795, - [SMALL_STATE(1666)] = 76853, - [SMALL_STATE(1667)] = 76911, - [SMALL_STATE(1668)] = 76969, - [SMALL_STATE(1669)] = 77027, - [SMALL_STATE(1670)] = 77085, - [SMALL_STATE(1671)] = 77137, - [SMALL_STATE(1672)] = 77195, - [SMALL_STATE(1673)] = 77247, - [SMALL_STATE(1674)] = 77299, - [SMALL_STATE(1675)] = 77357, - [SMALL_STATE(1676)] = 77415, - [SMALL_STATE(1677)] = 77473, - [SMALL_STATE(1678)] = 77531, - [SMALL_STATE(1679)] = 77589, - [SMALL_STATE(1680)] = 77641, - [SMALL_STATE(1681)] = 77693, - [SMALL_STATE(1682)] = 77745, - [SMALL_STATE(1683)] = 77797, - [SMALL_STATE(1684)] = 77849, - [SMALL_STATE(1685)] = 77951, - [SMALL_STATE(1686)] = 78009, - [SMALL_STATE(1687)] = 78067, - [SMALL_STATE(1688)] = 78119, - [SMALL_STATE(1689)] = 78177, - [SMALL_STATE(1690)] = 78235, - [SMALL_STATE(1691)] = 78337, - [SMALL_STATE(1692)] = 78395, - [SMALL_STATE(1693)] = 78453, - [SMALL_STATE(1694)] = 78513, - [SMALL_STATE(1695)] = 78565, - [SMALL_STATE(1696)] = 78631, - [SMALL_STATE(1697)] = 78683, - [SMALL_STATE(1698)] = 78741, - [SMALL_STATE(1699)] = 78805, - [SMALL_STATE(1700)] = 78857, - [SMALL_STATE(1701)] = 78909, - [SMALL_STATE(1702)] = 78961, - [SMALL_STATE(1703)] = 79013, - [SMALL_STATE(1704)] = 79065, - [SMALL_STATE(1705)] = 79117, - [SMALL_STATE(1706)] = 79169, - [SMALL_STATE(1707)] = 79221, - [SMALL_STATE(1708)] = 79279, - [SMALL_STATE(1709)] = 79378, - [SMALL_STATE(1710)] = 79429, - [SMALL_STATE(1711)] = 79480, - [SMALL_STATE(1712)] = 79537, - [SMALL_STATE(1713)] = 79588, - [SMALL_STATE(1714)] = 79639, - [SMALL_STATE(1715)] = 79690, - [SMALL_STATE(1716)] = 79747, - [SMALL_STATE(1717)] = 79804, - [SMALL_STATE(1718)] = 79855, - [SMALL_STATE(1719)] = 79906, - [SMALL_STATE(1720)] = 79957, - [SMALL_STATE(1721)] = 80012, - [SMALL_STATE(1722)] = 80067, - [SMALL_STATE(1723)] = 80122, - [SMALL_STATE(1724)] = 80179, - [SMALL_STATE(1725)] = 80230, - [SMALL_STATE(1726)] = 80281, - [SMALL_STATE(1727)] = 80332, - [SMALL_STATE(1728)] = 80383, - [SMALL_STATE(1729)] = 80434, - [SMALL_STATE(1730)] = 80485, - [SMALL_STATE(1731)] = 80536, - [SMALL_STATE(1732)] = 80587, - [SMALL_STATE(1733)] = 80638, - [SMALL_STATE(1734)] = 80689, - [SMALL_STATE(1735)] = 80740, - [SMALL_STATE(1736)] = 80791, - [SMALL_STATE(1737)] = 80842, - [SMALL_STATE(1738)] = 80909, - [SMALL_STATE(1739)] = 80960, - [SMALL_STATE(1740)] = 81011, - [SMALL_STATE(1741)] = 81062, - [SMALL_STATE(1742)] = 81113, - [SMALL_STATE(1743)] = 81212, - [SMALL_STATE(1744)] = 81263, - [SMALL_STATE(1745)] = 81332, - [SMALL_STATE(1746)] = 81383, - [SMALL_STATE(1747)] = 81440, - [SMALL_STATE(1748)] = 81491, - [SMALL_STATE(1749)] = 81548, - [SMALL_STATE(1750)] = 81605, - [SMALL_STATE(1751)] = 81662, - [SMALL_STATE(1752)] = 81725, - [SMALL_STATE(1753)] = 81776, - [SMALL_STATE(1754)] = 81833, - [SMALL_STATE(1755)] = 81932, - [SMALL_STATE(1756)] = 81983, - [SMALL_STATE(1757)] = 82038, - [SMALL_STATE(1758)] = 82095, - [SMALL_STATE(1759)] = 82146, - [SMALL_STATE(1760)] = 82203, - [SMALL_STATE(1761)] = 82260, - [SMALL_STATE(1762)] = 82317, - [SMALL_STATE(1763)] = 82368, - [SMALL_STATE(1764)] = 82419, - [SMALL_STATE(1765)] = 82470, - [SMALL_STATE(1766)] = 82521, - [SMALL_STATE(1767)] = 82578, - [SMALL_STATE(1768)] = 82635, - [SMALL_STATE(1769)] = 82686, - [SMALL_STATE(1770)] = 82785, - [SMALL_STATE(1771)] = 82884, - [SMALL_STATE(1772)] = 82939, - [SMALL_STATE(1773)] = 82990, - [SMALL_STATE(1774)] = 83041, - [SMALL_STATE(1775)] = 83092, - [SMALL_STATE(1776)] = 83143, - [SMALL_STATE(1777)] = 83194, - [SMALL_STATE(1778)] = 83245, - [SMALL_STATE(1779)] = 83302, - [SMALL_STATE(1780)] = 83359, - [SMALL_STATE(1781)] = 83410, - [SMALL_STATE(1782)] = 83509, - [SMALL_STATE(1783)] = 83560, - [SMALL_STATE(1784)] = 83611, - [SMALL_STATE(1785)] = 83662, - [SMALL_STATE(1786)] = 83761, - [SMALL_STATE(1787)] = 83812, - [SMALL_STATE(1788)] = 83867, - [SMALL_STATE(1789)] = 83918, - [SMALL_STATE(1790)] = 84017, - [SMALL_STATE(1791)] = 84072, - [SMALL_STATE(1792)] = 84129, - [SMALL_STATE(1793)] = 84180, - [SMALL_STATE(1794)] = 84279, - [SMALL_STATE(1795)] = 84330, - [SMALL_STATE(1796)] = 84381, - [SMALL_STATE(1797)] = 84432, - [SMALL_STATE(1798)] = 84483, - [SMALL_STATE(1799)] = 84582, - [SMALL_STATE(1800)] = 84639, - [SMALL_STATE(1801)] = 84696, - [SMALL_STATE(1802)] = 84751, - [SMALL_STATE(1803)] = 84802, - [SMALL_STATE(1804)] = 84857, - [SMALL_STATE(1805)] = 84908, - [SMALL_STATE(1806)] = 85007, - [SMALL_STATE(1807)] = 85058, - [SMALL_STATE(1808)] = 85109, - [SMALL_STATE(1809)] = 85160, - [SMALL_STATE(1810)] = 85215, - [SMALL_STATE(1811)] = 85266, - [SMALL_STATE(1812)] = 85321, - [SMALL_STATE(1813)] = 85372, - [SMALL_STATE(1814)] = 85427, - [SMALL_STATE(1815)] = 85482, - [SMALL_STATE(1816)] = 85533, - [SMALL_STATE(1817)] = 85584, - [SMALL_STATE(1818)] = 85635, - [SMALL_STATE(1819)] = 85690, - [SMALL_STATE(1820)] = 85745, - [SMALL_STATE(1821)] = 85800, - [SMALL_STATE(1822)] = 85851, - [SMALL_STATE(1823)] = 85902, - [SMALL_STATE(1824)] = 85961, - [SMALL_STATE(1825)] = 86020, - [SMALL_STATE(1826)] = 86075, - [SMALL_STATE(1827)] = 86126, - [SMALL_STATE(1828)] = 86181, - [SMALL_STATE(1829)] = 86236, - [SMALL_STATE(1830)] = 86287, - [SMALL_STATE(1831)] = 86338, - [SMALL_STATE(1832)] = 86389, - [SMALL_STATE(1833)] = 86440, - [SMALL_STATE(1834)] = 86491, - [SMALL_STATE(1835)] = 86546, - [SMALL_STATE(1836)] = 86597, - [SMALL_STATE(1837)] = 86648, - [SMALL_STATE(1838)] = 86699, - [SMALL_STATE(1839)] = 86750, - [SMALL_STATE(1840)] = 86801, - [SMALL_STATE(1841)] = 86852, - [SMALL_STATE(1842)] = 86903, - [SMALL_STATE(1843)] = 86954, - [SMALL_STATE(1844)] = 87009, - [SMALL_STATE(1845)] = 87060, - [SMALL_STATE(1846)] = 87111, - [SMALL_STATE(1847)] = 87162, - [SMALL_STATE(1848)] = 87213, - [SMALL_STATE(1849)] = 87264, - [SMALL_STATE(1850)] = 87321, - [SMALL_STATE(1851)] = 87378, - [SMALL_STATE(1852)] = 87435, - [SMALL_STATE(1853)] = 87486, - [SMALL_STATE(1854)] = 87537, - [SMALL_STATE(1855)] = 87588, - [SMALL_STATE(1856)] = 87639, - [SMALL_STATE(1857)] = 87690, - [SMALL_STATE(1858)] = 87741, - [SMALL_STATE(1859)] = 87792, - [SMALL_STATE(1860)] = 87843, - [SMALL_STATE(1861)] = 87894, - [SMALL_STATE(1862)] = 87945, - [SMALL_STATE(1863)] = 87996, - [SMALL_STATE(1864)] = 88047, - [SMALL_STATE(1865)] = 88098, - [SMALL_STATE(1866)] = 88187, - [SMALL_STATE(1867)] = 88238, - [SMALL_STATE(1868)] = 88293, - [SMALL_STATE(1869)] = 88348, - [SMALL_STATE(1870)] = 88405, - [SMALL_STATE(1871)] = 88460, - [SMALL_STATE(1872)] = 88511, - [SMALL_STATE(1873)] = 88562, - [SMALL_STATE(1874)] = 88661, - [SMALL_STATE(1875)] = 88712, - [SMALL_STATE(1876)] = 88769, - [SMALL_STATE(1877)] = 88826, - [SMALL_STATE(1878)] = 88877, - [SMALL_STATE(1879)] = 88932, - [SMALL_STATE(1880)] = 88987, - [SMALL_STATE(1881)] = 89038, - [SMALL_STATE(1882)] = 89089, - [SMALL_STATE(1883)] = 89146, - [SMALL_STATE(1884)] = 89245, - [SMALL_STATE(1885)] = 89344, - [SMALL_STATE(1886)] = 89399, - [SMALL_STATE(1887)] = 89454, - [SMALL_STATE(1888)] = 89511, - [SMALL_STATE(1889)] = 89562, - [SMALL_STATE(1890)] = 89619, - [SMALL_STATE(1891)] = 89676, - [SMALL_STATE(1892)] = 89727, - [SMALL_STATE(1893)] = 89782, - [SMALL_STATE(1894)] = 89839, - [SMALL_STATE(1895)] = 89896, - [SMALL_STATE(1896)] = 89953, - [SMALL_STATE(1897)] = 90004, - [SMALL_STATE(1898)] = 90103, - [SMALL_STATE(1899)] = 90160, - [SMALL_STATE(1900)] = 90217, - [SMALL_STATE(1901)] = 90274, - [SMALL_STATE(1902)] = 90331, - [SMALL_STATE(1903)] = 90388, - [SMALL_STATE(1904)] = 90443, - [SMALL_STATE(1905)] = 90494, - [SMALL_STATE(1906)] = 90549, - [SMALL_STATE(1907)] = 90600, - [SMALL_STATE(1908)] = 90660, - [SMALL_STATE(1909)] = 90720, - [SMALL_STATE(1910)] = 90780, - [SMALL_STATE(1911)] = 90830, - [SMALL_STATE(1912)] = 90880, - [SMALL_STATE(1913)] = 90930, - [SMALL_STATE(1914)] = 91026, - [SMALL_STATE(1915)] = 91080, - [SMALL_STATE(1916)] = 91176, - [SMALL_STATE(1917)] = 91230, - [SMALL_STATE(1918)] = 91326, - [SMALL_STATE(1919)] = 91422, - [SMALL_STATE(1920)] = 91518, - [SMALL_STATE(1921)] = 91614, - [SMALL_STATE(1922)] = 91710, - [SMALL_STATE(1923)] = 91806, - [SMALL_STATE(1924)] = 91856, - [SMALL_STATE(1925)] = 91906, - [SMALL_STATE(1926)] = 91962, - [SMALL_STATE(1927)] = 92058, - [SMALL_STATE(1928)] = 92154, - [SMALL_STATE(1929)] = 92250, - [SMALL_STATE(1930)] = 92346, - [SMALL_STATE(1931)] = 92402, - [SMALL_STATE(1932)] = 92458, - [SMALL_STATE(1933)] = 92554, - [SMALL_STATE(1934)] = 92604, - [SMALL_STATE(1935)] = 92660, - [SMALL_STATE(1936)] = 92756, - [SMALL_STATE(1937)] = 92806, - [SMALL_STATE(1938)] = 92902, - [SMALL_STATE(1939)] = 92998, - [SMALL_STATE(1940)] = 93058, - [SMALL_STATE(1941)] = 93154, - [SMALL_STATE(1942)] = 93250, - [SMALL_STATE(1943)] = 93346, - [SMALL_STATE(1944)] = 93396, - [SMALL_STATE(1945)] = 93492, - [SMALL_STATE(1946)] = 93588, - [SMALL_STATE(1947)] = 93684, - [SMALL_STATE(1948)] = 93780, - [SMALL_STATE(1949)] = 93876, - [SMALL_STATE(1950)] = 93972, - [SMALL_STATE(1951)] = 94022, - [SMALL_STATE(1952)] = 94072, - [SMALL_STATE(1953)] = 94168, - [SMALL_STATE(1954)] = 94218, - [SMALL_STATE(1955)] = 94314, - [SMALL_STATE(1956)] = 94410, - [SMALL_STATE(1957)] = 94460, - [SMALL_STATE(1958)] = 94556, - [SMALL_STATE(1959)] = 94652, - [SMALL_STATE(1960)] = 94748, - [SMALL_STATE(1961)] = 94844, - [SMALL_STATE(1962)] = 94940, - [SMALL_STATE(1963)] = 94990, - [SMALL_STATE(1964)] = 95086, - [SMALL_STATE(1965)] = 95182, - [SMALL_STATE(1966)] = 95278, - [SMALL_STATE(1967)] = 95374, - [SMALL_STATE(1968)] = 95470, - [SMALL_STATE(1969)] = 95524, - [SMALL_STATE(1970)] = 95574, - [SMALL_STATE(1971)] = 95630, - [SMALL_STATE(1972)] = 95680, - [SMALL_STATE(1973)] = 95776, - [SMALL_STATE(1974)] = 95826, - [SMALL_STATE(1975)] = 95922, - [SMALL_STATE(1976)] = 95972, - [SMALL_STATE(1977)] = 96068, - [SMALL_STATE(1978)] = 96164, - [SMALL_STATE(1979)] = 96260, - [SMALL_STATE(1980)] = 96310, - [SMALL_STATE(1981)] = 96406, - [SMALL_STATE(1982)] = 96456, - [SMALL_STATE(1983)] = 96506, - [SMALL_STATE(1984)] = 96602, - [SMALL_STATE(1985)] = 96652, - [SMALL_STATE(1986)] = 96702, - [SMALL_STATE(1987)] = 96752, - [SMALL_STATE(1988)] = 96802, - [SMALL_STATE(1989)] = 96852, - [SMALL_STATE(1990)] = 96948, - [SMALL_STATE(1991)] = 96998, - [SMALL_STATE(1992)] = 97054, - [SMALL_STATE(1993)] = 97110, - [SMALL_STATE(1994)] = 97206, - [SMALL_STATE(1995)] = 97256, - [SMALL_STATE(1996)] = 97312, - [SMALL_STATE(1997)] = 97362, - [SMALL_STATE(1998)] = 97412, - [SMALL_STATE(1999)] = 97508, - [SMALL_STATE(2000)] = 97568, - [SMALL_STATE(2001)] = 97664, - [SMALL_STATE(2002)] = 97718, - [SMALL_STATE(2003)] = 97768, - [SMALL_STATE(2004)] = 97818, - [SMALL_STATE(2005)] = 97868, - [SMALL_STATE(2006)] = 97918, - [SMALL_STATE(2007)] = 97968, - [SMALL_STATE(2008)] = 98018, - [SMALL_STATE(2009)] = 98068, - [SMALL_STATE(2010)] = 98118, - [SMALL_STATE(2011)] = 98168, - [SMALL_STATE(2012)] = 98218, - [SMALL_STATE(2013)] = 98314, - [SMALL_STATE(2014)] = 98364, - [SMALL_STATE(2015)] = 98414, - [SMALL_STATE(2016)] = 98510, - [SMALL_STATE(2017)] = 98570, - [SMALL_STATE(2018)] = 98620, - [SMALL_STATE(2019)] = 98678, - [SMALL_STATE(2020)] = 98736, - [SMALL_STATE(2021)] = 98786, - [SMALL_STATE(2022)] = 98836, - [SMALL_STATE(2023)] = 98886, - [SMALL_STATE(2024)] = 98936, - [SMALL_STATE(2025)] = 98986, - [SMALL_STATE(2026)] = 99082, - [SMALL_STATE(2027)] = 99136, - [SMALL_STATE(2028)] = 99190, - [SMALL_STATE(2029)] = 99240, - [SMALL_STATE(2030)] = 99290, - [SMALL_STATE(2031)] = 99344, - [SMALL_STATE(2032)] = 99394, - [SMALL_STATE(2033)] = 99490, - [SMALL_STATE(2034)] = 99586, - [SMALL_STATE(2035)] = 99636, - [SMALL_STATE(2036)] = 99696, - [SMALL_STATE(2037)] = 99746, - [SMALL_STATE(2038)] = 99796, - [SMALL_STATE(2039)] = 99846, - [SMALL_STATE(2040)] = 99896, - [SMALL_STATE(2041)] = 99992, - [SMALL_STATE(2042)] = 100088, - [SMALL_STATE(2043)] = 100142, - [SMALL_STATE(2044)] = 100192, - [SMALL_STATE(2045)] = 100246, - [SMALL_STATE(2046)] = 100300, - [SMALL_STATE(2047)] = 100396, - [SMALL_STATE(2048)] = 100446, - [SMALL_STATE(2049)] = 100542, - [SMALL_STATE(2050)] = 100602, - [SMALL_STATE(2051)] = 100698, - [SMALL_STATE(2052)] = 100748, - [SMALL_STATE(2053)] = 100798, - [SMALL_STATE(2054)] = 100848, - [SMALL_STATE(2055)] = 100898, - [SMALL_STATE(2056)] = 100948, - [SMALL_STATE(2057)] = 100998, - [SMALL_STATE(2058)] = 101058, - [SMALL_STATE(2059)] = 101154, - [SMALL_STATE(2060)] = 101204, - [SMALL_STATE(2061)] = 101254, - [SMALL_STATE(2062)] = 101314, - [SMALL_STATE(2063)] = 101364, - [SMALL_STATE(2064)] = 101414, - [SMALL_STATE(2065)] = 101510, - [SMALL_STATE(2066)] = 101560, - [SMALL_STATE(2067)] = 101656, - [SMALL_STATE(2068)] = 101752, - [SMALL_STATE(2069)] = 101812, - [SMALL_STATE(2070)] = 101862, - [SMALL_STATE(2071)] = 101922, - [SMALL_STATE(2072)] = 102018, - [SMALL_STATE(2073)] = 102072, - [SMALL_STATE(2074)] = 102132, - [SMALL_STATE(2075)] = 102192, - [SMALL_STATE(2076)] = 102252, - [SMALL_STATE(2077)] = 102302, - [SMALL_STATE(2078)] = 102362, - [SMALL_STATE(2079)] = 102416, - [SMALL_STATE(2080)] = 102512, - [SMALL_STATE(2081)] = 102608, - [SMALL_STATE(2082)] = 102668, - [SMALL_STATE(2083)] = 102718, - [SMALL_STATE(2084)] = 102778, - [SMALL_STATE(2085)] = 102838, - [SMALL_STATE(2086)] = 102888, - [SMALL_STATE(2087)] = 102948, - [SMALL_STATE(2088)] = 103002, - [SMALL_STATE(2089)] = 103062, - [SMALL_STATE(2090)] = 103158, - [SMALL_STATE(2091)] = 103218, - [SMALL_STATE(2092)] = 103278, - [SMALL_STATE(2093)] = 103338, - [SMALL_STATE(2094)] = 103398, - [SMALL_STATE(2095)] = 103458, - [SMALL_STATE(2096)] = 103518, - [SMALL_STATE(2097)] = 103578, - [SMALL_STATE(2098)] = 103638, - [SMALL_STATE(2099)] = 103698, - [SMALL_STATE(2100)] = 103794, - [SMALL_STATE(2101)] = 103854, - [SMALL_STATE(2102)] = 103914, - [SMALL_STATE(2103)] = 103974, - [SMALL_STATE(2104)] = 104034, - [SMALL_STATE(2105)] = 104094, - [SMALL_STATE(2106)] = 104154, - [SMALL_STATE(2107)] = 104214, - [SMALL_STATE(2108)] = 104274, - [SMALL_STATE(2109)] = 104334, - [SMALL_STATE(2110)] = 104394, - [SMALL_STATE(2111)] = 104448, - [SMALL_STATE(2112)] = 104498, - [SMALL_STATE(2113)] = 104552, - [SMALL_STATE(2114)] = 104606, - [SMALL_STATE(2115)] = 104660, - [SMALL_STATE(2116)] = 104756, - [SMALL_STATE(2117)] = 104810, - [SMALL_STATE(2118)] = 104864, - [SMALL_STATE(2119)] = 104960, - [SMALL_STATE(2120)] = 105056, - [SMALL_STATE(2121)] = 105152, - [SMALL_STATE(2122)] = 105206, - [SMALL_STATE(2123)] = 105256, - [SMALL_STATE(2124)] = 105316, - [SMALL_STATE(2125)] = 105376, - [SMALL_STATE(2126)] = 105434, - [SMALL_STATE(2127)] = 105530, - [SMALL_STATE(2128)] = 105580, - [SMALL_STATE(2129)] = 105640, - [SMALL_STATE(2130)] = 105736, - [SMALL_STATE(2131)] = 105796, - [SMALL_STATE(2132)] = 105892, - [SMALL_STATE(2133)] = 105988, - [SMALL_STATE(2134)] = 106084, - [SMALL_STATE(2135)] = 106144, - [SMALL_STATE(2136)] = 106240, - [SMALL_STATE(2137)] = 106300, - [SMALL_STATE(2138)] = 106350, - [SMALL_STATE(2139)] = 106446, - [SMALL_STATE(2140)] = 106506, - [SMALL_STATE(2141)] = 106566, - [SMALL_STATE(2142)] = 106626, - [SMALL_STATE(2143)] = 106680, - [SMALL_STATE(2144)] = 106740, - [SMALL_STATE(2145)] = 106790, - [SMALL_STATE(2146)] = 106886, - [SMALL_STATE(2147)] = 106946, - [SMALL_STATE(2148)] = 107042, - [SMALL_STATE(2149)] = 107098, - [SMALL_STATE(2150)] = 107152, - [SMALL_STATE(2151)] = 107202, - [SMALL_STATE(2152)] = 107262, - [SMALL_STATE(2153)] = 107358, - [SMALL_STATE(2154)] = 107418, - [SMALL_STATE(2155)] = 107514, - [SMALL_STATE(2156)] = 107610, - [SMALL_STATE(2157)] = 107670, - [SMALL_STATE(2158)] = 107766, - [SMALL_STATE(2159)] = 107816, - [SMALL_STATE(2160)] = 107912, - [SMALL_STATE(2161)] = 108008, - [SMALL_STATE(2162)] = 108104, - [SMALL_STATE(2163)] = 108200, - [SMALL_STATE(2164)] = 108296, - [SMALL_STATE(2165)] = 108392, - [SMALL_STATE(2166)] = 108452, - [SMALL_STATE(2167)] = 108548, - [SMALL_STATE(2168)] = 108644, - [SMALL_STATE(2169)] = 108740, - [SMALL_STATE(2170)] = 108836, - [SMALL_STATE(2171)] = 108932, - [SMALL_STATE(2172)] = 108992, - [SMALL_STATE(2173)] = 109088, - [SMALL_STATE(2174)] = 109184, - [SMALL_STATE(2175)] = 109244, - [SMALL_STATE(2176)] = 109340, - [SMALL_STATE(2177)] = 109400, - [SMALL_STATE(2178)] = 109454, - [SMALL_STATE(2179)] = 109550, - [SMALL_STATE(2180)] = 109600, - [SMALL_STATE(2181)] = 109696, - [SMALL_STATE(2182)] = 109792, - [SMALL_STATE(2183)] = 109852, - [SMALL_STATE(2184)] = 109912, - [SMALL_STATE(2185)] = 110008, - [SMALL_STATE(2186)] = 110104, - [SMALL_STATE(2187)] = 110200, - [SMALL_STATE(2188)] = 110250, - [SMALL_STATE(2189)] = 110346, - [SMALL_STATE(2190)] = 110406, - [SMALL_STATE(2191)] = 110502, - [SMALL_STATE(2192)] = 110598, - [SMALL_STATE(2193)] = 110658, - [SMALL_STATE(2194)] = 110718, - [SMALL_STATE(2195)] = 110778, - [SMALL_STATE(2196)] = 110828, - [SMALL_STATE(2197)] = 110888, - [SMALL_STATE(2198)] = 110948, - [SMALL_STATE(2199)] = 111008, - [SMALL_STATE(2200)] = 111068, - [SMALL_STATE(2201)] = 111128, - [SMALL_STATE(2202)] = 111188, - [SMALL_STATE(2203)] = 111248, - [SMALL_STATE(2204)] = 111308, - [SMALL_STATE(2205)] = 111368, - [SMALL_STATE(2206)] = 111428, - [SMALL_STATE(2207)] = 111488, - [SMALL_STATE(2208)] = 111546, - [SMALL_STATE(2209)] = 111606, - [SMALL_STATE(2210)] = 111702, - [SMALL_STATE(2211)] = 111752, - [SMALL_STATE(2212)] = 111812, - [SMALL_STATE(2213)] = 111908, - [SMALL_STATE(2214)] = 112004, - [SMALL_STATE(2215)] = 112054, - [SMALL_STATE(2216)] = 112114, - [SMALL_STATE(2217)] = 112174, - [SMALL_STATE(2218)] = 112227, - [SMALL_STATE(2219)] = 112276, - [SMALL_STATE(2220)] = 112325, - [SMALL_STATE(2221)] = 112374, - [SMALL_STATE(2222)] = 112423, - [SMALL_STATE(2223)] = 112472, - [SMALL_STATE(2224)] = 112521, - [SMALL_STATE(2225)] = 112570, - [SMALL_STATE(2226)] = 112619, - [SMALL_STATE(2227)] = 112668, - [SMALL_STATE(2228)] = 112717, - [SMALL_STATE(2229)] = 112770, - [SMALL_STATE(2230)] = 112819, - [SMALL_STATE(2231)] = 112868, - [SMALL_STATE(2232)] = 112921, - [SMALL_STATE(2233)] = 112970, - [SMALL_STATE(2234)] = 113019, - [SMALL_STATE(2235)] = 113068, - [SMALL_STATE(2236)] = 113117, - [SMALL_STATE(2237)] = 113166, - [SMALL_STATE(2238)] = 113215, - [SMALL_STATE(2239)] = 113268, - [SMALL_STATE(2240)] = 113317, - [SMALL_STATE(2241)] = 113366, - [SMALL_STATE(2242)] = 113415, - [SMALL_STATE(2243)] = 113464, - [SMALL_STATE(2244)] = 113513, - [SMALL_STATE(2245)] = 113562, - [SMALL_STATE(2246)] = 113611, - [SMALL_STATE(2247)] = 113664, - [SMALL_STATE(2248)] = 113713, - [SMALL_STATE(2249)] = 113762, - [SMALL_STATE(2250)] = 113815, - [SMALL_STATE(2251)] = 113868, - [SMALL_STATE(2252)] = 113917, - [SMALL_STATE(2253)] = 113970, - [SMALL_STATE(2254)] = 114023, - [SMALL_STATE(2255)] = 114078, - [SMALL_STATE(2256)] = 114133, - [SMALL_STATE(2257)] = 114188, - [SMALL_STATE(2258)] = 114243, - [SMALL_STATE(2259)] = 114292, - [SMALL_STATE(2260)] = 114345, - [SMALL_STATE(2261)] = 114394, - [SMALL_STATE(2262)] = 114443, - [SMALL_STATE(2263)] = 114502, - [SMALL_STATE(2264)] = 114551, - [SMALL_STATE(2265)] = 114604, - [SMALL_STATE(2266)] = 114653, + [SMALL_STATE(495)] = 0, + [SMALL_STATE(496)] = 119, + [SMALL_STATE(497)] = 238, + [SMALL_STATE(498)] = 356, + [SMALL_STATE(499)] = 474, + [SMALL_STATE(500)] = 589, + [SMALL_STATE(501)] = 706, + [SMALL_STATE(502)] = 819, + [SMALL_STATE(503)] = 932, + [SMALL_STATE(504)] = 1049, + [SMALL_STATE(505)] = 1166, + [SMALL_STATE(506)] = 1283, + [SMALL_STATE(507)] = 1391, + [SMALL_STATE(508)] = 1503, + [SMALL_STATE(509)] = 1611, + [SMALL_STATE(510)] = 1725, + [SMALL_STATE(511)] = 1801, + [SMALL_STATE(512)] = 1915, + [SMALL_STATE(513)] = 2027, + [SMALL_STATE(514)] = 2103, + [SMALL_STATE(515)] = 2219, + [SMALL_STATE(516)] = 2333, + [SMALL_STATE(517)] = 2441, + [SMALL_STATE(518)] = 2557, + [SMALL_STATE(519)] = 2664, + [SMALL_STATE(520)] = 2771, + [SMALL_STATE(521)] = 2882, + [SMALL_STATE(522)] = 2993, + [SMALL_STATE(523)] = 3104, + [SMALL_STATE(524)] = 3211, + [SMALL_STATE(525)] = 3324, + [SMALL_STATE(526)] = 3435, + [SMALL_STATE(527)] = 3510, + [SMALL_STATE(528)] = 3585, + [SMALL_STATE(529)] = 3660, + [SMALL_STATE(530)] = 3735, + [SMALL_STATE(531)] = 3848, + [SMALL_STATE(532)] = 3954, + [SMALL_STATE(533)] = 4028, + [SMALL_STATE(534)] = 4102, + [SMALL_STATE(535)] = 4214, + [SMALL_STATE(536)] = 4320, + [SMALL_STATE(537)] = 4428, + [SMALL_STATE(538)] = 4502, + [SMALL_STATE(539)] = 4608, + [SMALL_STATE(540)] = 4672, + [SMALL_STATE(541)] = 4778, + [SMALL_STATE(542)] = 4852, + [SMALL_STATE(543)] = 4926, + [SMALL_STATE(544)] = 5032, + [SMALL_STATE(545)] = 5144, + [SMALL_STATE(546)] = 5250, + [SMALL_STATE(547)] = 5360, + [SMALL_STATE(548)] = 5472, + [SMALL_STATE(549)] = 5582, + [SMALL_STATE(550)] = 5690, + [SMALL_STATE(551)] = 5802, + [SMALL_STATE(552)] = 5876, + [SMALL_STATE(553)] = 5949, + [SMALL_STATE(554)] = 6016, + [SMALL_STATE(555)] = 6085, + [SMALL_STATE(556)] = 6154, + [SMALL_STATE(557)] = 6227, + [SMALL_STATE(558)] = 6294, + [SMALL_STATE(559)] = 6367, + [SMALL_STATE(560)] = 6468, + [SMALL_STATE(561)] = 6571, + [SMALL_STATE(562)] = 6644, + [SMALL_STATE(563)] = 6755, + [SMALL_STATE(564)] = 6856, + [SMALL_STATE(565)] = 6929, + [SMALL_STATE(566)] = 7032, + [SMALL_STATE(567)] = 7137, + [SMALL_STATE(568)] = 7204, + [SMALL_STATE(569)] = 7317, + [SMALL_STATE(570)] = 7422, + [SMALL_STATE(571)] = 7495, + [SMALL_STATE(572)] = 7562, + [SMALL_STATE(573)] = 7673, + [SMALL_STATE(574)] = 7786, + [SMALL_STATE(575)] = 7897, + [SMALL_STATE(576)] = 7998, + [SMALL_STATE(577)] = 8103, + [SMALL_STATE(578)] = 8175, + [SMALL_STATE(579)] = 8303, + [SMALL_STATE(580)] = 8401, + [SMALL_STATE(581)] = 8529, + [SMALL_STATE(582)] = 8629, + [SMALL_STATE(583)] = 8727, + [SMALL_STATE(584)] = 8837, + [SMALL_STATE(585)] = 8965, + [SMALL_STATE(586)] = 9079, + [SMALL_STATE(587)] = 9189, + [SMALL_STATE(588)] = 9317, + [SMALL_STATE(589)] = 9389, + [SMALL_STATE(590)] = 9517, + [SMALL_STATE(591)] = 9585, + [SMALL_STATE(592)] = 9657, + [SMALL_STATE(593)] = 9725, + [SMALL_STATE(594)] = 9853, + [SMALL_STATE(595)] = 9963, + [SMALL_STATE(596)] = 10091, + [SMALL_STATE(597)] = 10205, + [SMALL_STATE(598)] = 10315, + [SMALL_STATE(599)] = 10415, + [SMALL_STATE(600)] = 10525, + [SMALL_STATE(601)] = 10635, + [SMALL_STATE(602)] = 10763, + [SMALL_STATE(603)] = 10863, + [SMALL_STATE(604)] = 10935, + [SMALL_STATE(605)] = 11006, + [SMALL_STATE(606)] = 11105, + [SMALL_STATE(607)] = 11172, + [SMALL_STATE(608)] = 11239, + [SMALL_STATE(609)] = 11338, + [SMALL_STATE(610)] = 11405, + [SMALL_STATE(611)] = 11504, + [SMALL_STATE(612)] = 11601, + [SMALL_STATE(613)] = 11698, + [SMALL_STATE(614)] = 11765, + [SMALL_STATE(615)] = 11862, + [SMALL_STATE(616)] = 11959, + [SMALL_STATE(617)] = 12058, + [SMALL_STATE(618)] = 12157, + [SMALL_STATE(619)] = 12228, + [SMALL_STATE(620)] = 12299, + [SMALL_STATE(621)] = 12370, + [SMALL_STATE(622)] = 12441, + [SMALL_STATE(623)] = 12512, + [SMALL_STATE(624)] = 12583, + [SMALL_STATE(625)] = 12654, + [SMALL_STATE(626)] = 12763, + [SMALL_STATE(627)] = 12872, + [SMALL_STATE(628)] = 12979, + [SMALL_STATE(629)] = 13088, + [SMALL_STATE(630)] = 13197, + [SMALL_STATE(631)] = 13304, + [SMALL_STATE(632)] = 13371, + [SMALL_STATE(633)] = 13470, + [SMALL_STATE(634)] = 13537, + [SMALL_STATE(635)] = 13603, + [SMALL_STATE(636)] = 13717, + [SMALL_STATE(637)] = 13787, + [SMALL_STATE(638)] = 13857, + [SMALL_STATE(639)] = 13919, + [SMALL_STATE(640)] = 14033, + [SMALL_STATE(641)] = 14147, + [SMALL_STATE(642)] = 14261, + [SMALL_STATE(643)] = 14375, + [SMALL_STATE(644)] = 14489, + [SMALL_STATE(645)] = 14551, + [SMALL_STATE(646)] = 14665, + [SMALL_STATE(647)] = 14779, + [SMALL_STATE(648)] = 14887, + [SMALL_STATE(649)] = 14983, + [SMALL_STATE(650)] = 15079, + [SMALL_STATE(651)] = 15145, + [SMALL_STATE(652)] = 15241, + [SMALL_STATE(653)] = 15337, + [SMALL_STATE(654)] = 15407, + [SMALL_STATE(655)] = 15477, + [SMALL_STATE(656)] = 15591, + [SMALL_STATE(657)] = 15651, + [SMALL_STATE(658)] = 15761, + [SMALL_STATE(659)] = 15821, + [SMALL_STATE(660)] = 15891, + [SMALL_STATE(661)] = 15999, + [SMALL_STATE(662)] = 16069, + [SMALL_STATE(663)] = 16139, + [SMALL_STATE(664)] = 16209, + [SMALL_STATE(665)] = 16279, + [SMALL_STATE(666)] = 16393, + [SMALL_STATE(667)] = 16507, + [SMALL_STATE(668)] = 16605, + [SMALL_STATE(669)] = 16701, + [SMALL_STATE(670)] = 16815, + [SMALL_STATE(671)] = 16911, + [SMALL_STATE(672)] = 17009, + [SMALL_STATE(673)] = 17105, + [SMALL_STATE(674)] = 17175, + [SMALL_STATE(675)] = 17277, + [SMALL_STATE(676)] = 17379, + [SMALL_STATE(677)] = 17475, + [SMALL_STATE(678)] = 17573, + [SMALL_STATE(679)] = 17639, + [SMALL_STATE(680)] = 17705, + [SMALL_STATE(681)] = 17807, + [SMALL_STATE(682)] = 17877, + [SMALL_STATE(683)] = 17947, + [SMALL_STATE(684)] = 18040, + [SMALL_STATE(685)] = 18143, + [SMALL_STATE(686)] = 18208, + [SMALL_STATE(687)] = 18277, + [SMALL_STATE(688)] = 18346, + [SMALL_STATE(689)] = 18415, + [SMALL_STATE(690)] = 18484, + [SMALL_STATE(691)] = 18587, + [SMALL_STATE(692)] = 18680, + [SMALL_STATE(693)] = 18775, + [SMALL_STATE(694)] = 18870, + [SMALL_STATE(695)] = 18973, + [SMALL_STATE(696)] = 19038, + [SMALL_STATE(697)] = 19099, + [SMALL_STATE(698)] = 19160, + [SMALL_STATE(699)] = 19229, + [SMALL_STATE(700)] = 19298, + [SMALL_STATE(701)] = 19367, + [SMALL_STATE(702)] = 19432, + [SMALL_STATE(703)] = 19491, + [SMALL_STATE(704)] = 19560, + [SMALL_STATE(705)] = 19629, + [SMALL_STATE(706)] = 19698, + [SMALL_STATE(707)] = 19767, + [SMALL_STATE(708)] = 19836, + [SMALL_STATE(709)] = 19931, + [SMALL_STATE(710)] = 20026, + [SMALL_STATE(711)] = 20095, + [SMALL_STATE(712)] = 20164, + [SMALL_STATE(713)] = 20259, + [SMALL_STATE(714)] = 20354, + [SMALL_STATE(715)] = 20423, + [SMALL_STATE(716)] = 20492, + [SMALL_STATE(717)] = 20561, + [SMALL_STATE(718)] = 20630, + [SMALL_STATE(719)] = 20695, + [SMALL_STATE(720)] = 20763, + [SMALL_STATE(721)] = 20827, + [SMALL_STATE(722)] = 20891, + [SMALL_STATE(723)] = 21003, + [SMALL_STATE(724)] = 21071, + [SMALL_STATE(725)] = 21165, + [SMALL_STATE(726)] = 21259, + [SMALL_STATE(727)] = 21323, + [SMALL_STATE(728)] = 21435, + [SMALL_STATE(729)] = 21501, + [SMALL_STATE(730)] = 21613, + [SMALL_STATE(731)] = 21681, + [SMALL_STATE(732)] = 21745, + [SMALL_STATE(733)] = 21837, + [SMALL_STATE(734)] = 21943, + [SMALL_STATE(735)] = 22011, + [SMALL_STATE(736)] = 22079, + [SMALL_STATE(737)] = 22147, + [SMALL_STATE(738)] = 22253, + [SMALL_STATE(739)] = 22321, + [SMALL_STATE(740)] = 22413, + [SMALL_STATE(741)] = 22481, + [SMALL_STATE(742)] = 22587, + [SMALL_STATE(743)] = 22651, + [SMALL_STATE(744)] = 22715, + [SMALL_STATE(745)] = 22779, + [SMALL_STATE(746)] = 22843, + [SMALL_STATE(747)] = 22938, + [SMALL_STATE(748)] = 22995, + [SMALL_STATE(749)] = 23058, + [SMALL_STATE(750)] = 23115, + [SMALL_STATE(751)] = 23172, + [SMALL_STATE(752)] = 23229, + [SMALL_STATE(753)] = 23292, + [SMALL_STATE(754)] = 23355, + [SMALL_STATE(755)] = 23412, + [SMALL_STATE(756)] = 23475, + [SMALL_STATE(757)] = 23538, + [SMALL_STATE(758)] = 23595, + [SMALL_STATE(759)] = 23652, + [SMALL_STATE(760)] = 23715, + [SMALL_STATE(761)] = 23784, + [SMALL_STATE(762)] = 23847, + [SMALL_STATE(763)] = 23910, + [SMALL_STATE(764)] = 23973, + [SMALL_STATE(765)] = 24036, + [SMALL_STATE(766)] = 24147, + [SMALL_STATE(767)] = 24210, + [SMALL_STATE(768)] = 24267, + [SMALL_STATE(769)] = 24324, + [SMALL_STATE(770)] = 24381, + [SMALL_STATE(771)] = 24438, + [SMALL_STATE(772)] = 24495, + [SMALL_STATE(773)] = 24558, + [SMALL_STATE(774)] = 24621, + [SMALL_STATE(775)] = 24678, + [SMALL_STATE(776)] = 24773, + [SMALL_STATE(777)] = 24830, + [SMALL_STATE(778)] = 24907, + [SMALL_STATE(779)] = 24964, + [SMALL_STATE(780)] = 25027, + [SMALL_STATE(781)] = 25092, + [SMALL_STATE(782)] = 25187, + [SMALL_STATE(783)] = 25258, + [SMALL_STATE(784)] = 25335, + [SMALL_STATE(785)] = 25398, + [SMALL_STATE(786)] = 25461, + [SMALL_STATE(787)] = 25572, + [SMALL_STATE(788)] = 25635, + [SMALL_STATE(789)] = 25698, + [SMALL_STATE(790)] = 25809, + [SMALL_STATE(791)] = 25872, + [SMALL_STATE(792)] = 25929, + [SMALL_STATE(793)] = 25986, + [SMALL_STATE(794)] = 26049, + [SMALL_STATE(795)] = 26112, + [SMALL_STATE(796)] = 26169, + [SMALL_STATE(797)] = 26232, + [SMALL_STATE(798)] = 26289, + [SMALL_STATE(799)] = 26345, + [SMALL_STATE(800)] = 26411, + [SMALL_STATE(801)] = 26473, + [SMALL_STATE(802)] = 26535, + [SMALL_STATE(803)] = 26597, + [SMALL_STATE(804)] = 26659, + [SMALL_STATE(805)] = 26721, + [SMALL_STATE(806)] = 26831, + [SMALL_STATE(807)] = 26891, + [SMALL_STATE(808)] = 27001, + [SMALL_STATE(809)] = 27061, + [SMALL_STATE(810)] = 27123, + [SMALL_STATE(811)] = 27179, + [SMALL_STATE(812)] = 27235, + [SMALL_STATE(813)] = 27297, + [SMALL_STATE(814)] = 27353, + [SMALL_STATE(815)] = 27409, + [SMALL_STATE(816)] = 27465, + [SMALL_STATE(817)] = 27527, + [SMALL_STATE(818)] = 27583, + [SMALL_STATE(819)] = 27639, + [SMALL_STATE(820)] = 27695, + [SMALL_STATE(821)] = 27751, + [SMALL_STATE(822)] = 27813, + [SMALL_STATE(823)] = 27869, + [SMALL_STATE(824)] = 27925, + [SMALL_STATE(825)] = 27981, + [SMALL_STATE(826)] = 28037, + [SMALL_STATE(827)] = 28093, + [SMALL_STATE(828)] = 28155, + [SMALL_STATE(829)] = 28211, + [SMALL_STATE(830)] = 28267, + [SMALL_STATE(831)] = 28329, + [SMALL_STATE(832)] = 28391, + [SMALL_STATE(833)] = 28453, + [SMALL_STATE(834)] = 28509, + [SMALL_STATE(835)] = 28571, + [SMALL_STATE(836)] = 28637, + [SMALL_STATE(837)] = 28703, + [SMALL_STATE(838)] = 28765, + [SMALL_STATE(839)] = 28821, + [SMALL_STATE(840)] = 28877, + [SMALL_STATE(841)] = 28941, + [SMALL_STATE(842)] = 28997, + [SMALL_STATE(843)] = 29053, + [SMALL_STATE(844)] = 29109, + [SMALL_STATE(845)] = 29165, + [SMALL_STATE(846)] = 29221, + [SMALL_STATE(847)] = 29287, + [SMALL_STATE(848)] = 29343, + [SMALL_STATE(849)] = 29399, + [SMALL_STATE(850)] = 29455, + [SMALL_STATE(851)] = 29511, + [SMALL_STATE(852)] = 29621, + [SMALL_STATE(853)] = 29677, + [SMALL_STATE(854)] = 29733, + [SMALL_STATE(855)] = 29789, + [SMALL_STATE(856)] = 29845, + [SMALL_STATE(857)] = 29901, + [SMALL_STATE(858)] = 29957, + [SMALL_STATE(859)] = 30013, + [SMALL_STATE(860)] = 30069, + [SMALL_STATE(861)] = 30145, + [SMALL_STATE(862)] = 30255, + [SMALL_STATE(863)] = 30365, + [SMALL_STATE(864)] = 30427, + [SMALL_STATE(865)] = 30489, + [SMALL_STATE(866)] = 30565, + [SMALL_STATE(867)] = 30635, + [SMALL_STATE(868)] = 30697, + [SMALL_STATE(869)] = 30759, + [SMALL_STATE(870)] = 30827, + [SMALL_STATE(871)] = 30921, + [SMALL_STATE(872)] = 31015, + [SMALL_STATE(873)] = 31111, + [SMALL_STATE(874)] = 31173, + [SMALL_STATE(875)] = 31239, + [SMALL_STATE(876)] = 31305, + [SMALL_STATE(877)] = 31367, + [SMALL_STATE(878)] = 31429, + [SMALL_STATE(879)] = 31539, + [SMALL_STATE(880)] = 31601, + [SMALL_STATE(881)] = 31663, + [SMALL_STATE(882)] = 31759, + [SMALL_STATE(883)] = 31821, + [SMALL_STATE(884)] = 31885, + [SMALL_STATE(885)] = 31995, + [SMALL_STATE(886)] = 32057, + [SMALL_STATE(887)] = 32167, + [SMALL_STATE(888)] = 32263, + [SMALL_STATE(889)] = 32355, + [SMALL_STATE(890)] = 32447, + [SMALL_STATE(891)] = 32503, + [SMALL_STATE(892)] = 32558, + [SMALL_STATE(893)] = 32623, + [SMALL_STATE(894)] = 32688, + [SMALL_STATE(895)] = 32753, + [SMALL_STATE(896)] = 32814, + [SMALL_STATE(897)] = 32875, + [SMALL_STATE(898)] = 32930, + [SMALL_STATE(899)] = 32985, + [SMALL_STATE(900)] = 33060, + [SMALL_STATE(901)] = 33115, + [SMALL_STATE(902)] = 33170, + [SMALL_STATE(903)] = 33225, + [SMALL_STATE(904)] = 33300, + [SMALL_STATE(905)] = 33355, + [SMALL_STATE(906)] = 33410, + [SMALL_STATE(907)] = 33465, + [SMALL_STATE(908)] = 33530, + [SMALL_STATE(909)] = 33595, + [SMALL_STATE(910)] = 33654, + [SMALL_STATE(911)] = 33715, + [SMALL_STATE(912)] = 33770, + [SMALL_STATE(913)] = 33831, + [SMALL_STATE(914)] = 33890, + [SMALL_STATE(915)] = 33949, + [SMALL_STATE(916)] = 34010, + [SMALL_STATE(917)] = 34065, + [SMALL_STATE(918)] = 34120, + [SMALL_STATE(919)] = 34185, + [SMALL_STATE(920)] = 34250, + [SMALL_STATE(921)] = 34325, + [SMALL_STATE(922)] = 34390, + [SMALL_STATE(923)] = 34455, + [SMALL_STATE(924)] = 34510, + [SMALL_STATE(925)] = 34565, + [SMALL_STATE(926)] = 34620, + [SMALL_STATE(927)] = 34675, + [SMALL_STATE(928)] = 34730, + [SMALL_STATE(929)] = 34785, + [SMALL_STATE(930)] = 34840, + [SMALL_STATE(931)] = 34895, + [SMALL_STATE(932)] = 34950, + [SMALL_STATE(933)] = 35005, + [SMALL_STATE(934)] = 35060, + [SMALL_STATE(935)] = 35127, + [SMALL_STATE(936)] = 35182, + [SMALL_STATE(937)] = 35237, + [SMALL_STATE(938)] = 35292, + [SMALL_STATE(939)] = 35347, + [SMALL_STATE(940)] = 35412, + [SMALL_STATE(941)] = 35471, + [SMALL_STATE(942)] = 35526, + [SMALL_STATE(943)] = 35591, + [SMALL_STATE(944)] = 35646, + [SMALL_STATE(945)] = 35701, + [SMALL_STATE(946)] = 35756, + [SMALL_STATE(947)] = 35811, + [SMALL_STATE(948)] = 35880, + [SMALL_STATE(949)] = 35941, + [SMALL_STATE(950)] = 36002, + [SMALL_STATE(951)] = 36057, + [SMALL_STATE(952)] = 36116, + [SMALL_STATE(953)] = 36171, + [SMALL_STATE(954)] = 36246, + [SMALL_STATE(955)] = 36307, + [SMALL_STATE(956)] = 36368, + [SMALL_STATE(957)] = 36429, + [SMALL_STATE(958)] = 36490, + [SMALL_STATE(959)] = 36551, + [SMALL_STATE(960)] = 36612, + [SMALL_STATE(961)] = 36681, + [SMALL_STATE(962)] = 36742, + [SMALL_STATE(963)] = 36803, + [SMALL_STATE(964)] = 36864, + [SMALL_STATE(965)] = 36925, + [SMALL_STATE(966)] = 36980, + [SMALL_STATE(967)] = 37035, + [SMALL_STATE(968)] = 37100, + [SMALL_STATE(969)] = 37165, + [SMALL_STATE(970)] = 37220, + [SMALL_STATE(971)] = 37281, + [SMALL_STATE(972)] = 37342, + [SMALL_STATE(973)] = 37403, + [SMALL_STATE(974)] = 37464, + [SMALL_STATE(975)] = 37525, + [SMALL_STATE(976)] = 37580, + [SMALL_STATE(977)] = 37641, + [SMALL_STATE(978)] = 37702, + [SMALL_STATE(979)] = 37763, + [SMALL_STATE(980)] = 37824, + [SMALL_STATE(981)] = 37879, + [SMALL_STATE(982)] = 37934, + [SMALL_STATE(983)] = 37989, + [SMALL_STATE(984)] = 38044, + [SMALL_STATE(985)] = 38105, + [SMALL_STATE(986)] = 38166, + [SMALL_STATE(987)] = 38221, + [SMALL_STATE(988)] = 38276, + [SMALL_STATE(989)] = 38337, + [SMALL_STATE(990)] = 38398, + [SMALL_STATE(991)] = 38465, + [SMALL_STATE(992)] = 38520, + [SMALL_STATE(993)] = 38575, + [SMALL_STATE(994)] = 38630, + [SMALL_STATE(995)] = 38685, + [SMALL_STATE(996)] = 38750, + [SMALL_STATE(997)] = 38815, + [SMALL_STATE(998)] = 38876, + [SMALL_STATE(999)] = 38937, + [SMALL_STATE(1000)] = 38998, + [SMALL_STATE(1001)] = 39059, + [SMALL_STATE(1002)] = 39120, + [SMALL_STATE(1003)] = 39187, + [SMALL_STATE(1004)] = 39242, + [SMALL_STATE(1005)] = 39297, + [SMALL_STATE(1006)] = 39352, + [SMALL_STATE(1007)] = 39413, + [SMALL_STATE(1008)] = 39474, + [SMALL_STATE(1009)] = 39535, + [SMALL_STATE(1010)] = 39596, + [SMALL_STATE(1011)] = 39657, + [SMALL_STATE(1012)] = 39718, + [SMALL_STATE(1013)] = 39779, + [SMALL_STATE(1014)] = 39840, + [SMALL_STATE(1015)] = 39895, + [SMALL_STATE(1016)] = 39956, + [SMALL_STATE(1017)] = 40011, + [SMALL_STATE(1018)] = 40066, + [SMALL_STATE(1019)] = 40121, + [SMALL_STATE(1020)] = 40182, + [SMALL_STATE(1021)] = 40275, + [SMALL_STATE(1022)] = 40368, + [SMALL_STATE(1023)] = 40429, + [SMALL_STATE(1024)] = 40490, + [SMALL_STATE(1025)] = 40553, + [SMALL_STATE(1026)] = 40608, + [SMALL_STATE(1027)] = 40663, + [SMALL_STATE(1028)] = 40722, + [SMALL_STATE(1029)] = 40777, + [SMALL_STATE(1030)] = 40838, + [SMALL_STATE(1031)] = 40899, + [SMALL_STATE(1032)] = 40960, + [SMALL_STATE(1033)] = 41019, + [SMALL_STATE(1034)] = 41080, + [SMALL_STATE(1035)] = 41141, + [SMALL_STATE(1036)] = 41202, + [SMALL_STATE(1037)] = 41263, + [SMALL_STATE(1038)] = 41318, + [SMALL_STATE(1039)] = 41383, + [SMALL_STATE(1040)] = 41474, + [SMALL_STATE(1041)] = 41565, + [SMALL_STATE(1042)] = 41628, + [SMALL_STATE(1043)] = 41693, + [SMALL_STATE(1044)] = 41758, + [SMALL_STATE(1045)] = 41819, + [SMALL_STATE(1046)] = 41873, + [SMALL_STATE(1047)] = 41927, + [SMALL_STATE(1048)] = 41981, + [SMALL_STATE(1049)] = 42035, + [SMALL_STATE(1050)] = 42089, + [SMALL_STATE(1051)] = 42147, + [SMALL_STATE(1052)] = 42201, + [SMALL_STATE(1053)] = 42255, + [SMALL_STATE(1054)] = 42309, + [SMALL_STATE(1055)] = 42363, + [SMALL_STATE(1056)] = 42417, + [SMALL_STATE(1057)] = 42471, + [SMALL_STATE(1058)] = 42529, + [SMALL_STATE(1059)] = 42583, + [SMALL_STATE(1060)] = 42637, + [SMALL_STATE(1061)] = 42691, + [SMALL_STATE(1062)] = 42745, + [SMALL_STATE(1063)] = 42799, + [SMALL_STATE(1064)] = 42853, + [SMALL_STATE(1065)] = 42907, + [SMALL_STATE(1066)] = 42961, + [SMALL_STATE(1067)] = 43015, + [SMALL_STATE(1068)] = 43069, + [SMALL_STATE(1069)] = 43123, + [SMALL_STATE(1070)] = 43177, + [SMALL_STATE(1071)] = 43231, + [SMALL_STATE(1072)] = 43285, + [SMALL_STATE(1073)] = 43349, + [SMALL_STATE(1074)] = 43409, + [SMALL_STATE(1075)] = 43473, + [SMALL_STATE(1076)] = 43527, + [SMALL_STATE(1077)] = 43581, + [SMALL_STATE(1078)] = 43639, + [SMALL_STATE(1079)] = 43699, + [SMALL_STATE(1080)] = 43753, + [SMALL_STATE(1081)] = 43813, + [SMALL_STATE(1082)] = 43873, + [SMALL_STATE(1083)] = 43927, + [SMALL_STATE(1084)] = 43981, + [SMALL_STATE(1085)] = 44035, + [SMALL_STATE(1086)] = 44089, + [SMALL_STATE(1087)] = 44147, + [SMALL_STATE(1088)] = 44211, + [SMALL_STATE(1089)] = 44275, + [SMALL_STATE(1090)] = 44333, + [SMALL_STATE(1091)] = 44399, + [SMALL_STATE(1092)] = 44453, + [SMALL_STATE(1093)] = 44507, + [SMALL_STATE(1094)] = 44567, + [SMALL_STATE(1095)] = 44621, + [SMALL_STATE(1096)] = 44693, + [SMALL_STATE(1097)] = 44751, + [SMALL_STATE(1098)] = 44817, + [SMALL_STATE(1099)] = 44877, + [SMALL_STATE(1100)] = 44937, + [SMALL_STATE(1101)] = 45001, + [SMALL_STATE(1102)] = 45065, + [SMALL_STATE(1103)] = 45137, + [SMALL_STATE(1104)] = 45191, + [SMALL_STATE(1105)] = 45245, + [SMALL_STATE(1106)] = 45309, + [SMALL_STATE(1107)] = 45373, + [SMALL_STATE(1108)] = 45431, + [SMALL_STATE(1109)] = 45489, + [SMALL_STATE(1110)] = 45543, + [SMALL_STATE(1111)] = 45651, + [SMALL_STATE(1112)] = 45719, + [SMALL_STATE(1113)] = 45785, + [SMALL_STATE(1114)] = 45839, + [SMALL_STATE(1115)] = 45899, + [SMALL_STATE(1116)] = 45959, + [SMALL_STATE(1117)] = 46013, + [SMALL_STATE(1118)] = 46121, + [SMALL_STATE(1119)] = 46175, + [SMALL_STATE(1120)] = 46283, + [SMALL_STATE(1121)] = 46355, + [SMALL_STATE(1122)] = 46463, + [SMALL_STATE(1123)] = 46517, + [SMALL_STATE(1124)] = 46625, + [SMALL_STATE(1125)] = 46679, + [SMALL_STATE(1126)] = 46739, + [SMALL_STATE(1127)] = 46799, + [SMALL_STATE(1128)] = 46853, + [SMALL_STATE(1129)] = 46907, + [SMALL_STATE(1130)] = 46961, + [SMALL_STATE(1131)] = 47015, + [SMALL_STATE(1132)] = 47069, + [SMALL_STATE(1133)] = 47129, + [SMALL_STATE(1134)] = 47189, + [SMALL_STATE(1135)] = 47243, + [SMALL_STATE(1136)] = 47297, + [SMALL_STATE(1137)] = 47351, + [SMALL_STATE(1138)] = 47405, + [SMALL_STATE(1139)] = 47459, + [SMALL_STATE(1140)] = 47519, + [SMALL_STATE(1141)] = 47573, + [SMALL_STATE(1142)] = 47627, + [SMALL_STATE(1143)] = 47681, + [SMALL_STATE(1144)] = 47735, + [SMALL_STATE(1145)] = 47789, + [SMALL_STATE(1146)] = 47843, + [SMALL_STATE(1147)] = 47897, + [SMALL_STATE(1148)] = 47951, + [SMALL_STATE(1149)] = 48025, + [SMALL_STATE(1150)] = 48085, + [SMALL_STATE(1151)] = 48139, + [SMALL_STATE(1152)] = 48199, + [SMALL_STATE(1153)] = 48259, + [SMALL_STATE(1154)] = 48313, + [SMALL_STATE(1155)] = 48367, + [SMALL_STATE(1156)] = 48421, + [SMALL_STATE(1157)] = 48481, + [SMALL_STATE(1158)] = 48535, + [SMALL_STATE(1159)] = 48595, + [SMALL_STATE(1160)] = 48655, + [SMALL_STATE(1161)] = 48709, + [SMALL_STATE(1162)] = 48763, + [SMALL_STATE(1163)] = 48817, + [SMALL_STATE(1164)] = 48871, + [SMALL_STATE(1165)] = 48931, + [SMALL_STATE(1166)] = 48985, + [SMALL_STATE(1167)] = 49039, + [SMALL_STATE(1168)] = 49131, + [SMALL_STATE(1169)] = 49223, + [SMALL_STATE(1170)] = 49277, + [SMALL_STATE(1171)] = 49331, + [SMALL_STATE(1172)] = 49391, + [SMALL_STATE(1173)] = 49451, + [SMALL_STATE(1174)] = 49525, + [SMALL_STATE(1175)] = 49597, + [SMALL_STATE(1176)] = 49651, + [SMALL_STATE(1177)] = 49711, + [SMALL_STATE(1178)] = 49769, + [SMALL_STATE(1179)] = 49829, + [SMALL_STATE(1180)] = 49883, + [SMALL_STATE(1181)] = 49943, + [SMALL_STATE(1182)] = 50003, + [SMALL_STATE(1183)] = 50063, + [SMALL_STATE(1184)] = 50117, + [SMALL_STATE(1185)] = 50171, + [SMALL_STATE(1186)] = 50231, + [SMALL_STATE(1187)] = 50291, + [SMALL_STATE(1188)] = 50345, + [SMALL_STATE(1189)] = 50405, + [SMALL_STATE(1190)] = 50465, + [SMALL_STATE(1191)] = 50525, + [SMALL_STATE(1192)] = 50585, + [SMALL_STATE(1193)] = 50645, + [SMALL_STATE(1194)] = 50699, + [SMALL_STATE(1195)] = 50767, + [SMALL_STATE(1196)] = 50827, + [SMALL_STATE(1197)] = 50881, + [SMALL_STATE(1198)] = 50941, + [SMALL_STATE(1199)] = 51001, + [SMALL_STATE(1200)] = 51055, + [SMALL_STATE(1201)] = 51109, + [SMALL_STATE(1202)] = 51169, + [SMALL_STATE(1203)] = 51223, + [SMALL_STATE(1204)] = 51283, + [SMALL_STATE(1205)] = 51343, + [SMALL_STATE(1206)] = 51451, + [SMALL_STATE(1207)] = 51510, + [SMALL_STATE(1208)] = 51569, + [SMALL_STATE(1209)] = 51628, + [SMALL_STATE(1210)] = 51693, + [SMALL_STATE(1211)] = 51752, + [SMALL_STATE(1212)] = 51805, + [SMALL_STATE(1213)] = 51864, + [SMALL_STATE(1214)] = 51917, + [SMALL_STATE(1215)] = 51970, + [SMALL_STATE(1216)] = 52029, + [SMALL_STATE(1217)] = 52088, + [SMALL_STATE(1218)] = 52147, + [SMALL_STATE(1219)] = 52206, + [SMALL_STATE(1220)] = 52259, + [SMALL_STATE(1221)] = 52318, + [SMALL_STATE(1222)] = 52377, + [SMALL_STATE(1223)] = 52434, + [SMALL_STATE(1224)] = 52493, + [SMALL_STATE(1225)] = 52550, + [SMALL_STATE(1226)] = 52603, + [SMALL_STATE(1227)] = 52656, + [SMALL_STATE(1228)] = 52709, + [SMALL_STATE(1229)] = 52762, + [SMALL_STATE(1230)] = 52815, + [SMALL_STATE(1231)] = 52872, + [SMALL_STATE(1232)] = 52925, + [SMALL_STATE(1233)] = 52978, + [SMALL_STATE(1234)] = 53031, + [SMALL_STATE(1235)] = 53084, + [SMALL_STATE(1236)] = 53137, + [SMALL_STATE(1237)] = 53190, + [SMALL_STATE(1238)] = 53243, + [SMALL_STATE(1239)] = 53296, + [SMALL_STATE(1240)] = 53355, + [SMALL_STATE(1241)] = 53412, + [SMALL_STATE(1242)] = 53465, + [SMALL_STATE(1243)] = 53524, + [SMALL_STATE(1244)] = 53577, + [SMALL_STATE(1245)] = 53636, + [SMALL_STATE(1246)] = 53695, + [SMALL_STATE(1247)] = 53748, + [SMALL_STATE(1248)] = 53807, + [SMALL_STATE(1249)] = 53860, + [SMALL_STATE(1250)] = 53919, + [SMALL_STATE(1251)] = 53978, + [SMALL_STATE(1252)] = 54037, + [SMALL_STATE(1253)] = 54094, + [SMALL_STATE(1254)] = 54153, + [SMALL_STATE(1255)] = 54212, + [SMALL_STATE(1256)] = 54271, + [SMALL_STATE(1257)] = 54330, + [SMALL_STATE(1258)] = 54389, + [SMALL_STATE(1259)] = 54448, + [SMALL_STATE(1260)] = 54501, + [SMALL_STATE(1261)] = 54560, + [SMALL_STATE(1262)] = 54613, + [SMALL_STATE(1263)] = 54672, + [SMALL_STATE(1264)] = 54731, + [SMALL_STATE(1265)] = 54788, + [SMALL_STATE(1266)] = 54847, + [SMALL_STATE(1267)] = 54900, + [SMALL_STATE(1268)] = 54959, + [SMALL_STATE(1269)] = 55012, + [SMALL_STATE(1270)] = 55065, + [SMALL_STATE(1271)] = 55118, + [SMALL_STATE(1272)] = 55177, + [SMALL_STATE(1273)] = 55236, + [SMALL_STATE(1274)] = 55289, + [SMALL_STATE(1275)] = 55342, + [SMALL_STATE(1276)] = 55395, + [SMALL_STATE(1277)] = 55448, + [SMALL_STATE(1278)] = 55507, + [SMALL_STATE(1279)] = 55560, + [SMALL_STATE(1280)] = 55613, + [SMALL_STATE(1281)] = 55670, + [SMALL_STATE(1282)] = 55723, + [SMALL_STATE(1283)] = 55776, + [SMALL_STATE(1284)] = 55829, + [SMALL_STATE(1285)] = 55888, + [SMALL_STATE(1286)] = 55945, + [SMALL_STATE(1287)] = 55998, + [SMALL_STATE(1288)] = 56051, + [SMALL_STATE(1289)] = 56104, + [SMALL_STATE(1290)] = 56163, + [SMALL_STATE(1291)] = 56222, + [SMALL_STATE(1292)] = 56281, + [SMALL_STATE(1293)] = 56334, + [SMALL_STATE(1294)] = 56393, + [SMALL_STATE(1295)] = 56446, + [SMALL_STATE(1296)] = 56503, + [SMALL_STATE(1297)] = 56556, + [SMALL_STATE(1298)] = 56609, + [SMALL_STATE(1299)] = 56666, + [SMALL_STATE(1300)] = 56725, + [SMALL_STATE(1301)] = 56782, + [SMALL_STATE(1302)] = 56839, + [SMALL_STATE(1303)] = 56898, + [SMALL_STATE(1304)] = 56951, + [SMALL_STATE(1305)] = 57004, + [SMALL_STATE(1306)] = 57057, + [SMALL_STATE(1307)] = 57116, + [SMALL_STATE(1308)] = 57175, + [SMALL_STATE(1309)] = 57234, + [SMALL_STATE(1310)] = 57293, + [SMALL_STATE(1311)] = 57350, + [SMALL_STATE(1312)] = 57403, + [SMALL_STATE(1313)] = 57456, + [SMALL_STATE(1314)] = 57515, + [SMALL_STATE(1315)] = 57568, + [SMALL_STATE(1316)] = 57621, + [SMALL_STATE(1317)] = 57680, + [SMALL_STATE(1318)] = 57733, + [SMALL_STATE(1319)] = 57792, + [SMALL_STATE(1320)] = 57851, + [SMALL_STATE(1321)] = 57908, + [SMALL_STATE(1322)] = 57961, + [SMALL_STATE(1323)] = 58014, + [SMALL_STATE(1324)] = 58067, + [SMALL_STATE(1325)] = 58120, + [SMALL_STATE(1326)] = 58179, + [SMALL_STATE(1327)] = 58232, + [SMALL_STATE(1328)] = 58291, + [SMALL_STATE(1329)] = 58350, + [SMALL_STATE(1330)] = 58409, + [SMALL_STATE(1331)] = 58468, + [SMALL_STATE(1332)] = 58527, + [SMALL_STATE(1333)] = 58586, + [SMALL_STATE(1334)] = 58643, + [SMALL_STATE(1335)] = 58700, + [SMALL_STATE(1336)] = 58753, + [SMALL_STATE(1337)] = 58812, + [SMALL_STATE(1338)] = 58865, + [SMALL_STATE(1339)] = 58918, + [SMALL_STATE(1340)] = 58971, + [SMALL_STATE(1341)] = 59024, + [SMALL_STATE(1342)] = 59077, + [SMALL_STATE(1343)] = 59130, + [SMALL_STATE(1344)] = 59187, + [SMALL_STATE(1345)] = 59240, + [SMALL_STATE(1346)] = 59299, + [SMALL_STATE(1347)] = 59352, + [SMALL_STATE(1348)] = 59411, + [SMALL_STATE(1349)] = 59468, + [SMALL_STATE(1350)] = 59525, + [SMALL_STATE(1351)] = 59584, + [SMALL_STATE(1352)] = 59637, + [SMALL_STATE(1353)] = 59690, + [SMALL_STATE(1354)] = 59750, + [SMALL_STATE(1355)] = 59802, + [SMALL_STATE(1356)] = 59854, + [SMALL_STATE(1357)] = 59906, + [SMALL_STATE(1358)] = 59958, + [SMALL_STATE(1359)] = 60010, + [SMALL_STATE(1360)] = 60062, + [SMALL_STATE(1361)] = 60114, + [SMALL_STATE(1362)] = 60166, + [SMALL_STATE(1363)] = 60218, + [SMALL_STATE(1364)] = 60270, + [SMALL_STATE(1365)] = 60328, + [SMALL_STATE(1366)] = 60380, + [SMALL_STATE(1367)] = 60432, + [SMALL_STATE(1368)] = 60490, + [SMALL_STATE(1369)] = 60542, + [SMALL_STATE(1370)] = 60594, + [SMALL_STATE(1371)] = 60652, + [SMALL_STATE(1372)] = 60754, + [SMALL_STATE(1373)] = 60806, + [SMALL_STATE(1374)] = 60858, + [SMALL_STATE(1375)] = 60910, + [SMALL_STATE(1376)] = 60962, + [SMALL_STATE(1377)] = 61020, + [SMALL_STATE(1378)] = 61072, + [SMALL_STATE(1379)] = 61124, + [SMALL_STATE(1380)] = 61180, + [SMALL_STATE(1381)] = 61232, + [SMALL_STATE(1382)] = 61290, + [SMALL_STATE(1383)] = 61342, + [SMALL_STATE(1384)] = 61394, + [SMALL_STATE(1385)] = 61446, + [SMALL_STATE(1386)] = 61498, + [SMALL_STATE(1387)] = 61550, + [SMALL_STATE(1388)] = 61602, + [SMALL_STATE(1389)] = 61654, + [SMALL_STATE(1390)] = 61706, + [SMALL_STATE(1391)] = 61758, + [SMALL_STATE(1392)] = 61810, + [SMALL_STATE(1393)] = 61868, + [SMALL_STATE(1394)] = 61920, + [SMALL_STATE(1395)] = 61976, + [SMALL_STATE(1396)] = 62028, + [SMALL_STATE(1397)] = 62130, + [SMALL_STATE(1398)] = 62188, + [SMALL_STATE(1399)] = 62246, + [SMALL_STATE(1400)] = 62298, + [SMALL_STATE(1401)] = 62356, + [SMALL_STATE(1402)] = 62408, + [SMALL_STATE(1403)] = 62460, + [SMALL_STATE(1404)] = 62512, + [SMALL_STATE(1405)] = 62614, + [SMALL_STATE(1406)] = 62666, + [SMALL_STATE(1407)] = 62718, + [SMALL_STATE(1408)] = 62770, + [SMALL_STATE(1409)] = 62822, + [SMALL_STATE(1410)] = 62874, + [SMALL_STATE(1411)] = 62926, + [SMALL_STATE(1412)] = 62978, + [SMALL_STATE(1413)] = 63030, + [SMALL_STATE(1414)] = 63082, + [SMALL_STATE(1415)] = 63140, + [SMALL_STATE(1416)] = 63192, + [SMALL_STATE(1417)] = 63244, + [SMALL_STATE(1418)] = 63296, + [SMALL_STATE(1419)] = 63352, + [SMALL_STATE(1420)] = 63404, + [SMALL_STATE(1421)] = 63456, + [SMALL_STATE(1422)] = 63508, + [SMALL_STATE(1423)] = 63560, + [SMALL_STATE(1424)] = 63616, + [SMALL_STATE(1425)] = 63668, + [SMALL_STATE(1426)] = 63720, + [SMALL_STATE(1427)] = 63772, + [SMALL_STATE(1428)] = 63824, + [SMALL_STATE(1429)] = 63876, + [SMALL_STATE(1430)] = 63928, + [SMALL_STATE(1431)] = 63980, + [SMALL_STATE(1432)] = 64032, + [SMALL_STATE(1433)] = 64084, + [SMALL_STATE(1434)] = 64136, + [SMALL_STATE(1435)] = 64188, + [SMALL_STATE(1436)] = 64240, + [SMALL_STATE(1437)] = 64292, + [SMALL_STATE(1438)] = 64344, + [SMALL_STATE(1439)] = 64402, + [SMALL_STATE(1440)] = 64460, + [SMALL_STATE(1441)] = 64518, + [SMALL_STATE(1442)] = 64576, + [SMALL_STATE(1443)] = 64628, + [SMALL_STATE(1444)] = 64680, + [SMALL_STATE(1445)] = 64736, + [SMALL_STATE(1446)] = 64794, + [SMALL_STATE(1447)] = 64846, + [SMALL_STATE(1448)] = 64898, + [SMALL_STATE(1449)] = 64986, + [SMALL_STATE(1450)] = 65074, + [SMALL_STATE(1451)] = 65126, + [SMALL_STATE(1452)] = 65178, + [SMALL_STATE(1453)] = 65234, + [SMALL_STATE(1454)] = 65294, + [SMALL_STATE(1455)] = 65354, + [SMALL_STATE(1456)] = 65406, + [SMALL_STATE(1457)] = 65458, + [SMALL_STATE(1458)] = 65510, + [SMALL_STATE(1459)] = 65562, + [SMALL_STATE(1460)] = 65614, + [SMALL_STATE(1461)] = 65666, + [SMALL_STATE(1462)] = 65718, + [SMALL_STATE(1463)] = 65770, + [SMALL_STATE(1464)] = 65822, + [SMALL_STATE(1465)] = 65874, + [SMALL_STATE(1466)] = 65926, + [SMALL_STATE(1467)] = 65978, + [SMALL_STATE(1468)] = 66030, + [SMALL_STATE(1469)] = 66082, + [SMALL_STATE(1470)] = 66134, + [SMALL_STATE(1471)] = 66186, + [SMALL_STATE(1472)] = 66238, + [SMALL_STATE(1473)] = 66290, + [SMALL_STATE(1474)] = 66342, + [SMALL_STATE(1475)] = 66394, + [SMALL_STATE(1476)] = 66446, + [SMALL_STATE(1477)] = 66498, + [SMALL_STATE(1478)] = 66550, + [SMALL_STATE(1479)] = 66602, + [SMALL_STATE(1480)] = 66654, + [SMALL_STATE(1481)] = 66706, + [SMALL_STATE(1482)] = 66758, + [SMALL_STATE(1483)] = 66810, + [SMALL_STATE(1484)] = 66862, + [SMALL_STATE(1485)] = 66914, + [SMALL_STATE(1486)] = 66966, + [SMALL_STATE(1487)] = 67018, + [SMALL_STATE(1488)] = 67076, + [SMALL_STATE(1489)] = 67128, + [SMALL_STATE(1490)] = 67180, + [SMALL_STATE(1491)] = 67238, + [SMALL_STATE(1492)] = 67296, + [SMALL_STATE(1493)] = 67354, + [SMALL_STATE(1494)] = 67406, + [SMALL_STATE(1495)] = 67458, + [SMALL_STATE(1496)] = 67510, + [SMALL_STATE(1497)] = 67562, + [SMALL_STATE(1498)] = 67614, + [SMALL_STATE(1499)] = 67666, + [SMALL_STATE(1500)] = 67718, + [SMALL_STATE(1501)] = 67770, + [SMALL_STATE(1502)] = 67822, + [SMALL_STATE(1503)] = 67874, + [SMALL_STATE(1504)] = 67926, + [SMALL_STATE(1505)] = 68028, + [SMALL_STATE(1506)] = 68080, + [SMALL_STATE(1507)] = 68138, + [SMALL_STATE(1508)] = 68190, + [SMALL_STATE(1509)] = 68242, + [SMALL_STATE(1510)] = 68294, + [SMALL_STATE(1511)] = 68352, + [SMALL_STATE(1512)] = 68410, + [SMALL_STATE(1513)] = 68468, + [SMALL_STATE(1514)] = 68526, + [SMALL_STATE(1515)] = 68578, + [SMALL_STATE(1516)] = 68636, + [SMALL_STATE(1517)] = 68694, + [SMALL_STATE(1518)] = 68746, + [SMALL_STATE(1519)] = 68804, + [SMALL_STATE(1520)] = 68862, + [SMALL_STATE(1521)] = 68920, + [SMALL_STATE(1522)] = 68978, + [SMALL_STATE(1523)] = 69036, + [SMALL_STATE(1524)] = 69094, + [SMALL_STATE(1525)] = 69152, + [SMALL_STATE(1526)] = 69210, + [SMALL_STATE(1527)] = 69266, + [SMALL_STATE(1528)] = 69368, + [SMALL_STATE(1529)] = 69426, + [SMALL_STATE(1530)] = 69484, + [SMALL_STATE(1531)] = 69536, + [SMALL_STATE(1532)] = 69638, + [SMALL_STATE(1533)] = 69696, + [SMALL_STATE(1534)] = 69748, + [SMALL_STATE(1535)] = 69806, + [SMALL_STATE(1536)] = 69864, + [SMALL_STATE(1537)] = 69922, + [SMALL_STATE(1538)] = 69980, + [SMALL_STATE(1539)] = 70036, + [SMALL_STATE(1540)] = 70088, + [SMALL_STATE(1541)] = 70140, + [SMALL_STATE(1542)] = 70198, + [SMALL_STATE(1543)] = 70250, + [SMALL_STATE(1544)] = 70308, + [SMALL_STATE(1545)] = 70366, + [SMALL_STATE(1546)] = 70418, + [SMALL_STATE(1547)] = 70474, + [SMALL_STATE(1548)] = 70526, + [SMALL_STATE(1549)] = 70584, + [SMALL_STATE(1550)] = 70636, + [SMALL_STATE(1551)] = 70688, + [SMALL_STATE(1552)] = 70740, + [SMALL_STATE(1553)] = 70798, + [SMALL_STATE(1554)] = 70854, + [SMALL_STATE(1555)] = 70906, + [SMALL_STATE(1556)] = 70958, + [SMALL_STATE(1557)] = 71014, + [SMALL_STATE(1558)] = 71066, + [SMALL_STATE(1559)] = 71124, + [SMALL_STATE(1560)] = 71180, + [SMALL_STATE(1561)] = 71232, + [SMALL_STATE(1562)] = 71287, + [SMALL_STATE(1563)] = 71344, + [SMALL_STATE(1564)] = 71401, + [SMALL_STATE(1565)] = 71458, + [SMALL_STATE(1566)] = 71515, + [SMALL_STATE(1567)] = 71566, + [SMALL_STATE(1568)] = 71621, + [SMALL_STATE(1569)] = 71678, + [SMALL_STATE(1570)] = 71735, + [SMALL_STATE(1571)] = 71786, + [SMALL_STATE(1572)] = 71837, + [SMALL_STATE(1573)] = 71894, + [SMALL_STATE(1574)] = 71949, + [SMALL_STATE(1575)] = 72000, + [SMALL_STATE(1576)] = 72057, + [SMALL_STATE(1577)] = 72112, + [SMALL_STATE(1578)] = 72169, + [SMALL_STATE(1579)] = 72224, + [SMALL_STATE(1580)] = 72279, + [SMALL_STATE(1581)] = 72378, + [SMALL_STATE(1582)] = 72429, + [SMALL_STATE(1583)] = 72480, + [SMALL_STATE(1584)] = 72531, + [SMALL_STATE(1585)] = 72582, + [SMALL_STATE(1586)] = 72633, + [SMALL_STATE(1587)] = 72684, + [SMALL_STATE(1588)] = 72735, + [SMALL_STATE(1589)] = 72792, + [SMALL_STATE(1590)] = 72849, + [SMALL_STATE(1591)] = 72904, + [SMALL_STATE(1592)] = 72955, + [SMALL_STATE(1593)] = 73010, + [SMALL_STATE(1594)] = 73061, + [SMALL_STATE(1595)] = 73112, + [SMALL_STATE(1596)] = 73163, + [SMALL_STATE(1597)] = 73214, + [SMALL_STATE(1598)] = 73265, + [SMALL_STATE(1599)] = 73316, + [SMALL_STATE(1600)] = 73415, + [SMALL_STATE(1601)] = 73470, + [SMALL_STATE(1602)] = 73527, + [SMALL_STATE(1603)] = 73582, + [SMALL_STATE(1604)] = 73637, + [SMALL_STATE(1605)] = 73688, + [SMALL_STATE(1606)] = 73745, + [SMALL_STATE(1607)] = 73800, + [SMALL_STATE(1608)] = 73851, + [SMALL_STATE(1609)] = 73950, + [SMALL_STATE(1610)] = 74001, + [SMALL_STATE(1611)] = 74052, + [SMALL_STATE(1612)] = 74103, + [SMALL_STATE(1613)] = 74202, + [SMALL_STATE(1614)] = 74301, + [SMALL_STATE(1615)] = 74400, + [SMALL_STATE(1616)] = 74455, + [SMALL_STATE(1617)] = 74506, + [SMALL_STATE(1618)] = 74557, + [SMALL_STATE(1619)] = 74608, + [SMALL_STATE(1620)] = 74659, + [SMALL_STATE(1621)] = 74710, + [SMALL_STATE(1622)] = 74765, + [SMALL_STATE(1623)] = 74822, + [SMALL_STATE(1624)] = 74873, + [SMALL_STATE(1625)] = 74928, + [SMALL_STATE(1626)] = 74979, + [SMALL_STATE(1627)] = 75034, + [SMALL_STATE(1628)] = 75085, + [SMALL_STATE(1629)] = 75142, + [SMALL_STATE(1630)] = 75199, + [SMALL_STATE(1631)] = 75264, + [SMALL_STATE(1632)] = 75321, + [SMALL_STATE(1633)] = 75376, + [SMALL_STATE(1634)] = 75431, + [SMALL_STATE(1635)] = 75482, + [SMALL_STATE(1636)] = 75539, + [SMALL_STATE(1637)] = 75590, + [SMALL_STATE(1638)] = 75641, + [SMALL_STATE(1639)] = 75704, + [SMALL_STATE(1640)] = 75755, + [SMALL_STATE(1641)] = 75806, + [SMALL_STATE(1642)] = 75863, + [SMALL_STATE(1643)] = 75914, + [SMALL_STATE(1644)] = 75969, + [SMALL_STATE(1645)] = 76068, + [SMALL_STATE(1646)] = 76119, + [SMALL_STATE(1647)] = 76170, + [SMALL_STATE(1648)] = 76227, + [SMALL_STATE(1649)] = 76284, + [SMALL_STATE(1650)] = 76335, + [SMALL_STATE(1651)] = 76386, + [SMALL_STATE(1652)] = 76441, + [SMALL_STATE(1653)] = 76540, + [SMALL_STATE(1654)] = 76591, + [SMALL_STATE(1655)] = 76690, + [SMALL_STATE(1656)] = 76757, + [SMALL_STATE(1657)] = 76814, + [SMALL_STATE(1658)] = 76869, + [SMALL_STATE(1659)] = 76920, + [SMALL_STATE(1660)] = 76971, + [SMALL_STATE(1661)] = 77070, + [SMALL_STATE(1662)] = 77169, + [SMALL_STATE(1663)] = 77268, + [SMALL_STATE(1664)] = 77323, + [SMALL_STATE(1665)] = 77380, + [SMALL_STATE(1666)] = 77431, + [SMALL_STATE(1667)] = 77482, + [SMALL_STATE(1668)] = 77539, + [SMALL_STATE(1669)] = 77590, + [SMALL_STATE(1670)] = 77647, + [SMALL_STATE(1671)] = 77698, + [SMALL_STATE(1672)] = 77749, + [SMALL_STATE(1673)] = 77800, + [SMALL_STATE(1674)] = 77851, + [SMALL_STATE(1675)] = 77906, + [SMALL_STATE(1676)] = 77961, + [SMALL_STATE(1677)] = 78018, + [SMALL_STATE(1678)] = 78073, + [SMALL_STATE(1679)] = 78130, + [SMALL_STATE(1680)] = 78229, + [SMALL_STATE(1681)] = 78280, + [SMALL_STATE(1682)] = 78347, + [SMALL_STATE(1683)] = 78398, + [SMALL_STATE(1684)] = 78455, + [SMALL_STATE(1685)] = 78512, + [SMALL_STATE(1686)] = 78567, + [SMALL_STATE(1687)] = 78618, + [SMALL_STATE(1688)] = 78669, + [SMALL_STATE(1689)] = 78720, + [SMALL_STATE(1690)] = 78777, + [SMALL_STATE(1691)] = 78834, + [SMALL_STATE(1692)] = 78933, + [SMALL_STATE(1693)] = 78984, + [SMALL_STATE(1694)] = 79039, + [SMALL_STATE(1695)] = 79090, + [SMALL_STATE(1696)] = 79141, + [SMALL_STATE(1697)] = 79198, + [SMALL_STATE(1698)] = 79249, + [SMALL_STATE(1699)] = 79306, + [SMALL_STATE(1700)] = 79363, + [SMALL_STATE(1701)] = 79420, + [SMALL_STATE(1702)] = 79477, + [SMALL_STATE(1703)] = 79534, + [SMALL_STATE(1704)] = 79585, + [SMALL_STATE(1705)] = 79644, + [SMALL_STATE(1706)] = 79695, + [SMALL_STATE(1707)] = 79754, + [SMALL_STATE(1708)] = 79805, + [SMALL_STATE(1709)] = 79856, + [SMALL_STATE(1710)] = 79911, + [SMALL_STATE(1711)] = 79968, + [SMALL_STATE(1712)] = 80019, + [SMALL_STATE(1713)] = 80070, + [SMALL_STATE(1714)] = 80125, + [SMALL_STATE(1715)] = 80176, + [SMALL_STATE(1716)] = 80233, + [SMALL_STATE(1717)] = 80284, + [SMALL_STATE(1718)] = 80335, + [SMALL_STATE(1719)] = 80386, + [SMALL_STATE(1720)] = 80485, + [SMALL_STATE(1721)] = 80535, + [SMALL_STATE(1722)] = 80589, + [SMALL_STATE(1723)] = 80685, + [SMALL_STATE(1724)] = 80735, + [SMALL_STATE(1725)] = 80785, + [SMALL_STATE(1726)] = 80835, + [SMALL_STATE(1727)] = 80885, + [SMALL_STATE(1728)] = 80935, + [SMALL_STATE(1729)] = 80985, + [SMALL_STATE(1730)] = 81035, + [SMALL_STATE(1731)] = 81085, + [SMALL_STATE(1732)] = 81135, + [SMALL_STATE(1733)] = 81231, + [SMALL_STATE(1734)] = 81327, + [SMALL_STATE(1735)] = 81423, + [SMALL_STATE(1736)] = 81519, + [SMALL_STATE(1737)] = 81615, + [SMALL_STATE(1738)] = 81711, + [SMALL_STATE(1739)] = 81761, + [SMALL_STATE(1740)] = 81857, + [SMALL_STATE(1741)] = 81907, + [SMALL_STATE(1742)] = 81957, + [SMALL_STATE(1743)] = 82007, + [SMALL_STATE(1744)] = 82057, + [SMALL_STATE(1745)] = 82153, + [SMALL_STATE(1746)] = 82249, + [SMALL_STATE(1747)] = 82299, + [SMALL_STATE(1748)] = 82395, + [SMALL_STATE(1749)] = 82445, + [SMALL_STATE(1750)] = 82495, + [SMALL_STATE(1751)] = 82545, + [SMALL_STATE(1752)] = 82595, + [SMALL_STATE(1753)] = 82645, + [SMALL_STATE(1754)] = 82695, + [SMALL_STATE(1755)] = 82745, + [SMALL_STATE(1756)] = 82841, + [SMALL_STATE(1757)] = 82891, + [SMALL_STATE(1758)] = 82987, + [SMALL_STATE(1759)] = 83083, + [SMALL_STATE(1760)] = 83133, + [SMALL_STATE(1761)] = 83183, + [SMALL_STATE(1762)] = 83233, + [SMALL_STATE(1763)] = 83283, + [SMALL_STATE(1764)] = 83333, + [SMALL_STATE(1765)] = 83391, + [SMALL_STATE(1766)] = 83441, + [SMALL_STATE(1767)] = 83491, + [SMALL_STATE(1768)] = 83541, + [SMALL_STATE(1769)] = 83595, + [SMALL_STATE(1770)] = 83645, + [SMALL_STATE(1771)] = 83695, + [SMALL_STATE(1772)] = 83745, + [SMALL_STATE(1773)] = 83795, + [SMALL_STATE(1774)] = 83845, + [SMALL_STATE(1775)] = 83895, + [SMALL_STATE(1776)] = 83945, + [SMALL_STATE(1777)] = 83995, + [SMALL_STATE(1778)] = 84045, + [SMALL_STATE(1779)] = 84095, + [SMALL_STATE(1780)] = 84145, + [SMALL_STATE(1781)] = 84195, + [SMALL_STATE(1782)] = 84245, + [SMALL_STATE(1783)] = 84295, + [SMALL_STATE(1784)] = 84345, + [SMALL_STATE(1785)] = 84395, + [SMALL_STATE(1786)] = 84445, + [SMALL_STATE(1787)] = 84495, + [SMALL_STATE(1788)] = 84545, + [SMALL_STATE(1789)] = 84595, + [SMALL_STATE(1790)] = 84645, + [SMALL_STATE(1791)] = 84695, + [SMALL_STATE(1792)] = 84745, + [SMALL_STATE(1793)] = 84795, + [SMALL_STATE(1794)] = 84845, + [SMALL_STATE(1795)] = 84941, + [SMALL_STATE(1796)] = 84991, + [SMALL_STATE(1797)] = 85059, + [SMALL_STATE(1798)] = 85109, + [SMALL_STATE(1799)] = 85167, + [SMALL_STATE(1800)] = 85217, + [SMALL_STATE(1801)] = 85313, + [SMALL_STATE(1802)] = 85363, + [SMALL_STATE(1803)] = 85417, + [SMALL_STATE(1804)] = 85467, + [SMALL_STATE(1805)] = 85563, + [SMALL_STATE(1806)] = 85613, + [SMALL_STATE(1807)] = 85663, + [SMALL_STATE(1808)] = 85713, + [SMALL_STATE(1809)] = 85763, + [SMALL_STATE(1810)] = 85813, + [SMALL_STATE(1811)] = 85863, + [SMALL_STATE(1812)] = 85913, + [SMALL_STATE(1813)] = 86009, + [SMALL_STATE(1814)] = 86105, + [SMALL_STATE(1815)] = 86201, + [SMALL_STATE(1816)] = 86297, + [SMALL_STATE(1817)] = 86393, + [SMALL_STATE(1818)] = 86489, + [SMALL_STATE(1819)] = 86585, + [SMALL_STATE(1820)] = 86681, + [SMALL_STATE(1821)] = 86731, + [SMALL_STATE(1822)] = 86781, + [SMALL_STATE(1823)] = 86831, + [SMALL_STATE(1824)] = 86881, + [SMALL_STATE(1825)] = 86931, + [SMALL_STATE(1826)] = 86981, + [SMALL_STATE(1827)] = 87031, + [SMALL_STATE(1828)] = 87081, + [SMALL_STATE(1829)] = 87131, + [SMALL_STATE(1830)] = 87181, + [SMALL_STATE(1831)] = 87231, + [SMALL_STATE(1832)] = 87281, + [SMALL_STATE(1833)] = 87331, + [SMALL_STATE(1834)] = 87381, + [SMALL_STATE(1835)] = 87431, + [SMALL_STATE(1836)] = 87481, + [SMALL_STATE(1837)] = 87531, + [SMALL_STATE(1838)] = 87581, + [SMALL_STATE(1839)] = 87631, + [SMALL_STATE(1840)] = 87681, + [SMALL_STATE(1841)] = 87777, + [SMALL_STATE(1842)] = 87873, + [SMALL_STATE(1843)] = 87969, + [SMALL_STATE(1844)] = 88065, + [SMALL_STATE(1845)] = 88161, + [SMALL_STATE(1846)] = 88211, + [SMALL_STATE(1847)] = 88265, + [SMALL_STATE(1848)] = 88319, + [SMALL_STATE(1849)] = 88369, + [SMALL_STATE(1850)] = 88423, + [SMALL_STATE(1851)] = 88473, + [SMALL_STATE(1852)] = 88523, + [SMALL_STATE(1853)] = 88573, + [SMALL_STATE(1854)] = 88627, + [SMALL_STATE(1855)] = 88723, + [SMALL_STATE(1856)] = 88819, + [SMALL_STATE(1857)] = 88915, + [SMALL_STATE(1858)] = 88975, + [SMALL_STATE(1859)] = 89071, + [SMALL_STATE(1860)] = 89167, + [SMALL_STATE(1861)] = 89263, + [SMALL_STATE(1862)] = 89359, + [SMALL_STATE(1863)] = 89455, + [SMALL_STATE(1864)] = 89551, + [SMALL_STATE(1865)] = 89647, + [SMALL_STATE(1866)] = 89743, + [SMALL_STATE(1867)] = 89839, + [SMALL_STATE(1868)] = 89935, + [SMALL_STATE(1869)] = 90031, + [SMALL_STATE(1870)] = 90127, + [SMALL_STATE(1871)] = 90223, + [SMALL_STATE(1872)] = 90273, + [SMALL_STATE(1873)] = 90369, + [SMALL_STATE(1874)] = 90465, + [SMALL_STATE(1875)] = 90515, + [SMALL_STATE(1876)] = 90571, + [SMALL_STATE(1877)] = 90627, + [SMALL_STATE(1878)] = 90683, + [SMALL_STATE(1879)] = 90779, + [SMALL_STATE(1880)] = 90875, + [SMALL_STATE(1881)] = 90935, + [SMALL_STATE(1882)] = 90985, + [SMALL_STATE(1883)] = 91041, + [SMALL_STATE(1884)] = 91137, + [SMALL_STATE(1885)] = 91233, + [SMALL_STATE(1886)] = 91293, + [SMALL_STATE(1887)] = 91389, + [SMALL_STATE(1888)] = 91485, + [SMALL_STATE(1889)] = 91545, + [SMALL_STATE(1890)] = 91599, + [SMALL_STATE(1891)] = 91653, + [SMALL_STATE(1892)] = 91713, + [SMALL_STATE(1893)] = 91773, + [SMALL_STATE(1894)] = 91827, + [SMALL_STATE(1895)] = 91881, + [SMALL_STATE(1896)] = 91941, + [SMALL_STATE(1897)] = 92001, + [SMALL_STATE(1898)] = 92061, + [SMALL_STATE(1899)] = 92121, + [SMALL_STATE(1900)] = 92181, + [SMALL_STATE(1901)] = 92241, + [SMALL_STATE(1902)] = 92301, + [SMALL_STATE(1903)] = 92361, + [SMALL_STATE(1904)] = 92421, + [SMALL_STATE(1905)] = 92479, + [SMALL_STATE(1906)] = 92539, + [SMALL_STATE(1907)] = 92599, + [SMALL_STATE(1908)] = 92659, + [SMALL_STATE(1909)] = 92719, + [SMALL_STATE(1910)] = 92779, + [SMALL_STATE(1911)] = 92839, + [SMALL_STATE(1912)] = 92889, + [SMALL_STATE(1913)] = 92949, + [SMALL_STATE(1914)] = 93009, + [SMALL_STATE(1915)] = 93069, + [SMALL_STATE(1916)] = 93129, + [SMALL_STATE(1917)] = 93189, + [SMALL_STATE(1918)] = 93249, + [SMALL_STATE(1919)] = 93309, + [SMALL_STATE(1920)] = 93369, + [SMALL_STATE(1921)] = 93429, + [SMALL_STATE(1922)] = 93489, + [SMALL_STATE(1923)] = 93549, + [SMALL_STATE(1924)] = 93609, + [SMALL_STATE(1925)] = 93669, + [SMALL_STATE(1926)] = 93729, + [SMALL_STATE(1927)] = 93789, + [SMALL_STATE(1928)] = 93849, + [SMALL_STATE(1929)] = 93909, + [SMALL_STATE(1930)] = 93969, + [SMALL_STATE(1931)] = 94029, + [SMALL_STATE(1932)] = 94089, + [SMALL_STATE(1933)] = 94149, + [SMALL_STATE(1934)] = 94209, + [SMALL_STATE(1935)] = 94269, + [SMALL_STATE(1936)] = 94329, + [SMALL_STATE(1937)] = 94389, + [SMALL_STATE(1938)] = 94449, + [SMALL_STATE(1939)] = 94509, + [SMALL_STATE(1940)] = 94569, + [SMALL_STATE(1941)] = 94629, + [SMALL_STATE(1942)] = 94689, + [SMALL_STATE(1943)] = 94749, + [SMALL_STATE(1944)] = 94809, + [SMALL_STATE(1945)] = 94869, + [SMALL_STATE(1946)] = 94929, + [SMALL_STATE(1947)] = 94989, + [SMALL_STATE(1948)] = 95049, + [SMALL_STATE(1949)] = 95109, + [SMALL_STATE(1950)] = 95169, + [SMALL_STATE(1951)] = 95229, + [SMALL_STATE(1952)] = 95289, + [SMALL_STATE(1953)] = 95349, + [SMALL_STATE(1954)] = 95409, + [SMALL_STATE(1955)] = 95469, + [SMALL_STATE(1956)] = 95529, + [SMALL_STATE(1957)] = 95589, + [SMALL_STATE(1958)] = 95649, + [SMALL_STATE(1959)] = 95709, + [SMALL_STATE(1960)] = 95769, + [SMALL_STATE(1961)] = 95829, + [SMALL_STATE(1962)] = 95885, + [SMALL_STATE(1963)] = 95981, + [SMALL_STATE(1964)] = 96077, + [SMALL_STATE(1965)] = 96133, + [SMALL_STATE(1966)] = 96189, + [SMALL_STATE(1967)] = 96245, + [SMALL_STATE(1968)] = 96301, + [SMALL_STATE(1969)] = 96357, + [SMALL_STATE(1970)] = 96413, + [SMALL_STATE(1971)] = 96463, + [SMALL_STATE(1972)] = 96559, + [SMALL_STATE(1973)] = 96655, + [SMALL_STATE(1974)] = 96751, + [SMALL_STATE(1975)] = 96847, + [SMALL_STATE(1976)] = 96943, + [SMALL_STATE(1977)] = 96993, + [SMALL_STATE(1978)] = 97089, + [SMALL_STATE(1979)] = 97143, + [SMALL_STATE(1980)] = 97197, + [SMALL_STATE(1981)] = 97257, + [SMALL_STATE(1982)] = 97311, + [SMALL_STATE(1983)] = 97407, + [SMALL_STATE(1984)] = 97503, + [SMALL_STATE(1985)] = 97599, + [SMALL_STATE(1986)] = 97695, + [SMALL_STATE(1987)] = 97791, + [SMALL_STATE(1988)] = 97887, + [SMALL_STATE(1989)] = 97983, + [SMALL_STATE(1990)] = 98079, + [SMALL_STATE(1991)] = 98175, + [SMALL_STATE(1992)] = 98271, + [SMALL_STATE(1993)] = 98367, + [SMALL_STATE(1994)] = 98463, + [SMALL_STATE(1995)] = 98559, + [SMALL_STATE(1996)] = 98655, + [SMALL_STATE(1997)] = 98751, + [SMALL_STATE(1998)] = 98817, + [SMALL_STATE(1999)] = 98871, + [SMALL_STATE(2000)] = 98925, + [SMALL_STATE(2001)] = 98975, + [SMALL_STATE(2002)] = 99025, + [SMALL_STATE(2003)] = 99121, + [SMALL_STATE(2004)] = 99217, + [SMALL_STATE(2005)] = 99313, + [SMALL_STATE(2006)] = 99409, + [SMALL_STATE(2007)] = 99505, + [SMALL_STATE(2008)] = 99561, + [SMALL_STATE(2009)] = 99657, + [SMALL_STATE(2010)] = 99753, + [SMALL_STATE(2011)] = 99849, + [SMALL_STATE(2012)] = 99905, + [SMALL_STATE(2013)] = 100001, + [SMALL_STATE(2014)] = 100097, + [SMALL_STATE(2015)] = 100193, + [SMALL_STATE(2016)] = 100289, + [SMALL_STATE(2017)] = 100385, + [SMALL_STATE(2018)] = 100481, + [SMALL_STATE(2019)] = 100577, + [SMALL_STATE(2020)] = 100673, + [SMALL_STATE(2021)] = 100769, + [SMALL_STATE(2022)] = 100865, + [SMALL_STATE(2023)] = 100961, + [SMALL_STATE(2024)] = 101057, + [SMALL_STATE(2025)] = 101153, + [SMALL_STATE(2026)] = 101249, + [SMALL_STATE(2027)] = 101345, + [SMALL_STATE(2028)] = 101399, + [SMALL_STATE(2029)] = 101461, + [SMALL_STATE(2030)] = 101557, + [SMALL_STATE(2031)] = 101653, + [SMALL_STATE(2032)] = 101749, + [SMALL_STATE(2033)] = 101845, + [SMALL_STATE(2034)] = 101899, + [SMALL_STATE(2035)] = 101995, + [SMALL_STATE(2036)] = 102091, + [SMALL_STATE(2037)] = 102145, + [SMALL_STATE(2038)] = 102195, + [SMALL_STATE(2039)] = 102291, + [SMALL_STATE(2040)] = 102387, + [SMALL_STATE(2041)] = 102483, + [SMALL_STATE(2042)] = 102537, + [SMALL_STATE(2043)] = 102587, + [SMALL_STATE(2044)] = 102637, + [SMALL_STATE(2045)] = 102687, + [SMALL_STATE(2046)] = 102783, + [SMALL_STATE(2047)] = 102833, + [SMALL_STATE(2048)] = 102887, + [SMALL_STATE(2049)] = 102983, + [SMALL_STATE(2050)] = 103041, + [SMALL_STATE(2051)] = 103101, + [SMALL_STATE(2052)] = 103150, + [SMALL_STATE(2053)] = 103199, + [SMALL_STATE(2054)] = 103252, + [SMALL_STATE(2055)] = 103305, + [SMALL_STATE(2056)] = 103358, + [SMALL_STATE(2057)] = 103411, + [SMALL_STATE(2058)] = 103460, + [SMALL_STATE(2059)] = 103509, + [SMALL_STATE(2060)] = 103562, + [SMALL_STATE(2061)] = 103615, + [SMALL_STATE(2062)] = 103668, + [SMALL_STATE(2063)] = 103717, + [SMALL_STATE(2064)] = 103766, + [SMALL_STATE(2065)] = 103819, + [SMALL_STATE(2066)] = 103872, + [SMALL_STATE(2067)] = 103925, + [SMALL_STATE(2068)] = 103974, + [SMALL_STATE(2069)] = 104023, + [SMALL_STATE(2070)] = 104072, + [SMALL_STATE(2071)] = 104125, + [SMALL_STATE(2072)] = 104174, + [SMALL_STATE(2073)] = 104223, + [SMALL_STATE(2074)] = 104272, + [SMALL_STATE(2075)] = 104321, + [SMALL_STATE(2076)] = 104370, + [SMALL_STATE(2077)] = 104423, + [SMALL_STATE(2078)] = 104472, + [SMALL_STATE(2079)] = 104521, + [SMALL_STATE(2080)] = 104570, + [SMALL_STATE(2081)] = 104619, + [SMALL_STATE(2082)] = 104668, + [SMALL_STATE(2083)] = 104717, + [SMALL_STATE(2084)] = 104766, + [SMALL_STATE(2085)] = 104815, + [SMALL_STATE(2086)] = 104864, + [SMALL_STATE(2087)] = 104913, + [SMALL_STATE(2088)] = 104962, + [SMALL_STATE(2089)] = 105017, + [SMALL_STATE(2090)] = 105072, + [SMALL_STATE(2091)] = 105127, + [SMALL_STATE(2092)] = 105182, + [SMALL_STATE(2093)] = 105231, + [SMALL_STATE(2094)] = 105280, + [SMALL_STATE(2095)] = 105329, + [SMALL_STATE(2096)] = 105378, + [SMALL_STATE(2097)] = 105427, + [SMALL_STATE(2098)] = 105476, + [SMALL_STATE(2099)] = 105525, + [SMALL_STATE(2100)] = 105574, + [SMALL_STATE(2101)] = 105623, + [SMALL_STATE(2102)] = 105672, + [SMALL_STATE(2103)] = 105721, + [SMALL_STATE(2104)] = 105770, + [SMALL_STATE(2105)] = 105819, + [SMALL_STATE(2106)] = 105868, + [SMALL_STATE(2107)] = 105917, + [SMALL_STATE(2108)] = 105966, + [SMALL_STATE(2109)] = 106015, + [SMALL_STATE(2110)] = 106068, + [SMALL_STATE(2111)] = 106117, + [SMALL_STATE(2112)] = 106166, + [SMALL_STATE(2113)] = 106215, + [SMALL_STATE(2114)] = 106264, + [SMALL_STATE(2115)] = 106313, + [SMALL_STATE(2116)] = 106366, + [SMALL_STATE(2117)] = 106419, + [SMALL_STATE(2118)] = 106474, + [SMALL_STATE(2119)] = 106529, + [SMALL_STATE(2120)] = 106582, + [SMALL_STATE(2121)] = 106635, + [SMALL_STATE(2122)] = 106688, + [SMALL_STATE(2123)] = 106737, + [SMALL_STATE(2124)] = 106786, + [SMALL_STATE(2125)] = 106845, + [SMALL_STATE(2126)] = 106904, + [SMALL_STATE(2127)] = 106953, + [SMALL_STATE(2128)] = 107002, + [SMALL_STATE(2129)] = 107059, + [SMALL_STATE(2130)] = 107108, + [SMALL_STATE(2131)] = 107165, + [SMALL_STATE(2132)] = 107214, + [SMALL_STATE(2133)] = 107263, + [SMALL_STATE(2134)] = 107312, + [SMALL_STATE(2135)] = 107365, + [SMALL_STATE(2136)] = 107418, + [SMALL_STATE(2137)] = 107467, + [SMALL_STATE(2138)] = 107516, + [SMALL_STATE(2139)] = 107569, + [SMALL_STATE(2140)] = 107618, + [SMALL_STATE(2141)] = 107667, + [SMALL_STATE(2142)] = 107720, + [SMALL_STATE(2143)] = 107773, + [SMALL_STATE(2144)] = 107822, + [SMALL_STATE(2145)] = 107871, + [SMALL_STATE(2146)] = 107926, + [SMALL_STATE(2147)] = 107981, + [SMALL_STATE(2148)] = 108036, + [SMALL_STATE(2149)] = 108091, + [SMALL_STATE(2150)] = 108140, + [SMALL_STATE(2151)] = 108195, + [SMALL_STATE(2152)] = 108250, + [SMALL_STATE(2153)] = 108303, + [SMALL_STATE(2154)] = 108358, + [SMALL_STATE(2155)] = 108413, + [SMALL_STATE(2156)] = 108468, + [SMALL_STATE(2157)] = 108523, + [SMALL_STATE(2158)] = 108578, + [SMALL_STATE(2159)] = 108633, + [SMALL_STATE(2160)] = 108686, + [SMALL_STATE(2161)] = 108735, + [SMALL_STATE(2162)] = 108784, + [SMALL_STATE(2163)] = 108837, + [SMALL_STATE(2164)] = 108892, + [SMALL_STATE(2165)] = 108947, + [SMALL_STATE(2166)] = 109002, + [SMALL_STATE(2167)] = 109057, + [SMALL_STATE(2168)] = 109106, + [SMALL_STATE(2169)] = 109200, + [SMALL_STATE(2170)] = 109256, + [SMALL_STATE(2171)] = 109310, + [SMALL_STATE(2172)] = 109358, + [SMALL_STATE(2173)] = 109406, + [SMALL_STATE(2174)] = 109454, + [SMALL_STATE(2175)] = 109502, + [SMALL_STATE(2176)] = 109596, + [SMALL_STATE(2177)] = 109690, + [SMALL_STATE(2178)] = 109738, + [SMALL_STATE(2179)] = 109786, + [SMALL_STATE(2180)] = 109880, + [SMALL_STATE(2181)] = 109932, + [SMALL_STATE(2182)] = 110026, + [SMALL_STATE(2183)] = 110074, + [SMALL_STATE(2184)] = 110122, + [SMALL_STATE(2185)] = 110176, + [SMALL_STATE(2186)] = 110230, + [SMALL_STATE(2187)] = 110278, + [SMALL_STATE(2188)] = 110332, + [SMALL_STATE(2189)] = 110386, + [SMALL_STATE(2190)] = 110438, + [SMALL_STATE(2191)] = 110490, + [SMALL_STATE(2192)] = 110538, + [SMALL_STATE(2193)] = 110590, + [SMALL_STATE(2194)] = 110642, + [SMALL_STATE(2195)] = 110690, + [SMALL_STATE(2196)] = 110738, + [SMALL_STATE(2197)] = 110790, + [SMALL_STATE(2198)] = 110842, + [SMALL_STATE(2199)] = 110894, + [SMALL_STATE(2200)] = 110946, + [SMALL_STATE(2201)] = 111000, + [SMALL_STATE(2202)] = 111054, + [SMALL_STATE(2203)] = 111110, + [SMALL_STATE(2204)] = 111166, + [SMALL_STATE(2205)] = 111260, + [SMALL_STATE(2206)] = 111354, + [SMALL_STATE(2207)] = 111408, + [SMALL_STATE(2208)] = 111462, + [SMALL_STATE(2209)] = 111556, + [SMALL_STATE(2210)] = 111608, + [SMALL_STATE(2211)] = 111702, + [SMALL_STATE(2212)] = 111754, + [SMALL_STATE(2213)] = 111802, + [SMALL_STATE(2214)] = 111850, + [SMALL_STATE(2215)] = 111902, + [SMALL_STATE(2216)] = 111954, + [SMALL_STATE(2217)] = 112002, + [SMALL_STATE(2218)] = 112050, + [SMALL_STATE(2219)] = 112102, + [SMALL_STATE(2220)] = 112158, + [SMALL_STATE(2221)] = 112206, + [SMALL_STATE(2222)] = 112258, + [SMALL_STATE(2223)] = 112314, + [SMALL_STATE(2224)] = 112368, + [SMALL_STATE(2225)] = 112420, + [SMALL_STATE(2226)] = 112468, + [SMALL_STATE(2227)] = 112516, + [SMALL_STATE(2228)] = 112568, + [SMALL_STATE(2229)] = 112662, + [SMALL_STATE(2230)] = 112714, + [SMALL_STATE(2231)] = 112770, + [SMALL_STATE(2232)] = 112826, + [SMALL_STATE(2233)] = 112874, + [SMALL_STATE(2234)] = 112928, + [SMALL_STATE(2235)] = 113022, + [SMALL_STATE(2236)] = 113078, + [SMALL_STATE(2237)] = 113130, + [SMALL_STATE(2238)] = 113178, + [SMALL_STATE(2239)] = 113226, + [SMALL_STATE(2240)] = 113274, + [SMALL_STATE(2241)] = 113322, + [SMALL_STATE(2242)] = 113370, + [SMALL_STATE(2243)] = 113418, + [SMALL_STATE(2244)] = 113470, + [SMALL_STATE(2245)] = 113522, + [SMALL_STATE(2246)] = 113570, + [SMALL_STATE(2247)] = 113618, + [SMALL_STATE(2248)] = 113666, + [SMALL_STATE(2249)] = 113714, + [SMALL_STATE(2250)] = 113762, + [SMALL_STATE(2251)] = 113810, + [SMALL_STATE(2252)] = 113858, + [SMALL_STATE(2253)] = 113906, + [SMALL_STATE(2254)] = 113954, + [SMALL_STATE(2255)] = 114002, + [SMALL_STATE(2256)] = 114058, + [SMALL_STATE(2257)] = 114112, + [SMALL_STATE(2258)] = 114160, + [SMALL_STATE(2259)] = 114208, + [SMALL_STATE(2260)] = 114256, + [SMALL_STATE(2261)] = 114310, + [SMALL_STATE(2262)] = 114360, + [SMALL_STATE(2263)] = 114454, + [SMALL_STATE(2264)] = 114508, + [SMALL_STATE(2265)] = 114560, + [SMALL_STATE(2266)] = 114654, [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(2268)] = 114754, + [SMALL_STATE(2269)] = 114806, + [SMALL_STATE(2270)] = 114854, + [SMALL_STATE(2271)] = 114902, + [SMALL_STATE(2272)] = 114950, + [SMALL_STATE(2273)] = 114998, + [SMALL_STATE(2274)] = 115046, + [SMALL_STATE(2275)] = 115094, + [SMALL_STATE(2276)] = 115142, + [SMALL_STATE(2277)] = 115190, + [SMALL_STATE(2278)] = 115238, + [SMALL_STATE(2279)] = 115286, + [SMALL_STATE(2280)] = 115334, + [SMALL_STATE(2281)] = 115382, + [SMALL_STATE(2282)] = 115430, + [SMALL_STATE(2283)] = 115478, + [SMALL_STATE(2284)] = 115530, + [SMALL_STATE(2285)] = 115582, + [SMALL_STATE(2286)] = 115630, + [SMALL_STATE(2287)] = 115678, + [SMALL_STATE(2288)] = 115726, + [SMALL_STATE(2289)] = 115774, + [SMALL_STATE(2290)] = 115830, + [SMALL_STATE(2291)] = 115886, + [SMALL_STATE(2292)] = 115934, + [SMALL_STATE(2293)] = 115986, + [SMALL_STATE(2294)] = 116080, + [SMALL_STATE(2295)] = 116128, + [SMALL_STATE(2296)] = 116176, + [SMALL_STATE(2297)] = 116230, + [SMALL_STATE(2298)] = 116324, + [SMALL_STATE(2299)] = 116376, + [SMALL_STATE(2300)] = 116428, + [SMALL_STATE(2301)] = 116476, + [SMALL_STATE(2302)] = 116530, + [SMALL_STATE(2303)] = 116578, + [SMALL_STATE(2304)] = 116626, + [SMALL_STATE(2305)] = 116678, + [SMALL_STATE(2306)] = 116732, + [SMALL_STATE(2307)] = 116786, + [SMALL_STATE(2308)] = 116834, + [SMALL_STATE(2309)] = 116882, + [SMALL_STATE(2310)] = 116934, + [SMALL_STATE(2311)] = 116982, + [SMALL_STATE(2312)] = 117030, + [SMALL_STATE(2313)] = 117082, + [SMALL_STATE(2314)] = 117130, + [SMALL_STATE(2315)] = 117182, + [SMALL_STATE(2316)] = 117230, + [SMALL_STATE(2317)] = 117278, + [SMALL_STATE(2318)] = 117326, + [SMALL_STATE(2319)] = 117374, + [SMALL_STATE(2320)] = 117422, + [SMALL_STATE(2321)] = 117470, + [SMALL_STATE(2322)] = 117526, + [SMALL_STATE(2323)] = 117580, + [SMALL_STATE(2324)] = 117674, + [SMALL_STATE(2325)] = 117722, + [SMALL_STATE(2326)] = 117774, + [SMALL_STATE(2327)] = 117822, + [SMALL_STATE(2328)] = 117870, + [SMALL_STATE(2329)] = 117918, + [SMALL_STATE(2330)] = 117965, + [SMALL_STATE(2331)] = 118012, + [SMALL_STATE(2332)] = 118059, + [SMALL_STATE(2333)] = 118106, + [SMALL_STATE(2334)] = 118159, + [SMALL_STATE(2335)] = 118212, + [SMALL_STATE(2336)] = 118259, + [SMALL_STATE(2337)] = 118306, + [SMALL_STATE(2338)] = 118357, + [SMALL_STATE(2339)] = 118406, + [SMALL_STATE(2340)] = 118457, + [SMALL_STATE(2341)] = 118504, + [SMALL_STATE(2342)] = 118551, + [SMALL_STATE(2343)] = 118598, + [SMALL_STATE(2344)] = 118645, + [SMALL_STATE(2345)] = 118692, + [SMALL_STATE(2346)] = 118739, + [SMALL_STATE(2347)] = 118786, + [SMALL_STATE(2348)] = 118833, + [SMALL_STATE(2349)] = 118880, + [SMALL_STATE(2350)] = 118931, + [SMALL_STATE(2351)] = 118978, + [SMALL_STATE(2352)] = 119025, + [SMALL_STATE(2353)] = 119074, + [SMALL_STATE(2354)] = 119121, + [SMALL_STATE(2355)] = 119168, + [SMALL_STATE(2356)] = 119215, + [SMALL_STATE(2357)] = 119262, + [SMALL_STATE(2358)] = 119309, + [SMALL_STATE(2359)] = 119356, + [SMALL_STATE(2360)] = 119407, + [SMALL_STATE(2361)] = 119454, + [SMALL_STATE(2362)] = 119505, + [SMALL_STATE(2363)] = 119554, + [SMALL_STATE(2364)] = 119603, + [SMALL_STATE(2365)] = 119650, + [SMALL_STATE(2366)] = 119697, + [SMALL_STATE(2367)] = 119748, + [SMALL_STATE(2368)] = 119799, + [SMALL_STATE(2369)] = 119846, + [SMALL_STATE(2370)] = 119893, + [SMALL_STATE(2371)] = 119940, + [SMALL_STATE(2372)] = 119993, + [SMALL_STATE(2373)] = 120040, + [SMALL_STATE(2374)] = 120093, + [SMALL_STATE(2375)] = 120140, + [SMALL_STATE(2376)] = 120187, + [SMALL_STATE(2377)] = 120238, + [SMALL_STATE(2378)] = 120285, + [SMALL_STATE(2379)] = 120332, + [SMALL_STATE(2380)] = 120379, + [SMALL_STATE(2381)] = 120430, + [SMALL_STATE(2382)] = 120477, + [SMALL_STATE(2383)] = 120528, + [SMALL_STATE(2384)] = 120575, + [SMALL_STATE(2385)] = 120622, + [SMALL_STATE(2386)] = 120669, + [SMALL_STATE(2387)] = 120716, + [SMALL_STATE(2388)] = 120763, + [SMALL_STATE(2389)] = 120816, + [SMALL_STATE(2390)] = 120863, + [SMALL_STATE(2391)] = 120916, + [SMALL_STATE(2392)] = 120963, + [SMALL_STATE(2393)] = 121010, + [SMALL_STATE(2394)] = 121059, + [SMALL_STATE(2395)] = 121106, + [SMALL_STATE(2396)] = 121159, + [SMALL_STATE(2397)] = 121212, + [SMALL_STATE(2398)] = 121259, + [SMALL_STATE(2399)] = 121310, + [SMALL_STATE(2400)] = 121357, + [SMALL_STATE(2401)] = 121404, + [SMALL_STATE(2402)] = 121451, + [SMALL_STATE(2403)] = 121498, + [SMALL_STATE(2404)] = 121545, + [SMALL_STATE(2405)] = 121596, + [SMALL_STATE(2406)] = 121643, + [SMALL_STATE(2407)] = 121690, + [SMALL_STATE(2408)] = 121741, + [SMALL_STATE(2409)] = 121792, + [SMALL_STATE(2410)] = 121839, + [SMALL_STATE(2411)] = 121892, + [SMALL_STATE(2412)] = 121945, + [SMALL_STATE(2413)] = 121998, + [SMALL_STATE(2414)] = 122045, + [SMALL_STATE(2415)] = 122096, + [SMALL_STATE(2416)] = 122143, + [SMALL_STATE(2417)] = 122194, + [SMALL_STATE(2418)] = 122241, + [SMALL_STATE(2419)] = 122288, + [SMALL_STATE(2420)] = 122335, + [SMALL_STATE(2421)] = 122386, + [SMALL_STATE(2422)] = 122437, + [SMALL_STATE(2423)] = 122484, + [SMALL_STATE(2424)] = 122531, + [SMALL_STATE(2425)] = 122578, + [SMALL_STATE(2426)] = 122625, + [SMALL_STATE(2427)] = 122676, + [SMALL_STATE(2428)] = 122723, + [SMALL_STATE(2429)] = 122770, + [SMALL_STATE(2430)] = 122817, + [SMALL_STATE(2431)] = 122864, + [SMALL_STATE(2432)] = 122911, + [SMALL_STATE(2433)] = 122964, + [SMALL_STATE(2434)] = 123017, + [SMALL_STATE(2435)] = 123064, + [SMALL_STATE(2436)] = 123117, + [SMALL_STATE(2437)] = 123164, + [SMALL_STATE(2438)] = 123217, + [SMALL_STATE(2439)] = 123266, + [SMALL_STATE(2440)] = 123313, + [SMALL_STATE(2441)] = 123364, + [SMALL_STATE(2442)] = 123411, + [SMALL_STATE(2443)] = 123458, + [SMALL_STATE(2444)] = 123505, + [SMALL_STATE(2445)] = 123556, + [SMALL_STATE(2446)] = 123605, + [SMALL_STATE(2447)] = 123652, + [SMALL_STATE(2448)] = 123699, + [SMALL_STATE(2449)] = 123746, + [SMALL_STATE(2450)] = 123793, + [SMALL_STATE(2451)] = 123844, + [SMALL_STATE(2452)] = 123891, + [SMALL_STATE(2453)] = 123973, + [SMALL_STATE(2454)] = 124023, + [SMALL_STATE(2455)] = 124069, + [SMALL_STATE(2456)] = 124117, + [SMALL_STATE(2457)] = 124173, + [SMALL_STATE(2458)] = 124219, + [SMALL_STATE(2459)] = 124301, + [SMALL_STATE(2460)] = 124351, + [SMALL_STATE(2461)] = 124401, + [SMALL_STATE(2462)] = 124447, + [SMALL_STATE(2463)] = 124501, + [SMALL_STATE(2464)] = 124583, + [SMALL_STATE(2465)] = 124629, + [SMALL_STATE(2466)] = 124683, + [SMALL_STATE(2467)] = 124733, + [SMALL_STATE(2468)] = 124779, + [SMALL_STATE(2469)] = 124861, + [SMALL_STATE(2470)] = 124907, + [SMALL_STATE(2471)] = 124957, + [SMALL_STATE(2472)] = 125039, + [SMALL_STATE(2473)] = 125121, + [SMALL_STATE(2474)] = 125203, + [SMALL_STATE(2475)] = 125285, + [SMALL_STATE(2476)] = 125367, + [SMALL_STATE(2477)] = 125413, + [SMALL_STATE(2478)] = 125495, + [SMALL_STATE(2479)] = 125577, + [SMALL_STATE(2480)] = 125623, + [SMALL_STATE(2481)] = 125705, + [SMALL_STATE(2482)] = 125751, + [SMALL_STATE(2483)] = 125833, + [SMALL_STATE(2484)] = 125915, + [SMALL_STATE(2485)] = 125961, + [SMALL_STATE(2486)] = 126043, + [SMALL_STATE(2487)] = 126089, + [SMALL_STATE(2488)] = 126171, + [SMALL_STATE(2489)] = 126217, + [SMALL_STATE(2490)] = 126299, + [SMALL_STATE(2491)] = 126381, + [SMALL_STATE(2492)] = 126463, + [SMALL_STATE(2493)] = 126545, + [SMALL_STATE(2494)] = 126627, + [SMALL_STATE(2495)] = 126709, + [SMALL_STATE(2496)] = 126791, + [SMALL_STATE(2497)] = 126873, + [SMALL_STATE(2498)] = 126955, + [SMALL_STATE(2499)] = 127037, + [SMALL_STATE(2500)] = 127119, + [SMALL_STATE(2501)] = 127201, + [SMALL_STATE(2502)] = 127283, + [SMALL_STATE(2503)] = 127365, + [SMALL_STATE(2504)] = 127447, + [SMALL_STATE(2505)] = 127529, + [SMALL_STATE(2506)] = 127611, + [SMALL_STATE(2507)] = 127693, + [SMALL_STATE(2508)] = 127775, + [SMALL_STATE(2509)] = 127857, + [SMALL_STATE(2510)] = 127903, + [SMALL_STATE(2511)] = 127985, + [SMALL_STATE(2512)] = 128031, + [SMALL_STATE(2513)] = 128113, + [SMALL_STATE(2514)] = 128195, + [SMALL_STATE(2515)] = 128277, + [SMALL_STATE(2516)] = 128359, + [SMALL_STATE(2517)] = 128441, + [SMALL_STATE(2518)] = 128487, + [SMALL_STATE(2519)] = 128569, + [SMALL_STATE(2520)] = 128651, + [SMALL_STATE(2521)] = 128733, + [SMALL_STATE(2522)] = 128815, + [SMALL_STATE(2523)] = 128897, + [SMALL_STATE(2524)] = 128979, + [SMALL_STATE(2525)] = 129025, + [SMALL_STATE(2526)] = 129107, + [SMALL_STATE(2527)] = 129153, + [SMALL_STATE(2528)] = 129235, + [SMALL_STATE(2529)] = 129317, + [SMALL_STATE(2530)] = 129363, + [SMALL_STATE(2531)] = 129445, + [SMALL_STATE(2532)] = 129491, + [SMALL_STATE(2533)] = 129573, + [SMALL_STATE(2534)] = 129623, + [SMALL_STATE(2535)] = 129705, + [SMALL_STATE(2536)] = 129755, + [SMALL_STATE(2537)] = 129837, + [SMALL_STATE(2538)] = 129883, + [SMALL_STATE(2539)] = 129965, + [SMALL_STATE(2540)] = 130011, + [SMALL_STATE(2541)] = 130057, + [SMALL_STATE(2542)] = 130103, + [SMALL_STATE(2543)] = 130149, + [SMALL_STATE(2544)] = 130195, + [SMALL_STATE(2545)] = 130241, + [SMALL_STATE(2546)] = 130287, + [SMALL_STATE(2547)] = 130339, + [SMALL_STATE(2548)] = 130391, + [SMALL_STATE(2549)] = 130441, + [SMALL_STATE(2550)] = 130487, + [SMALL_STATE(2551)] = 130533, + [SMALL_STATE(2552)] = 130579, + [SMALL_STATE(2553)] = 130625, + [SMALL_STATE(2554)] = 130671, + [SMALL_STATE(2555)] = 130717, + [SMALL_STATE(2556)] = 130767, + [SMALL_STATE(2557)] = 130813, + [SMALL_STATE(2558)] = 130863, + [SMALL_STATE(2559)] = 130909, + [SMALL_STATE(2560)] = 130961, + [SMALL_STATE(2561)] = 131007, + [SMALL_STATE(2562)] = 131057, + [SMALL_STATE(2563)] = 131105, + [SMALL_STATE(2564)] = 131161, + [SMALL_STATE(2565)] = 131207, + [SMALL_STATE(2566)] = 131257, + [SMALL_STATE(2567)] = 131307, + [SMALL_STATE(2568)] = 131357, + [SMALL_STATE(2569)] = 131429, + [SMALL_STATE(2570)] = 131487, + [SMALL_STATE(2571)] = 131543, + [SMALL_STATE(2572)] = 131591, + [SMALL_STATE(2573)] = 131647, + [SMALL_STATE(2574)] = 131697, + [SMALL_STATE(2575)] = 131747, + [SMALL_STATE(2576)] = 131793, + [SMALL_STATE(2577)] = 131843, + [SMALL_STATE(2578)] = 131893, + [SMALL_STATE(2579)] = 131939, + [SMALL_STATE(2580)] = 132013, + [SMALL_STATE(2581)] = 132059, + [SMALL_STATE(2582)] = 132105, + [SMALL_STATE(2583)] = 132161, + [SMALL_STATE(2584)] = 132237, + [SMALL_STATE(2585)] = 132315, + [SMALL_STATE(2586)] = 132387, + [SMALL_STATE(2587)] = 132457, + [SMALL_STATE(2588)] = 132525, + [SMALL_STATE(2589)] = 132591, + [SMALL_STATE(2590)] = 132655, + [SMALL_STATE(2591)] = 132717, + [SMALL_STATE(2592)] = 132763, + [SMALL_STATE(2593)] = 132821, + [SMALL_STATE(2594)] = 132875, + [SMALL_STATE(2595)] = 132927, + [SMALL_STATE(2596)] = 132977, + [SMALL_STATE(2597)] = 133023, + [SMALL_STATE(2598)] = 133073, + [SMALL_STATE(2599)] = 133119, + [SMALL_STATE(2600)] = 133167, + [SMALL_STATE(2601)] = 133213, + [SMALL_STATE(2602)] = 133259, + [SMALL_STATE(2603)] = 133305, + [SMALL_STATE(2604)] = 133361, + [SMALL_STATE(2605)] = 133407, + [SMALL_STATE(2606)] = 133463, + [SMALL_STATE(2607)] = 133513, + [SMALL_STATE(2608)] = 133559, + [SMALL_STATE(2609)] = 133605, + [SMALL_STATE(2610)] = 133651, + [SMALL_STATE(2611)] = 133697, + [SMALL_STATE(2612)] = 133747, + [SMALL_STATE(2613)] = 133795, + [SMALL_STATE(2614)] = 133845, + [SMALL_STATE(2615)] = 133891, + [SMALL_STATE(2616)] = 133973, + [SMALL_STATE(2617)] = 134019, + [SMALL_STATE(2618)] = 134069, + [SMALL_STATE(2619)] = 134115, + [SMALL_STATE(2620)] = 134161, + [SMALL_STATE(2621)] = 134207, + [SMALL_STATE(2622)] = 134253, + [SMALL_STATE(2623)] = 134299, + [SMALL_STATE(2624)] = 134345, + [SMALL_STATE(2625)] = 134391, + [SMALL_STATE(2626)] = 134437, + [SMALL_STATE(2627)] = 134483, + [SMALL_STATE(2628)] = 134529, + [SMALL_STATE(2629)] = 134575, + [SMALL_STATE(2630)] = 134621, + [SMALL_STATE(2631)] = 134695, + [SMALL_STATE(2632)] = 134741, + [SMALL_STATE(2633)] = 134787, + [SMALL_STATE(2634)] = 134863, + [SMALL_STATE(2635)] = 134933, + [SMALL_STATE(2636)] = 134979, + [SMALL_STATE(2637)] = 135047, + [SMALL_STATE(2638)] = 135093, + [SMALL_STATE(2639)] = 135139, + [SMALL_STATE(2640)] = 135205, + [SMALL_STATE(2641)] = 135269, + [SMALL_STATE(2642)] = 135315, + [SMALL_STATE(2643)] = 135361, + [SMALL_STATE(2644)] = 135407, + [SMALL_STATE(2645)] = 135453, + [SMALL_STATE(2646)] = 135499, + [SMALL_STATE(2647)] = 135561, + [SMALL_STATE(2648)] = 135643, + [SMALL_STATE(2649)] = 135703, + [SMALL_STATE(2650)] = 135749, + [SMALL_STATE(2651)] = 135795, + [SMALL_STATE(2652)] = 135845, + [SMALL_STATE(2653)] = 135901, + [SMALL_STATE(2654)] = 135947, + [SMALL_STATE(2655)] = 135993, + [SMALL_STATE(2656)] = 136039, + [SMALL_STATE(2657)] = 136093, + [SMALL_STATE(2658)] = 136143, + [SMALL_STATE(2659)] = 136190, + [SMALL_STATE(2660)] = 136239, + [SMALL_STATE(2661)] = 136318, + [SMALL_STATE(2662)] = 136363, + [SMALL_STATE(2663)] = 136442, + [SMALL_STATE(2664)] = 136519, + [SMALL_STATE(2665)] = 136568, + [SMALL_STATE(2666)] = 136613, + [SMALL_STATE(2667)] = 136658, + [SMALL_STATE(2668)] = 136737, + [SMALL_STATE(2669)] = 136792, + [SMALL_STATE(2670)] = 136867, + [SMALL_STATE(2671)] = 136944, + [SMALL_STATE(2672)] = 136993, + [SMALL_STATE(2673)] = 137064, + [SMALL_STATE(2674)] = 137113, + [SMALL_STATE(2675)] = 137174, + [SMALL_STATE(2676)] = 137253, + [SMALL_STATE(2677)] = 137310, + [SMALL_STATE(2678)] = 137379, + [SMALL_STATE(2679)] = 137424, + [SMALL_STATE(2680)] = 137469, + [SMALL_STATE(2681)] = 137538, + [SMALL_STATE(2682)] = 137617, + [SMALL_STATE(2683)] = 137662, + [SMALL_STATE(2684)] = 137707, + [SMALL_STATE(2685)] = 137760, + [SMALL_STATE(2686)] = 137827, + [SMALL_STATE(2687)] = 137892, + [SMALL_STATE(2688)] = 137955, + [SMALL_STATE(2689)] = 138016, + [SMALL_STATE(2690)] = 138061, + [SMALL_STATE(2691)] = 138106, + [SMALL_STATE(2692)] = 138163, + [SMALL_STATE(2693)] = 138216, + [SMALL_STATE(2694)] = 138261, + [SMALL_STATE(2695)] = 138306, + [SMALL_STATE(2696)] = 138357, + [SMALL_STATE(2697)] = 138402, + [SMALL_STATE(2698)] = 138451, + [SMALL_STATE(2699)] = 138500, + [SMALL_STATE(2700)] = 138579, + [SMALL_STATE(2701)] = 138630, + [SMALL_STATE(2702)] = 138709, + [SMALL_STATE(2703)] = 138754, + [SMALL_STATE(2704)] = 138801, + [SMALL_STATE(2705)] = 138846, + [SMALL_STATE(2706)] = 138891, + [SMALL_STATE(2707)] = 138936, + [SMALL_STATE(2708)] = 138985, + [SMALL_STATE(2709)] = 139040, + [SMALL_STATE(2710)] = 139085, + [SMALL_STATE(2711)] = 139164, + [SMALL_STATE(2712)] = 139213, + [SMALL_STATE(2713)] = 139258, + [SMALL_STATE(2714)] = 139303, + [SMALL_STATE(2715)] = 139348, + [SMALL_STATE(2716)] = 139405, + [SMALL_STATE(2717)] = 139484, + [SMALL_STATE(2718)] = 139563, + [SMALL_STATE(2719)] = 139608, + [SMALL_STATE(2720)] = 139663, + [SMALL_STATE(2721)] = 139718, + [SMALL_STATE(2722)] = 139797, + [SMALL_STATE(2723)] = 139846, + [SMALL_STATE(2724)] = 139903, + [SMALL_STATE(2725)] = 139976, + [SMALL_STATE(2726)] = 140051, + [SMALL_STATE(2727)] = 140106, + [SMALL_STATE(2728)] = 140183, + [SMALL_STATE(2729)] = 140228, + [SMALL_STATE(2730)] = 140273, + [SMALL_STATE(2731)] = 140318, + [SMALL_STATE(2732)] = 140389, + [SMALL_STATE(2733)] = 140458, + [SMALL_STATE(2734)] = 140507, + [SMALL_STATE(2735)] = 140574, + [SMALL_STATE(2736)] = 140639, + [SMALL_STATE(2737)] = 140702, + [SMALL_STATE(2738)] = 140763, + [SMALL_STATE(2739)] = 140820, + [SMALL_STATE(2740)] = 140873, + [SMALL_STATE(2741)] = 140918, + [SMALL_STATE(2742)] = 140965, + [SMALL_STATE(2743)] = 141012, + [SMALL_STATE(2744)] = 141059, + [SMALL_STATE(2745)] = 141110, + [SMALL_STATE(2746)] = 141189, + [SMALL_STATE(2747)] = 141268, + [SMALL_STATE(2748)] = 141317, + [SMALL_STATE(2749)] = 141364, + [SMALL_STATE(2750)] = 141413, + [SMALL_STATE(2751)] = 141460, + [SMALL_STATE(2752)] = 141539, + [SMALL_STATE(2753)] = 141600, + [SMALL_STATE(2754)] = 141655, + [SMALL_STATE(2755)] = 141710, + [SMALL_STATE(2756)] = 141789, + [SMALL_STATE(2757)] = 141868, + [SMALL_STATE(2758)] = 141935, + [SMALL_STATE(2759)] = 142000, + [SMALL_STATE(2760)] = 142073, + [SMALL_STATE(2761)] = 142118, + [SMALL_STATE(2762)] = 142197, + [SMALL_STATE(2763)] = 142242, + [SMALL_STATE(2764)] = 142305, + [SMALL_STATE(2765)] = 142384, + [SMALL_STATE(2766)] = 142429, + [SMALL_STATE(2767)] = 142508, + [SMALL_STATE(2768)] = 142563, + [SMALL_STATE(2769)] = 142610, + [SMALL_STATE(2770)] = 142665, + [SMALL_STATE(2771)] = 142744, + [SMALL_STATE(2772)] = 142789, + [SMALL_STATE(2773)] = 142836, + [SMALL_STATE(2774)] = 142887, + [SMALL_STATE(2775)] = 142932, + [SMALL_STATE(2776)] = 142987, + [SMALL_STATE(2777)] = 143042, + [SMALL_STATE(2778)] = 143091, + [SMALL_STATE(2779)] = 143170, + [SMALL_STATE(2780)] = 143249, + [SMALL_STATE(2781)] = 143294, + [SMALL_STATE(2782)] = 143373, + [SMALL_STATE(2783)] = 143418, + [SMALL_STATE(2784)] = 143463, + [SMALL_STATE(2785)] = 143508, + [SMALL_STATE(2786)] = 143555, + [SMALL_STATE(2787)] = 143600, + [SMALL_STATE(2788)] = 143679, + [SMALL_STATE(2789)] = 143726, + [SMALL_STATE(2790)] = 143781, + [SMALL_STATE(2791)] = 143836, + [SMALL_STATE(2792)] = 143883, + [SMALL_STATE(2793)] = 143932, + [SMALL_STATE(2794)] = 143987, + [SMALL_STATE(2795)] = 144032, + [SMALL_STATE(2796)] = 144111, + [SMALL_STATE(2797)] = 144166, + [SMALL_STATE(2798)] = 144221, + [SMALL_STATE(2799)] = 144270, + [SMALL_STATE(2800)] = 144349, + [SMALL_STATE(2801)] = 144424, + [SMALL_STATE(2802)] = 144469, + [SMALL_STATE(2803)] = 144514, + [SMALL_STATE(2804)] = 144559, + [SMALL_STATE(2805)] = 144638, + [SMALL_STATE(2806)] = 144717, + [SMALL_STATE(2807)] = 144762, + [SMALL_STATE(2808)] = 144809, + [SMALL_STATE(2809)] = 144882, + [SMALL_STATE(2810)] = 144961, + [SMALL_STATE(2811)] = 145006, + [SMALL_STATE(2812)] = 145051, + [SMALL_STATE(2813)] = 145126, + [SMALL_STATE(2814)] = 145205, + [SMALL_STATE(2815)] = 145264, + [SMALL_STATE(2816)] = 145341, + [SMALL_STATE(2817)] = 145412, + [SMALL_STATE(2818)] = 145491, + [SMALL_STATE(2819)] = 145570, + [SMALL_STATE(2820)] = 145615, + [SMALL_STATE(2821)] = 145694, + [SMALL_STATE(2822)] = 145747, + [SMALL_STATE(2823)] = 145792, + [SMALL_STATE(2824)] = 145845, + [SMALL_STATE(2825)] = 145922, + [SMALL_STATE(2826)] = 145993, + [SMALL_STATE(2827)] = 146072, + [SMALL_STATE(2828)] = 146117, + [SMALL_STATE(2829)] = 146174, + [SMALL_STATE(2830)] = 146221, + [SMALL_STATE(2831)] = 146266, + [SMALL_STATE(2832)] = 146311, + [SMALL_STATE(2833)] = 146356, + [SMALL_STATE(2834)] = 146429, + [SMALL_STATE(2835)] = 146498, + [SMALL_STATE(2836)] = 146565, + [SMALL_STATE(2837)] = 146644, + [SMALL_STATE(2838)] = 146723, + [SMALL_STATE(2839)] = 146792, + [SMALL_STATE(2840)] = 146849, + [SMALL_STATE(2841)] = 146904, + [SMALL_STATE(2842)] = 146959, + [SMALL_STATE(2843)] = 147038, + [SMALL_STATE(2844)] = 147105, + [SMALL_STATE(2845)] = 147184, + [SMALL_STATE(2846)] = 147249, + [SMALL_STATE(2847)] = 147312, + [SMALL_STATE(2848)] = 147391, + [SMALL_STATE(2849)] = 147452, + [SMALL_STATE(2850)] = 147517, + [SMALL_STATE(2851)] = 147562, + [SMALL_STATE(2852)] = 147641, + [SMALL_STATE(2853)] = 147698, + [SMALL_STATE(2854)] = 147747, + [SMALL_STATE(2855)] = 147802, + [SMALL_STATE(2856)] = 147865, + [SMALL_STATE(2857)] = 147944, + [SMALL_STATE(2858)] = 148023, + [SMALL_STATE(2859)] = 148068, + [SMALL_STATE(2860)] = 148121, + [SMALL_STATE(2861)] = 148166, + [SMALL_STATE(2862)] = 148211, + [SMALL_STATE(2863)] = 148256, + [SMALL_STATE(2864)] = 148301, + [SMALL_STATE(2865)] = 148380, + [SMALL_STATE(2866)] = 148437, + [SMALL_STATE(2867)] = 148490, + [SMALL_STATE(2868)] = 148541, + [SMALL_STATE(2869)] = 148590, + [SMALL_STATE(2870)] = 148669, + [SMALL_STATE(2871)] = 148714, + [SMALL_STATE(2872)] = 148785, + [SMALL_STATE(2873)] = 148829, + [SMALL_STATE(2874)] = 148905, + [SMALL_STATE(2875)] = 148993, + [SMALL_STATE(2876)] = 149067, + [SMALL_STATE(2877)] = 149155, + [SMALL_STATE(2878)] = 149223, + [SMALL_STATE(2879)] = 149289, + [SMALL_STATE(2880)] = 149353, + [SMALL_STATE(2881)] = 149429, + [SMALL_STATE(2882)] = 149473, + [SMALL_STATE(2883)] = 149535, + [SMALL_STATE(2884)] = 149611, + [SMALL_STATE(2885)] = 149655, + [SMALL_STATE(2886)] = 149699, + [SMALL_STATE(2887)] = 149775, + [SMALL_STATE(2888)] = 149819, + [SMALL_STATE(2889)] = 149867, + [SMALL_STATE(2890)] = 149943, + [SMALL_STATE(2891)] = 150019, + [SMALL_STATE(2892)] = 150095, + [SMALL_STATE(2893)] = 150139, + [SMALL_STATE(2894)] = 150215, + [SMALL_STATE(2895)] = 150291, + [SMALL_STATE(2896)] = 150379, + [SMALL_STATE(2897)] = 150455, + [SMALL_STATE(2898)] = 150509, + [SMALL_STATE(2899)] = 150585, + [SMALL_STATE(2900)] = 150661, + [SMALL_STATE(2901)] = 150705, + [SMALL_STATE(2902)] = 150775, + [SMALL_STATE(2903)] = 150819, + [SMALL_STATE(2904)] = 150895, + [SMALL_STATE(2905)] = 150939, + [SMALL_STATE(2906)] = 150983, + [SMALL_STATE(2907)] = 151027, + [SMALL_STATE(2908)] = 151081, + [SMALL_STATE(2909)] = 151127, + [SMALL_STATE(2910)] = 151181, + [SMALL_STATE(2911)] = 151225, + [SMALL_STATE(2912)] = 151269, + [SMALL_STATE(2913)] = 151313, + [SMALL_STATE(2914)] = 151389, + [SMALL_STATE(2915)] = 151433, + [SMALL_STATE(2916)] = 151509, + [SMALL_STATE(2917)] = 151585, + [SMALL_STATE(2918)] = 151661, + [SMALL_STATE(2919)] = 151709, + [SMALL_STATE(2920)] = 151785, + [SMALL_STATE(2921)] = 151829, + [SMALL_STATE(2922)] = 151873, + [SMALL_STATE(2923)] = 151933, + [SMALL_STATE(2924)] = 151977, + [SMALL_STATE(2925)] = 152021, + [SMALL_STATE(2926)] = 152097, + [SMALL_STATE(2927)] = 152155, + [SMALL_STATE(2928)] = 152231, + [SMALL_STATE(2929)] = 152275, + [SMALL_STATE(2930)] = 152323, + [SMALL_STATE(2931)] = 152367, + [SMALL_STATE(2932)] = 152421, + [SMALL_STATE(2933)] = 152473, + [SMALL_STATE(2934)] = 152523, + [SMALL_STATE(2935)] = 152571, + [SMALL_STATE(2936)] = 152617, + [SMALL_STATE(2937)] = 152661, + [SMALL_STATE(2938)] = 152705, + [SMALL_STATE(2939)] = 152781, + [SMALL_STATE(2940)] = 152825, + [SMALL_STATE(2941)] = 152869, + [SMALL_STATE(2942)] = 152945, + [SMALL_STATE(2943)] = 152999, + [SMALL_STATE(2944)] = 153069, + [SMALL_STATE(2945)] = 153145, + [SMALL_STATE(2946)] = 153221, + [SMALL_STATE(2947)] = 153265, + [SMALL_STATE(2948)] = 153341, + [SMALL_STATE(2949)] = 153385, + [SMALL_STATE(2950)] = 153429, + [SMALL_STATE(2951)] = 153473, + [SMALL_STATE(2952)] = 153517, + [SMALL_STATE(2953)] = 153571, + [SMALL_STATE(2954)] = 153615, + [SMALL_STATE(2955)] = 153659, + [SMALL_STATE(2956)] = 153735, + [SMALL_STATE(2957)] = 153811, + [SMALL_STATE(2958)] = 153887, + [SMALL_STATE(2959)] = 153931, + [SMALL_STATE(2960)] = 153975, + [SMALL_STATE(2961)] = 154051, + [SMALL_STATE(2962)] = 154127, + [SMALL_STATE(2963)] = 154171, + [SMALL_STATE(2964)] = 154247, + [SMALL_STATE(2965)] = 154323, + [SMALL_STATE(2966)] = 154399, + [SMALL_STATE(2967)] = 154445, + [SMALL_STATE(2968)] = 154489, + [SMALL_STATE(2969)] = 154533, + [SMALL_STATE(2970)] = 154605, + [SMALL_STATE(2971)] = 154679, + [SMALL_STATE(2972)] = 154755, + [SMALL_STATE(2973)] = 154823, + [SMALL_STATE(2974)] = 154889, + [SMALL_STATE(2975)] = 154953, + [SMALL_STATE(2976)] = 155015, + [SMALL_STATE(2977)] = 155075, + [SMALL_STATE(2978)] = 155133, + [SMALL_STATE(2979)] = 155187, + [SMALL_STATE(2980)] = 155239, + [SMALL_STATE(2981)] = 155289, + [SMALL_STATE(2982)] = 155337, + [SMALL_STATE(2983)] = 155381, + [SMALL_STATE(2984)] = 155425, + [SMALL_STATE(2985)] = 155469, + [SMALL_STATE(2986)] = 155545, + [SMALL_STATE(2987)] = 155591, + [SMALL_STATE(2988)] = 155645, + [SMALL_STATE(2989)] = 155693, + [SMALL_STATE(2990)] = 155769, + [SMALL_STATE(2991)] = 155845, + [SMALL_STATE(2992)] = 155899, + [SMALL_STATE(2993)] = 155975, + [SMALL_STATE(2994)] = 156019, + [SMALL_STATE(2995)] = 156063, + [SMALL_STATE(2996)] = 156107, + [SMALL_STATE(2997)] = 156151, + [SMALL_STATE(2998)] = 156195, + [SMALL_STATE(2999)] = 156239, + [SMALL_STATE(3000)] = 156283, + [SMALL_STATE(3001)] = 156359, + [SMALL_STATE(3002)] = 156403, + [SMALL_STATE(3003)] = 156447, + [SMALL_STATE(3004)] = 156491, + [SMALL_STATE(3005)] = 156567, + [SMALL_STATE(3006)] = 156655, + [SMALL_STATE(3007)] = 156699, + [SMALL_STATE(3008)] = 156743, + [SMALL_STATE(3009)] = 156787, + [SMALL_STATE(3010)] = 156855, + [SMALL_STATE(3011)] = 156921, + [SMALL_STATE(3012)] = 156985, + [SMALL_STATE(3013)] = 157049, + [SMALL_STATE(3014)] = 157111, + [SMALL_STATE(3015)] = 157171, + [SMALL_STATE(3016)] = 157229, + [SMALL_STATE(3017)] = 157283, + [SMALL_STATE(3018)] = 157335, + [SMALL_STATE(3019)] = 157385, + [SMALL_STATE(3020)] = 157433, + [SMALL_STATE(3021)] = 157481, + [SMALL_STATE(3022)] = 157525, + [SMALL_STATE(3023)] = 157569, + [SMALL_STATE(3024)] = 157613, + [SMALL_STATE(3025)] = 157657, + [SMALL_STATE(3026)] = 157701, + [SMALL_STATE(3027)] = 157745, + [SMALL_STATE(3028)] = 157789, + [SMALL_STATE(3029)] = 157865, + [SMALL_STATE(3030)] = 157909, + [SMALL_STATE(3031)] = 157981, + [SMALL_STATE(3032)] = 158025, + [SMALL_STATE(3033)] = 158101, + [SMALL_STATE(3034)] = 158145, + [SMALL_STATE(3035)] = 158199, + [SMALL_STATE(3036)] = 158243, + [SMALL_STATE(3037)] = 158287, + [SMALL_STATE(3038)] = 158331, + [SMALL_STATE(3039)] = 158375, + [SMALL_STATE(3040)] = 158419, + [SMALL_STATE(3041)] = 158463, + [SMALL_STATE(3042)] = 158507, + [SMALL_STATE(3043)] = 158551, + [SMALL_STATE(3044)] = 158595, + [SMALL_STATE(3045)] = 158639, + [SMALL_STATE(3046)] = 158683, + [SMALL_STATE(3047)] = 158727, + [SMALL_STATE(3048)] = 158771, + [SMALL_STATE(3049)] = 158815, + [SMALL_STATE(3050)] = 158859, + [SMALL_STATE(3051)] = 158927, + [SMALL_STATE(3052)] = 158971, + [SMALL_STATE(3053)] = 159015, + [SMALL_STATE(3054)] = 159059, + [SMALL_STATE(3055)] = 159103, + [SMALL_STATE(3056)] = 159147, + [SMALL_STATE(3057)] = 159191, + [SMALL_STATE(3058)] = 159235, + [SMALL_STATE(3059)] = 159279, + [SMALL_STATE(3060)] = 159323, + [SMALL_STATE(3061)] = 159399, + [SMALL_STATE(3062)] = 159445, + [SMALL_STATE(3063)] = 159489, + [SMALL_STATE(3064)] = 159555, + [SMALL_STATE(3065)] = 159619, + [SMALL_STATE(3066)] = 159683, + [SMALL_STATE(3067)] = 159745, + [SMALL_STATE(3068)] = 159821, + [SMALL_STATE(3069)] = 159865, + [SMALL_STATE(3070)] = 159941, + [SMALL_STATE(3071)] = 160029, + [SMALL_STATE(3072)] = 160073, + [SMALL_STATE(3073)] = 160133, + [SMALL_STATE(3074)] = 160191, + [SMALL_STATE(3075)] = 160245, + [SMALL_STATE(3076)] = 160297, + [SMALL_STATE(3077)] = 160385, + [SMALL_STATE(3078)] = 160461, + [SMALL_STATE(3079)] = 160515, + [SMALL_STATE(3080)] = 160569, + [SMALL_STATE(3081)] = 160645, + [SMALL_STATE(3082)] = 160699, + [SMALL_STATE(3083)] = 160753, + [SMALL_STATE(3084)] = 160797, + [SMALL_STATE(3085)] = 160847, + [SMALL_STATE(3086)] = 160895, + [SMALL_STATE(3087)] = 160971, + [SMALL_STATE(3088)] = 161019, + [SMALL_STATE(3089)] = 161073, + [SMALL_STATE(3090)] = 161161, + [SMALL_STATE(3091)] = 161237, + [SMALL_STATE(3092)] = 161281, + [SMALL_STATE(3093)] = 161325, + [SMALL_STATE(3094)] = 161401, + [SMALL_STATE(3095)] = 161477, + [SMALL_STATE(3096)] = 161531, + [SMALL_STATE(3097)] = 161605, + [SMALL_STATE(3098)] = 161681, + [SMALL_STATE(3099)] = 161751, + [SMALL_STATE(3100)] = 161819, + [SMALL_STATE(3101)] = 161885, + [SMALL_STATE(3102)] = 161949, + [SMALL_STATE(3103)] = 162011, + [SMALL_STATE(3104)] = 162071, + [SMALL_STATE(3105)] = 162127, + [SMALL_STATE(3106)] = 162179, + [SMALL_STATE(3107)] = 162229, + [SMALL_STATE(3108)] = 162277, + [SMALL_STATE(3109)] = 162325, + [SMALL_STATE(3110)] = 162369, + [SMALL_STATE(3111)] = 162457, + [SMALL_STATE(3112)] = 162533, + [SMALL_STATE(3113)] = 162577, + [SMALL_STATE(3114)] = 162653, + [SMALL_STATE(3115)] = 162697, + [SMALL_STATE(3116)] = 162785, + [SMALL_STATE(3117)] = 162841, + [SMALL_STATE(3118)] = 162895, + [SMALL_STATE(3119)] = 162949, + [SMALL_STATE(3120)] = 163025, + [SMALL_STATE(3121)] = 163113, + [SMALL_STATE(3122)] = 163157, + [SMALL_STATE(3123)] = 163227, + [SMALL_STATE(3124)] = 163303, + [SMALL_STATE(3125)] = 163379, + [SMALL_STATE(3126)] = 163455, + [SMALL_STATE(3127)] = 163509, + [SMALL_STATE(3128)] = 163585, + [SMALL_STATE(3129)] = 163661, + [SMALL_STATE(3130)] = 163749, + [SMALL_STATE(3131)] = 163837, + [SMALL_STATE(3132)] = 163925, + [SMALL_STATE(3133)] = 164013, + [SMALL_STATE(3134)] = 164057, + [SMALL_STATE(3135)] = 164101, + [SMALL_STATE(3136)] = 164145, + [SMALL_STATE(3137)] = 164221, + [SMALL_STATE(3138)] = 164265, + [SMALL_STATE(3139)] = 164353, + [SMALL_STATE(3140)] = 164429, + [SMALL_STATE(3141)] = 164491, + [SMALL_STATE(3142)] = 164567, + [SMALL_STATE(3143)] = 164655, + [SMALL_STATE(3144)] = 164701, + [SMALL_STATE(3145)] = 164745, + [SMALL_STATE(3146)] = 164789, + [SMALL_STATE(3147)] = 164833, + [SMALL_STATE(3148)] = 164909, + [SMALL_STATE(3149)] = 164953, + [SMALL_STATE(3150)] = 165029, + [SMALL_STATE(3151)] = 165073, + [SMALL_STATE(3152)] = 165149, + [SMALL_STATE(3153)] = 165225, + [SMALL_STATE(3154)] = 165297, + [SMALL_STATE(3155)] = 165367, + [SMALL_STATE(3156)] = 165452, + [SMALL_STATE(3157)] = 165495, + [SMALL_STATE(3158)] = 165538, + [SMALL_STATE(3159)] = 165581, + [SMALL_STATE(3160)] = 165624, + [SMALL_STATE(3161)] = 165667, + [SMALL_STATE(3162)] = 165710, + [SMALL_STATE(3163)] = 165753, + [SMALL_STATE(3164)] = 165806, + [SMALL_STATE(3165)] = 165859, + [SMALL_STATE(3166)] = 165944, + [SMALL_STATE(3167)] = 166029, + [SMALL_STATE(3168)] = 166114, + [SMALL_STATE(3169)] = 166199, + [SMALL_STATE(3170)] = 166284, + [SMALL_STATE(3171)] = 166369, + [SMALL_STATE(3172)] = 166454, + [SMALL_STATE(3173)] = 166497, + [SMALL_STATE(3174)] = 166540, + [SMALL_STATE(3175)] = 166583, + [SMALL_STATE(3176)] = 166626, + [SMALL_STATE(3177)] = 166669, + [SMALL_STATE(3178)] = 166722, + [SMALL_STATE(3179)] = 166765, + [SMALL_STATE(3180)] = 166818, + [SMALL_STATE(3181)] = 166861, + [SMALL_STATE(3182)] = 166904, + [SMALL_STATE(3183)] = 166947, + [SMALL_STATE(3184)] = 166990, + [SMALL_STATE(3185)] = 167033, + [SMALL_STATE(3186)] = 167086, + [SMALL_STATE(3187)] = 167171, + [SMALL_STATE(3188)] = 167224, + [SMALL_STATE(3189)] = 167309, + [SMALL_STATE(3190)] = 167394, + [SMALL_STATE(3191)] = 167447, + [SMALL_STATE(3192)] = 167490, + [SMALL_STATE(3193)] = 167575, + [SMALL_STATE(3194)] = 167660, + [SMALL_STATE(3195)] = 167745, + [SMALL_STATE(3196)] = 167788, + [SMALL_STATE(3197)] = 167831, + [SMALL_STATE(3198)] = 167884, + [SMALL_STATE(3199)] = 167927, + [SMALL_STATE(3200)] = 167970, + [SMALL_STATE(3201)] = 168013, + [SMALL_STATE(3202)] = 168066, + [SMALL_STATE(3203)] = 168151, + [SMALL_STATE(3204)] = 168204, + [SMALL_STATE(3205)] = 168257, + [SMALL_STATE(3206)] = 168310, + [SMALL_STATE(3207)] = 168395, + [SMALL_STATE(3208)] = 168480, + [SMALL_STATE(3209)] = 168565, + [SMALL_STATE(3210)] = 168608, + [SMALL_STATE(3211)] = 168693, + [SMALL_STATE(3212)] = 168778, + [SMALL_STATE(3213)] = 168863, + [SMALL_STATE(3214)] = 168916, + [SMALL_STATE(3215)] = 169001, + [SMALL_STATE(3216)] = 169086, + [SMALL_STATE(3217)] = 169171, + [SMALL_STATE(3218)] = 169224, + [SMALL_STATE(3219)] = 169310, + [SMALL_STATE(3220)] = 169356, + [SMALL_STATE(3221)] = 169408, + [SMALL_STATE(3222)] = 169456, + [SMALL_STATE(3223)] = 169508, + [SMALL_STATE(3224)] = 169554, + [SMALL_STATE(3225)] = 169632, + [SMALL_STATE(3226)] = 169678, + [SMALL_STATE(3227)] = 169724, + [SMALL_STATE(3228)] = 169770, + [SMALL_STATE(3229)] = 169816, + [SMALL_STATE(3230)] = 169902, + [SMALL_STATE(3231)] = 169980, + [SMALL_STATE(3232)] = 170026, + [SMALL_STATE(3233)] = 170072, + [SMALL_STATE(3234)] = 170154, + [SMALL_STATE(3235)] = 170200, + [SMALL_STATE(3236)] = 170278, + [SMALL_STATE(3237)] = 170330, + [SMALL_STATE(3238)] = 170406, + [SMALL_STATE(3239)] = 170454, + [SMALL_STATE(3240)] = 170532, + [SMALL_STATE(3241)] = 170618, + [SMALL_STATE(3242)] = 170664, + [SMALL_STATE(3243)] = 170716, + [SMALL_STATE(3244)] = 170762, + [SMALL_STATE(3245)] = 170808, + [SMALL_STATE(3246)] = 170886, + [SMALL_STATE(3247)] = 170927, + [SMALL_STATE(3248)] = 171008, + [SMALL_STATE(3249)] = 171081, + [SMALL_STATE(3250)] = 171122, + [SMALL_STATE(3251)] = 171203, + [SMALL_STATE(3252)] = 171284, + [SMALL_STATE(3253)] = 171325, + [SMALL_STATE(3254)] = 171376, + [SMALL_STATE(3255)] = 171457, + [SMALL_STATE(3256)] = 171498, + [SMALL_STATE(3257)] = 171579, + [SMALL_STATE(3258)] = 171620, + [SMALL_STATE(3259)] = 171701, + [SMALL_STATE(3260)] = 171742, + [SMALL_STATE(3261)] = 171823, + [SMALL_STATE(3262)] = 171864, + [SMALL_STATE(3263)] = 171905, + [SMALL_STATE(3264)] = 171986, + [SMALL_STATE(3265)] = 172067, + [SMALL_STATE(3266)] = 172148, + [SMALL_STATE(3267)] = 172229, + [SMALL_STATE(3268)] = 172310, + [SMALL_STATE(3269)] = 172391, + [SMALL_STATE(3270)] = 172472, + [SMALL_STATE(3271)] = 172513, + [SMALL_STATE(3272)] = 172594, + [SMALL_STATE(3273)] = 172675, + [SMALL_STATE(3274)] = 172756, + [SMALL_STATE(3275)] = 172797, + [SMALL_STATE(3276)] = 172838, + [SMALL_STATE(3277)] = 172879, + [SMALL_STATE(3278)] = 172960, + [SMALL_STATE(3279)] = 173001, + [SMALL_STATE(3280)] = 173042, + [SMALL_STATE(3281)] = 173083, + [SMALL_STATE(3282)] = 173124, + [SMALL_STATE(3283)] = 173205, + [SMALL_STATE(3284)] = 173286, + [SMALL_STATE(3285)] = 173337, + [SMALL_STATE(3286)] = 173418, + [SMALL_STATE(3287)] = 173459, + [SMALL_STATE(3288)] = 173540, + [SMALL_STATE(3289)] = 173613, + [SMALL_STATE(3290)] = 173686, + [SMALL_STATE(3291)] = 173767, + [SMALL_STATE(3292)] = 173808, + [SMALL_STATE(3293)] = 173881, + [SMALL_STATE(3294)] = 173922, + [SMALL_STATE(3295)] = 174002, + [SMALL_STATE(3296)] = 174082, + [SMALL_STATE(3297)] = 174126, + [SMALL_STATE(3298)] = 174206, + [SMALL_STATE(3299)] = 174286, + [SMALL_STATE(3300)] = 174366, + [SMALL_STATE(3301)] = 174410, + [SMALL_STATE(3302)] = 174490, + [SMALL_STATE(3303)] = 174570, + [SMALL_STATE(3304)] = 174650, + [SMALL_STATE(3305)] = 174730, + [SMALL_STATE(3306)] = 174810, + [SMALL_STATE(3307)] = 174860, + [SMALL_STATE(3308)] = 174910, + [SMALL_STATE(3309)] = 174990, + [SMALL_STATE(3310)] = 175070, + [SMALL_STATE(3311)] = 175114, + [SMALL_STATE(3312)] = 175158, + [SMALL_STATE(3313)] = 175202, + [SMALL_STATE(3314)] = 175246, + [SMALL_STATE(3315)] = 175326, + [SMALL_STATE(3316)] = 175406, + [SMALL_STATE(3317)] = 175486, + [SMALL_STATE(3318)] = 175566, + [SMALL_STATE(3319)] = 175646, + [SMALL_STATE(3320)] = 175696, + [SMALL_STATE(3321)] = 175746, + [SMALL_STATE(3322)] = 175826, + [SMALL_STATE(3323)] = 175906, + [SMALL_STATE(3324)] = 175983, + [SMALL_STATE(3325)] = 176060, + [SMALL_STATE(3326)] = 176109, + [SMALL_STATE(3327)] = 176158, + [SMALL_STATE(3328)] = 176235, + [SMALL_STATE(3329)] = 176310, + [SMALL_STATE(3330)] = 176387, + [SMALL_STATE(3331)] = 176464, + [SMALL_STATE(3332)] = 176541, + [SMALL_STATE(3333)] = 176618, + [SMALL_STATE(3334)] = 176695, + [SMALL_STATE(3335)] = 176772, + [SMALL_STATE(3336)] = 176849, + [SMALL_STATE(3337)] = 176926, + [SMALL_STATE(3338)] = 177003, + [SMALL_STATE(3339)] = 177080, + [SMALL_STATE(3340)] = 177157, + [SMALL_STATE(3341)] = 177234, + [SMALL_STATE(3342)] = 177311, + [SMALL_STATE(3343)] = 177350, + [SMALL_STATE(3344)] = 177427, + [SMALL_STATE(3345)] = 177504, + [SMALL_STATE(3346)] = 177581, + [SMALL_STATE(3347)] = 177658, + [SMALL_STATE(3348)] = 177735, + [SMALL_STATE(3349)] = 177812, + [SMALL_STATE(3350)] = 177889, + [SMALL_STATE(3351)] = 177966, + [SMALL_STATE(3352)] = 178043, + [SMALL_STATE(3353)] = 178120, + [SMALL_STATE(3354)] = 178197, + [SMALL_STATE(3355)] = 178274, + [SMALL_STATE(3356)] = 178351, + [SMALL_STATE(3357)] = 178428, + [SMALL_STATE(3358)] = 178505, + [SMALL_STATE(3359)] = 178544, + [SMALL_STATE(3360)] = 178583, + [SMALL_STATE(3361)] = 178632, + [SMALL_STATE(3362)] = 178681, + [SMALL_STATE(3363)] = 178756, + [SMALL_STATE(3364)] = 178831, + [SMALL_STATE(3365)] = 178908, + [SMALL_STATE(3366)] = 178985, + [SMALL_STATE(3367)] = 179034, + [SMALL_STATE(3368)] = 179083, + [SMALL_STATE(3369)] = 179158, + [SMALL_STATE(3370)] = 179235, + [SMALL_STATE(3371)] = 179312, + [SMALL_STATE(3372)] = 179389, + [SMALL_STATE(3373)] = 179428, + [SMALL_STATE(3374)] = 179477, + [SMALL_STATE(3375)] = 179526, + [SMALL_STATE(3376)] = 179565, + [SMALL_STATE(3377)] = 179640, + [SMALL_STATE(3378)] = 179715, + [SMALL_STATE(3379)] = 179790, + [SMALL_STATE(3380)] = 179829, + [SMALL_STATE(3381)] = 179904, + [SMALL_STATE(3382)] = 179943, + [SMALL_STATE(3383)] = 179982, + [SMALL_STATE(3384)] = 180057, + [SMALL_STATE(3385)] = 180132, + [SMALL_STATE(3386)] = 180209, + [SMALL_STATE(3387)] = 180286, + [SMALL_STATE(3388)] = 180363, + [SMALL_STATE(3389)] = 180440, + [SMALL_STATE(3390)] = 180517, + [SMALL_STATE(3391)] = 180594, + [SMALL_STATE(3392)] = 180671, + [SMALL_STATE(3393)] = 180748, + [SMALL_STATE(3394)] = 180825, + [SMALL_STATE(3395)] = 180902, + [SMALL_STATE(3396)] = 180979, + [SMALL_STATE(3397)] = 181056, + [SMALL_STATE(3398)] = 181133, + [SMALL_STATE(3399)] = 181208, + [SMALL_STATE(3400)] = 181285, + [SMALL_STATE(3401)] = 181360, + [SMALL_STATE(3402)] = 181435, + [SMALL_STATE(3403)] = 181510, + [SMALL_STATE(3404)] = 181585, + [SMALL_STATE(3405)] = 181660, + [SMALL_STATE(3406)] = 181735, + [SMALL_STATE(3407)] = 181810, + [SMALL_STATE(3408)] = 181885, + [SMALL_STATE(3409)] = 181924, + [SMALL_STATE(3410)] = 181999, + [SMALL_STATE(3411)] = 182074, + [SMALL_STATE(3412)] = 182149, + [SMALL_STATE(3413)] = 182224, + [SMALL_STATE(3414)] = 182299, + [SMALL_STATE(3415)] = 182374, + [SMALL_STATE(3416)] = 182449, + [SMALL_STATE(3417)] = 182524, + [SMALL_STATE(3418)] = 182599, + [SMALL_STATE(3419)] = 182674, + [SMALL_STATE(3420)] = 182749, + [SMALL_STATE(3421)] = 182824, + [SMALL_STATE(3422)] = 182899, + [SMALL_STATE(3423)] = 182974, + [SMALL_STATE(3424)] = 183049, + [SMALL_STATE(3425)] = 183124, + [SMALL_STATE(3426)] = 183199, + [SMALL_STATE(3427)] = 183274, + [SMALL_STATE(3428)] = 183351, + [SMALL_STATE(3429)] = 183428, + [SMALL_STATE(3430)] = 183505, + [SMALL_STATE(3431)] = 183582, + [SMALL_STATE(3432)] = 183659, + [SMALL_STATE(3433)] = 183734, + [SMALL_STATE(3434)] = 183809, + [SMALL_STATE(3435)] = 183880, + [SMALL_STATE(3436)] = 183957, + [SMALL_STATE(3437)] = 184034, + [SMALL_STATE(3438)] = 184111, + [SMALL_STATE(3439)] = 184188, + [SMALL_STATE(3440)] = 184263, + [SMALL_STATE(3441)] = 184338, + [SMALL_STATE(3442)] = 184415, + [SMALL_STATE(3443)] = 184492, + [SMALL_STATE(3444)] = 184567, + [SMALL_STATE(3445)] = 184642, + [SMALL_STATE(3446)] = 184719, + [SMALL_STATE(3447)] = 184796, + [SMALL_STATE(3448)] = 184871, + [SMALL_STATE(3449)] = 184946, + [SMALL_STATE(3450)] = 185023, + [SMALL_STATE(3451)] = 185100, + [SMALL_STATE(3452)] = 185175, + [SMALL_STATE(3453)] = 185250, + [SMALL_STATE(3454)] = 185327, + [SMALL_STATE(3455)] = 185404, + [SMALL_STATE(3456)] = 185481, + [SMALL_STATE(3457)] = 185558, + [SMALL_STATE(3458)] = 185635, + [SMALL_STATE(3459)] = 185712, + [SMALL_STATE(3460)] = 185789, + [SMALL_STATE(3461)] = 185866, + [SMALL_STATE(3462)] = 185943, + [SMALL_STATE(3463)] = 186020, + [SMALL_STATE(3464)] = 186097, + [SMALL_STATE(3465)] = 186174, + [SMALL_STATE(3466)] = 186251, + [SMALL_STATE(3467)] = 186328, + [SMALL_STATE(3468)] = 186405, + [SMALL_STATE(3469)] = 186482, + [SMALL_STATE(3470)] = 186559, + [SMALL_STATE(3471)] = 186636, + [SMALL_STATE(3472)] = 186713, + [SMALL_STATE(3473)] = 186790, + [SMALL_STATE(3474)] = 186867, + [SMALL_STATE(3475)] = 186944, + [SMALL_STATE(3476)] = 187021, + [SMALL_STATE(3477)] = 187098, + [SMALL_STATE(3478)] = 187175, + [SMALL_STATE(3479)] = 187252, + [SMALL_STATE(3480)] = 187329, + [SMALL_STATE(3481)] = 187406, + [SMALL_STATE(3482)] = 187483, + [SMALL_STATE(3483)] = 187560, + [SMALL_STATE(3484)] = 187637, + [SMALL_STATE(3485)] = 187714, + [SMALL_STATE(3486)] = 187791, + [SMALL_STATE(3487)] = 187868, + [SMALL_STATE(3488)] = 187945, + [SMALL_STATE(3489)] = 188022, + [SMALL_STATE(3490)] = 188099, + [SMALL_STATE(3491)] = 188176, + [SMALL_STATE(3492)] = 188253, + [SMALL_STATE(3493)] = 188330, + [SMALL_STATE(3494)] = 188407, + [SMALL_STATE(3495)] = 188484, + [SMALL_STATE(3496)] = 188561, + [SMALL_STATE(3497)] = 188638, + [SMALL_STATE(3498)] = 188715, + [SMALL_STATE(3499)] = 188792, + [SMALL_STATE(3500)] = 188869, + [SMALL_STATE(3501)] = 188946, + [SMALL_STATE(3502)] = 189023, + [SMALL_STATE(3503)] = 189100, + [SMALL_STATE(3504)] = 189177, + [SMALL_STATE(3505)] = 189254, + [SMALL_STATE(3506)] = 189331, + [SMALL_STATE(3507)] = 189408, + [SMALL_STATE(3508)] = 189485, + [SMALL_STATE(3509)] = 189562, + [SMALL_STATE(3510)] = 189639, + [SMALL_STATE(3511)] = 189716, + [SMALL_STATE(3512)] = 189793, + [SMALL_STATE(3513)] = 189870, + [SMALL_STATE(3514)] = 189947, + [SMALL_STATE(3515)] = 190024, + [SMALL_STATE(3516)] = 190101, + [SMALL_STATE(3517)] = 190178, + [SMALL_STATE(3518)] = 190255, + [SMALL_STATE(3519)] = 190332, + [SMALL_STATE(3520)] = 190409, + [SMALL_STATE(3521)] = 190486, + [SMALL_STATE(3522)] = 190563, + [SMALL_STATE(3523)] = 190640, + [SMALL_STATE(3524)] = 190717, + [SMALL_STATE(3525)] = 190794, + [SMALL_STATE(3526)] = 190871, + [SMALL_STATE(3527)] = 190948, + [SMALL_STATE(3528)] = 191025, + [SMALL_STATE(3529)] = 191102, + [SMALL_STATE(3530)] = 191179, + [SMALL_STATE(3531)] = 191256, + [SMALL_STATE(3532)] = 191333, + [SMALL_STATE(3533)] = 191410, + [SMALL_STATE(3534)] = 191487, + [SMALL_STATE(3535)] = 191564, + [SMALL_STATE(3536)] = 191641, + [SMALL_STATE(3537)] = 191718, + [SMALL_STATE(3538)] = 191795, + [SMALL_STATE(3539)] = 191872, + [SMALL_STATE(3540)] = 191949, + [SMALL_STATE(3541)] = 192026, + [SMALL_STATE(3542)] = 192103, + [SMALL_STATE(3543)] = 192180, + [SMALL_STATE(3544)] = 192257, + [SMALL_STATE(3545)] = 192334, + [SMALL_STATE(3546)] = 192411, + [SMALL_STATE(3547)] = 192488, + [SMALL_STATE(3548)] = 192565, + [SMALL_STATE(3549)] = 192642, + [SMALL_STATE(3550)] = 192719, + [SMALL_STATE(3551)] = 192796, + [SMALL_STATE(3552)] = 192873, + [SMALL_STATE(3553)] = 192950, + [SMALL_STATE(3554)] = 193027, + [SMALL_STATE(3555)] = 193104, + [SMALL_STATE(3556)] = 193181, + [SMALL_STATE(3557)] = 193258, + [SMALL_STATE(3558)] = 193335, + [SMALL_STATE(3559)] = 193412, + [SMALL_STATE(3560)] = 193489, + [SMALL_STATE(3561)] = 193566, + [SMALL_STATE(3562)] = 193641, + [SMALL_STATE(3563)] = 193716, + [SMALL_STATE(3564)] = 193793, + [SMALL_STATE(3565)] = 193841, + [SMALL_STATE(3566)] = 193911, + [SMALL_STATE(3567)] = 193981, + [SMALL_STATE(3568)] = 194055, + [SMALL_STATE(3569)] = 194103, + [SMALL_STATE(3570)] = 194177, + [SMALL_STATE(3571)] = 194225, + [SMALL_STATE(3572)] = 194295, + [SMALL_STATE(3573)] = 194365, + [SMALL_STATE(3574)] = 194439, + [SMALL_STATE(3575)] = 194509, + [SMALL_STATE(3576)] = 194579, + [SMALL_STATE(3577)] = 194627, + [SMALL_STATE(3578)] = 194697, + [SMALL_STATE(3579)] = 194767, + [SMALL_STATE(3580)] = 194815, + [SMALL_STATE(3581)] = 194887, + [SMALL_STATE(3582)] = 194957, + [SMALL_STATE(3583)] = 195005, + [SMALL_STATE(3584)] = 195077, + [SMALL_STATE(3585)] = 195125, + [SMALL_STATE(3586)] = 195195, + [SMALL_STATE(3587)] = 195243, + [SMALL_STATE(3588)] = 195317, + [SMALL_STATE(3589)] = 195387, + [SMALL_STATE(3590)] = 195457, + [SMALL_STATE(3591)] = 195531, + [SMALL_STATE(3592)] = 195603, + [SMALL_STATE(3593)] = 195677, + [SMALL_STATE(3594)] = 195751, + [SMALL_STATE(3595)] = 195823, + [SMALL_STATE(3596)] = 195894, + [SMALL_STATE(3597)] = 195961, + [SMALL_STATE(3598)] = 196032, + [SMALL_STATE(3599)] = 196103, + [SMALL_STATE(3600)] = 196174, + [SMALL_STATE(3601)] = 196245, + [SMALL_STATE(3602)] = 196312, + [SMALL_STATE(3603)] = 196379, + [SMALL_STATE(3604)] = 196446, + [SMALL_STATE(3605)] = 196517, + [SMALL_STATE(3606)] = 196588, + [SMALL_STATE(3607)] = 196659, + [SMALL_STATE(3608)] = 196730, + [SMALL_STATE(3609)] = 196797, + [SMALL_STATE(3610)] = 196864, + [SMALL_STATE(3611)] = 196931, + [SMALL_STATE(3612)] = 196998, + [SMALL_STATE(3613)] = 197069, + [SMALL_STATE(3614)] = 197140, + [SMALL_STATE(3615)] = 197211, + [SMALL_STATE(3616)] = 197282, + [SMALL_STATE(3617)] = 197349, + [SMALL_STATE(3618)] = 197416, + [SMALL_STATE(3619)] = 197483, + [SMALL_STATE(3620)] = 197550, + [SMALL_STATE(3621)] = 197621, + [SMALL_STATE(3622)] = 197692, + [SMALL_STATE(3623)] = 197763, + [SMALL_STATE(3624)] = 197834, + [SMALL_STATE(3625)] = 197901, + [SMALL_STATE(3626)] = 197968, + [SMALL_STATE(3627)] = 198035, + [SMALL_STATE(3628)] = 198106, + [SMALL_STATE(3629)] = 198177, + [SMALL_STATE(3630)] = 198248, + [SMALL_STATE(3631)] = 198319, + [SMALL_STATE(3632)] = 198386, + [SMALL_STATE(3633)] = 198453, + [SMALL_STATE(3634)] = 198520, + [SMALL_STATE(3635)] = 198591, + [SMALL_STATE(3636)] = 198662, + [SMALL_STATE(3637)] = 198733, + [SMALL_STATE(3638)] = 198804, + [SMALL_STATE(3639)] = 198871, + [SMALL_STATE(3640)] = 198938, + [SMALL_STATE(3641)] = 199005, + [SMALL_STATE(3642)] = 199076, + [SMALL_STATE(3643)] = 199147, + [SMALL_STATE(3644)] = 199218, + [SMALL_STATE(3645)] = 199289, + [SMALL_STATE(3646)] = 199360, + [SMALL_STATE(3647)] = 199427, + [SMALL_STATE(3648)] = 199494, + [SMALL_STATE(3649)] = 199565, + [SMALL_STATE(3650)] = 199636, + [SMALL_STATE(3651)] = 199707, + [SMALL_STATE(3652)] = 199778, + [SMALL_STATE(3653)] = 199849, + [SMALL_STATE(3654)] = 199920, + [SMALL_STATE(3655)] = 199987, + [SMALL_STATE(3656)] = 200058, + [SMALL_STATE(3657)] = 200129, + [SMALL_STATE(3658)] = 200200, + [SMALL_STATE(3659)] = 200271, + [SMALL_STATE(3660)] = 200338, + [SMALL_STATE(3661)] = 200409, + [SMALL_STATE(3662)] = 200480, + [SMALL_STATE(3663)] = 200551, + [SMALL_STATE(3664)] = 200622, + [SMALL_STATE(3665)] = 200689, + [SMALL_STATE(3666)] = 200760, + [SMALL_STATE(3667)] = 200831, + [SMALL_STATE(3668)] = 200902, + [SMALL_STATE(3669)] = 200973, + [SMALL_STATE(3670)] = 201040, + [SMALL_STATE(3671)] = 201111, + [SMALL_STATE(3672)] = 201182, + [SMALL_STATE(3673)] = 201253, + [SMALL_STATE(3674)] = 201324, + [SMALL_STATE(3675)] = 201391, + [SMALL_STATE(3676)] = 201462, + [SMALL_STATE(3677)] = 201533, + [SMALL_STATE(3678)] = 201604, + [SMALL_STATE(3679)] = 201675, + [SMALL_STATE(3680)] = 201742, + [SMALL_STATE(3681)] = 201813, + [SMALL_STATE(3682)] = 201884, + [SMALL_STATE(3683)] = 201955, + [SMALL_STATE(3684)] = 202026, + [SMALL_STATE(3685)] = 202093, + [SMALL_STATE(3686)] = 202164, + [SMALL_STATE(3687)] = 202235, + [SMALL_STATE(3688)] = 202306, + [SMALL_STATE(3689)] = 202377, + [SMALL_STATE(3690)] = 202444, + [SMALL_STATE(3691)] = 202511, + [SMALL_STATE(3692)] = 202578, + [SMALL_STATE(3693)] = 202649, + [SMALL_STATE(3694)] = 202716, + [SMALL_STATE(3695)] = 202787, + [SMALL_STATE(3696)] = 202858, + [SMALL_STATE(3697)] = 202925, + [SMALL_STATE(3698)] = 202992, + [SMALL_STATE(3699)] = 203059, + [SMALL_STATE(3700)] = 203126, + [SMALL_STATE(3701)] = 203193, + [SMALL_STATE(3702)] = 203260, + [SMALL_STATE(3703)] = 203327, + [SMALL_STATE(3704)] = 203394, + [SMALL_STATE(3705)] = 203461, + [SMALL_STATE(3706)] = 203528, + [SMALL_STATE(3707)] = 203595, + [SMALL_STATE(3708)] = 203662, + [SMALL_STATE(3709)] = 203733, + [SMALL_STATE(3710)] = 203800, + [SMALL_STATE(3711)] = 203867, + [SMALL_STATE(3712)] = 203934, + [SMALL_STATE(3713)] = 204001, + [SMALL_STATE(3714)] = 204068, + [SMALL_STATE(3715)] = 204135, + [SMALL_STATE(3716)] = 204202, + [SMALL_STATE(3717)] = 204269, + [SMALL_STATE(3718)] = 204336, + [SMALL_STATE(3719)] = 204403, + [SMALL_STATE(3720)] = 204470, + [SMALL_STATE(3721)] = 204537, + [SMALL_STATE(3722)] = 204604, + [SMALL_STATE(3723)] = 204671, + [SMALL_STATE(3724)] = 204738, + [SMALL_STATE(3725)] = 204805, + [SMALL_STATE(3726)] = 204872, + [SMALL_STATE(3727)] = 204939, + [SMALL_STATE(3728)] = 205006, + [SMALL_STATE(3729)] = 205073, + [SMALL_STATE(3730)] = 205140, + [SMALL_STATE(3731)] = 205207, + [SMALL_STATE(3732)] = 205274, + [SMALL_STATE(3733)] = 205341, + [SMALL_STATE(3734)] = 205412, + [SMALL_STATE(3735)] = 205479, + [SMALL_STATE(3736)] = 205546, + [SMALL_STATE(3737)] = 205613, + [SMALL_STATE(3738)] = 205680, + [SMALL_STATE(3739)] = 205747, + [SMALL_STATE(3740)] = 205814, + [SMALL_STATE(3741)] = 205881, + [SMALL_STATE(3742)] = 205948, + [SMALL_STATE(3743)] = 206019, + [SMALL_STATE(3744)] = 206090, + [SMALL_STATE(3745)] = 206161, + [SMALL_STATE(3746)] = 206232, + [SMALL_STATE(3747)] = 206303, + [SMALL_STATE(3748)] = 206374, + [SMALL_STATE(3749)] = 206445, + [SMALL_STATE(3750)] = 206516, + [SMALL_STATE(3751)] = 206583, + [SMALL_STATE(3752)] = 206650, + [SMALL_STATE(3753)] = 206717, + [SMALL_STATE(3754)] = 206784, + [SMALL_STATE(3755)] = 206851, + [SMALL_STATE(3756)] = 206918, + [SMALL_STATE(3757)] = 206985, + [SMALL_STATE(3758)] = 207052, + [SMALL_STATE(3759)] = 207119, + [SMALL_STATE(3760)] = 207190, + [SMALL_STATE(3761)] = 207261, + [SMALL_STATE(3762)] = 207332, + [SMALL_STATE(3763)] = 207403, + [SMALL_STATE(3764)] = 207474, + [SMALL_STATE(3765)] = 207545, + [SMALL_STATE(3766)] = 207616, + [SMALL_STATE(3767)] = 207687, + [SMALL_STATE(3768)] = 207754, + [SMALL_STATE(3769)] = 207821, + [SMALL_STATE(3770)] = 207888, + [SMALL_STATE(3771)] = 207955, + [SMALL_STATE(3772)] = 208022, + [SMALL_STATE(3773)] = 208093, + [SMALL_STATE(3774)] = 208164, + [SMALL_STATE(3775)] = 208235, + [SMALL_STATE(3776)] = 208306, + [SMALL_STATE(3777)] = 208377, + [SMALL_STATE(3778)] = 208448, + [SMALL_STATE(3779)] = 208519, + [SMALL_STATE(3780)] = 208590, + [SMALL_STATE(3781)] = 208657, + [SMALL_STATE(3782)] = 208724, + [SMALL_STATE(3783)] = 208791, + [SMALL_STATE(3784)] = 208858, + [SMALL_STATE(3785)] = 208925, + [SMALL_STATE(3786)] = 208992, + [SMALL_STATE(3787)] = 209063, + [SMALL_STATE(3788)] = 209134, + [SMALL_STATE(3789)] = 209205, + [SMALL_STATE(3790)] = 209276, + [SMALL_STATE(3791)] = 209347, + [SMALL_STATE(3792)] = 209418, + [SMALL_STATE(3793)] = 209489, + [SMALL_STATE(3794)] = 209560, + [SMALL_STATE(3795)] = 209627, + [SMALL_STATE(3796)] = 209694, + [SMALL_STATE(3797)] = 209761, + [SMALL_STATE(3798)] = 209828, + [SMALL_STATE(3799)] = 209895, + [SMALL_STATE(3800)] = 209962, + [SMALL_STATE(3801)] = 210033, + [SMALL_STATE(3802)] = 210100, + [SMALL_STATE(3803)] = 210167, + [SMALL_STATE(3804)] = 210234, + [SMALL_STATE(3805)] = 210301, + [SMALL_STATE(3806)] = 210368, + [SMALL_STATE(3807)] = 210435, + [SMALL_STATE(3808)] = 210502, + [SMALL_STATE(3809)] = 210569, + [SMALL_STATE(3810)] = 210636, + [SMALL_STATE(3811)] = 210703, + [SMALL_STATE(3812)] = 210770, + [SMALL_STATE(3813)] = 210837, + [SMALL_STATE(3814)] = 210904, + [SMALL_STATE(3815)] = 210975, + [SMALL_STATE(3816)] = 211046, + [SMALL_STATE(3817)] = 211117, + [SMALL_STATE(3818)] = 211188, + [SMALL_STATE(3819)] = 211255, + [SMALL_STATE(3820)] = 211322, + [SMALL_STATE(3821)] = 211365, + [SMALL_STATE(3822)] = 211432, + [SMALL_STATE(3823)] = 211499, + [SMALL_STATE(3824)] = 211566, + [SMALL_STATE(3825)] = 211633, + [SMALL_STATE(3826)] = 211676, + [SMALL_STATE(3827)] = 211743, + [SMALL_STATE(3828)] = 211810, + [SMALL_STATE(3829)] = 211877, + [SMALL_STATE(3830)] = 211944, + [SMALL_STATE(3831)] = 212011, + [SMALL_STATE(3832)] = 212078, + [SMALL_STATE(3833)] = 212145, + [SMALL_STATE(3834)] = 212212, + [SMALL_STATE(3835)] = 212279, + [SMALL_STATE(3836)] = 212346, + [SMALL_STATE(3837)] = 212413, + [SMALL_STATE(3838)] = 212480, + [SMALL_STATE(3839)] = 212547, + [SMALL_STATE(3840)] = 212614, + [SMALL_STATE(3841)] = 212681, + [SMALL_STATE(3842)] = 212748, + [SMALL_STATE(3843)] = 212815, + [SMALL_STATE(3844)] = 212882, + [SMALL_STATE(3845)] = 212949, + [SMALL_STATE(3846)] = 213016, + [SMALL_STATE(3847)] = 213083, + [SMALL_STATE(3848)] = 213150, + [SMALL_STATE(3849)] = 213217, + [SMALL_STATE(3850)] = 213284, + [SMALL_STATE(3851)] = 213351, + [SMALL_STATE(3852)] = 213418, + [SMALL_STATE(3853)] = 213485, + [SMALL_STATE(3854)] = 213552, + [SMALL_STATE(3855)] = 213619, + [SMALL_STATE(3856)] = 213686, + [SMALL_STATE(3857)] = 213753, + [SMALL_STATE(3858)] = 213820, + [SMALL_STATE(3859)] = 213887, + [SMALL_STATE(3860)] = 213954, + [SMALL_STATE(3861)] = 214021, + [SMALL_STATE(3862)] = 214092, + [SMALL_STATE(3863)] = 214159, + [SMALL_STATE(3864)] = 214226, + [SMALL_STATE(3865)] = 214293, + [SMALL_STATE(3866)] = 214364, + [SMALL_STATE(3867)] = 214435, + [SMALL_STATE(3868)] = 214502, + [SMALL_STATE(3869)] = 214573, + [SMALL_STATE(3870)] = 214640, + [SMALL_STATE(3871)] = 214711, + [SMALL_STATE(3872)] = 214778, + [SMALL_STATE(3873)] = 214845, + [SMALL_STATE(3874)] = 214912, + [SMALL_STATE(3875)] = 214977, + [SMALL_STATE(3876)] = 215044, + [SMALL_STATE(3877)] = 215111, + [SMALL_STATE(3878)] = 215178, + [SMALL_STATE(3879)] = 215245, + [SMALL_STATE(3880)] = 215312, + [SMALL_STATE(3881)] = 215379, + [SMALL_STATE(3882)] = 215446, + [SMALL_STATE(3883)] = 215513, + [SMALL_STATE(3884)] = 215580, + [SMALL_STATE(3885)] = 215647, + [SMALL_STATE(3886)] = 215714, + [SMALL_STATE(3887)] = 215781, + [SMALL_STATE(3888)] = 215852, + [SMALL_STATE(3889)] = 215923, + [SMALL_STATE(3890)] = 215994, + [SMALL_STATE(3891)] = 216065, + [SMALL_STATE(3892)] = 216132, + [SMALL_STATE(3893)] = 216199, + [SMALL_STATE(3894)] = 216266, + [SMALL_STATE(3895)] = 216333, + [SMALL_STATE(3896)] = 216400, + [SMALL_STATE(3897)] = 216467, + [SMALL_STATE(3898)] = 216534, + [SMALL_STATE(3899)] = 216601, + [SMALL_STATE(3900)] = 216668, + [SMALL_STATE(3901)] = 216735, + [SMALL_STATE(3902)] = 216802, + [SMALL_STATE(3903)] = 216869, + [SMALL_STATE(3904)] = 216936, + [SMALL_STATE(3905)] = 217003, + [SMALL_STATE(3906)] = 217074, + [SMALL_STATE(3907)] = 217145, + [SMALL_STATE(3908)] = 217212, + [SMALL_STATE(3909)] = 217283, + [SMALL_STATE(3910)] = 217354, + [SMALL_STATE(3911)] = 217425, + [SMALL_STATE(3912)] = 217492, + [SMALL_STATE(3913)] = 217559, + [SMALL_STATE(3914)] = 217626, + [SMALL_STATE(3915)] = 217693, + [SMALL_STATE(3916)] = 217760, + [SMALL_STATE(3917)] = 217827, + [SMALL_STATE(3918)] = 217898, + [SMALL_STATE(3919)] = 217965, + [SMALL_STATE(3920)] = 218032, + [SMALL_STATE(3921)] = 218099, + [SMALL_STATE(3922)] = 218166, + [SMALL_STATE(3923)] = 218233, + [SMALL_STATE(3924)] = 218308, + [SMALL_STATE(3925)] = 218375, + [SMALL_STATE(3926)] = 218442, + [SMALL_STATE(3927)] = 218513, + [SMALL_STATE(3928)] = 218584, + [SMALL_STATE(3929)] = 218659, + [SMALL_STATE(3930)] = 218730, + [SMALL_STATE(3931)] = 218801, + [SMALL_STATE(3932)] = 218868, + [SMALL_STATE(3933)] = 218935, + [SMALL_STATE(3934)] = 219006, + [SMALL_STATE(3935)] = 219073, + [SMALL_STATE(3936)] = 219140, + [SMALL_STATE(3937)] = 219207, + [SMALL_STATE(3938)] = 219274, + [SMALL_STATE(3939)] = 219341, + [SMALL_STATE(3940)] = 219412, + [SMALL_STATE(3941)] = 219479, + [SMALL_STATE(3942)] = 219546, + [SMALL_STATE(3943)] = 219617, + [SMALL_STATE(3944)] = 219688, + [SMALL_STATE(3945)] = 219759, + [SMALL_STATE(3946)] = 219830, + [SMALL_STATE(3947)] = 219901, + [SMALL_STATE(3948)] = 219972, + [SMALL_STATE(3949)] = 220043, + [SMALL_STATE(3950)] = 220114, + [SMALL_STATE(3951)] = 220189, + [SMALL_STATE(3952)] = 220260, + [SMALL_STATE(3953)] = 220327, + [SMALL_STATE(3954)] = 220394, + [SMALL_STATE(3955)] = 220461, + [SMALL_STATE(3956)] = 220532, + [SMALL_STATE(3957)] = 220599, + [SMALL_STATE(3958)] = 220666, + [SMALL_STATE(3959)] = 220733, + [SMALL_STATE(3960)] = 220800, + [SMALL_STATE(3961)] = 220871, + [SMALL_STATE(3962)] = 220942, + [SMALL_STATE(3963)] = 221013, + [SMALL_STATE(3964)] = 221084, + [SMALL_STATE(3965)] = 221151, + [SMALL_STATE(3966)] = 221222, + [SMALL_STATE(3967)] = 221293, + [SMALL_STATE(3968)] = 221364, + [SMALL_STATE(3969)] = 221439, + [SMALL_STATE(3970)] = 221506, + [SMALL_STATE(3971)] = 221573, + [SMALL_STATE(3972)] = 221640, + [SMALL_STATE(3973)] = 221682, + [SMALL_STATE(3974)] = 221724, + [SMALL_STATE(3975)] = 221766, + [SMALL_STATE(3976)] = 221808, + [SMALL_STATE(3977)] = 221850, + [SMALL_STATE(3978)] = 221896, + [SMALL_STATE(3979)] = 221938, + [SMALL_STATE(3980)] = 221980, + [SMALL_STATE(3981)] = 222022, + [SMALL_STATE(3982)] = 222064, + [SMALL_STATE(3983)] = 222120, + [SMALL_STATE(3984)] = 222192, + [SMALL_STATE(3985)] = 222234, + [SMALL_STATE(3986)] = 222276, + [SMALL_STATE(3987)] = 222318, + [SMALL_STATE(3988)] = 222390, + [SMALL_STATE(3989)] = 222462, + [SMALL_STATE(3990)] = 222506, + [SMALL_STATE(3991)] = 222548, + [SMALL_STATE(3992)] = 222590, + [SMALL_STATE(3993)] = 222632, + [SMALL_STATE(3994)] = 222674, + [SMALL_STATE(3995)] = 222730, + [SMALL_STATE(3996)] = 222772, + [SMALL_STATE(3997)] = 222814, + [SMALL_STATE(3998)] = 222860, + [SMALL_STATE(3999)] = 222902, + [SMALL_STATE(4000)] = 222944, + [SMALL_STATE(4001)] = 222986, + [SMALL_STATE(4002)] = 223028, + [SMALL_STATE(4003)] = 223070, + [SMALL_STATE(4004)] = 223116, + [SMALL_STATE(4005)] = 223162, + [SMALL_STATE(4006)] = 223204, + [SMALL_STATE(4007)] = 223239, + [SMALL_STATE(4008)] = 223274, + [SMALL_STATE(4009)] = 223309, + [SMALL_STATE(4010)] = 223344, + [SMALL_STATE(4011)] = 223379, + [SMALL_STATE(4012)] = 223420, + [SMALL_STATE(4013)] = 223461, + [SMALL_STATE(4014)] = 223502, + [SMALL_STATE(4015)] = 223543, + [SMALL_STATE(4016)] = 223584, + [SMALL_STATE(4017)] = 223619, + [SMALL_STATE(4018)] = 223654, + [SMALL_STATE(4019)] = 223689, + [SMALL_STATE(4020)] = 223724, + [SMALL_STATE(4021)] = 223759, + [SMALL_STATE(4022)] = 223794, + [SMALL_STATE(4023)] = 223835, + [SMALL_STATE(4024)] = 223876, + [SMALL_STATE(4025)] = 223917, + [SMALL_STATE(4026)] = 223952, + [SMALL_STATE(4027)] = 223993, + [SMALL_STATE(4028)] = 224028, + [SMALL_STATE(4029)] = 224069, + [SMALL_STATE(4030)] = 224104, + [SMALL_STATE(4031)] = 224145, + [SMALL_STATE(4032)] = 224186, + [SMALL_STATE(4033)] = 224231, + [SMALL_STATE(4034)] = 224266, + [SMALL_STATE(4035)] = 224301, + [SMALL_STATE(4036)] = 224344, + [SMALL_STATE(4037)] = 224385, + [SMALL_STATE(4038)] = 224426, + [SMALL_STATE(4039)] = 224467, + [SMALL_STATE(4040)] = 224506, + [SMALL_STATE(4041)] = 224547, + [SMALL_STATE(4042)] = 224588, + [SMALL_STATE(4043)] = 224629, + [SMALL_STATE(4044)] = 224670, + [SMALL_STATE(4045)] = 224707, + [SMALL_STATE(4046)] = 224744, + [SMALL_STATE(4047)] = 224785, + [SMALL_STATE(4048)] = 224824, + [SMALL_STATE(4049)] = 224863, + [SMALL_STATE(4050)] = 224904, + [SMALL_STATE(4051)] = 224945, + [SMALL_STATE(4052)] = 224980, + [SMALL_STATE(4053)] = 225019, + [SMALL_STATE(4054)] = 225054, + [SMALL_STATE(4055)] = 225089, + [SMALL_STATE(4056)] = 225130, + [SMALL_STATE(4057)] = 225165, + [SMALL_STATE(4058)] = 225206, + [SMALL_STATE(4059)] = 225241, + [SMALL_STATE(4060)] = 225282, + [SMALL_STATE(4061)] = 225317, + [SMALL_STATE(4062)] = 225352, + [SMALL_STATE(4063)] = 225389, + [SMALL_STATE(4064)] = 225426, + [SMALL_STATE(4065)] = 225465, + [SMALL_STATE(4066)] = 225500, + [SMALL_STATE(4067)] = 225545, + [SMALL_STATE(4068)] = 225584, + [SMALL_STATE(4069)] = 225619, + [SMALL_STATE(4070)] = 225654, + [SMALL_STATE(4071)] = 225689, + [SMALL_STATE(4072)] = 225724, + [SMALL_STATE(4073)] = 225765, + [SMALL_STATE(4074)] = 225800, + [SMALL_STATE(4075)] = 225835, + [SMALL_STATE(4076)] = 225870, + [SMALL_STATE(4077)] = 225905, + [SMALL_STATE(4078)] = 225940, + [SMALL_STATE(4079)] = 225975, + [SMALL_STATE(4080)] = 226010, + [SMALL_STATE(4081)] = 226045, + [SMALL_STATE(4082)] = 226086, + [SMALL_STATE(4083)] = 226127, + [SMALL_STATE(4084)] = 226162, + [SMALL_STATE(4085)] = 226197, + [SMALL_STATE(4086)] = 226232, + [SMALL_STATE(4087)] = 226267, + [SMALL_STATE(4088)] = 226302, + [SMALL_STATE(4089)] = 226337, + [SMALL_STATE(4090)] = 226372, + [SMALL_STATE(4091)] = 226413, + [SMALL_STATE(4092)] = 226452, + [SMALL_STATE(4093)] = 226487, + [SMALL_STATE(4094)] = 226522, + [SMALL_STATE(4095)] = 226557, + [SMALL_STATE(4096)] = 226592, + [SMALL_STATE(4097)] = 226647, + [SMALL_STATE(4098)] = 226682, + [SMALL_STATE(4099)] = 226723, + [SMALL_STATE(4100)] = 226758, + [SMALL_STATE(4101)] = 226803, + [SMALL_STATE(4102)] = 226838, + [SMALL_STATE(4103)] = 226873, + [SMALL_STATE(4104)] = 226908, + [SMALL_STATE(4105)] = 226943, + [SMALL_STATE(4106)] = 226978, + [SMALL_STATE(4107)] = 227019, + [SMALL_STATE(4108)] = 227054, + [SMALL_STATE(4109)] = 227089, + [SMALL_STATE(4110)] = 227124, + [SMALL_STATE(4111)] = 227159, + [SMALL_STATE(4112)] = 227194, + [SMALL_STATE(4113)] = 227235, + [SMALL_STATE(4114)] = 227270, + [SMALL_STATE(4115)] = 227305, + [SMALL_STATE(4116)] = 227340, + [SMALL_STATE(4117)] = 227395, + [SMALL_STATE(4118)] = 227430, + [SMALL_STATE(4119)] = 227469, + [SMALL_STATE(4120)] = 227504, + [SMALL_STATE(4121)] = 227539, + [SMALL_STATE(4122)] = 227578, + [SMALL_STATE(4123)] = 227619, + [SMALL_STATE(4124)] = 227654, + [SMALL_STATE(4125)] = 227689, + [SMALL_STATE(4126)] = 227728, + [SMALL_STATE(4127)] = 227763, + [SMALL_STATE(4128)] = 227798, + [SMALL_STATE(4129)] = 227833, + [SMALL_STATE(4130)] = 227868, + [SMALL_STATE(4131)] = 227913, + [SMALL_STATE(4132)] = 227948, + [SMALL_STATE(4133)] = 227983, + [SMALL_STATE(4134)] = 228018, + [SMALL_STATE(4135)] = 228057, + [SMALL_STATE(4136)] = 228096, + [SMALL_STATE(4137)] = 228135, + [SMALL_STATE(4138)] = 228176, + [SMALL_STATE(4139)] = 228211, + [SMALL_STATE(4140)] = 228256, + [SMALL_STATE(4141)] = 228297, + [SMALL_STATE(4142)] = 228338, + [SMALL_STATE(4143)] = 228379, + [SMALL_STATE(4144)] = 228418, + [SMALL_STATE(4145)] = 228453, + [SMALL_STATE(4146)] = 228494, + [SMALL_STATE(4147)] = 228528, + [SMALL_STATE(4148)] = 228562, + [SMALL_STATE(4149)] = 228596, + [SMALL_STATE(4150)] = 228640, + [SMALL_STATE(4151)] = 228674, + [SMALL_STATE(4152)] = 228708, + [SMALL_STATE(4153)] = 228748, + [SMALL_STATE(4154)] = 228786, + [SMALL_STATE(4155)] = 228826, + [SMALL_STATE(4156)] = 228860, + [SMALL_STATE(4157)] = 228894, + [SMALL_STATE(4158)] = 228934, + [SMALL_STATE(4159)] = 228974, + [SMALL_STATE(4160)] = 229028, + [SMALL_STATE(4161)] = 229066, + [SMALL_STATE(4162)] = 229100, + [SMALL_STATE(4163)] = 229134, + [SMALL_STATE(4164)] = 229174, + [SMALL_STATE(4165)] = 229214, + [SMALL_STATE(4166)] = 229248, + [SMALL_STATE(4167)] = 229288, + [SMALL_STATE(4168)] = 229322, + [SMALL_STATE(4169)] = 229362, + [SMALL_STATE(4170)] = 229400, + [SMALL_STATE(4171)] = 229434, + [SMALL_STATE(4172)] = 229474, + [SMALL_STATE(4173)] = 229508, + [SMALL_STATE(4174)] = 229548, + [SMALL_STATE(4175)] = 229588, + [SMALL_STATE(4176)] = 229626, + [SMALL_STATE(4177)] = 229664, + [SMALL_STATE(4178)] = 229698, + [SMALL_STATE(4179)] = 229732, + [SMALL_STATE(4180)] = 229766, + [SMALL_STATE(4181)] = 229800, + [SMALL_STATE(4182)] = 229834, + [SMALL_STATE(4183)] = 229868, + [SMALL_STATE(4184)] = 229902, + [SMALL_STATE(4185)] = 229942, + [SMALL_STATE(4186)] = 229980, + [SMALL_STATE(4187)] = 230024, + [SMALL_STATE(4188)] = 230058, + [SMALL_STATE(4189)] = 230092, + [SMALL_STATE(4190)] = 230128, + [SMALL_STATE(4191)] = 230162, + [SMALL_STATE(4192)] = 230196, + [SMALL_STATE(4193)] = 230234, + [SMALL_STATE(4194)] = 230268, + [SMALL_STATE(4195)] = 230322, + [SMALL_STATE(4196)] = 230356, + [SMALL_STATE(4197)] = 230396, + [SMALL_STATE(4198)] = 230430, + [SMALL_STATE(4199)] = 230470, + [SMALL_STATE(4200)] = 230504, + [SMALL_STATE(4201)] = 230548, + [SMALL_STATE(4202)] = 230592, + [SMALL_STATE(4203)] = 230630, + [SMALL_STATE(4204)] = 230664, + [SMALL_STATE(4205)] = 230702, + [SMALL_STATE(4206)] = 230742, + [SMALL_STATE(4207)] = 230792, + [SMALL_STATE(4208)] = 230826, + [SMALL_STATE(4209)] = 230866, + [SMALL_STATE(4210)] = 230900, + [SMALL_STATE(4211)] = 230934, + [SMALL_STATE(4212)] = 230974, + [SMALL_STATE(4213)] = 231008, + [SMALL_STATE(4214)] = 231042, + [SMALL_STATE(4215)] = 231082, + [SMALL_STATE(4216)] = 231116, + [SMALL_STATE(4217)] = 231150, + [SMALL_STATE(4218)] = 231190, + [SMALL_STATE(4219)] = 231224, + [SMALL_STATE(4220)] = 231258, + [SMALL_STATE(4221)] = 231298, + [SMALL_STATE(4222)] = 231336, + [SMALL_STATE(4223)] = 231376, + [SMALL_STATE(4224)] = 231416, + [SMALL_STATE(4225)] = 231454, + [SMALL_STATE(4226)] = 231494, + [SMALL_STATE(4227)] = 231528, + [SMALL_STATE(4228)] = 231566, + [SMALL_STATE(4229)] = 231600, + [SMALL_STATE(4230)] = 231634, + [SMALL_STATE(4231)] = 231674, + [SMALL_STATE(4232)] = 231708, + [SMALL_STATE(4233)] = 231748, + [SMALL_STATE(4234)] = 231802, + [SMALL_STATE(4235)] = 231836, + [SMALL_STATE(4236)] = 231870, + [SMALL_STATE(4237)] = 231904, + [SMALL_STATE(4238)] = 231942, + [SMALL_STATE(4239)] = 231976, + [SMALL_STATE(4240)] = 232010, + [SMALL_STATE(4241)] = 232044, + [SMALL_STATE(4242)] = 232086, + [SMALL_STATE(4243)] = 232120, + [SMALL_STATE(4244)] = 232170, + [SMALL_STATE(4245)] = 232210, + [SMALL_STATE(4246)] = 232244, + [SMALL_STATE(4247)] = 232284, + [SMALL_STATE(4248)] = 232318, + [SMALL_STATE(4249)] = 232362, + [SMALL_STATE(4250)] = 232406, + [SMALL_STATE(4251)] = 232440, + [SMALL_STATE(4252)] = 232474, + [SMALL_STATE(4253)] = 232508, + [SMALL_STATE(4254)] = 232548, + [SMALL_STATE(4255)] = 232582, + [SMALL_STATE(4256)] = 232616, + [SMALL_STATE(4257)] = 232650, + [SMALL_STATE(4258)] = 232684, + [SMALL_STATE(4259)] = 232724, + [SMALL_STATE(4260)] = 232758, + [SMALL_STATE(4261)] = 232792, + [SMALL_STATE(4262)] = 232826, + [SMALL_STATE(4263)] = 232860, + [SMALL_STATE(4264)] = 232894, + [SMALL_STATE(4265)] = 232928, + [SMALL_STATE(4266)] = 232962, + [SMALL_STATE(4267)] = 232996, + [SMALL_STATE(4268)] = 233036, + [SMALL_STATE(4269)] = 233070, + [SMALL_STATE(4270)] = 233104, + [SMALL_STATE(4271)] = 233144, + [SMALL_STATE(4272)] = 233178, + [SMALL_STATE(4273)] = 233218, + [SMALL_STATE(4274)] = 233252, + [SMALL_STATE(4275)] = 233292, + [SMALL_STATE(4276)] = 233326, + [SMALL_STATE(4277)] = 233360, + [SMALL_STATE(4278)] = 233394, + [SMALL_STATE(4279)] = 233428, + [SMALL_STATE(4280)] = 233462, + [SMALL_STATE(4281)] = 233496, + [SMALL_STATE(4282)] = 233536, + [SMALL_STATE(4283)] = 233570, + [SMALL_STATE(4284)] = 233604, + [SMALL_STATE(4285)] = 233644, + [SMALL_STATE(4286)] = 233682, + [SMALL_STATE(4287)] = 233722, + [SMALL_STATE(4288)] = 233762, + [SMALL_STATE(4289)] = 233802, + [SMALL_STATE(4290)] = 233856, + [SMALL_STATE(4291)] = 233900, + [SMALL_STATE(4292)] = 233934, + [SMALL_STATE(4293)] = 233974, + [SMALL_STATE(4294)] = 234012, + [SMALL_STATE(4295)] = 234052, + [SMALL_STATE(4296)] = 234092, + [SMALL_STATE(4297)] = 234132, + [SMALL_STATE(4298)] = 234172, + [SMALL_STATE(4299)] = 234212, + [SMALL_STATE(4300)] = 234252, + [SMALL_STATE(4301)] = 234292, + [SMALL_STATE(4302)] = 234332, + [SMALL_STATE(4303)] = 234372, + [SMALL_STATE(4304)] = 234406, + [SMALL_STATE(4305)] = 234444, + [SMALL_STATE(4306)] = 234488, + [SMALL_STATE(4307)] = 234528, + [SMALL_STATE(4308)] = 234568, + [SMALL_STATE(4309)] = 234608, + [SMALL_STATE(4310)] = 234662, + [SMALL_STATE(4311)] = 234704, + [SMALL_STATE(4312)] = 234744, + [SMALL_STATE(4313)] = 234786, + [SMALL_STATE(4314)] = 234826, + [SMALL_STATE(4315)] = 234880, + [SMALL_STATE(4316)] = 234920, + [SMALL_STATE(4317)] = 234964, + [SMALL_STATE(4318)] = 235004, + [SMALL_STATE(4319)] = 235044, + [SMALL_STATE(4320)] = 235084, + [SMALL_STATE(4321)] = 235118, + [SMALL_STATE(4322)] = 235152, + [SMALL_STATE(4323)] = 235192, + [SMALL_STATE(4324)] = 235232, + [SMALL_STATE(4325)] = 235272, + [SMALL_STATE(4326)] = 235312, + [SMALL_STATE(4327)] = 235352, + [SMALL_STATE(4328)] = 235392, + [SMALL_STATE(4329)] = 235432, + [SMALL_STATE(4330)] = 235472, + [SMALL_STATE(4331)] = 235512, + [SMALL_STATE(4332)] = 235552, + [SMALL_STATE(4333)] = 235590, + [SMALL_STATE(4334)] = 235624, + [SMALL_STATE(4335)] = 235662, + [SMALL_STATE(4336)] = 235696, + [SMALL_STATE(4337)] = 235735, + [SMALL_STATE(4338)] = 235768, + [SMALL_STATE(4339)] = 235807, + [SMALL_STATE(4340)] = 235844, + [SMALL_STATE(4341)] = 235877, + [SMALL_STATE(4342)] = 235910, + [SMALL_STATE(4343)] = 235943, + [SMALL_STATE(4344)] = 235976, + [SMALL_STATE(4345)] = 236009, + [SMALL_STATE(4346)] = 236046, + [SMALL_STATE(4347)] = 236085, + [SMALL_STATE(4348)] = 236124, + [SMALL_STATE(4349)] = 236163, + [SMALL_STATE(4350)] = 236202, + [SMALL_STATE(4351)] = 236267, + [SMALL_STATE(4352)] = 236306, + [SMALL_STATE(4353)] = 236339, + [SMALL_STATE(4354)] = 236372, + [SMALL_STATE(4355)] = 236411, + [SMALL_STATE(4356)] = 236444, + [SMALL_STATE(4357)] = 236483, + [SMALL_STATE(4358)] = 236516, + [SMALL_STATE(4359)] = 236549, + [SMALL_STATE(4360)] = 236582, + [SMALL_STATE(4361)] = 236625, + [SMALL_STATE(4362)] = 236658, + [SMALL_STATE(4363)] = 236691, + [SMALL_STATE(4364)] = 236724, + [SMALL_STATE(4365)] = 236763, + [SMALL_STATE(4366)] = 236796, + [SMALL_STATE(4367)] = 236829, + [SMALL_STATE(4368)] = 236868, + [SMALL_STATE(4369)] = 236901, + [SMALL_STATE(4370)] = 236952, + [SMALL_STATE(4371)] = 236985, + [SMALL_STATE(4372)] = 237024, + [SMALL_STATE(4373)] = 237063, + [SMALL_STATE(4374)] = 237128, + [SMALL_STATE(4375)] = 237179, + [SMALL_STATE(4376)] = 237212, + [SMALL_STATE(4377)] = 237245, + [SMALL_STATE(4378)] = 237278, + [SMALL_STATE(4379)] = 237311, + [SMALL_STATE(4380)] = 237344, + [SMALL_STATE(4381)] = 237381, + [SMALL_STATE(4382)] = 237420, + [SMALL_STATE(4383)] = 237457, + [SMALL_STATE(4384)] = 237506, + [SMALL_STATE(4385)] = 237539, + [SMALL_STATE(4386)] = 237588, + [SMALL_STATE(4387)] = 237621, + [SMALL_STATE(4388)] = 237660, + [SMALL_STATE(4389)] = 237711, + [SMALL_STATE(4390)] = 237762, + [SMALL_STATE(4391)] = 237827, + [SMALL_STATE(4392)] = 237866, + [SMALL_STATE(4393)] = 237905, + [SMALL_STATE(4394)] = 237944, + [SMALL_STATE(4395)] = 237983, + [SMALL_STATE(4396)] = 238016, + [SMALL_STATE(4397)] = 238055, + [SMALL_STATE(4398)] = 238094, + [SMALL_STATE(4399)] = 238127, + [SMALL_STATE(4400)] = 238160, + [SMALL_STATE(4401)] = 238199, + [SMALL_STATE(4402)] = 238232, + [SMALL_STATE(4403)] = 238265, + [SMALL_STATE(4404)] = 238304, + [SMALL_STATE(4405)] = 238343, + [SMALL_STATE(4406)] = 238380, + [SMALL_STATE(4407)] = 238419, + [SMALL_STATE(4408)] = 238458, + [SMALL_STATE(4409)] = 238497, + [SMALL_STATE(4410)] = 238536, + [SMALL_STATE(4411)] = 238575, + [SMALL_STATE(4412)] = 238612, + [SMALL_STATE(4413)] = 238655, + [SMALL_STATE(4414)] = 238688, + [SMALL_STATE(4415)] = 238725, + [SMALL_STATE(4416)] = 238790, + [SMALL_STATE(4417)] = 238833, + [SMALL_STATE(4418)] = 238898, + [SMALL_STATE(4419)] = 238941, + [SMALL_STATE(4420)] = 238980, + [SMALL_STATE(4421)] = 239021, + [SMALL_STATE(4422)] = 239054, + [SMALL_STATE(4423)] = 239087, + [SMALL_STATE(4424)] = 239120, + [SMALL_STATE(4425)] = 239153, + [SMALL_STATE(4426)] = 239186, + [SMALL_STATE(4427)] = 239219, + [SMALL_STATE(4428)] = 239252, + [SMALL_STATE(4429)] = 239285, + [SMALL_STATE(4430)] = 239324, + [SMALL_STATE(4431)] = 239357, + [SMALL_STATE(4432)] = 239390, + [SMALL_STATE(4433)] = 239429, + [SMALL_STATE(4434)] = 239462, + [SMALL_STATE(4435)] = 239501, + [SMALL_STATE(4436)] = 239534, + [SMALL_STATE(4437)] = 239577, + [SMALL_STATE(4438)] = 239610, + [SMALL_STATE(4439)] = 239643, + [SMALL_STATE(4440)] = 239686, + [SMALL_STATE(4441)] = 239719, + [SMALL_STATE(4442)] = 239758, + [SMALL_STATE(4443)] = 239791, + [SMALL_STATE(4444)] = 239824, + [SMALL_STATE(4445)] = 239867, + [SMALL_STATE(4446)] = 239900, + [SMALL_STATE(4447)] = 239939, + [SMALL_STATE(4448)] = 239978, + [SMALL_STATE(4449)] = 240017, + [SMALL_STATE(4450)] = 240056, + [SMALL_STATE(4451)] = 240095, + [SMALL_STATE(4452)] = 240134, + [SMALL_STATE(4453)] = 240173, + [SMALL_STATE(4454)] = 240212, + [SMALL_STATE(4455)] = 240245, + [SMALL_STATE(4456)] = 240278, + [SMALL_STATE(4457)] = 240311, + [SMALL_STATE(4458)] = 240344, + [SMALL_STATE(4459)] = 240377, + [SMALL_STATE(4460)] = 240410, + [SMALL_STATE(4461)] = 240475, + [SMALL_STATE(4462)] = 240508, + [SMALL_STATE(4463)] = 240573, + [SMALL_STATE(4464)] = 240606, + [SMALL_STATE(4465)] = 240643, + [SMALL_STATE(4466)] = 240708, + [SMALL_STATE(4467)] = 240741, + [SMALL_STATE(4468)] = 240774, + [SMALL_STATE(4469)] = 240807, + [SMALL_STATE(4470)] = 240844, + [SMALL_STATE(4471)] = 240887, + [SMALL_STATE(4472)] = 240926, + [SMALL_STATE(4473)] = 240965, + [SMALL_STATE(4474)] = 241004, + [SMALL_STATE(4475)] = 241043, + [SMALL_STATE(4476)] = 241108, + [SMALL_STATE(4477)] = 241141, + [SMALL_STATE(4478)] = 241174, + [SMALL_STATE(4479)] = 241213, + [SMALL_STATE(4480)] = 241246, + [SMALL_STATE(4481)] = 241283, + [SMALL_STATE(4482)] = 241322, + [SMALL_STATE(4483)] = 241365, + [SMALL_STATE(4484)] = 241404, + [SMALL_STATE(4485)] = 241443, + [SMALL_STATE(4486)] = 241482, + [SMALL_STATE(4487)] = 241521, + [SMALL_STATE(4488)] = 241560, + [SMALL_STATE(4489)] = 241603, + [SMALL_STATE(4490)] = 241642, + [SMALL_STATE(4491)] = 241675, + [SMALL_STATE(4492)] = 241710, + [SMALL_STATE(4493)] = 241753, + [SMALL_STATE(4494)] = 241815, + [SMALL_STATE(4495)] = 241877, + [SMALL_STATE(4496)] = 241909, + [SMALL_STATE(4497)] = 241941, + [SMALL_STATE(4498)] = 241999, + [SMALL_STATE(4499)] = 242057, + [SMALL_STATE(4500)] = 242115, + [SMALL_STATE(4501)] = 242147, + [SMALL_STATE(4502)] = 242179, + [SMALL_STATE(4503)] = 242215, + [SMALL_STATE(4504)] = 242247, + [SMALL_STATE(4505)] = 242305, + [SMALL_STATE(4506)] = 242337, + [SMALL_STATE(4507)] = 242395, + [SMALL_STATE(4508)] = 242453, + [SMALL_STATE(4509)] = 242511, + [SMALL_STATE(4510)] = 242543, + [SMALL_STATE(4511)] = 242591, + [SMALL_STATE(4512)] = 242623, + [SMALL_STATE(4513)] = 242681, + [SMALL_STATE(4514)] = 242713, + [SMALL_STATE(4515)] = 242771, + [SMALL_STATE(4516)] = 242803, + [SMALL_STATE(4517)] = 242861, + [SMALL_STATE(4518)] = 242893, + [SMALL_STATE(4519)] = 242951, + [SMALL_STATE(4520)] = 242983, + [SMALL_STATE(4521)] = 243041, + [SMALL_STATE(4522)] = 243073, + [SMALL_STATE(4523)] = 243105, + [SMALL_STATE(4524)] = 243163, + [SMALL_STATE(4525)] = 243221, + [SMALL_STATE(4526)] = 243269, + [SMALL_STATE(4527)] = 243327, + [SMALL_STATE(4528)] = 243385, + [SMALL_STATE(4529)] = 243417, + [SMALL_STATE(4530)] = 243449, + [SMALL_STATE(4531)] = 243507, + [SMALL_STATE(4532)] = 243539, + [SMALL_STATE(4533)] = 243597, + [SMALL_STATE(4534)] = 243629, + [SMALL_STATE(4535)] = 243687, + [SMALL_STATE(4536)] = 243745, + [SMALL_STATE(4537)] = 243777, + [SMALL_STATE(4538)] = 243835, + [SMALL_STATE(4539)] = 243867, + [SMALL_STATE(4540)] = 243899, + [SMALL_STATE(4541)] = 243931, + [SMALL_STATE(4542)] = 243989, + [SMALL_STATE(4543)] = 244021, + [SMALL_STATE(4544)] = 244053, + [SMALL_STATE(4545)] = 244085, + [SMALL_STATE(4546)] = 244143, + [SMALL_STATE(4547)] = 244191, + [SMALL_STATE(4548)] = 244227, + [SMALL_STATE(4549)] = 244285, + [SMALL_STATE(4550)] = 244317, + [SMALL_STATE(4551)] = 244375, + [SMALL_STATE(4552)] = 244433, + [SMALL_STATE(4553)] = 244465, + [SMALL_STATE(4554)] = 244497, + [SMALL_STATE(4555)] = 244529, + [SMALL_STATE(4556)] = 244561, + [SMALL_STATE(4557)] = 244595, + [SMALL_STATE(4558)] = 244653, + [SMALL_STATE(4559)] = 244685, + [SMALL_STATE(4560)] = 244743, + [SMALL_STATE(4561)] = 244775, + [SMALL_STATE(4562)] = 244807, + [SMALL_STATE(4563)] = 244839, + [SMALL_STATE(4564)] = 244897, + [SMALL_STATE(4565)] = 244955, + [SMALL_STATE(4566)] = 245013, + [SMALL_STATE(4567)] = 245045, + [SMALL_STATE(4568)] = 245103, + [SMALL_STATE(4569)] = 245135, + [SMALL_STATE(4570)] = 245167, + [SMALL_STATE(4571)] = 245225, + [SMALL_STATE(4572)] = 245257, + [SMALL_STATE(4573)] = 245315, + [SMALL_STATE(4574)] = 245347, + [SMALL_STATE(4575)] = 245379, + [SMALL_STATE(4576)] = 245437, + [SMALL_STATE(4577)] = 245469, + [SMALL_STATE(4578)] = 245501, + [SMALL_STATE(4579)] = 245533, + [SMALL_STATE(4580)] = 245565, + [SMALL_STATE(4581)] = 245623, + [SMALL_STATE(4582)] = 245655, + [SMALL_STATE(4583)] = 245687, + [SMALL_STATE(4584)] = 245745, + [SMALL_STATE(4585)] = 245777, + [SMALL_STATE(4586)] = 245809, + [SMALL_STATE(4587)] = 245857, + [SMALL_STATE(4588)] = 245889, + [SMALL_STATE(4589)] = 245921, + [SMALL_STATE(4590)] = 245979, + [SMALL_STATE(4591)] = 246037, + [SMALL_STATE(4592)] = 246095, + [SMALL_STATE(4593)] = 246127, + [SMALL_STATE(4594)] = 246159, + [SMALL_STATE(4595)] = 246217, + [SMALL_STATE(4596)] = 246249, + [SMALL_STATE(4597)] = 246281, + [SMALL_STATE(4598)] = 246313, + [SMALL_STATE(4599)] = 246371, + [SMALL_STATE(4600)] = 246403, + [SMALL_STATE(4601)] = 246461, + [SMALL_STATE(4602)] = 246493, + [SMALL_STATE(4603)] = 246551, + [SMALL_STATE(4604)] = 246609, + [SMALL_STATE(4605)] = 246645, + [SMALL_STATE(4606)] = 246703, + [SMALL_STATE(4607)] = 246761, + [SMALL_STATE(4608)] = 246819, + [SMALL_STATE(4609)] = 246877, + [SMALL_STATE(4610)] = 246935, + [SMALL_STATE(4611)] = 246969, + [SMALL_STATE(4612)] = 247027, + [SMALL_STATE(4613)] = 247085, + [SMALL_STATE(4614)] = 247143, + [SMALL_STATE(4615)] = 247201, + [SMALL_STATE(4616)] = 247259, + [SMALL_STATE(4617)] = 247317, + [SMALL_STATE(4618)] = 247349, + [SMALL_STATE(4619)] = 247381, + [SMALL_STATE(4620)] = 247413, + [SMALL_STATE(4621)] = 247471, + [SMALL_STATE(4622)] = 247503, + [SMALL_STATE(4623)] = 247565, + [SMALL_STATE(4624)] = 247623, + [SMALL_STATE(4625)] = 247655, + [SMALL_STATE(4626)] = 247717, + [SMALL_STATE(4627)] = 247779, + [SMALL_STATE(4628)] = 247811, + [SMALL_STATE(4629)] = 247843, + [SMALL_STATE(4630)] = 247875, + [SMALL_STATE(4631)] = 247933, + [SMALL_STATE(4632)] = 247965, + [SMALL_STATE(4633)] = 247997, + [SMALL_STATE(4634)] = 248029, + [SMALL_STATE(4635)] = 248061, + [SMALL_STATE(4636)] = 248093, + [SMALL_STATE(4637)] = 248129, + [SMALL_STATE(4638)] = 248163, + [SMALL_STATE(4639)] = 248221, + [SMALL_STATE(4640)] = 248253, + [SMALL_STATE(4641)] = 248285, + [SMALL_STATE(4642)] = 248317, + [SMALL_STATE(4643)] = 248349, + [SMALL_STATE(4644)] = 248381, + [SMALL_STATE(4645)] = 248413, + [SMALL_STATE(4646)] = 248471, + [SMALL_STATE(4647)] = 248519, + [SMALL_STATE(4648)] = 248551, + [SMALL_STATE(4649)] = 248613, + [SMALL_STATE(4650)] = 248645, + [SMALL_STATE(4651)] = 248677, + [SMALL_STATE(4652)] = 248709, + [SMALL_STATE(4653)] = 248741, + [SMALL_STATE(4654)] = 248799, + [SMALL_STATE(4655)] = 248831, + [SMALL_STATE(4656)] = 248863, + [SMALL_STATE(4657)] = 248909, + [SMALL_STATE(4658)] = 248941, + [SMALL_STATE(4659)] = 248973, + [SMALL_STATE(4660)] = 249035, + [SMALL_STATE(4661)] = 249097, + [SMALL_STATE(4662)] = 249129, + [SMALL_STATE(4663)] = 249161, + [SMALL_STATE(4664)] = 249219, + [SMALL_STATE(4665)] = 249257, + [SMALL_STATE(4666)] = 249289, + [SMALL_STATE(4667)] = 249327, + [SMALL_STATE(4668)] = 249359, + [SMALL_STATE(4669)] = 249391, + [SMALL_STATE(4670)] = 249449, + [SMALL_STATE(4671)] = 249491, + [SMALL_STATE(4672)] = 249533, + [SMALL_STATE(4673)] = 249575, + [SMALL_STATE(4674)] = 249607, + [SMALL_STATE(4675)] = 249639, + [SMALL_STATE(4676)] = 249671, + [SMALL_STATE(4677)] = 249703, + [SMALL_STATE(4678)] = 249735, + [SMALL_STATE(4679)] = 249793, + [SMALL_STATE(4680)] = 249825, + [SMALL_STATE(4681)] = 249883, + [SMALL_STATE(4682)] = 249915, + [SMALL_STATE(4683)] = 249947, + [SMALL_STATE(4684)] = 249979, + [SMALL_STATE(4685)] = 250011, + [SMALL_STATE(4686)] = 250043, + [SMALL_STATE(4687)] = 250075, + [SMALL_STATE(4688)] = 250113, + [SMALL_STATE(4689)] = 250151, + [SMALL_STATE(4690)] = 250189, + [SMALL_STATE(4691)] = 250227, + [SMALL_STATE(4692)] = 250259, + [SMALL_STATE(4693)] = 250317, + [SMALL_STATE(4694)] = 250349, + [SMALL_STATE(4695)] = 250381, + [SMALL_STATE(4696)] = 250429, + [SMALL_STATE(4697)] = 250461, + [SMALL_STATE(4698)] = 250499, + [SMALL_STATE(4699)] = 250537, + [SMALL_STATE(4700)] = 250575, + [SMALL_STATE(4701)] = 250613, + [SMALL_STATE(4702)] = 250649, + [SMALL_STATE(4703)] = 250707, + [SMALL_STATE(4704)] = 250769, + [SMALL_STATE(4705)] = 250801, + [SMALL_STATE(4706)] = 250833, + [SMALL_STATE(4707)] = 250865, + [SMALL_STATE(4708)] = 250897, + [SMALL_STATE(4709)] = 250955, + [SMALL_STATE(4710)] = 250991, + [SMALL_STATE(4711)] = 251023, + [SMALL_STATE(4712)] = 251055, + [SMALL_STATE(4713)] = 251087, + [SMALL_STATE(4714)] = 251119, + [SMALL_STATE(4715)] = 251151, + [SMALL_STATE(4716)] = 251209, + [SMALL_STATE(4717)] = 251255, + [SMALL_STATE(4718)] = 251286, + [SMALL_STATE(4719)] = 251317, + [SMALL_STATE(4720)] = 251348, + [SMALL_STATE(4721)] = 251393, + [SMALL_STATE(4722)] = 251428, + [SMALL_STATE(4723)] = 251459, + [SMALL_STATE(4724)] = 251490, + [SMALL_STATE(4725)] = 251521, + [SMALL_STATE(4726)] = 251552, + [SMALL_STATE(4727)] = 251597, + [SMALL_STATE(4728)] = 251628, + [SMALL_STATE(4729)] = 251659, + [SMALL_STATE(4730)] = 251694, + [SMALL_STATE(4731)] = 251729, + [SMALL_STATE(4732)] = 251760, + [SMALL_STATE(4733)] = 251791, + [SMALL_STATE(4734)] = 251822, + [SMALL_STATE(4735)] = 251857, + [SMALL_STATE(4736)] = 251888, + [SMALL_STATE(4737)] = 251923, + [SMALL_STATE(4738)] = 251954, + [SMALL_STATE(4739)] = 251985, + [SMALL_STATE(4740)] = 252030, + [SMALL_STATE(4741)] = 252075, + [SMALL_STATE(4742)] = 252106, + [SMALL_STATE(4743)] = 252137, + [SMALL_STATE(4744)] = 252168, + [SMALL_STATE(4745)] = 252199, + [SMALL_STATE(4746)] = 252244, + [SMALL_STATE(4747)] = 252275, + [SMALL_STATE(4748)] = 252312, + [SMALL_STATE(4749)] = 252347, + [SMALL_STATE(4750)] = 252378, + [SMALL_STATE(4751)] = 252409, + [SMALL_STATE(4752)] = 252440, + [SMALL_STATE(4753)] = 252471, + [SMALL_STATE(4754)] = 252502, + [SMALL_STATE(4755)] = 252539, + [SMALL_STATE(4756)] = 252570, + [SMALL_STATE(4757)] = 252605, + [SMALL_STATE(4758)] = 252636, + [SMALL_STATE(4759)] = 252681, + [SMALL_STATE(4760)] = 252716, + [SMALL_STATE(4761)] = 252747, + [SMALL_STATE(4762)] = 252778, + [SMALL_STATE(4763)] = 252809, + [SMALL_STATE(4764)] = 252844, + [SMALL_STATE(4765)] = 252875, + [SMALL_STATE(4766)] = 252906, + [SMALL_STATE(4767)] = 252937, + [SMALL_STATE(4768)] = 252968, + [SMALL_STATE(4769)] = 252999, + [SMALL_STATE(4770)] = 253030, + [SMALL_STATE(4771)] = 253061, + [SMALL_STATE(4772)] = 253117, + [SMALL_STATE(4773)] = 253151, + [SMALL_STATE(4774)] = 253207, + [SMALL_STATE(4775)] = 253263, + [SMALL_STATE(4776)] = 253319, + [SMALL_STATE(4777)] = 253353, + [SMALL_STATE(4778)] = 253387, + [SMALL_STATE(4779)] = 253443, + [SMALL_STATE(4780)] = 253487, + [SMALL_STATE(4781)] = 253521, + [SMALL_STATE(4782)] = 253557, + [SMALL_STATE(4783)] = 253613, + [SMALL_STATE(4784)] = 253647, + [SMALL_STATE(4785)] = 253681, + [SMALL_STATE(4786)] = 253725, + [SMALL_STATE(4787)] = 253759, + [SMALL_STATE(4788)] = 253795, + [SMALL_STATE(4789)] = 253829, + [SMALL_STATE(4790)] = 253885, + [SMALL_STATE(4791)] = 253941, + [SMALL_STATE(4792)] = 253987, + [SMALL_STATE(4793)] = 254023, + [SMALL_STATE(4794)] = 254079, + [SMALL_STATE(4795)] = 254133, + [SMALL_STATE(4796)] = 254169, + [SMALL_STATE(4797)] = 254203, + [SMALL_STATE(4798)] = 254259, + [SMALL_STATE(4799)] = 254293, + [SMALL_STATE(4800)] = 254337, + [SMALL_STATE(4801)] = 254371, + [SMALL_STATE(4802)] = 254427, + [SMALL_STATE(4803)] = 254483, + [SMALL_STATE(4804)] = 254539, + [SMALL_STATE(4805)] = 254577, + [SMALL_STATE(4806)] = 254613, + [SMALL_STATE(4807)] = 254669, + [SMALL_STATE(4808)] = 254725, + [SMALL_STATE(4809)] = 254781, + [SMALL_STATE(4810)] = 254837, + [SMALL_STATE(4811)] = 254893, + [SMALL_STATE(4812)] = 254949, + [SMALL_STATE(4813)] = 255005, + [SMALL_STATE(4814)] = 255061, + [SMALL_STATE(4815)] = 255117, + [SMALL_STATE(4816)] = 255173, + [SMALL_STATE(4817)] = 255207, + [SMALL_STATE(4818)] = 255263, + [SMALL_STATE(4819)] = 255297, + [SMALL_STATE(4820)] = 255331, + [SMALL_STATE(4821)] = 255377, + [SMALL_STATE(4822)] = 255433, + [SMALL_STATE(4823)] = 255477, + [SMALL_STATE(4824)] = 255511, + [SMALL_STATE(4825)] = 255567, + [SMALL_STATE(4826)] = 255609, + [SMALL_STATE(4827)] = 255665, + [SMALL_STATE(4828)] = 255721, + [SMALL_STATE(4829)] = 255757, + [SMALL_STATE(4830)] = 255793, + [SMALL_STATE(4831)] = 255823, + [SMALL_STATE(4832)] = 255879, + [SMALL_STATE(4833)] = 255935, + [SMALL_STATE(4834)] = 255991, + [SMALL_STATE(4835)] = 256027, + [SMALL_STATE(4836)] = 256083, + [SMALL_STATE(4837)] = 256139, + [SMALL_STATE(4838)] = 256175, + [SMALL_STATE(4839)] = 256215, + [SMALL_STATE(4840)] = 256251, + [SMALL_STATE(4841)] = 256287, + [SMALL_STATE(4842)] = 256327, + [SMALL_STATE(4843)] = 256363, + [SMALL_STATE(4844)] = 256399, + [SMALL_STATE(4845)] = 256435, + [SMALL_STATE(4846)] = 256479, + [SMALL_STATE(4847)] = 256535, + [SMALL_STATE(4848)] = 256579, + [SMALL_STATE(4849)] = 256615, + [SMALL_STATE(4850)] = 256651, + [SMALL_STATE(4851)] = 256687, + [SMALL_STATE(4852)] = 256743, + [SMALL_STATE(4853)] = 256777, + [SMALL_STATE(4854)] = 256833, + [SMALL_STATE(4855)] = 256867, + [SMALL_STATE(4856)] = 256923, + [SMALL_STATE(4857)] = 256959, + [SMALL_STATE(4858)] = 256995, + [SMALL_STATE(4859)] = 257031, + [SMALL_STATE(4860)] = 257067, + [SMALL_STATE(4861)] = 257103, + [SMALL_STATE(4862)] = 257139, + [SMALL_STATE(4863)] = 257175, + [SMALL_STATE(4864)] = 257211, + [SMALL_STATE(4865)] = 257247, + [SMALL_STATE(4866)] = 257283, + [SMALL_STATE(4867)] = 257317, + [SMALL_STATE(4868)] = 257373, + [SMALL_STATE(4869)] = 257429, + [SMALL_STATE(4870)] = 257471, + [SMALL_STATE(4871)] = 257504, + [SMALL_STATE(4872)] = 257535, + [SMALL_STATE(4873)] = 257576, + [SMALL_STATE(4874)] = 257605, + [SMALL_STATE(4875)] = 257634, + [SMALL_STATE(4876)] = 257663, + [SMALL_STATE(4877)] = 257692, + [SMALL_STATE(4878)] = 257723, + [SMALL_STATE(4879)] = 257752, + [SMALL_STATE(4880)] = 257783, + [SMALL_STATE(4881)] = 257814, + [SMALL_STATE(4882)] = 257847, + [SMALL_STATE(4883)] = 257876, + [SMALL_STATE(4884)] = 257905, + [SMALL_STATE(4885)] = 257934, + [SMALL_STATE(4886)] = 257965, + [SMALL_STATE(4887)] = 257994, + [SMALL_STATE(4888)] = 258061, + [SMALL_STATE(4889)] = 258102, + [SMALL_STATE(4890)] = 258131, + [SMALL_STATE(4891)] = 258160, + [SMALL_STATE(4892)] = 258189, + [SMALL_STATE(4893)] = 258218, + [SMALL_STATE(4894)] = 258259, + [SMALL_STATE(4895)] = 258292, + [SMALL_STATE(4896)] = 258321, + [SMALL_STATE(4897)] = 258352, + [SMALL_STATE(4898)] = 258381, + [SMALL_STATE(4899)] = 258410, + [SMALL_STATE(4900)] = 258439, + [SMALL_STATE(4901)] = 258470, + [SMALL_STATE(4902)] = 258505, + [SMALL_STATE(4903)] = 258538, + [SMALL_STATE(4904)] = 258573, + [SMALL_STATE(4905)] = 258602, + [SMALL_STATE(4906)] = 258633, + [SMALL_STATE(4907)] = 258668, + [SMALL_STATE(4908)] = 258701, + [SMALL_STATE(4909)] = 258734, + [SMALL_STATE(4910)] = 258763, + [SMALL_STATE(4911)] = 258794, + [SMALL_STATE(4912)] = 258827, + [SMALL_STATE(4913)] = 258856, + [SMALL_STATE(4914)] = 258887, + [SMALL_STATE(4915)] = 258936, + [SMALL_STATE(4916)] = 258969, + [SMALL_STATE(4917)] = 258998, + [SMALL_STATE(4918)] = 259031, + [SMALL_STATE(4919)] = 259064, + [SMALL_STATE(4920)] = 259093, + [SMALL_STATE(4921)] = 259124, + [SMALL_STATE(4922)] = 259157, + [SMALL_STATE(4923)] = 259188, + [SMALL_STATE(4924)] = 259229, + [SMALL_STATE(4925)] = 259260, + [SMALL_STATE(4926)] = 259291, + [SMALL_STATE(4927)] = 259324, + [SMALL_STATE(4928)] = 259353, + [SMALL_STATE(4929)] = 259382, + [SMALL_STATE(4930)] = 259413, + [SMALL_STATE(4931)] = 259452, + [SMALL_STATE(4932)] = 259483, + [SMALL_STATE(4933)] = 259518, + [SMALL_STATE(4934)] = 259553, + [SMALL_STATE(4935)] = 259594, + [SMALL_STATE(4936)] = 259625, + [SMALL_STATE(4937)] = 259664, + [SMALL_STATE(4938)] = 259703, + [SMALL_STATE(4939)] = 259742, + [SMALL_STATE(4940)] = 259783, + [SMALL_STATE(4941)] = 259818, + [SMALL_STATE(4942)] = 259847, + [SMALL_STATE(4943)] = 259882, + [SMALL_STATE(4944)] = 259911, + [SMALL_STATE(4945)] = 259940, + [SMALL_STATE(4946)] = 259973, + [SMALL_STATE(4947)] = 260002, + [SMALL_STATE(4948)] = 260031, + [SMALL_STATE(4949)] = 260064, + [SMALL_STATE(4950)] = 260095, + [SMALL_STATE(4951)] = 260126, + [SMALL_STATE(4952)] = 260161, + [SMALL_STATE(4953)] = 260190, + [SMALL_STATE(4954)] = 260219, + [SMALL_STATE(4955)] = 260254, + [SMALL_STATE(4956)] = 260285, + [SMALL_STATE(4957)] = 260314, + [SMALL_STATE(4958)] = 260349, + [SMALL_STATE(4959)] = 260382, + [SMALL_STATE(4960)] = 260415, + [SMALL_STATE(4961)] = 260450, + [SMALL_STATE(4962)] = 260481, + [SMALL_STATE(4963)] = 260542, + [SMALL_STATE(4964)] = 260575, + [SMALL_STATE(4965)] = 260604, + [SMALL_STATE(4966)] = 260633, + [SMALL_STATE(4967)] = 260668, + [SMALL_STATE(4968)] = 260703, + [SMALL_STATE(4969)] = 260738, + [SMALL_STATE(4970)] = 260773, + [SMALL_STATE(4971)] = 260804, + [SMALL_STATE(4972)] = 260833, + [SMALL_STATE(4973)] = 260866, + [SMALL_STATE(4974)] = 260899, + [SMALL_STATE(4975)] = 260960, + [SMALL_STATE(4976)] = 260989, + [SMALL_STATE(4977)] = 261022, + [SMALL_STATE(4978)] = 261051, + [SMALL_STATE(4979)] = 261086, + [SMALL_STATE(4980)] = 261121, + [SMALL_STATE(4981)] = 261156, + [SMALL_STATE(4982)] = 261191, + [SMALL_STATE(4983)] = 261224, + [SMALL_STATE(4984)] = 261253, + [SMALL_STATE(4985)] = 261286, + [SMALL_STATE(4986)] = 261319, + [SMALL_STATE(4987)] = 261350, + [SMALL_STATE(4988)] = 261381, + [SMALL_STATE(4989)] = 261409, + [SMALL_STATE(4990)] = 261437, + [SMALL_STATE(4991)] = 261465, + [SMALL_STATE(4992)] = 261497, + [SMALL_STATE(4993)] = 261555, + [SMALL_STATE(4994)] = 261583, + [SMALL_STATE(4995)] = 261611, + [SMALL_STATE(4996)] = 261639, + [SMALL_STATE(4997)] = 261685, + [SMALL_STATE(4998)] = 261729, + [SMALL_STATE(4999)] = 261757, + [SMALL_STATE(5000)] = 261785, + [SMALL_STATE(5001)] = 261813, + [SMALL_STATE(5002)] = 261841, + [SMALL_STATE(5003)] = 261869, + [SMALL_STATE(5004)] = 261897, + [SMALL_STATE(5005)] = 261925, + [SMALL_STATE(5006)] = 261965, + [SMALL_STATE(5007)] = 261993, + [SMALL_STATE(5008)] = 262021, + [SMALL_STATE(5009)] = 262061, + [SMALL_STATE(5010)] = 262089, + [SMALL_STATE(5011)] = 262117, + [SMALL_STATE(5012)] = 262145, + [SMALL_STATE(5013)] = 262173, + [SMALL_STATE(5014)] = 262201, + [SMALL_STATE(5015)] = 262229, + [SMALL_STATE(5016)] = 262257, + [SMALL_STATE(5017)] = 262285, + [SMALL_STATE(5018)] = 262313, + [SMALL_STATE(5019)] = 262353, + [SMALL_STATE(5020)] = 262381, + [SMALL_STATE(5021)] = 262409, + [SMALL_STATE(5022)] = 262441, + [SMALL_STATE(5023)] = 262469, + [SMALL_STATE(5024)] = 262497, + [SMALL_STATE(5025)] = 262525, + [SMALL_STATE(5026)] = 262553, + [SMALL_STATE(5027)] = 262581, + [SMALL_STATE(5028)] = 262609, + [SMALL_STATE(5029)] = 262637, + [SMALL_STATE(5030)] = 262665, + [SMALL_STATE(5031)] = 262693, + [SMALL_STATE(5032)] = 262721, + [SMALL_STATE(5033)] = 262749, + [SMALL_STATE(5034)] = 262795, + [SMALL_STATE(5035)] = 262823, + [SMALL_STATE(5036)] = 262851, + [SMALL_STATE(5037)] = 262879, + [SMALL_STATE(5038)] = 262907, + [SMALL_STATE(5039)] = 262935, + [SMALL_STATE(5040)] = 262967, + [SMALL_STATE(5041)] = 262999, + [SMALL_STATE(5042)] = 263027, + [SMALL_STATE(5043)] = 263055, + [SMALL_STATE(5044)] = 263083, + [SMALL_STATE(5045)] = 263111, + [SMALL_STATE(5046)] = 263139, + [SMALL_STATE(5047)] = 263167, + [SMALL_STATE(5048)] = 263195, + [SMALL_STATE(5049)] = 263223, + [SMALL_STATE(5050)] = 263251, + [SMALL_STATE(5051)] = 263279, + [SMALL_STATE(5052)] = 263311, + [SMALL_STATE(5053)] = 263341, + [SMALL_STATE(5054)] = 263373, + [SMALL_STATE(5055)] = 263401, + [SMALL_STATE(5056)] = 263429, + [SMALL_STATE(5057)] = 263457, + [SMALL_STATE(5058)] = 263489, + [SMALL_STATE(5059)] = 263517, + [SMALL_STATE(5060)] = 263545, + [SMALL_STATE(5061)] = 263573, + [SMALL_STATE(5062)] = 263601, + [SMALL_STATE(5063)] = 263641, + [SMALL_STATE(5064)] = 263669, + [SMALL_STATE(5065)] = 263697, + [SMALL_STATE(5066)] = 263725, + [SMALL_STATE(5067)] = 263753, + [SMALL_STATE(5068)] = 263781, + [SMALL_STATE(5069)] = 263813, + [SMALL_STATE(5070)] = 263841, + [SMALL_STATE(5071)] = 263887, + [SMALL_STATE(5072)] = 263915, + [SMALL_STATE(5073)] = 263943, + [SMALL_STATE(5074)] = 263971, + [SMALL_STATE(5075)] = 263999, + [SMALL_STATE(5076)] = 264027, + [SMALL_STATE(5077)] = 264055, + [SMALL_STATE(5078)] = 264083, + [SMALL_STATE(5079)] = 264111, + [SMALL_STATE(5080)] = 264139, + [SMALL_STATE(5081)] = 264171, + [SMALL_STATE(5082)] = 264203, + [SMALL_STATE(5083)] = 264231, + [SMALL_STATE(5084)] = 264259, + [SMALL_STATE(5085)] = 264287, + [SMALL_STATE(5086)] = 264315, + [SMALL_STATE(5087)] = 264343, + [SMALL_STATE(5088)] = 264371, + [SMALL_STATE(5089)] = 264399, + [SMALL_STATE(5090)] = 264427, + [SMALL_STATE(5091)] = 264459, + [SMALL_STATE(5092)] = 264505, + [SMALL_STATE(5093)] = 264537, + [SMALL_STATE(5094)] = 264569, + [SMALL_STATE(5095)] = 264597, + [SMALL_STATE(5096)] = 264625, + [SMALL_STATE(5097)] = 264653, + [SMALL_STATE(5098)] = 264681, + [SMALL_STATE(5099)] = 264709, + [SMALL_STATE(5100)] = 264741, + [SMALL_STATE(5101)] = 264769, + [SMALL_STATE(5102)] = 264797, + [SMALL_STATE(5103)] = 264825, + [SMALL_STATE(5104)] = 264853, + [SMALL_STATE(5105)] = 264881, + [SMALL_STATE(5106)] = 264909, + [SMALL_STATE(5107)] = 264937, + [SMALL_STATE(5108)] = 264965, + [SMALL_STATE(5109)] = 264993, + [SMALL_STATE(5110)] = 265021, + [SMALL_STATE(5111)] = 265049, + [SMALL_STATE(5112)] = 265077, + [SMALL_STATE(5113)] = 265105, + [SMALL_STATE(5114)] = 265133, + [SMALL_STATE(5115)] = 265179, + [SMALL_STATE(5116)] = 265211, + [SMALL_STATE(5117)] = 265243, + [SMALL_STATE(5118)] = 265289, + [SMALL_STATE(5119)] = 265317, + [SMALL_STATE(5120)] = 265345, + [SMALL_STATE(5121)] = 265391, + [SMALL_STATE(5122)] = 265419, + [SMALL_STATE(5123)] = 265451, + [SMALL_STATE(5124)] = 265483, + [SMALL_STATE(5125)] = 265529, + [SMALL_STATE(5126)] = 265557, + [SMALL_STATE(5127)] = 265585, + [SMALL_STATE(5128)] = 265613, + [SMALL_STATE(5129)] = 265641, + [SMALL_STATE(5130)] = 265669, + [SMALL_STATE(5131)] = 265697, + [SMALL_STATE(5132)] = 265729, + [SMALL_STATE(5133)] = 265761, + [SMALL_STATE(5134)] = 265795, + [SMALL_STATE(5135)] = 265823, + [SMALL_STATE(5136)] = 265851, + [SMALL_STATE(5137)] = 265883, + [SMALL_STATE(5138)] = 265917, + [SMALL_STATE(5139)] = 265945, + [SMALL_STATE(5140)] = 265973, + [SMALL_STATE(5141)] = 266005, + [SMALL_STATE(5142)] = 266045, + [SMALL_STATE(5143)] = 266077, + [SMALL_STATE(5144)] = 266105, + [SMALL_STATE(5145)] = 266133, + [SMALL_STATE(5146)] = 266161, + [SMALL_STATE(5147)] = 266189, + [SMALL_STATE(5148)] = 266217, + [SMALL_STATE(5149)] = 266245, + [SMALL_STATE(5150)] = 266273, + [SMALL_STATE(5151)] = 266301, + [SMALL_STATE(5152)] = 266328, + [SMALL_STATE(5153)] = 266367, + [SMALL_STATE(5154)] = 266394, + [SMALL_STATE(5155)] = 266425, + [SMALL_STATE(5156)] = 266464, + [SMALL_STATE(5157)] = 266503, + [SMALL_STATE(5158)] = 266530, + [SMALL_STATE(5159)] = 266591, + [SMALL_STATE(5160)] = 266646, + [SMALL_STATE(5161)] = 266673, + [SMALL_STATE(5162)] = 266712, + [SMALL_STATE(5163)] = 266751, + [SMALL_STATE(5164)] = 266782, + [SMALL_STATE(5165)] = 266809, + [SMALL_STATE(5166)] = 266836, + [SMALL_STATE(5167)] = 266863, + [SMALL_STATE(5168)] = 266902, + [SMALL_STATE(5169)] = 266941, + [SMALL_STATE(5170)] = 266972, + [SMALL_STATE(5171)] = 266999, + [SMALL_STATE(5172)] = 267038, + [SMALL_STATE(5173)] = 267077, + [SMALL_STATE(5174)] = 267104, + [SMALL_STATE(5175)] = 267131, + [SMALL_STATE(5176)] = 267158, + [SMALL_STATE(5177)] = 267197, + [SMALL_STATE(5178)] = 267224, + [SMALL_STATE(5179)] = 267263, + [SMALL_STATE(5180)] = 267292, + [SMALL_STATE(5181)] = 267319, + [SMALL_STATE(5182)] = 267346, + [SMALL_STATE(5183)] = 267373, + [SMALL_STATE(5184)] = 267412, + [SMALL_STATE(5185)] = 267439, + [SMALL_STATE(5186)] = 267470, + [SMALL_STATE(5187)] = 267497, + [SMALL_STATE(5188)] = 267524, + [SMALL_STATE(5189)] = 267555, + [SMALL_STATE(5190)] = 267582, + [SMALL_STATE(5191)] = 267609, + [SMALL_STATE(5192)] = 267636, + [SMALL_STATE(5193)] = 267663, + [SMALL_STATE(5194)] = 267706, + [SMALL_STATE(5195)] = 267733, + [SMALL_STATE(5196)] = 267766, + [SMALL_STATE(5197)] = 267821, + [SMALL_STATE(5198)] = 267848, + [SMALL_STATE(5199)] = 267875, + [SMALL_STATE(5200)] = 267902, + [SMALL_STATE(5201)] = 267933, + [SMALL_STATE(5202)] = 267960, + [SMALL_STATE(5203)] = 267991, + [SMALL_STATE(5204)] = 268018, + [SMALL_STATE(5205)] = 268051, + [SMALL_STATE(5206)] = 268077, + [SMALL_STATE(5207)] = 268103, + [SMALL_STATE(5208)] = 268137, + [SMALL_STATE(5209)] = 268163, + [SMALL_STATE(5210)] = 268189, + [SMALL_STATE(5211)] = 268221, + [SMALL_STATE(5212)] = 268247, + [SMALL_STATE(5213)] = 268279, + [SMALL_STATE(5214)] = 268305, + [SMALL_STATE(5215)] = 268341, + [SMALL_STATE(5216)] = 268367, + [SMALL_STATE(5217)] = 268399, + [SMALL_STATE(5218)] = 268431, + [SMALL_STATE(5219)] = 268463, + [SMALL_STATE(5220)] = 268495, + [SMALL_STATE(5221)] = 268521, + [SMALL_STATE(5222)] = 268547, + [SMALL_STATE(5223)] = 268579, + [SMALL_STATE(5224)] = 268605, + [SMALL_STATE(5225)] = 268631, + [SMALL_STATE(5226)] = 268657, + [SMALL_STATE(5227)] = 268683, + [SMALL_STATE(5228)] = 268709, + [SMALL_STATE(5229)] = 268735, + [SMALL_STATE(5230)] = 268761, + [SMALL_STATE(5231)] = 268787, + [SMALL_STATE(5232)] = 268821, + [SMALL_STATE(5233)] = 268847, + [SMALL_STATE(5234)] = 268873, + [SMALL_STATE(5235)] = 268899, + [SMALL_STATE(5236)] = 268925, + [SMALL_STATE(5237)] = 268957, + [SMALL_STATE(5238)] = 268989, + [SMALL_STATE(5239)] = 269021, + [SMALL_STATE(5240)] = 269047, + [SMALL_STATE(5241)] = 269073, + [SMALL_STATE(5242)] = 269109, + [SMALL_STATE(5243)] = 269145, + [SMALL_STATE(5244)] = 269177, + [SMALL_STATE(5245)] = 269209, + [SMALL_STATE(5246)] = 269235, + [SMALL_STATE(5247)] = 269267, + [SMALL_STATE(5248)] = 269293, + [SMALL_STATE(5249)] = 269325, + [SMALL_STATE(5250)] = 269351, + [SMALL_STATE(5251)] = 269376, + [SMALL_STATE(5252)] = 269401, + [SMALL_STATE(5253)] = 269426, + [SMALL_STATE(5254)] = 269451, + [SMALL_STATE(5255)] = 269480, + [SMALL_STATE(5256)] = 269505, + [SMALL_STATE(5257)] = 269534, + [SMALL_STATE(5258)] = 269571, + [SMALL_STATE(5259)] = 269596, + [SMALL_STATE(5260)] = 269621, + [SMALL_STATE(5261)] = 269646, + [SMALL_STATE(5262)] = 269671, + [SMALL_STATE(5263)] = 269696, + [SMALL_STATE(5264)] = 269733, + [SMALL_STATE(5265)] = 269758, + [SMALL_STATE(5266)] = 269783, + [SMALL_STATE(5267)] = 269808, + [SMALL_STATE(5268)] = 269833, + [SMALL_STATE(5269)] = 269858, + [SMALL_STATE(5270)] = 269883, + [SMALL_STATE(5271)] = 269908, + [SMALL_STATE(5272)] = 269945, + [SMALL_STATE(5273)] = 269970, + [SMALL_STATE(5274)] = 269995, + [SMALL_STATE(5275)] = 270020, + [SMALL_STATE(5276)] = 270057, + [SMALL_STATE(5277)] = 270094, + [SMALL_STATE(5278)] = 270119, + [SMALL_STATE(5279)] = 270144, + [SMALL_STATE(5280)] = 270181, + [SMALL_STATE(5281)] = 270206, + [SMALL_STATE(5282)] = 270243, + [SMALL_STATE(5283)] = 270268, + [SMALL_STATE(5284)] = 270293, + [SMALL_STATE(5285)] = 270318, + [SMALL_STATE(5286)] = 270343, + [SMALL_STATE(5287)] = 270368, + [SMALL_STATE(5288)] = 270393, + [SMALL_STATE(5289)] = 270418, + [SMALL_STATE(5290)] = 270443, + [SMALL_STATE(5291)] = 270468, + [SMALL_STATE(5292)] = 270493, + [SMALL_STATE(5293)] = 270518, + [SMALL_STATE(5294)] = 270543, + [SMALL_STATE(5295)] = 270572, + [SMALL_STATE(5296)] = 270597, + [SMALL_STATE(5297)] = 270626, + [SMALL_STATE(5298)] = 270651, + [SMALL_STATE(5299)] = 270676, + [SMALL_STATE(5300)] = 270701, + [SMALL_STATE(5301)] = 270726, + [SMALL_STATE(5302)] = 270751, + [SMALL_STATE(5303)] = 270776, + [SMALL_STATE(5304)] = 270801, + [SMALL_STATE(5305)] = 270826, + [SMALL_STATE(5306)] = 270851, + [SMALL_STATE(5307)] = 270876, + [SMALL_STATE(5308)] = 270901, + [SMALL_STATE(5309)] = 270926, + [SMALL_STATE(5310)] = 270951, + [SMALL_STATE(5311)] = 270976, + [SMALL_STATE(5312)] = 271001, + [SMALL_STATE(5313)] = 271026, + [SMALL_STATE(5314)] = 271055, + [SMALL_STATE(5315)] = 271080, + [SMALL_STATE(5316)] = 271105, + [SMALL_STATE(5317)] = 271142, + [SMALL_STATE(5318)] = 271167, + [SMALL_STATE(5319)] = 271192, + [SMALL_STATE(5320)] = 271229, + [SMALL_STATE(5321)] = 271253, + [SMALL_STATE(5322)] = 271276, + [SMALL_STATE(5323)] = 271299, + [SMALL_STATE(5324)] = 271330, + [SMALL_STATE(5325)] = 271353, + [SMALL_STATE(5326)] = 271376, + [SMALL_STATE(5327)] = 271407, + [SMALL_STATE(5328)] = 271444, + [SMALL_STATE(5329)] = 271479, + [SMALL_STATE(5330)] = 271519, + [SMALL_STATE(5331)] = 271559, + [SMALL_STATE(5332)] = 271599, + [SMALL_STATE(5333)] = 271639, + [SMALL_STATE(5334)] = 271679, + [SMALL_STATE(5335)] = 271719, + [SMALL_STATE(5336)] = 271759, + [SMALL_STATE(5337)] = 271799, + [SMALL_STATE(5338)] = 271839, + [SMALL_STATE(5339)] = 271879, + [SMALL_STATE(5340)] = 271919, + [SMALL_STATE(5341)] = 271959, + [SMALL_STATE(5342)] = 271999, + [SMALL_STATE(5343)] = 272039, + [SMALL_STATE(5344)] = 272079, + [SMALL_STATE(5345)] = 272119, + [SMALL_STATE(5346)] = 272159, + [SMALL_STATE(5347)] = 272199, + [SMALL_STATE(5348)] = 272239, + [SMALL_STATE(5349)] = 272279, + [SMALL_STATE(5350)] = 272319, + [SMALL_STATE(5351)] = 272359, + [SMALL_STATE(5352)] = 272399, + [SMALL_STATE(5353)] = 272439, + [SMALL_STATE(5354)] = 272479, + [SMALL_STATE(5355)] = 272519, + [SMALL_STATE(5356)] = 272559, + [SMALL_STATE(5357)] = 272599, + [SMALL_STATE(5358)] = 272639, + [SMALL_STATE(5359)] = 272679, + [SMALL_STATE(5360)] = 272719, + [SMALL_STATE(5361)] = 272759, + [SMALL_STATE(5362)] = 272799, + [SMALL_STATE(5363)] = 272839, + [SMALL_STATE(5364)] = 272879, + [SMALL_STATE(5365)] = 272919, + [SMALL_STATE(5366)] = 272959, + [SMALL_STATE(5367)] = 272999, + [SMALL_STATE(5368)] = 273039, + [SMALL_STATE(5369)] = 273079, + [SMALL_STATE(5370)] = 273119, + [SMALL_STATE(5371)] = 273159, + [SMALL_STATE(5372)] = 273199, + [SMALL_STATE(5373)] = 273239, + [SMALL_STATE(5374)] = 273279, + [SMALL_STATE(5375)] = 273319, + [SMALL_STATE(5376)] = 273359, + [SMALL_STATE(5377)] = 273399, + [SMALL_STATE(5378)] = 273439, + [SMALL_STATE(5379)] = 273479, + [SMALL_STATE(5380)] = 273519, + [SMALL_STATE(5381)] = 273559, + [SMALL_STATE(5382)] = 273599, + [SMALL_STATE(5383)] = 273639, + [SMALL_STATE(5384)] = 273679, + [SMALL_STATE(5385)] = 273719, + [SMALL_STATE(5386)] = 273759, + [SMALL_STATE(5387)] = 273799, + [SMALL_STATE(5388)] = 273839, + [SMALL_STATE(5389)] = 273879, + [SMALL_STATE(5390)] = 273919, + [SMALL_STATE(5391)] = 273959, + [SMALL_STATE(5392)] = 273999, + [SMALL_STATE(5393)] = 274039, + [SMALL_STATE(5394)] = 274079, + [SMALL_STATE(5395)] = 274119, + [SMALL_STATE(5396)] = 274159, + [SMALL_STATE(5397)] = 274199, + [SMALL_STATE(5398)] = 274239, + [SMALL_STATE(5399)] = 274279, + [SMALL_STATE(5400)] = 274319, + [SMALL_STATE(5401)] = 274359, + [SMALL_STATE(5402)] = 274399, + [SMALL_STATE(5403)] = 274439, + [SMALL_STATE(5404)] = 274479, + [SMALL_STATE(5405)] = 274519, + [SMALL_STATE(5406)] = 274559, + [SMALL_STATE(5407)] = 274599, + [SMALL_STATE(5408)] = 274639, + [SMALL_STATE(5409)] = 274679, + [SMALL_STATE(5410)] = 274719, + [SMALL_STATE(5411)] = 274759, + [SMALL_STATE(5412)] = 274799, + [SMALL_STATE(5413)] = 274839, + [SMALL_STATE(5414)] = 274879, + [SMALL_STATE(5415)] = 274919, + [SMALL_STATE(5416)] = 274959, + [SMALL_STATE(5417)] = 274999, + [SMALL_STATE(5418)] = 275039, + [SMALL_STATE(5419)] = 275079, + [SMALL_STATE(5420)] = 275119, + [SMALL_STATE(5421)] = 275159, + [SMALL_STATE(5422)] = 275199, + [SMALL_STATE(5423)] = 275239, + [SMALL_STATE(5424)] = 275279, + [SMALL_STATE(5425)] = 275319, + [SMALL_STATE(5426)] = 275359, + [SMALL_STATE(5427)] = 275399, + [SMALL_STATE(5428)] = 275439, + [SMALL_STATE(5429)] = 275479, + [SMALL_STATE(5430)] = 275519, + [SMALL_STATE(5431)] = 275559, + [SMALL_STATE(5432)] = 275599, + [SMALL_STATE(5433)] = 275639, + [SMALL_STATE(5434)] = 275679, + [SMALL_STATE(5435)] = 275719, + [SMALL_STATE(5436)] = 275759, + [SMALL_STATE(5437)] = 275799, + [SMALL_STATE(5438)] = 275839, + [SMALL_STATE(5439)] = 275879, + [SMALL_STATE(5440)] = 275919, + [SMALL_STATE(5441)] = 275959, + [SMALL_STATE(5442)] = 275999, + [SMALL_STATE(5443)] = 276039, + [SMALL_STATE(5444)] = 276079, + [SMALL_STATE(5445)] = 276119, + [SMALL_STATE(5446)] = 276159, + [SMALL_STATE(5447)] = 276199, + [SMALL_STATE(5448)] = 276239, + [SMALL_STATE(5449)] = 276279, + [SMALL_STATE(5450)] = 276319, + [SMALL_STATE(5451)] = 276359, + [SMALL_STATE(5452)] = 276399, + [SMALL_STATE(5453)] = 276439, + [SMALL_STATE(5454)] = 276479, + [SMALL_STATE(5455)] = 276519, + [SMALL_STATE(5456)] = 276559, + [SMALL_STATE(5457)] = 276599, + [SMALL_STATE(5458)] = 276639, + [SMALL_STATE(5459)] = 276679, + [SMALL_STATE(5460)] = 276719, + [SMALL_STATE(5461)] = 276759, + [SMALL_STATE(5462)] = 276799, + [SMALL_STATE(5463)] = 276839, + [SMALL_STATE(5464)] = 276879, + [SMALL_STATE(5465)] = 276919, + [SMALL_STATE(5466)] = 276959, + [SMALL_STATE(5467)] = 276999, + [SMALL_STATE(5468)] = 277039, + [SMALL_STATE(5469)] = 277079, + [SMALL_STATE(5470)] = 277119, + [SMALL_STATE(5471)] = 277146, + [SMALL_STATE(5472)] = 277173, + [SMALL_STATE(5473)] = 277200, + [SMALL_STATE(5474)] = 277227, + [SMALL_STATE(5475)] = 277254, + [SMALL_STATE(5476)] = 277281, + [SMALL_STATE(5477)] = 277308, + [SMALL_STATE(5478)] = 277335, + [SMALL_STATE(5479)] = 277362, + [SMALL_STATE(5480)] = 277389, + [SMALL_STATE(5481)] = 277416, + [SMALL_STATE(5482)] = 277443, + [SMALL_STATE(5483)] = 277470, + [SMALL_STATE(5484)] = 277497, + [SMALL_STATE(5485)] = 277524, + [SMALL_STATE(5486)] = 277551, + [SMALL_STATE(5487)] = 277578, + [SMALL_STATE(5488)] = 277605, + [SMALL_STATE(5489)] = 277634, + [SMALL_STATE(5490)] = 277661, + [SMALL_STATE(5491)] = 277688, + [SMALL_STATE(5492)] = 277715, + [SMALL_STATE(5493)] = 277742, + [SMALL_STATE(5494)] = 277769, + [SMALL_STATE(5495)] = 277796, + [SMALL_STATE(5496)] = 277825, + [SMALL_STATE(5497)] = 277852, + [SMALL_STATE(5498)] = 277879, + [SMALL_STATE(5499)] = 277906, + [SMALL_STATE(5500)] = 277933, + [SMALL_STATE(5501)] = 277960, + [SMALL_STATE(5502)] = 277987, + [SMALL_STATE(5503)] = 278014, + [SMALL_STATE(5504)] = 278041, + [SMALL_STATE(5505)] = 278068, + [SMALL_STATE(5506)] = 278095, + [SMALL_STATE(5507)] = 278122, + [SMALL_STATE(5508)] = 278149, + [SMALL_STATE(5509)] = 278176, + [SMALL_STATE(5510)] = 278203, + [SMALL_STATE(5511)] = 278232, + [SMALL_STATE(5512)] = 278259, + [SMALL_STATE(5513)] = 278286, + [SMALL_STATE(5514)] = 278313, + [SMALL_STATE(5515)] = 278340, + [SMALL_STATE(5516)] = 278367, + [SMALL_STATE(5517)] = 278394, + [SMALL_STATE(5518)] = 278421, + [SMALL_STATE(5519)] = 278448, + [SMALL_STATE(5520)] = 278475, + [SMALL_STATE(5521)] = 278502, + [SMALL_STATE(5522)] = 278529, + [SMALL_STATE(5523)] = 278556, + [SMALL_STATE(5524)] = 278583, + [SMALL_STATE(5525)] = 278610, + [SMALL_STATE(5526)] = 278637, + [SMALL_STATE(5527)] = 278664, + [SMALL_STATE(5528)] = 278691, + [SMALL_STATE(5529)] = 278718, + [SMALL_STATE(5530)] = 278745, + [SMALL_STATE(5531)] = 278772, + [SMALL_STATE(5532)] = 278799, + [SMALL_STATE(5533)] = 278826, + [SMALL_STATE(5534)] = 278853, + [SMALL_STATE(5535)] = 278880, + [SMALL_STATE(5536)] = 278907, + [SMALL_STATE(5537)] = 278934, + [SMALL_STATE(5538)] = 278961, + [SMALL_STATE(5539)] = 278988, + [SMALL_STATE(5540)] = 279015, + [SMALL_STATE(5541)] = 279042, + [SMALL_STATE(5542)] = 279069, + [SMALL_STATE(5543)] = 279096, + [SMALL_STATE(5544)] = 279123, + [SMALL_STATE(5545)] = 279150, + [SMALL_STATE(5546)] = 279177, + [SMALL_STATE(5547)] = 279204, + [SMALL_STATE(5548)] = 279231, + [SMALL_STATE(5549)] = 279258, + [SMALL_STATE(5550)] = 279285, + [SMALL_STATE(5551)] = 279312, + [SMALL_STATE(5552)] = 279339, + [SMALL_STATE(5553)] = 279366, + [SMALL_STATE(5554)] = 279393, + [SMALL_STATE(5555)] = 279420, + [SMALL_STATE(5556)] = 279447, + [SMALL_STATE(5557)] = 279474, + [SMALL_STATE(5558)] = 279501, + [SMALL_STATE(5559)] = 279528, + [SMALL_STATE(5560)] = 279555, + [SMALL_STATE(5561)] = 279582, + [SMALL_STATE(5562)] = 279609, + [SMALL_STATE(5563)] = 279636, + [SMALL_STATE(5564)] = 279663, + [SMALL_STATE(5565)] = 279690, + [SMALL_STATE(5566)] = 279717, + [SMALL_STATE(5567)] = 279744, + [SMALL_STATE(5568)] = 279771, + [SMALL_STATE(5569)] = 279798, + [SMALL_STATE(5570)] = 279825, + [SMALL_STATE(5571)] = 279852, + [SMALL_STATE(5572)] = 279881, + [SMALL_STATE(5573)] = 279908, + [SMALL_STATE(5574)] = 279935, + [SMALL_STATE(5575)] = 279962, + [SMALL_STATE(5576)] = 279989, + [SMALL_STATE(5577)] = 280016, + [SMALL_STATE(5578)] = 280043, + [SMALL_STATE(5579)] = 280070, + [SMALL_STATE(5580)] = 280097, + [SMALL_STATE(5581)] = 280124, + [SMALL_STATE(5582)] = 280151, + [SMALL_STATE(5583)] = 280178, + [SMALL_STATE(5584)] = 280205, + [SMALL_STATE(5585)] = 280232, + [SMALL_STATE(5586)] = 280259, + [SMALL_STATE(5587)] = 280286, + [SMALL_STATE(5588)] = 280313, + [SMALL_STATE(5589)] = 280340, + [SMALL_STATE(5590)] = 280367, + [SMALL_STATE(5591)] = 280394, + [SMALL_STATE(5592)] = 280421, + [SMALL_STATE(5593)] = 280448, + [SMALL_STATE(5594)] = 280475, + [SMALL_STATE(5595)] = 280502, + [SMALL_STATE(5596)] = 280531, + [SMALL_STATE(5597)] = 280558, + [SMALL_STATE(5598)] = 280585, + [SMALL_STATE(5599)] = 280612, + [SMALL_STATE(5600)] = 280639, + [SMALL_STATE(5601)] = 280666, + [SMALL_STATE(5602)] = 280693, + [SMALL_STATE(5603)] = 280720, + [SMALL_STATE(5604)] = 280747, + [SMALL_STATE(5605)] = 280774, + [SMALL_STATE(5606)] = 280801, + [SMALL_STATE(5607)] = 280828, + [SMALL_STATE(5608)] = 280855, + [SMALL_STATE(5609)] = 280882, + [SMALL_STATE(5610)] = 280909, + [SMALL_STATE(5611)] = 280936, + [SMALL_STATE(5612)] = 280963, + [SMALL_STATE(5613)] = 280990, + [SMALL_STATE(5614)] = 281017, + [SMALL_STATE(5615)] = 281044, + [SMALL_STATE(5616)] = 281071, + [SMALL_STATE(5617)] = 281098, + [SMALL_STATE(5618)] = 281127, + [SMALL_STATE(5619)] = 281154, + [SMALL_STATE(5620)] = 281181, + [SMALL_STATE(5621)] = 281208, + [SMALL_STATE(5622)] = 281235, + [SMALL_STATE(5623)] = 281262, + [SMALL_STATE(5624)] = 281289, + [SMALL_STATE(5625)] = 281316, + [SMALL_STATE(5626)] = 281343, + [SMALL_STATE(5627)] = 281370, + [SMALL_STATE(5628)] = 281397, + [SMALL_STATE(5629)] = 281424, + [SMALL_STATE(5630)] = 281451, + [SMALL_STATE(5631)] = 281478, + [SMALL_STATE(5632)] = 281505, + [SMALL_STATE(5633)] = 281532, + [SMALL_STATE(5634)] = 281559, + [SMALL_STATE(5635)] = 281586, + [SMALL_STATE(5636)] = 281613, + [SMALL_STATE(5637)] = 281642, + [SMALL_STATE(5638)] = 281669, + [SMALL_STATE(5639)] = 281696, + [SMALL_STATE(5640)] = 281723, + [SMALL_STATE(5641)] = 281750, + [SMALL_STATE(5642)] = 281777, + [SMALL_STATE(5643)] = 281804, + [SMALL_STATE(5644)] = 281831, + [SMALL_STATE(5645)] = 281858, + [SMALL_STATE(5646)] = 281885, + [SMALL_STATE(5647)] = 281912, + [SMALL_STATE(5648)] = 281939, + [SMALL_STATE(5649)] = 281966, + [SMALL_STATE(5650)] = 281993, + [SMALL_STATE(5651)] = 282020, + [SMALL_STATE(5652)] = 282047, + [SMALL_STATE(5653)] = 282074, + [SMALL_STATE(5654)] = 282101, + [SMALL_STATE(5655)] = 282128, + [SMALL_STATE(5656)] = 282155, + [SMALL_STATE(5657)] = 282182, + [SMALL_STATE(5658)] = 282209, + [SMALL_STATE(5659)] = 282236, + [SMALL_STATE(5660)] = 282263, + [SMALL_STATE(5661)] = 282290, + [SMALL_STATE(5662)] = 282317, + [SMALL_STATE(5663)] = 282344, + [SMALL_STATE(5664)] = 282371, + [SMALL_STATE(5665)] = 282398, + [SMALL_STATE(5666)] = 282425, + [SMALL_STATE(5667)] = 282452, + [SMALL_STATE(5668)] = 282479, + [SMALL_STATE(5669)] = 282506, + [SMALL_STATE(5670)] = 282533, + [SMALL_STATE(5671)] = 282560, + [SMALL_STATE(5672)] = 282587, + [SMALL_STATE(5673)] = 282614, + [SMALL_STATE(5674)] = 282643, + [SMALL_STATE(5675)] = 282670, + [SMALL_STATE(5676)] = 282696, + [SMALL_STATE(5677)] = 282722, + [SMALL_STATE(5678)] = 282748, + [SMALL_STATE(5679)] = 282774, + [SMALL_STATE(5680)] = 282794, + [SMALL_STATE(5681)] = 282814, + [SMALL_STATE(5682)] = 282840, + [SMALL_STATE(5683)] = 282864, + [SMALL_STATE(5684)] = 282890, + [SMALL_STATE(5685)] = 282916, + [SMALL_STATE(5686)] = 282942, + [SMALL_STATE(5687)] = 282965, + [SMALL_STATE(5688)] = 282988, + [SMALL_STATE(5689)] = 283009, + [SMALL_STATE(5690)] = 283030, + [SMALL_STATE(5691)] = 283061, + [SMALL_STATE(5692)] = 283084, + [SMALL_STATE(5693)] = 283107, + [SMALL_STATE(5694)] = 283130, + [SMALL_STATE(5695)] = 283151, + [SMALL_STATE(5696)] = 283172, + [SMALL_STATE(5697)] = 283195, + [SMALL_STATE(5698)] = 283216, + [SMALL_STATE(5699)] = 283239, + [SMALL_STATE(5700)] = 283262, + [SMALL_STATE(5701)] = 283285, + [SMALL_STATE(5702)] = 283316, + [SMALL_STATE(5703)] = 283339, + [SMALL_STATE(5704)] = 283362, + [SMALL_STATE(5705)] = 283385, + [SMALL_STATE(5706)] = 283408, + [SMALL_STATE(5707)] = 283431, + [SMALL_STATE(5708)] = 283454, + [SMALL_STATE(5709)] = 283475, + [SMALL_STATE(5710)] = 283496, + [SMALL_STATE(5711)] = 283519, + [SMALL_STATE(5712)] = 283542, + [SMALL_STATE(5713)] = 283565, + [SMALL_STATE(5714)] = 283588, + [SMALL_STATE(5715)] = 283611, + [SMALL_STATE(5716)] = 283634, + [SMALL_STATE(5717)] = 283655, + [SMALL_STATE(5718)] = 283674, + [SMALL_STATE(5719)] = 283697, + [SMALL_STATE(5720)] = 283720, + [SMALL_STATE(5721)] = 283751, + [SMALL_STATE(5722)] = 283774, + [SMALL_STATE(5723)] = 283797, + [SMALL_STATE(5724)] = 283820, + [SMALL_STATE(5725)] = 283843, + [SMALL_STATE(5726)] = 283864, + [SMALL_STATE(5727)] = 283882, + [SMALL_STATE(5728)] = 283900, + [SMALL_STATE(5729)] = 283918, + [SMALL_STATE(5730)] = 283936, + [SMALL_STATE(5731)] = 283964, + [SMALL_STATE(5732)] = 283992, + [SMALL_STATE(5733)] = 284020, + [SMALL_STATE(5734)] = 284038, + [SMALL_STATE(5735)] = 284066, + [SMALL_STATE(5736)] = 284094, + [SMALL_STATE(5737)] = 284112, + [SMALL_STATE(5738)] = 284140, + [SMALL_STATE(5739)] = 284158, + [SMALL_STATE(5740)] = 284186, + [SMALL_STATE(5741)] = 284214, + [SMALL_STATE(5742)] = 284242, + [SMALL_STATE(5743)] = 284270, + [SMALL_STATE(5744)] = 284298, + [SMALL_STATE(5745)] = 284326, + [SMALL_STATE(5746)] = 284354, + [SMALL_STATE(5747)] = 284382, + [SMALL_STATE(5748)] = 284410, + [SMALL_STATE(5749)] = 284438, + [SMALL_STATE(5750)] = 284466, + [SMALL_STATE(5751)] = 284494, + [SMALL_STATE(5752)] = 284522, + [SMALL_STATE(5753)] = 284550, + [SMALL_STATE(5754)] = 284568, + [SMALL_STATE(5755)] = 284596, + [SMALL_STATE(5756)] = 284612, + [SMALL_STATE(5757)] = 284630, + [SMALL_STATE(5758)] = 284658, + [SMALL_STATE(5759)] = 284676, + [SMALL_STATE(5760)] = 284704, + [SMALL_STATE(5761)] = 284732, + [SMALL_STATE(5762)] = 284760, + [SMALL_STATE(5763)] = 284778, + [SMALL_STATE(5764)] = 284801, + [SMALL_STATE(5765)] = 284816, + [SMALL_STATE(5766)] = 284847, + [SMALL_STATE(5767)] = 284862, + [SMALL_STATE(5768)] = 284888, + [SMALL_STATE(5769)] = 284914, + [SMALL_STATE(5770)] = 284938, + [SMALL_STATE(5771)] = 284964, + [SMALL_STATE(5772)] = 284988, + [SMALL_STATE(5773)] = 285012, + [SMALL_STATE(5774)] = 285036, + [SMALL_STATE(5775)] = 285060, + [SMALL_STATE(5776)] = 285084, + [SMALL_STATE(5777)] = 285108, + [SMALL_STATE(5778)] = 285132, + [SMALL_STATE(5779)] = 285156, + [SMALL_STATE(5780)] = 285178, + [SMALL_STATE(5781)] = 285200, + [SMALL_STATE(5782)] = 285222, + [SMALL_STATE(5783)] = 285246, + [SMALL_STATE(5784)] = 285261, + [SMALL_STATE(5785)] = 285274, + [SMALL_STATE(5786)] = 285287, + [SMALL_STATE(5787)] = 285302, + [SMALL_STATE(5788)] = 285317, + [SMALL_STATE(5789)] = 285332, + [SMALL_STATE(5790)] = 285353, + [SMALL_STATE(5791)] = 285366, + [SMALL_STATE(5792)] = 285387, + [SMALL_STATE(5793)] = 285402, + [SMALL_STATE(5794)] = 285417, + [SMALL_STATE(5795)] = 285432, + [SMALL_STATE(5796)] = 285453, + [SMALL_STATE(5797)] = 285468, + [SMALL_STATE(5798)] = 285485, + [SMALL_STATE(5799)] = 285500, + [SMALL_STATE(5800)] = 285515, + [SMALL_STATE(5801)] = 285530, + [SMALL_STATE(5802)] = 285545, + [SMALL_STATE(5803)] = 285560, + [SMALL_STATE(5804)] = 285573, + [SMALL_STATE(5805)] = 285586, + [SMALL_STATE(5806)] = 285601, + [SMALL_STATE(5807)] = 285616, + [SMALL_STATE(5808)] = 285629, + [SMALL_STATE(5809)] = 285644, + [SMALL_STATE(5810)] = 285659, + [SMALL_STATE(5811)] = 285672, + [SMALL_STATE(5812)] = 285691, + [SMALL_STATE(5813)] = 285704, + [SMALL_STATE(5814)] = 285719, + [SMALL_STATE(5815)] = 285740, + [SMALL_STATE(5816)] = 285755, + [SMALL_STATE(5817)] = 285770, + [SMALL_STATE(5818)] = 285785, + [SMALL_STATE(5819)] = 285800, + [SMALL_STATE(5820)] = 285815, + [SMALL_STATE(5821)] = 285830, + [SMALL_STATE(5822)] = 285845, + [SMALL_STATE(5823)] = 285860, + [SMALL_STATE(5824)] = 285875, + [SMALL_STATE(5825)] = 285888, + [SMALL_STATE(5826)] = 285905, + [SMALL_STATE(5827)] = 285925, + [SMALL_STATE(5828)] = 285945, + [SMALL_STATE(5829)] = 285967, + [SMALL_STATE(5830)] = 285987, + [SMALL_STATE(5831)] = 286001, + [SMALL_STATE(5832)] = 286021, + [SMALL_STATE(5833)] = 286041, + [SMALL_STATE(5834)] = 286061, + [SMALL_STATE(5835)] = 286081, + [SMALL_STATE(5836)] = 286101, + [SMALL_STATE(5837)] = 286121, + [SMALL_STATE(5838)] = 286141, + [SMALL_STATE(5839)] = 286161, + [SMALL_STATE(5840)] = 286181, + [SMALL_STATE(5841)] = 286201, + [SMALL_STATE(5842)] = 286221, + [SMALL_STATE(5843)] = 286241, + [SMALL_STATE(5844)] = 286255, + [SMALL_STATE(5845)] = 286269, + [SMALL_STATE(5846)] = 286289, + [SMALL_STATE(5847)] = 286309, + [SMALL_STATE(5848)] = 286323, + [SMALL_STATE(5849)] = 286343, + [SMALL_STATE(5850)] = 286363, + [SMALL_STATE(5851)] = 286379, + [SMALL_STATE(5852)] = 286399, + [SMALL_STATE(5853)] = 286419, + [SMALL_STATE(5854)] = 286439, + [SMALL_STATE(5855)] = 286459, + [SMALL_STATE(5856)] = 286479, + [SMALL_STATE(5857)] = 286493, + [SMALL_STATE(5858)] = 286513, + [SMALL_STATE(5859)] = 286533, + [SMALL_STATE(5860)] = 286553, + [SMALL_STATE(5861)] = 286573, + [SMALL_STATE(5862)] = 286593, + [SMALL_STATE(5863)] = 286613, + [SMALL_STATE(5864)] = 286627, + [SMALL_STATE(5865)] = 286647, + [SMALL_STATE(5866)] = 286667, + [SMALL_STATE(5867)] = 286687, + [SMALL_STATE(5868)] = 286707, + [SMALL_STATE(5869)] = 286727, + [SMALL_STATE(5870)] = 286741, + [SMALL_STATE(5871)] = 286755, + [SMALL_STATE(5872)] = 286775, + [SMALL_STATE(5873)] = 286795, + [SMALL_STATE(5874)] = 286815, + [SMALL_STATE(5875)] = 286829, + [SMALL_STATE(5876)] = 286849, + [SMALL_STATE(5877)] = 286869, + [SMALL_STATE(5878)] = 286889, + [SMALL_STATE(5879)] = 286909, + [SMALL_STATE(5880)] = 286931, + [SMALL_STATE(5881)] = 286945, + [SMALL_STATE(5882)] = 286965, + [SMALL_STATE(5883)] = 286985, + [SMALL_STATE(5884)] = 286999, + [SMALL_STATE(5885)] = 287019, + [SMALL_STATE(5886)] = 287039, + [SMALL_STATE(5887)] = 287059, + [SMALL_STATE(5888)] = 287073, + [SMALL_STATE(5889)] = 287093, + [SMALL_STATE(5890)] = 287113, + [SMALL_STATE(5891)] = 287133, + [SMALL_STATE(5892)] = 287153, + [SMALL_STATE(5893)] = 287173, + [SMALL_STATE(5894)] = 287193, + [SMALL_STATE(5895)] = 287213, + [SMALL_STATE(5896)] = 287233, + [SMALL_STATE(5897)] = 287253, + [SMALL_STATE(5898)] = 287267, + [SMALL_STATE(5899)] = 287281, + [SMALL_STATE(5900)] = 287301, + [SMALL_STATE(5901)] = 287321, + [SMALL_STATE(5902)] = 287341, + [SMALL_STATE(5903)] = 287361, + [SMALL_STATE(5904)] = 287381, + [SMALL_STATE(5905)] = 287401, + [SMALL_STATE(5906)] = 287421, + [SMALL_STATE(5907)] = 287435, + [SMALL_STATE(5908)] = 287455, + [SMALL_STATE(5909)] = 287475, + [SMALL_STATE(5910)] = 287495, + [SMALL_STATE(5911)] = 287515, + [SMALL_STATE(5912)] = 287535, + [SMALL_STATE(5913)] = 287555, + [SMALL_STATE(5914)] = 287575, + [SMALL_STATE(5915)] = 287595, + [SMALL_STATE(5916)] = 287615, + [SMALL_STATE(5917)] = 287635, + [SMALL_STATE(5918)] = 287657, + [SMALL_STATE(5919)] = 287677, + [SMALL_STATE(5920)] = 287697, + [SMALL_STATE(5921)] = 287717, + [SMALL_STATE(5922)] = 287737, + [SMALL_STATE(5923)] = 287757, + [SMALL_STATE(5924)] = 287771, + [SMALL_STATE(5925)] = 287791, + [SMALL_STATE(5926)] = 287811, + [SMALL_STATE(5927)] = 287831, + [SMALL_STATE(5928)] = 287845, + [SMALL_STATE(5929)] = 287865, + [SMALL_STATE(5930)] = 287885, + [SMALL_STATE(5931)] = 287905, + [SMALL_STATE(5932)] = 287925, + [SMALL_STATE(5933)] = 287945, + [SMALL_STATE(5934)] = 287959, + [SMALL_STATE(5935)] = 287973, + [SMALL_STATE(5936)] = 287993, + [SMALL_STATE(5937)] = 288007, + [SMALL_STATE(5938)] = 288029, + [SMALL_STATE(5939)] = 288049, + [SMALL_STATE(5940)] = 288069, + [SMALL_STATE(5941)] = 288089, + [SMALL_STATE(5942)] = 288103, + [SMALL_STATE(5943)] = 288118, + [SMALL_STATE(5944)] = 288137, + [SMALL_STATE(5945)] = 288156, + [SMALL_STATE(5946)] = 288175, + [SMALL_STATE(5947)] = 288192, + [SMALL_STATE(5948)] = 288209, + [SMALL_STATE(5949)] = 288226, + [SMALL_STATE(5950)] = 288239, + [SMALL_STATE(5951)] = 288256, + [SMALL_STATE(5952)] = 288273, + [SMALL_STATE(5953)] = 288292, + [SMALL_STATE(5954)] = 288309, + [SMALL_STATE(5955)] = 288328, + [SMALL_STATE(5956)] = 288347, + [SMALL_STATE(5957)] = 288364, + [SMALL_STATE(5958)] = 288381, + [SMALL_STATE(5959)] = 288400, + [SMALL_STATE(5960)] = 288419, + [SMALL_STATE(5961)] = 288436, + [SMALL_STATE(5962)] = 288451, + [SMALL_STATE(5963)] = 288470, + [SMALL_STATE(5964)] = 288485, + [SMALL_STATE(5965)] = 288500, + [SMALL_STATE(5966)] = 288515, + [SMALL_STATE(5967)] = 288534, + [SMALL_STATE(5968)] = 288553, + [SMALL_STATE(5969)] = 288568, + [SMALL_STATE(5970)] = 288587, + [SMALL_STATE(5971)] = 288606, + [SMALL_STATE(5972)] = 288623, + [SMALL_STATE(5973)] = 288638, + [SMALL_STATE(5974)] = 288655, + [SMALL_STATE(5975)] = 288674, + [SMALL_STATE(5976)] = 288691, + [SMALL_STATE(5977)] = 288710, + [SMALL_STATE(5978)] = 288725, + [SMALL_STATE(5979)] = 288742, + [SMALL_STATE(5980)] = 288761, + [SMALL_STATE(5981)] = 288778, + [SMALL_STATE(5982)] = 288791, + [SMALL_STATE(5983)] = 288810, + [SMALL_STATE(5984)] = 288825, + [SMALL_STATE(5985)] = 288836, + [SMALL_STATE(5986)] = 288851, + [SMALL_STATE(5987)] = 288868, + [SMALL_STATE(5988)] = 288883, + [SMALL_STATE(5989)] = 288900, + [SMALL_STATE(5990)] = 288917, + [SMALL_STATE(5991)] = 288932, + [SMALL_STATE(5992)] = 288945, + [SMALL_STATE(5993)] = 288964, + [SMALL_STATE(5994)] = 288979, + [SMALL_STATE(5995)] = 288994, + [SMALL_STATE(5996)] = 289013, + [SMALL_STATE(5997)] = 289028, + [SMALL_STATE(5998)] = 289045, + [SMALL_STATE(5999)] = 289062, + [SMALL_STATE(6000)] = 289079, + [SMALL_STATE(6001)] = 289094, + [SMALL_STATE(6002)] = 289109, + [SMALL_STATE(6003)] = 289124, + [SMALL_STATE(6004)] = 289141, + [SMALL_STATE(6005)] = 289158, + [SMALL_STATE(6006)] = 289175, + [SMALL_STATE(6007)] = 289194, + [SMALL_STATE(6008)] = 289213, + [SMALL_STATE(6009)] = 289232, + [SMALL_STATE(6010)] = 289249, + [SMALL_STATE(6011)] = 289266, + [SMALL_STATE(6012)] = 289283, + [SMALL_STATE(6013)] = 289302, + [SMALL_STATE(6014)] = 289321, + [SMALL_STATE(6015)] = 289336, + [SMALL_STATE(6016)] = 289351, + [SMALL_STATE(6017)] = 289370, + [SMALL_STATE(6018)] = 289389, + [SMALL_STATE(6019)] = 289406, + [SMALL_STATE(6020)] = 289425, + [SMALL_STATE(6021)] = 289440, + [SMALL_STATE(6022)] = 289459, + [SMALL_STATE(6023)] = 289478, + [SMALL_STATE(6024)] = 289495, + [SMALL_STATE(6025)] = 289514, + [SMALL_STATE(6026)] = 289533, + [SMALL_STATE(6027)] = 289552, + [SMALL_STATE(6028)] = 289569, + [SMALL_STATE(6029)] = 289580, + [SMALL_STATE(6030)] = 289591, + [SMALL_STATE(6031)] = 289606, + [SMALL_STATE(6032)] = 289621, + [SMALL_STATE(6033)] = 289640, + [SMALL_STATE(6034)] = 289657, + [SMALL_STATE(6035)] = 289674, + [SMALL_STATE(6036)] = 289693, + [SMALL_STATE(6037)] = 289710, + [SMALL_STATE(6038)] = 289725, + [SMALL_STATE(6039)] = 289742, + [SMALL_STATE(6040)] = 289759, + [SMALL_STATE(6041)] = 289776, + [SMALL_STATE(6042)] = 289793, + [SMALL_STATE(6043)] = 289812, + [SMALL_STATE(6044)] = 289831, + [SMALL_STATE(6045)] = 289850, + [SMALL_STATE(6046)] = 289867, + [SMALL_STATE(6047)] = 289884, + [SMALL_STATE(6048)] = 289901, + [SMALL_STATE(6049)] = 289920, + [SMALL_STATE(6050)] = 289939, + [SMALL_STATE(6051)] = 289956, + [SMALL_STATE(6052)] = 289973, + [SMALL_STATE(6053)] = 289988, + [SMALL_STATE(6054)] = 290005, + [SMALL_STATE(6055)] = 290024, + [SMALL_STATE(6056)] = 290043, + [SMALL_STATE(6057)] = 290062, + [SMALL_STATE(6058)] = 290081, + [SMALL_STATE(6059)] = 290094, + [SMALL_STATE(6060)] = 290113, + [SMALL_STATE(6061)] = 290128, + [SMALL_STATE(6062)] = 290143, + [SMALL_STATE(6063)] = 290160, + [SMALL_STATE(6064)] = 290177, + [SMALL_STATE(6065)] = 290190, + [SMALL_STATE(6066)] = 290207, + [SMALL_STATE(6067)] = 290217, + [SMALL_STATE(6068)] = 290227, + [SMALL_STATE(6069)] = 290243, + [SMALL_STATE(6070)] = 290253, + [SMALL_STATE(6071)] = 290269, + [SMALL_STATE(6072)] = 290283, + [SMALL_STATE(6073)] = 290297, + [SMALL_STATE(6074)] = 290307, + [SMALL_STATE(6075)] = 290323, + [SMALL_STATE(6076)] = 290333, + [SMALL_STATE(6077)] = 290343, + [SMALL_STATE(6078)] = 290357, + [SMALL_STATE(6079)] = 290367, + [SMALL_STATE(6080)] = 290381, + [SMALL_STATE(6081)] = 290397, + [SMALL_STATE(6082)] = 290407, + [SMALL_STATE(6083)] = 290423, + [SMALL_STATE(6084)] = 290433, + [SMALL_STATE(6085)] = 290445, + [SMALL_STATE(6086)] = 290455, + [SMALL_STATE(6087)] = 290465, + [SMALL_STATE(6088)] = 290475, + [SMALL_STATE(6089)] = 290491, + [SMALL_STATE(6090)] = 290501, + [SMALL_STATE(6091)] = 290515, + [SMALL_STATE(6092)] = 290525, + [SMALL_STATE(6093)] = 290539, + [SMALL_STATE(6094)] = 290549, + [SMALL_STATE(6095)] = 290559, + [SMALL_STATE(6096)] = 290569, + [SMALL_STATE(6097)] = 290579, + [SMALL_STATE(6098)] = 290589, + [SMALL_STATE(6099)] = 290605, + [SMALL_STATE(6100)] = 290615, + [SMALL_STATE(6101)] = 290625, + [SMALL_STATE(6102)] = 290635, + [SMALL_STATE(6103)] = 290645, + [SMALL_STATE(6104)] = 290659, + [SMALL_STATE(6105)] = 290669, + [SMALL_STATE(6106)] = 290681, + [SMALL_STATE(6107)] = 290691, + [SMALL_STATE(6108)] = 290701, + [SMALL_STATE(6109)] = 290717, + [SMALL_STATE(6110)] = 290727, + [SMALL_STATE(6111)] = 290741, + [SMALL_STATE(6112)] = 290757, + [SMALL_STATE(6113)] = 290767, + [SMALL_STATE(6114)] = 290777, + [SMALL_STATE(6115)] = 290787, + [SMALL_STATE(6116)] = 290799, + [SMALL_STATE(6117)] = 290809, + [SMALL_STATE(6118)] = 290819, + [SMALL_STATE(6119)] = 290829, + [SMALL_STATE(6120)] = 290839, + [SMALL_STATE(6121)] = 290855, + [SMALL_STATE(6122)] = 290865, + [SMALL_STATE(6123)] = 290875, + [SMALL_STATE(6124)] = 290885, + [SMALL_STATE(6125)] = 290895, + [SMALL_STATE(6126)] = 290905, + [SMALL_STATE(6127)] = 290921, + [SMALL_STATE(6128)] = 290931, + [SMALL_STATE(6129)] = 290941, + [SMALL_STATE(6130)] = 290954, + [SMALL_STATE(6131)] = 290967, + [SMALL_STATE(6132)] = 290980, + [SMALL_STATE(6133)] = 290989, + [SMALL_STATE(6134)] = 291002, + [SMALL_STATE(6135)] = 291015, + [SMALL_STATE(6136)] = 291028, + [SMALL_STATE(6137)] = 291041, + [SMALL_STATE(6138)] = 291054, + [SMALL_STATE(6139)] = 291065, + [SMALL_STATE(6140)] = 291078, + [SMALL_STATE(6141)] = 291091, + [SMALL_STATE(6142)] = 291100, + [SMALL_STATE(6143)] = 291111, + [SMALL_STATE(6144)] = 291124, + [SMALL_STATE(6145)] = 291137, + [SMALL_STATE(6146)] = 291150, + [SMALL_STATE(6147)] = 291163, + [SMALL_STATE(6148)] = 291176, + [SMALL_STATE(6149)] = 291189, + [SMALL_STATE(6150)] = 291200, + [SMALL_STATE(6151)] = 291213, + [SMALL_STATE(6152)] = 291226, + [SMALL_STATE(6153)] = 291237, + [SMALL_STATE(6154)] = 291250, + [SMALL_STATE(6155)] = 291263, + [SMALL_STATE(6156)] = 291276, + [SMALL_STATE(6157)] = 291287, + [SMALL_STATE(6158)] = 291300, + [SMALL_STATE(6159)] = 291313, + [SMALL_STATE(6160)] = 291326, + [SMALL_STATE(6161)] = 291339, + [SMALL_STATE(6162)] = 291350, + [SMALL_STATE(6163)] = 291363, + [SMALL_STATE(6164)] = 291376, + [SMALL_STATE(6165)] = 291387, + [SMALL_STATE(6166)] = 291400, + [SMALL_STATE(6167)] = 291411, + [SMALL_STATE(6168)] = 291424, + [SMALL_STATE(6169)] = 291437, + [SMALL_STATE(6170)] = 291448, + [SMALL_STATE(6171)] = 291461, + [SMALL_STATE(6172)] = 291472, + [SMALL_STATE(6173)] = 291485, + [SMALL_STATE(6174)] = 291496, + [SMALL_STATE(6175)] = 291507, + [SMALL_STATE(6176)] = 291520, + [SMALL_STATE(6177)] = 291531, + [SMALL_STATE(6178)] = 291542, + [SMALL_STATE(6179)] = 291553, + [SMALL_STATE(6180)] = 291566, + [SMALL_STATE(6181)] = 291579, + [SMALL_STATE(6182)] = 291590, + [SMALL_STATE(6183)] = 291603, + [SMALL_STATE(6184)] = 291614, + [SMALL_STATE(6185)] = 291625, + [SMALL_STATE(6186)] = 291638, + [SMALL_STATE(6187)] = 291649, + [SMALL_STATE(6188)] = 291662, + [SMALL_STATE(6189)] = 291673, + [SMALL_STATE(6190)] = 291686, + [SMALL_STATE(6191)] = 291699, + [SMALL_STATE(6192)] = 291712, + [SMALL_STATE(6193)] = 291725, + [SMALL_STATE(6194)] = 291738, + [SMALL_STATE(6195)] = 291751, + [SMALL_STATE(6196)] = 291764, + [SMALL_STATE(6197)] = 291777, + [SMALL_STATE(6198)] = 291790, + [SMALL_STATE(6199)] = 291803, + [SMALL_STATE(6200)] = 291816, + [SMALL_STATE(6201)] = 291829, + [SMALL_STATE(6202)] = 291842, + [SMALL_STATE(6203)] = 291855, + [SMALL_STATE(6204)] = 291868, + [SMALL_STATE(6205)] = 291881, + [SMALL_STATE(6206)] = 291894, + [SMALL_STATE(6207)] = 291907, + [SMALL_STATE(6208)] = 291920, + [SMALL_STATE(6209)] = 291933, + [SMALL_STATE(6210)] = 291946, + [SMALL_STATE(6211)] = 291959, + [SMALL_STATE(6212)] = 291972, + [SMALL_STATE(6213)] = 291985, + [SMALL_STATE(6214)] = 291998, + [SMALL_STATE(6215)] = 292011, + [SMALL_STATE(6216)] = 292024, + [SMALL_STATE(6217)] = 292037, + [SMALL_STATE(6218)] = 292050, + [SMALL_STATE(6219)] = 292063, + [SMALL_STATE(6220)] = 292076, + [SMALL_STATE(6221)] = 292085, + [SMALL_STATE(6222)] = 292098, + [SMALL_STATE(6223)] = 292111, + [SMALL_STATE(6224)] = 292124, + [SMALL_STATE(6225)] = 292137, + [SMALL_STATE(6226)] = 292150, + [SMALL_STATE(6227)] = 292163, + [SMALL_STATE(6228)] = 292176, + [SMALL_STATE(6229)] = 292189, + [SMALL_STATE(6230)] = 292202, + [SMALL_STATE(6231)] = 292215, + [SMALL_STATE(6232)] = 292228, + [SMALL_STATE(6233)] = 292237, + [SMALL_STATE(6234)] = 292250, + [SMALL_STATE(6235)] = 292263, + [SMALL_STATE(6236)] = 292276, + [SMALL_STATE(6237)] = 292285, + [SMALL_STATE(6238)] = 292294, + [SMALL_STATE(6239)] = 292305, + [SMALL_STATE(6240)] = 292318, + [SMALL_STATE(6241)] = 292331, + [SMALL_STATE(6242)] = 292344, + [SMALL_STATE(6243)] = 292357, + [SMALL_STATE(6244)] = 292368, + [SMALL_STATE(6245)] = 292381, + [SMALL_STATE(6246)] = 292394, + [SMALL_STATE(6247)] = 292403, + [SMALL_STATE(6248)] = 292414, + [SMALL_STATE(6249)] = 292425, + [SMALL_STATE(6250)] = 292438, + [SMALL_STATE(6251)] = 292451, + [SMALL_STATE(6252)] = 292462, + [SMALL_STATE(6253)] = 292473, + [SMALL_STATE(6254)] = 292486, + [SMALL_STATE(6255)] = 292499, + [SMALL_STATE(6256)] = 292510, + [SMALL_STATE(6257)] = 292523, + [SMALL_STATE(6258)] = 292536, + [SMALL_STATE(6259)] = 292549, + [SMALL_STATE(6260)] = 292558, + [SMALL_STATE(6261)] = 292571, + [SMALL_STATE(6262)] = 292582, + [SMALL_STATE(6263)] = 292595, + [SMALL_STATE(6264)] = 292608, + [SMALL_STATE(6265)] = 292617, + [SMALL_STATE(6266)] = 292630, + [SMALL_STATE(6267)] = 292643, + [SMALL_STATE(6268)] = 292656, + [SMALL_STATE(6269)] = 292669, + [SMALL_STATE(6270)] = 292680, + [SMALL_STATE(6271)] = 292691, + [SMALL_STATE(6272)] = 292704, + [SMALL_STATE(6273)] = 292717, + [SMALL_STATE(6274)] = 292730, + [SMALL_STATE(6275)] = 292743, + [SMALL_STATE(6276)] = 292756, + [SMALL_STATE(6277)] = 292767, + [SMALL_STATE(6278)] = 292776, + [SMALL_STATE(6279)] = 292789, + [SMALL_STATE(6280)] = 292802, + [SMALL_STATE(6281)] = 292811, + [SMALL_STATE(6282)] = 292824, + [SMALL_STATE(6283)] = 292837, + [SMALL_STATE(6284)] = 292846, + [SMALL_STATE(6285)] = 292859, + [SMALL_STATE(6286)] = 292872, + [SMALL_STATE(6287)] = 292885, + [SMALL_STATE(6288)] = 292898, + [SMALL_STATE(6289)] = 292911, + [SMALL_STATE(6290)] = 292920, + [SMALL_STATE(6291)] = 292933, + [SMALL_STATE(6292)] = 292944, + [SMALL_STATE(6293)] = 292955, + [SMALL_STATE(6294)] = 292968, + [SMALL_STATE(6295)] = 292981, + [SMALL_STATE(6296)] = 292994, + [SMALL_STATE(6297)] = 293007, + [SMALL_STATE(6298)] = 293020, + [SMALL_STATE(6299)] = 293031, + [SMALL_STATE(6300)] = 293040, + [SMALL_STATE(6301)] = 293050, + [SMALL_STATE(6302)] = 293060, + [SMALL_STATE(6303)] = 293068, + [SMALL_STATE(6304)] = 293076, + [SMALL_STATE(6305)] = 293086, + [SMALL_STATE(6306)] = 293094, + [SMALL_STATE(6307)] = 293102, + [SMALL_STATE(6308)] = 293112, + [SMALL_STATE(6309)] = 293122, + [SMALL_STATE(6310)] = 293130, + [SMALL_STATE(6311)] = 293140, + [SMALL_STATE(6312)] = 293148, + [SMALL_STATE(6313)] = 293158, + [SMALL_STATE(6314)] = 293166, + [SMALL_STATE(6315)] = 293174, + [SMALL_STATE(6316)] = 293184, + [SMALL_STATE(6317)] = 293192, + [SMALL_STATE(6318)] = 293200, + [SMALL_STATE(6319)] = 293208, + [SMALL_STATE(6320)] = 293216, + [SMALL_STATE(6321)] = 293224, + [SMALL_STATE(6322)] = 293232, + [SMALL_STATE(6323)] = 293242, + [SMALL_STATE(6324)] = 293250, + [SMALL_STATE(6325)] = 293260, + [SMALL_STATE(6326)] = 293268, + [SMALL_STATE(6327)] = 293276, + [SMALL_STATE(6328)] = 293284, + [SMALL_STATE(6329)] = 293294, + [SMALL_STATE(6330)] = 293302, + [SMALL_STATE(6331)] = 293310, + [SMALL_STATE(6332)] = 293320, + [SMALL_STATE(6333)] = 293328, + [SMALL_STATE(6334)] = 293336, + [SMALL_STATE(6335)] = 293346, + [SMALL_STATE(6336)] = 293354, + [SMALL_STATE(6337)] = 293364, + [SMALL_STATE(6338)] = 293374, + [SMALL_STATE(6339)] = 293382, + [SMALL_STATE(6340)] = 293392, + [SMALL_STATE(6341)] = 293400, + [SMALL_STATE(6342)] = 293410, + [SMALL_STATE(6343)] = 293420, + [SMALL_STATE(6344)] = 293428, + [SMALL_STATE(6345)] = 293436, + [SMALL_STATE(6346)] = 293444, + [SMALL_STATE(6347)] = 293454, + [SMALL_STATE(6348)] = 293464, + [SMALL_STATE(6349)] = 293474, + [SMALL_STATE(6350)] = 293482, + [SMALL_STATE(6351)] = 293490, + [SMALL_STATE(6352)] = 293498, + [SMALL_STATE(6353)] = 293506, + [SMALL_STATE(6354)] = 293514, + [SMALL_STATE(6355)] = 293524, + [SMALL_STATE(6356)] = 293534, + [SMALL_STATE(6357)] = 293542, + [SMALL_STATE(6358)] = 293550, + [SMALL_STATE(6359)] = 293558, + [SMALL_STATE(6360)] = 293568, + [SMALL_STATE(6361)] = 293578, + [SMALL_STATE(6362)] = 293588, + [SMALL_STATE(6363)] = 293596, + [SMALL_STATE(6364)] = 293606, + [SMALL_STATE(6365)] = 293614, + [SMALL_STATE(6366)] = 293624, + [SMALL_STATE(6367)] = 293632, + [SMALL_STATE(6368)] = 293640, + [SMALL_STATE(6369)] = 293650, + [SMALL_STATE(6370)] = 293658, + [SMALL_STATE(6371)] = 293666, + [SMALL_STATE(6372)] = 293676, + [SMALL_STATE(6373)] = 293684, + [SMALL_STATE(6374)] = 293694, + [SMALL_STATE(6375)] = 293702, + [SMALL_STATE(6376)] = 293710, + [SMALL_STATE(6377)] = 293717, + [SMALL_STATE(6378)] = 293724, + [SMALL_STATE(6379)] = 293731, + [SMALL_STATE(6380)] = 293738, + [SMALL_STATE(6381)] = 293745, + [SMALL_STATE(6382)] = 293752, + [SMALL_STATE(6383)] = 293759, + [SMALL_STATE(6384)] = 293766, + [SMALL_STATE(6385)] = 293773, + [SMALL_STATE(6386)] = 293780, + [SMALL_STATE(6387)] = 293787, + [SMALL_STATE(6388)] = 293794, + [SMALL_STATE(6389)] = 293801, + [SMALL_STATE(6390)] = 293808, + [SMALL_STATE(6391)] = 293815, + [SMALL_STATE(6392)] = 293822, + [SMALL_STATE(6393)] = 293829, + [SMALL_STATE(6394)] = 293836, + [SMALL_STATE(6395)] = 293843, + [SMALL_STATE(6396)] = 293850, + [SMALL_STATE(6397)] = 293857, + [SMALL_STATE(6398)] = 293864, + [SMALL_STATE(6399)] = 293871, + [SMALL_STATE(6400)] = 293878, + [SMALL_STATE(6401)] = 293885, + [SMALL_STATE(6402)] = 293892, + [SMALL_STATE(6403)] = 293899, + [SMALL_STATE(6404)] = 293906, + [SMALL_STATE(6405)] = 293913, + [SMALL_STATE(6406)] = 293920, + [SMALL_STATE(6407)] = 293927, + [SMALL_STATE(6408)] = 293934, + [SMALL_STATE(6409)] = 293941, + [SMALL_STATE(6410)] = 293948, + [SMALL_STATE(6411)] = 293955, + [SMALL_STATE(6412)] = 293962, + [SMALL_STATE(6413)] = 293969, + [SMALL_STATE(6414)] = 293976, + [SMALL_STATE(6415)] = 293983, + [SMALL_STATE(6416)] = 293990, + [SMALL_STATE(6417)] = 293997, + [SMALL_STATE(6418)] = 294004, + [SMALL_STATE(6419)] = 294011, + [SMALL_STATE(6420)] = 294018, + [SMALL_STATE(6421)] = 294025, + [SMALL_STATE(6422)] = 294032, + [SMALL_STATE(6423)] = 294039, + [SMALL_STATE(6424)] = 294046, + [SMALL_STATE(6425)] = 294053, + [SMALL_STATE(6426)] = 294060, + [SMALL_STATE(6427)] = 294067, + [SMALL_STATE(6428)] = 294074, + [SMALL_STATE(6429)] = 294081, + [SMALL_STATE(6430)] = 294088, + [SMALL_STATE(6431)] = 294095, + [SMALL_STATE(6432)] = 294102, + [SMALL_STATE(6433)] = 294109, + [SMALL_STATE(6434)] = 294116, + [SMALL_STATE(6435)] = 294123, + [SMALL_STATE(6436)] = 294130, + [SMALL_STATE(6437)] = 294137, + [SMALL_STATE(6438)] = 294144, + [SMALL_STATE(6439)] = 294151, + [SMALL_STATE(6440)] = 294158, + [SMALL_STATE(6441)] = 294165, + [SMALL_STATE(6442)] = 294172, + [SMALL_STATE(6443)] = 294179, + [SMALL_STATE(6444)] = 294186, + [SMALL_STATE(6445)] = 294193, + [SMALL_STATE(6446)] = 294200, + [SMALL_STATE(6447)] = 294207, + [SMALL_STATE(6448)] = 294214, + [SMALL_STATE(6449)] = 294221, + [SMALL_STATE(6450)] = 294228, + [SMALL_STATE(6451)] = 294235, + [SMALL_STATE(6452)] = 294242, + [SMALL_STATE(6453)] = 294249, + [SMALL_STATE(6454)] = 294256, + [SMALL_STATE(6455)] = 294263, + [SMALL_STATE(6456)] = 294270, + [SMALL_STATE(6457)] = 294277, + [SMALL_STATE(6458)] = 294284, + [SMALL_STATE(6459)] = 294291, + [SMALL_STATE(6460)] = 294298, + [SMALL_STATE(6461)] = 294305, + [SMALL_STATE(6462)] = 294312, + [SMALL_STATE(6463)] = 294319, + [SMALL_STATE(6464)] = 294326, + [SMALL_STATE(6465)] = 294333, + [SMALL_STATE(6466)] = 294340, + [SMALL_STATE(6467)] = 294347, + [SMALL_STATE(6468)] = 294354, + [SMALL_STATE(6469)] = 294361, + [SMALL_STATE(6470)] = 294368, + [SMALL_STATE(6471)] = 294375, + [SMALL_STATE(6472)] = 294382, + [SMALL_STATE(6473)] = 294389, + [SMALL_STATE(6474)] = 294396, + [SMALL_STATE(6475)] = 294403, + [SMALL_STATE(6476)] = 294410, + [SMALL_STATE(6477)] = 294417, + [SMALL_STATE(6478)] = 294424, + [SMALL_STATE(6479)] = 294431, + [SMALL_STATE(6480)] = 294438, + [SMALL_STATE(6481)] = 294445, + [SMALL_STATE(6482)] = 294452, + [SMALL_STATE(6483)] = 294459, + [SMALL_STATE(6484)] = 294466, + [SMALL_STATE(6485)] = 294473, + [SMALL_STATE(6486)] = 294480, + [SMALL_STATE(6487)] = 294487, + [SMALL_STATE(6488)] = 294494, + [SMALL_STATE(6489)] = 294501, + [SMALL_STATE(6490)] = 294508, + [SMALL_STATE(6491)] = 294515, + [SMALL_STATE(6492)] = 294522, + [SMALL_STATE(6493)] = 294529, + [SMALL_STATE(6494)] = 294536, + [SMALL_STATE(6495)] = 294543, + [SMALL_STATE(6496)] = 294550, + [SMALL_STATE(6497)] = 294557, + [SMALL_STATE(6498)] = 294564, + [SMALL_STATE(6499)] = 294571, + [SMALL_STATE(6500)] = 294578, + [SMALL_STATE(6501)] = 294585, + [SMALL_STATE(6502)] = 294592, + [SMALL_STATE(6503)] = 294599, + [SMALL_STATE(6504)] = 294606, + [SMALL_STATE(6505)] = 294613, + [SMALL_STATE(6506)] = 294620, + [SMALL_STATE(6507)] = 294627, + [SMALL_STATE(6508)] = 294634, + [SMALL_STATE(6509)] = 294641, + [SMALL_STATE(6510)] = 294648, + [SMALL_STATE(6511)] = 294655, + [SMALL_STATE(6512)] = 294662, + [SMALL_STATE(6513)] = 294669, + [SMALL_STATE(6514)] = 294676, + [SMALL_STATE(6515)] = 294683, + [SMALL_STATE(6516)] = 294690, + [SMALL_STATE(6517)] = 294697, + [SMALL_STATE(6518)] = 294704, + [SMALL_STATE(6519)] = 294711, + [SMALL_STATE(6520)] = 294718, + [SMALL_STATE(6521)] = 294725, + [SMALL_STATE(6522)] = 294732, + [SMALL_STATE(6523)] = 294739, + [SMALL_STATE(6524)] = 294746, + [SMALL_STATE(6525)] = 294753, + [SMALL_STATE(6526)] = 294760, + [SMALL_STATE(6527)] = 294767, + [SMALL_STATE(6528)] = 294774, + [SMALL_STATE(6529)] = 294781, + [SMALL_STATE(6530)] = 294788, + [SMALL_STATE(6531)] = 294795, + [SMALL_STATE(6532)] = 294802, + [SMALL_STATE(6533)] = 294809, + [SMALL_STATE(6534)] = 294816, + [SMALL_STATE(6535)] = 294823, + [SMALL_STATE(6536)] = 294830, + [SMALL_STATE(6537)] = 294837, + [SMALL_STATE(6538)] = 294844, + [SMALL_STATE(6539)] = 294851, + [SMALL_STATE(6540)] = 294858, + [SMALL_STATE(6541)] = 294865, + [SMALL_STATE(6542)] = 294872, + [SMALL_STATE(6543)] = 294879, + [SMALL_STATE(6544)] = 294886, + [SMALL_STATE(6545)] = 294893, + [SMALL_STATE(6546)] = 294900, + [SMALL_STATE(6547)] = 294907, + [SMALL_STATE(6548)] = 294914, + [SMALL_STATE(6549)] = 294921, + [SMALL_STATE(6550)] = 294928, + [SMALL_STATE(6551)] = 294935, + [SMALL_STATE(6552)] = 294942, + [SMALL_STATE(6553)] = 294949, + [SMALL_STATE(6554)] = 294956, + [SMALL_STATE(6555)] = 294963, + [SMALL_STATE(6556)] = 294970, + [SMALL_STATE(6557)] = 294977, + [SMALL_STATE(6558)] = 294984, + [SMALL_STATE(6559)] = 294991, + [SMALL_STATE(6560)] = 294998, + [SMALL_STATE(6561)] = 295005, + [SMALL_STATE(6562)] = 295012, + [SMALL_STATE(6563)] = 295019, + [SMALL_STATE(6564)] = 295026, + [SMALL_STATE(6565)] = 295033, + [SMALL_STATE(6566)] = 295040, + [SMALL_STATE(6567)] = 295047, + [SMALL_STATE(6568)] = 295054, + [SMALL_STATE(6569)] = 295061, + [SMALL_STATE(6570)] = 295068, + [SMALL_STATE(6571)] = 295075, + [SMALL_STATE(6572)] = 295082, + [SMALL_STATE(6573)] = 295089, + [SMALL_STATE(6574)] = 295096, + [SMALL_STATE(6575)] = 295103, + [SMALL_STATE(6576)] = 295110, + [SMALL_STATE(6577)] = 295117, + [SMALL_STATE(6578)] = 295124, + [SMALL_STATE(6579)] = 295131, + [SMALL_STATE(6580)] = 295138, + [SMALL_STATE(6581)] = 295145, + [SMALL_STATE(6582)] = 295152, + [SMALL_STATE(6583)] = 295159, + [SMALL_STATE(6584)] = 295166, + [SMALL_STATE(6585)] = 295173, + [SMALL_STATE(6586)] = 295180, + [SMALL_STATE(6587)] = 295187, + [SMALL_STATE(6588)] = 295194, + [SMALL_STATE(6589)] = 295201, + [SMALL_STATE(6590)] = 295208, + [SMALL_STATE(6591)] = 295215, + [SMALL_STATE(6592)] = 295222, + [SMALL_STATE(6593)] = 295229, + [SMALL_STATE(6594)] = 295236, + [SMALL_STATE(6595)] = 295243, + [SMALL_STATE(6596)] = 295250, + [SMALL_STATE(6597)] = 295257, + [SMALL_STATE(6598)] = 295264, + [SMALL_STATE(6599)] = 295271, + [SMALL_STATE(6600)] = 295278, + [SMALL_STATE(6601)] = 295285, + [SMALL_STATE(6602)] = 295292, + [SMALL_STATE(6603)] = 295299, + [SMALL_STATE(6604)] = 295306, + [SMALL_STATE(6605)] = 295313, + [SMALL_STATE(6606)] = 295320, + [SMALL_STATE(6607)] = 295327, + [SMALL_STATE(6608)] = 295334, + [SMALL_STATE(6609)] = 295341, + [SMALL_STATE(6610)] = 295348, + [SMALL_STATE(6611)] = 295355, + [SMALL_STATE(6612)] = 295362, + [SMALL_STATE(6613)] = 295369, + [SMALL_STATE(6614)] = 295376, + [SMALL_STATE(6615)] = 295383, + [SMALL_STATE(6616)] = 295390, + [SMALL_STATE(6617)] = 295397, + [SMALL_STATE(6618)] = 295404, + [SMALL_STATE(6619)] = 295411, + [SMALL_STATE(6620)] = 295418, + [SMALL_STATE(6621)] = 295425, + [SMALL_STATE(6622)] = 295432, + [SMALL_STATE(6623)] = 295439, + [SMALL_STATE(6624)] = 295446, + [SMALL_STATE(6625)] = 295453, + [SMALL_STATE(6626)] = 295460, + [SMALL_STATE(6627)] = 295467, + [SMALL_STATE(6628)] = 295474, + [SMALL_STATE(6629)] = 295481, + [SMALL_STATE(6630)] = 295488, + [SMALL_STATE(6631)] = 295495, + [SMALL_STATE(6632)] = 295502, + [SMALL_STATE(6633)] = 295509, + [SMALL_STATE(6634)] = 295516, + [SMALL_STATE(6635)] = 295523, + [SMALL_STATE(6636)] = 295530, + [SMALL_STATE(6637)] = 295537, + [SMALL_STATE(6638)] = 295544, + [SMALL_STATE(6639)] = 295551, + [SMALL_STATE(6640)] = 295558, + [SMALL_STATE(6641)] = 295565, + [SMALL_STATE(6642)] = 295572, + [SMALL_STATE(6643)] = 295579, + [SMALL_STATE(6644)] = 295586, + [SMALL_STATE(6645)] = 295593, + [SMALL_STATE(6646)] = 295600, + [SMALL_STATE(6647)] = 295607, + [SMALL_STATE(6648)] = 295614, + [SMALL_STATE(6649)] = 295621, + [SMALL_STATE(6650)] = 295628, + [SMALL_STATE(6651)] = 295635, + [SMALL_STATE(6652)] = 295642, + [SMALL_STATE(6653)] = 295649, + [SMALL_STATE(6654)] = 295656, + [SMALL_STATE(6655)] = 295663, + [SMALL_STATE(6656)] = 295670, + [SMALL_STATE(6657)] = 295677, + [SMALL_STATE(6658)] = 295684, + [SMALL_STATE(6659)] = 295691, + [SMALL_STATE(6660)] = 295698, + [SMALL_STATE(6661)] = 295705, + [SMALL_STATE(6662)] = 295712, + [SMALL_STATE(6663)] = 295719, + [SMALL_STATE(6664)] = 295726, + [SMALL_STATE(6665)] = 295733, + [SMALL_STATE(6666)] = 295740, + [SMALL_STATE(6667)] = 295747, + [SMALL_STATE(6668)] = 295754, + [SMALL_STATE(6669)] = 295761, + [SMALL_STATE(6670)] = 295768, + [SMALL_STATE(6671)] = 295775, + [SMALL_STATE(6672)] = 295782, + [SMALL_STATE(6673)] = 295789, + [SMALL_STATE(6674)] = 295796, + [SMALL_STATE(6675)] = 295803, + [SMALL_STATE(6676)] = 295810, + [SMALL_STATE(6677)] = 295817, + [SMALL_STATE(6678)] = 295824, + [SMALL_STATE(6679)] = 295831, + [SMALL_STATE(6680)] = 295838, + [SMALL_STATE(6681)] = 295845, + [SMALL_STATE(6682)] = 295852, + [SMALL_STATE(6683)] = 295859, + [SMALL_STATE(6684)] = 295866, + [SMALL_STATE(6685)] = 295873, + [SMALL_STATE(6686)] = 295880, + [SMALL_STATE(6687)] = 295887, + [SMALL_STATE(6688)] = 295894, + [SMALL_STATE(6689)] = 295901, + [SMALL_STATE(6690)] = 295908, + [SMALL_STATE(6691)] = 295915, + [SMALL_STATE(6692)] = 295922, + [SMALL_STATE(6693)] = 295929, + [SMALL_STATE(6694)] = 295936, + [SMALL_STATE(6695)] = 295943, + [SMALL_STATE(6696)] = 295950, + [SMALL_STATE(6697)] = 295957, + [SMALL_STATE(6698)] = 295964, + [SMALL_STATE(6699)] = 295971, + [SMALL_STATE(6700)] = 295978, + [SMALL_STATE(6701)] = 295985, + [SMALL_STATE(6702)] = 295992, + [SMALL_STATE(6703)] = 295999, + [SMALL_STATE(6704)] = 296006, + [SMALL_STATE(6705)] = 296013, + [SMALL_STATE(6706)] = 296020, + [SMALL_STATE(6707)] = 296027, + [SMALL_STATE(6708)] = 296034, + [SMALL_STATE(6709)] = 296041, + [SMALL_STATE(6710)] = 296048, + [SMALL_STATE(6711)] = 296055, + [SMALL_STATE(6712)] = 296062, + [SMALL_STATE(6713)] = 296069, + [SMALL_STATE(6714)] = 296076, + [SMALL_STATE(6715)] = 296083, + [SMALL_STATE(6716)] = 296090, + [SMALL_STATE(6717)] = 296097, + [SMALL_STATE(6718)] = 296104, + [SMALL_STATE(6719)] = 296111, + [SMALL_STATE(6720)] = 296118, + [SMALL_STATE(6721)] = 296125, + [SMALL_STATE(6722)] = 296132, + [SMALL_STATE(6723)] = 296139, + [SMALL_STATE(6724)] = 296146, + [SMALL_STATE(6725)] = 296153, + [SMALL_STATE(6726)] = 296160, + [SMALL_STATE(6727)] = 296167, + [SMALL_STATE(6728)] = 296174, + [SMALL_STATE(6729)] = 296181, + [SMALL_STATE(6730)] = 296188, + [SMALL_STATE(6731)] = 296195, + [SMALL_STATE(6732)] = 296202, + [SMALL_STATE(6733)] = 296209, + [SMALL_STATE(6734)] = 296216, + [SMALL_STATE(6735)] = 296223, + [SMALL_STATE(6736)] = 296230, + [SMALL_STATE(6737)] = 296237, + [SMALL_STATE(6738)] = 296244, + [SMALL_STATE(6739)] = 296251, + [SMALL_STATE(6740)] = 296258, + [SMALL_STATE(6741)] = 296265, + [SMALL_STATE(6742)] = 296272, + [SMALL_STATE(6743)] = 296279, + [SMALL_STATE(6744)] = 296286, + [SMALL_STATE(6745)] = 296293, + [SMALL_STATE(6746)] = 296300, + [SMALL_STATE(6747)] = 296307, + [SMALL_STATE(6748)] = 296314, + [SMALL_STATE(6749)] = 296321, + [SMALL_STATE(6750)] = 296328, + [SMALL_STATE(6751)] = 296335, + [SMALL_STATE(6752)] = 296342, + [SMALL_STATE(6753)] = 296349, + [SMALL_STATE(6754)] = 296356, + [SMALL_STATE(6755)] = 296363, + [SMALL_STATE(6756)] = 296370, + [SMALL_STATE(6757)] = 296377, + [SMALL_STATE(6758)] = 296384, + [SMALL_STATE(6759)] = 296391, + [SMALL_STATE(6760)] = 296398, + [SMALL_STATE(6761)] = 296405, + [SMALL_STATE(6762)] = 296412, + [SMALL_STATE(6763)] = 296419, + [SMALL_STATE(6764)] = 296426, + [SMALL_STATE(6765)] = 296433, + [SMALL_STATE(6766)] = 296440, + [SMALL_STATE(6767)] = 296447, + [SMALL_STATE(6768)] = 296454, + [SMALL_STATE(6769)] = 296461, + [SMALL_STATE(6770)] = 296468, + [SMALL_STATE(6771)] = 296475, + [SMALL_STATE(6772)] = 296482, + [SMALL_STATE(6773)] = 296489, + [SMALL_STATE(6774)] = 296496, + [SMALL_STATE(6775)] = 296503, + [SMALL_STATE(6776)] = 296510, + [SMALL_STATE(6777)] = 296517, + [SMALL_STATE(6778)] = 296524, + [SMALL_STATE(6779)] = 296531, + [SMALL_STATE(6780)] = 296538, + [SMALL_STATE(6781)] = 296545, + [SMALL_STATE(6782)] = 296552, + [SMALL_STATE(6783)] = 296559, + [SMALL_STATE(6784)] = 296566, + [SMALL_STATE(6785)] = 296573, + [SMALL_STATE(6786)] = 296580, + [SMALL_STATE(6787)] = 296587, + [SMALL_STATE(6788)] = 296594, + [SMALL_STATE(6789)] = 296601, + [SMALL_STATE(6790)] = 296608, + [SMALL_STATE(6791)] = 296615, + [SMALL_STATE(6792)] = 296622, + [SMALL_STATE(6793)] = 296629, + [SMALL_STATE(6794)] = 296636, + [SMALL_STATE(6795)] = 296643, + [SMALL_STATE(6796)] = 296650, + [SMALL_STATE(6797)] = 296657, + [SMALL_STATE(6798)] = 296664, + [SMALL_STATE(6799)] = 296671, + [SMALL_STATE(6800)] = 296678, + [SMALL_STATE(6801)] = 296685, + [SMALL_STATE(6802)] = 296692, + [SMALL_STATE(6803)] = 296699, + [SMALL_STATE(6804)] = 296706, + [SMALL_STATE(6805)] = 296713, + [SMALL_STATE(6806)] = 296720, + [SMALL_STATE(6807)] = 296727, + [SMALL_STATE(6808)] = 296734, + [SMALL_STATE(6809)] = 296741, + [SMALL_STATE(6810)] = 296748, + [SMALL_STATE(6811)] = 296755, + [SMALL_STATE(6812)] = 296762, + [SMALL_STATE(6813)] = 296769, + [SMALL_STATE(6814)] = 296776, + [SMALL_STATE(6815)] = 296783, + [SMALL_STATE(6816)] = 296790, + [SMALL_STATE(6817)] = 296797, + [SMALL_STATE(6818)] = 296804, + [SMALL_STATE(6819)] = 296811, + [SMALL_STATE(6820)] = 296818, + [SMALL_STATE(6821)] = 296825, + [SMALL_STATE(6822)] = 296832, + [SMALL_STATE(6823)] = 296839, + [SMALL_STATE(6824)] = 296846, + [SMALL_STATE(6825)] = 296853, + [SMALL_STATE(6826)] = 296860, + [SMALL_STATE(6827)] = 296867, + [SMALL_STATE(6828)] = 296874, + [SMALL_STATE(6829)] = 296881, + [SMALL_STATE(6830)] = 296888, + [SMALL_STATE(6831)] = 296895, + [SMALL_STATE(6832)] = 296902, + [SMALL_STATE(6833)] = 296909, + [SMALL_STATE(6834)] = 296916, + [SMALL_STATE(6835)] = 296923, + [SMALL_STATE(6836)] = 296930, + [SMALL_STATE(6837)] = 296937, + [SMALL_STATE(6838)] = 296944, + [SMALL_STATE(6839)] = 296951, + [SMALL_STATE(6840)] = 296958, + [SMALL_STATE(6841)] = 296965, + [SMALL_STATE(6842)] = 296972, + [SMALL_STATE(6843)] = 296979, + [SMALL_STATE(6844)] = 296986, + [SMALL_STATE(6845)] = 296993, + [SMALL_STATE(6846)] = 297000, + [SMALL_STATE(6847)] = 297007, + [SMALL_STATE(6848)] = 297014, + [SMALL_STATE(6849)] = 297021, + [SMALL_STATE(6850)] = 297028, + [SMALL_STATE(6851)] = 297035, + [SMALL_STATE(6852)] = 297042, + [SMALL_STATE(6853)] = 297049, + [SMALL_STATE(6854)] = 297056, + [SMALL_STATE(6855)] = 297063, + [SMALL_STATE(6856)] = 297070, + [SMALL_STATE(6857)] = 297077, + [SMALL_STATE(6858)] = 297084, + [SMALL_STATE(6859)] = 297091, + [SMALL_STATE(6860)] = 297098, + [SMALL_STATE(6861)] = 297105, + [SMALL_STATE(6862)] = 297112, + [SMALL_STATE(6863)] = 297119, + [SMALL_STATE(6864)] = 297126, + [SMALL_STATE(6865)] = 297133, + [SMALL_STATE(6866)] = 297140, + [SMALL_STATE(6867)] = 297147, + [SMALL_STATE(6868)] = 297154, + [SMALL_STATE(6869)] = 297161, + [SMALL_STATE(6870)] = 297168, + [SMALL_STATE(6871)] = 297175, + [SMALL_STATE(6872)] = 297182, + [SMALL_STATE(6873)] = 297189, + [SMALL_STATE(6874)] = 297196, + [SMALL_STATE(6875)] = 297203, + [SMALL_STATE(6876)] = 297210, + [SMALL_STATE(6877)] = 297217, + [SMALL_STATE(6878)] = 297224, + [SMALL_STATE(6879)] = 297231, + [SMALL_STATE(6880)] = 297238, + [SMALL_STATE(6881)] = 297245, + [SMALL_STATE(6882)] = 297252, + [SMALL_STATE(6883)] = 297259, + [SMALL_STATE(6884)] = 297266, + [SMALL_STATE(6885)] = 297273, + [SMALL_STATE(6886)] = 297280, + [SMALL_STATE(6887)] = 297287, + [SMALL_STATE(6888)] = 297294, + [SMALL_STATE(6889)] = 297301, + [SMALL_STATE(6890)] = 297308, + [SMALL_STATE(6891)] = 297315, + [SMALL_STATE(6892)] = 297322, + [SMALL_STATE(6893)] = 297329, + [SMALL_STATE(6894)] = 297336, + [SMALL_STATE(6895)] = 297343, + [SMALL_STATE(6896)] = 297350, + [SMALL_STATE(6897)] = 297357, + [SMALL_STATE(6898)] = 297364, + [SMALL_STATE(6899)] = 297371, + [SMALL_STATE(6900)] = 297378, + [SMALL_STATE(6901)] = 297385, + [SMALL_STATE(6902)] = 297392, + [SMALL_STATE(6903)] = 297399, + [SMALL_STATE(6904)] = 297406, + [SMALL_STATE(6905)] = 297413, + [SMALL_STATE(6906)] = 297420, + [SMALL_STATE(6907)] = 297427, + [SMALL_STATE(6908)] = 297434, + [SMALL_STATE(6909)] = 297441, + [SMALL_STATE(6910)] = 297448, + [SMALL_STATE(6911)] = 297455, + [SMALL_STATE(6912)] = 297462, + [SMALL_STATE(6913)] = 297469, + [SMALL_STATE(6914)] = 297476, + [SMALL_STATE(6915)] = 297483, + [SMALL_STATE(6916)] = 297490, + [SMALL_STATE(6917)] = 297497, + [SMALL_STATE(6918)] = 297504, + [SMALL_STATE(6919)] = 297511, + [SMALL_STATE(6920)] = 297518, + [SMALL_STATE(6921)] = 297525, + [SMALL_STATE(6922)] = 297532, + [SMALL_STATE(6923)] = 297539, + [SMALL_STATE(6924)] = 297546, + [SMALL_STATE(6925)] = 297553, + [SMALL_STATE(6926)] = 297560, + [SMALL_STATE(6927)] = 297567, + [SMALL_STATE(6928)] = 297574, + [SMALL_STATE(6929)] = 297581, + [SMALL_STATE(6930)] = 297588, + [SMALL_STATE(6931)] = 297595, + [SMALL_STATE(6932)] = 297602, + [SMALL_STATE(6933)] = 297609, + [SMALL_STATE(6934)] = 297616, + [SMALL_STATE(6935)] = 297623, + [SMALL_STATE(6936)] = 297630, + [SMALL_STATE(6937)] = 297637, + [SMALL_STATE(6938)] = 297644, + [SMALL_STATE(6939)] = 297651, + [SMALL_STATE(6940)] = 297658, + [SMALL_STATE(6941)] = 297665, + [SMALL_STATE(6942)] = 297672, + [SMALL_STATE(6943)] = 297679, + [SMALL_STATE(6944)] = 297686, + [SMALL_STATE(6945)] = 297693, + [SMALL_STATE(6946)] = 297700, + [SMALL_STATE(6947)] = 297707, + [SMALL_STATE(6948)] = 297714, + [SMALL_STATE(6949)] = 297721, + [SMALL_STATE(6950)] = 297728, + [SMALL_STATE(6951)] = 297735, + [SMALL_STATE(6952)] = 297742, + [SMALL_STATE(6953)] = 297749, + [SMALL_STATE(6954)] = 297756, + [SMALL_STATE(6955)] = 297763, + [SMALL_STATE(6956)] = 297770, + [SMALL_STATE(6957)] = 297777, + [SMALL_STATE(6958)] = 297784, + [SMALL_STATE(6959)] = 297791, + [SMALL_STATE(6960)] = 297798, + [SMALL_STATE(6961)] = 297805, + [SMALL_STATE(6962)] = 297812, + [SMALL_STATE(6963)] = 297819, + [SMALL_STATE(6964)] = 297826, + [SMALL_STATE(6965)] = 297833, + [SMALL_STATE(6966)] = 297840, + [SMALL_STATE(6967)] = 297847, + [SMALL_STATE(6968)] = 297854, + [SMALL_STATE(6969)] = 297861, + [SMALL_STATE(6970)] = 297868, + [SMALL_STATE(6971)] = 297875, + [SMALL_STATE(6972)] = 297882, + [SMALL_STATE(6973)] = 297889, + [SMALL_STATE(6974)] = 297896, + [SMALL_STATE(6975)] = 297903, + [SMALL_STATE(6976)] = 297910, + [SMALL_STATE(6977)] = 297917, + [SMALL_STATE(6978)] = 297924, + [SMALL_STATE(6979)] = 297931, + [SMALL_STATE(6980)] = 297938, + [SMALL_STATE(6981)] = 297945, + [SMALL_STATE(6982)] = 297952, + [SMALL_STATE(6983)] = 297959, + [SMALL_STATE(6984)] = 297966, + [SMALL_STATE(6985)] = 297973, + [SMALL_STATE(6986)] = 297980, + [SMALL_STATE(6987)] = 297987, + [SMALL_STATE(6988)] = 297994, + [SMALL_STATE(6989)] = 298001, + [SMALL_STATE(6990)] = 298008, + [SMALL_STATE(6991)] = 298015, + [SMALL_STATE(6992)] = 298022, + [SMALL_STATE(6993)] = 298029, + [SMALL_STATE(6994)] = 298036, + [SMALL_STATE(6995)] = 298043, + [SMALL_STATE(6996)] = 298050, + [SMALL_STATE(6997)] = 298057, + [SMALL_STATE(6998)] = 298064, + [SMALL_STATE(6999)] = 298071, + [SMALL_STATE(7000)] = 298078, + [SMALL_STATE(7001)] = 298085, + [SMALL_STATE(7002)] = 298092, + [SMALL_STATE(7003)] = 298099, + [SMALL_STATE(7004)] = 298106, + [SMALL_STATE(7005)] = 298113, + [SMALL_STATE(7006)] = 298120, + [SMALL_STATE(7007)] = 298127, + [SMALL_STATE(7008)] = 298134, + [SMALL_STATE(7009)] = 298141, + [SMALL_STATE(7010)] = 298148, + [SMALL_STATE(7011)] = 298155, + [SMALL_STATE(7012)] = 298162, + [SMALL_STATE(7013)] = 298169, + [SMALL_STATE(7014)] = 298176, + [SMALL_STATE(7015)] = 298183, + [SMALL_STATE(7016)] = 298190, + [SMALL_STATE(7017)] = 298197, + [SMALL_STATE(7018)] = 298204, + [SMALL_STATE(7019)] = 298211, + [SMALL_STATE(7020)] = 298218, + [SMALL_STATE(7021)] = 298225, + [SMALL_STATE(7022)] = 298232, + [SMALL_STATE(7023)] = 298239, + [SMALL_STATE(7024)] = 298246, + [SMALL_STATE(7025)] = 298253, + [SMALL_STATE(7026)] = 298260, + [SMALL_STATE(7027)] = 298267, + [SMALL_STATE(7028)] = 298274, + [SMALL_STATE(7029)] = 298281, + [SMALL_STATE(7030)] = 298288, + [SMALL_STATE(7031)] = 298295, + [SMALL_STATE(7032)] = 298302, + [SMALL_STATE(7033)] = 298309, + [SMALL_STATE(7034)] = 298316, + [SMALL_STATE(7035)] = 298323, + [SMALL_STATE(7036)] = 298330, + [SMALL_STATE(7037)] = 298337, + [SMALL_STATE(7038)] = 298344, + [SMALL_STATE(7039)] = 298351, + [SMALL_STATE(7040)] = 298358, + [SMALL_STATE(7041)] = 298365, + [SMALL_STATE(7042)] = 298372, + [SMALL_STATE(7043)] = 298379, + [SMALL_STATE(7044)] = 298386, + [SMALL_STATE(7045)] = 298393, + [SMALL_STATE(7046)] = 298400, + [SMALL_STATE(7047)] = 298407, + [SMALL_STATE(7048)] = 298414, + [SMALL_STATE(7049)] = 298421, + [SMALL_STATE(7050)] = 298428, + [SMALL_STATE(7051)] = 298435, + [SMALL_STATE(7052)] = 298442, + [SMALL_STATE(7053)] = 298449, + [SMALL_STATE(7054)] = 298456, + [SMALL_STATE(7055)] = 298463, + [SMALL_STATE(7056)] = 298470, + [SMALL_STATE(7057)] = 298477, + [SMALL_STATE(7058)] = 298484, + [SMALL_STATE(7059)] = 298491, + [SMALL_STATE(7060)] = 298498, + [SMALL_STATE(7061)] = 298505, + [SMALL_STATE(7062)] = 298512, + [SMALL_STATE(7063)] = 298519, + [SMALL_STATE(7064)] = 298526, + [SMALL_STATE(7065)] = 298533, + [SMALL_STATE(7066)] = 298540, + [SMALL_STATE(7067)] = 298547, + [SMALL_STATE(7068)] = 298554, + [SMALL_STATE(7069)] = 298561, + [SMALL_STATE(7070)] = 298568, + [SMALL_STATE(7071)] = 298575, + [SMALL_STATE(7072)] = 298582, + [SMALL_STATE(7073)] = 298589, + [SMALL_STATE(7074)] = 298596, + [SMALL_STATE(7075)] = 298603, + [SMALL_STATE(7076)] = 298610, + [SMALL_STATE(7077)] = 298617, + [SMALL_STATE(7078)] = 298624, + [SMALL_STATE(7079)] = 298631, + [SMALL_STATE(7080)] = 298638, + [SMALL_STATE(7081)] = 298645, + [SMALL_STATE(7082)] = 298652, + [SMALL_STATE(7083)] = 298659, + [SMALL_STATE(7084)] = 298666, + [SMALL_STATE(7085)] = 298673, + [SMALL_STATE(7086)] = 298680, + [SMALL_STATE(7087)] = 298687, + [SMALL_STATE(7088)] = 298694, + [SMALL_STATE(7089)] = 298701, + [SMALL_STATE(7090)] = 298708, + [SMALL_STATE(7091)] = 298715, + [SMALL_STATE(7092)] = 298722, + [SMALL_STATE(7093)] = 298729, + [SMALL_STATE(7094)] = 298736, + [SMALL_STATE(7095)] = 298743, + [SMALL_STATE(7096)] = 298750, + [SMALL_STATE(7097)] = 298757, + [SMALL_STATE(7098)] = 298764, + [SMALL_STATE(7099)] = 298771, + [SMALL_STATE(7100)] = 298778, + [SMALL_STATE(7101)] = 298785, + [SMALL_STATE(7102)] = 298792, + [SMALL_STATE(7103)] = 298799, + [SMALL_STATE(7104)] = 298806, + [SMALL_STATE(7105)] = 298813, + [SMALL_STATE(7106)] = 298820, + [SMALL_STATE(7107)] = 298827, + [SMALL_STATE(7108)] = 298834, + [SMALL_STATE(7109)] = 298841, + [SMALL_STATE(7110)] = 298848, + [SMALL_STATE(7111)] = 298855, + [SMALL_STATE(7112)] = 298862, + [SMALL_STATE(7113)] = 298869, + [SMALL_STATE(7114)] = 298876, + [SMALL_STATE(7115)] = 298883, + [SMALL_STATE(7116)] = 298890, + [SMALL_STATE(7117)] = 298897, + [SMALL_STATE(7118)] = 298904, + [SMALL_STATE(7119)] = 298911, + [SMALL_STATE(7120)] = 298918, + [SMALL_STATE(7121)] = 298925, + [SMALL_STATE(7122)] = 298932, + [SMALL_STATE(7123)] = 298939, + [SMALL_STATE(7124)] = 298946, + [SMALL_STATE(7125)] = 298953, + [SMALL_STATE(7126)] = 298960, + [SMALL_STATE(7127)] = 298967, + [SMALL_STATE(7128)] = 298974, + [SMALL_STATE(7129)] = 298981, + [SMALL_STATE(7130)] = 298988, + [SMALL_STATE(7131)] = 298995, + [SMALL_STATE(7132)] = 299002, + [SMALL_STATE(7133)] = 299009, + [SMALL_STATE(7134)] = 299016, + [SMALL_STATE(7135)] = 299023, + [SMALL_STATE(7136)] = 299030, + [SMALL_STATE(7137)] = 299037, + [SMALL_STATE(7138)] = 299044, + [SMALL_STATE(7139)] = 299051, + [SMALL_STATE(7140)] = 299058, + [SMALL_STATE(7141)] = 299065, + [SMALL_STATE(7142)] = 299072, + [SMALL_STATE(7143)] = 299079, + [SMALL_STATE(7144)] = 299086, + [SMALL_STATE(7145)] = 299093, + [SMALL_STATE(7146)] = 299100, + [SMALL_STATE(7147)] = 299107, + [SMALL_STATE(7148)] = 299114, + [SMALL_STATE(7149)] = 299121, + [SMALL_STATE(7150)] = 299128, + [SMALL_STATE(7151)] = 299135, + [SMALL_STATE(7152)] = 299142, + [SMALL_STATE(7153)] = 299149, + [SMALL_STATE(7154)] = 299156, + [SMALL_STATE(7155)] = 299163, + [SMALL_STATE(7156)] = 299170, + [SMALL_STATE(7157)] = 299177, + [SMALL_STATE(7158)] = 299184, + [SMALL_STATE(7159)] = 299191, + [SMALL_STATE(7160)] = 299198, + [SMALL_STATE(7161)] = 299205, + [SMALL_STATE(7162)] = 299212, + [SMALL_STATE(7163)] = 299219, + [SMALL_STATE(7164)] = 299226, + [SMALL_STATE(7165)] = 299233, + [SMALL_STATE(7166)] = 299240, + [SMALL_STATE(7167)] = 299247, + [SMALL_STATE(7168)] = 299254, + [SMALL_STATE(7169)] = 299261, + [SMALL_STATE(7170)] = 299268, + [SMALL_STATE(7171)] = 299275, + [SMALL_STATE(7172)] = 299282, + [SMALL_STATE(7173)] = 299289, + [SMALL_STATE(7174)] = 299296, + [SMALL_STATE(7175)] = 299303, + [SMALL_STATE(7176)] = 299310, + [SMALL_STATE(7177)] = 299317, + [SMALL_STATE(7178)] = 299324, + [SMALL_STATE(7179)] = 299331, + [SMALL_STATE(7180)] = 299338, + [SMALL_STATE(7181)] = 299345, + [SMALL_STATE(7182)] = 299352, + [SMALL_STATE(7183)] = 299359, + [SMALL_STATE(7184)] = 299366, + [SMALL_STATE(7185)] = 299373, + [SMALL_STATE(7186)] = 299380, + [SMALL_STATE(7187)] = 299387, + [SMALL_STATE(7188)] = 299394, + [SMALL_STATE(7189)] = 299401, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -341661,607 +324938,607 @@ 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), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6348), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6454), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3917), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3870), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6953), [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), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5539), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5377), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5833), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), [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), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5715), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6252), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6784), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), [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), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6753), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5584), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5454), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5889), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5707), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6238), [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), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7148), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6355), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6750), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3861), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), [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), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3927), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6791), [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), - [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4767), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), - [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), - [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5944), - [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), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), + [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5563), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5362), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5827), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5693), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6276), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7136), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4733), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), [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(1982), + [246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), + [250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), + [252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), + [254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), + [256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5587), + [258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), + [260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5382), + [262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), + [264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5841), + [266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4590), + [268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), [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(3654), + [280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7137), + [284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3942), + [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), + [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4501), + [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6905), + [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), + [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), + [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5484), + [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), + [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5881), + [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), + [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(5723), + [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6255), + [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7128), + [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5227), + [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5208), + [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4459), + [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4368), + [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4359), + [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4455), + [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4536), + [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6324), + [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6902), + [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), + [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), + [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3949), + [376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, 0, 110), + [378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4922), + [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5045), + [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5046), + [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6970), + [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), + [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), + [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5503), + [408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5393), + [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5877), + [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), + [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5691), + [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6174), + [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7168), + [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4935), + [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), + [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), + [442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, 0, 113), + [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4913), + [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5043), + [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5044), + [450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(1024), + [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(6348), + [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(6454), + [459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(3321), + [462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(3942), + [465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(3942), + [468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(102), + [471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(388), + [474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), + [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(386), + [479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(3870), + [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(6905), + [485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(64), + [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(584), + [491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(8), + [494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(1652), + [497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(576), + [500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(677), + [503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(678), + [506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(3943), + [509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(3435), + [512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(3436), + [515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(5484), + [518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(1030), + [521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(5373), + [524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(1023), + [527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(902), + [530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(5881), + [533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(4498), + [536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(116), + [539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(117), + [542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(118), + [545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(113), + [548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(5723), + [551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(6255), + [554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(1022), + [557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(7128), + [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4970), + [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5041), + [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5042), + [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), + [568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 1), + [570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_command_name, 1, 0, 1), REDUCE(sym__expression, 1, 0, 1), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5632), + [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5445), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), + [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5913), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), + [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7141), + [609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 2, 0, 61), + [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4905), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5088), + [615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 2, 0, 60), + [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4929), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5150), + [621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, 0, 80), + [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4896), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5002), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5003), + [629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, 0, 46), + [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4987), + [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), + [635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, 0, 47), + [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4879), + [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5007), + [641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, 0, 84), + [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4950), + [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5012), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4871), + [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5013), + [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5014), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4961), + [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5017), + [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5019), + [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6365), + [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7011), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3967), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5079), + [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6887), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5564), + [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5363), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5839), + [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5704), + [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6181), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7179), + [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5058), + [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5077), + [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5056), + [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5078), + [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5083), + [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5084), + [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5089), + [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5096), + [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5098), + [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5102), + [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5103), [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), + [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), + [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5750), + [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5739), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5744), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5745), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5732), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5760), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5742), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5751), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), + [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), + [803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), + [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4425), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5261), + [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4529), + [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4676), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6321), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6318), + [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5230), + [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5206), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), + [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5283), + [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5312), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), + [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4366), + [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4363), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4362), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), + [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4513), + [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4571), + [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), + [849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 1, 0, 0), + [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), + [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4566), + [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4579), + [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4738), + [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7014), + [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), + [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4725), + [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4746), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), [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), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5205), + [889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1024), + [892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(6348), + [895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(6454), + [898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(3321), + [901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(3942), + [904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(3942), + [907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(102), + [910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(388), + [913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(386), + [916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(3870), + [919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(6905), [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), + [925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(584), + [928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(8), + [931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1652), + [934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(576), + [937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(677), + [940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(678), + [943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(3943), + [946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(3435), + [949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(3436), + [952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(5484), + [955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1030), + [958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(5373), + [961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1023), + [964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(902), + [967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(5881), + [970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(4498), + [973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(116), + [976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(117), + [979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(118), + [982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(113), + [985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(5723), + [988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(6255), + [991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1022), + [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(7128), + [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3960), + [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), + [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7041), + [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), + [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5687), + [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6291), + [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), + [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), + [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), + [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), + [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5497), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), + [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5330), + [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5867), + [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), + [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5698), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7152), + [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), + [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), + [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5382), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), + [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6058), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6247), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), + [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), + [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), + [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), + [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), + [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), [1183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 4, 0, 0), - [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5762), - [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5454), + [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), [1191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 4, 0, 0), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), [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), + [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5362), + [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [1207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 2, 0, 1), + [1209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 2, 0, 1), + [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), + [1213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 2, 0, 0), + [1215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 2, 0, 0), + [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), + [1219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), + [1221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), + [1223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3654), + [1226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3654), + [1229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 1, 0, 0), + [1231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 1, 0, 0), [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), + [1245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), SHIFT(6757), + [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number, 2, 0, 0), + [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number, 2, 0, 0), + [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brace_expression, 5, 0, 0), + [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brace_expression, 5, 0, 0), + [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 10), + [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 10), + [1260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 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), + [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arithmetic_expansion, 3, 0, 0), + [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arithmetic_expansion, 3, 0, 0), + [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arithmetic_expansion, 4, 0, 0), + [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arithmetic_expansion, 4, 0, 0), + [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number, 1, 0, 0), + [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number, 1, 0, 0), + [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 4, 0, 0), + [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 4, 0, 0), + [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_expansion, 2, 0, 0), + [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_expansion, 2, 0, 0), [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), @@ -342272,7333 +325549,6816 @@ static const TSParseActionEntry ts_parse_actions[] = { [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), + [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_process_substitution, 3, 0, 0), + [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_process_substitution, 3, 0, 0), + [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_translated_string, 2, 0, 0), + [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translated_string, 2, 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), + [1320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(462), + [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), + [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), + [1329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [1331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_command_name, 1, 0, 0), SHIFT(6822), + [1334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3876), + [1337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(491), + [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3814), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), [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), + [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), + [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5724), + [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), [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), + [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), + [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 0, 2), + [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), + [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 0, 2), + [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3661), + [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3528), + [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), + [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5543), + [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5446), + [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5901), + [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4598), + [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7175), + [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 19), + [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 19), + [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), + [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), + [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), + [1412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), + [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5591), + [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5440), + [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5885), + [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4611), + [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [1432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7184), + [1440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(788), + [1443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), + [1445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(3567), + [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), + [1450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(3661), + [1453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(3528), + [1456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(3529), + [1459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(5543), + [1462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(756), + [1465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(5446), + [1468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(828), + [1471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(5901), + [1474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(4598), + [1477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(340), + [1480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(341), + [1483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(342), + [1486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(284), + [1489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(7038), + [1492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(785), + [1495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(1103), + [1498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(7175), + [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), + [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3908), + [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), + [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), + [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5623), + [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), + [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5435), + [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5905), + [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4663), + [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7140), + [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 18), + [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 18), + [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 40), + [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 40), + [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), + [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3946), + [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), + [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), + [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5667), + [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5331), + [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5895), + [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4715), + [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7145), + [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_command, 2, 0, 0), + [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_command, 2, 0, 0), + [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), + [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3525), + [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5532), + [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5424), + [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), + [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5829), + [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4591), + [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6177), + [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7173), + [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_command, 1, 0, 0), + [1621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_command, 1, 0, 0), + [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [1625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(864), + [1628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(3573), + [1631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(3681), + [1634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(3546), + [1637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(3547), + [1640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(5591), + [1643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(837), + [1646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(5440), + [1649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(904), + [1652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(5885), + [1655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(4611), + [1658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(367), + [1661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(368), + [1664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(369), + [1667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(320), + [1670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(6565), + [1673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(863), + [1676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(1292), + [1679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(7184), + [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5393), + [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), + [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), + [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3947), + [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [1700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(915), [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), + [1707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3524), + [1710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3525), + [1713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5532), + [1716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(896), + [1719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5424), + [1722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1122), + [1725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5829), + [1728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4591), + [1731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(333), + [1734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(334), + [1737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(335), + [1740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(276), + [1743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(516), + [1746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6177), + [1749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(912), + [1752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7173), + [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), + [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), + [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5581), + [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5397), + [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5872), + [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4608), + [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6184), + [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7182), + [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [1791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1099), + [1794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3542), + [1797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3543), + [1800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5581), + [1803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1176), + [1806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5397), + [1809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1243), + [1812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5872), + [1815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4608), + [1818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(361), + [1821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(362), + [1824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(363), + [1827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(312), + [1830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(523), + [1833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6184), + [1836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1098), + [1839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7182), + [1842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(949), + [1845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(3592), + [1848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(3946), + [1851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(3468), + [1854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(3469), + [1857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(5667), + [1860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(998), + [1863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(5331), + [1866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(1175), + [1869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(5895), + [1872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(4715), + [1875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(185), + [1878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(186), + [1881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(187), + [1884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(164), + [1887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(6823), + [1890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(948), + [1893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(1424), + [1896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(7145), + [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), + [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5363), + [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [1913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(910), + [1916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(3569), + [1919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(3908), + [1922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(3459), + [1925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(3460), + [1928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(5623), + [1931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(1044), + [1934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(5435), + [1937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(1136), + [1940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(5905), + [1943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(4663), + [1946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(157), + [1949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(158), + [1952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(159), + [1955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(144), + [1958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(6400), + [1961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(1031), + [1964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(1530), + [1967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(7140), + [1970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1272), + [1973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3465), + [1976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3466), + [1979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5649), + [1982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1258), + [1985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5438), + [1988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1464), + [1991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5875), + [1994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4702), + [1997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(177), + [2000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(178), + [2003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(179), + [2006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(156), + [2009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(531), + [2012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6161), + [2015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1271), + [2018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7143), + [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), + [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5377), + [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), + [2037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_statement, 2, -1, 14), + [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), + [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7044), + [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [2045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_statement, 2, -1, 14), + [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), + [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), + [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5548), + [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5453), + [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5925), + [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4600), + [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5683), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7176), + [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), + [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), + [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5600), + [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5394), + [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5860), + [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4623), + [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6138), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7138), + [2111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1257), + [2114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3453), + [2117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3454), + [2120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5600), + [2123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1210), + [2126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5394), + [2129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1368), + [2132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5860), + [2135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4623), + [2138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(137), + [2141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(138), + [2144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(139), + [2147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(135), + [2150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(538), + [2153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6138), + [2156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1256), + [2159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7138), + [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3465), + [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), + [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5649), + [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5438), + [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5875), + [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4702), + [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6161), + [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7143), + [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5373), + [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [2206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_statement, 3, -1, 36), + [2208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_statement, 3, -1, 36), + [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [2212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(1182), + [2215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(3590), + [2218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(3947), + [2221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(1192), + [2224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(6891), + [2227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(1181), + [2230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(1319), + [2233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), + [2235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(3665), + [2238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(7044), + [2241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(606), + [2244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), + [2246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(3530), + [2249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(3531), + [2252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(5548), + [2255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(1325), + [2258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(5453), + [2261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(1456), + [2264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(5925), + [2267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(4600), + [2270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(343), + [2273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(344), + [2276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(345), + [2279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(288), + [2282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(5683), + [2285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(1318), + [2288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(7176), + [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [2297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), + [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), + [2301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 3, 0, 0), + [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 3, 0, 0), + [2305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 1, 0, 0), + [2307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 1, 0, 0), + [2309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 2, 0, 4), + [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 2, 0, 4), + [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 2, 0, 0), + [2321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 2, 0, 0), + [2323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1180), + [2326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), + [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), + [2330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3526), + [2333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3527), + [2336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5538), + [2339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1093), + [2342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5434), + [2345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1225), + [2348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5868), + [2351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4594), + [2354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(337), + [2357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(338), + [2360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(339), + [2363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(280), + [2366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(559), + [2369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1178), + [2372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7174), + [2375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [2379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6261), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), + [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7066), + [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), + [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), + [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5598), + [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5450), + [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), + [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5892), + [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4612), + [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5685), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7185), + [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [2425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_command, 2, 0, 0), + [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_command, 2, 0, 0), + [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), + [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), + [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5538), + [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5434), + [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5868), + [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4594), + [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7174), + [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3593), + [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3965), + [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [2471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1513), + [2474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1535), + [2477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(569), + [2480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6261), + [2483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1512), + [2486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(1537), + [2489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(3685), + [2492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(7066), + [2495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(634), + [2498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(3548), + [2501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(3549), + [2504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(5598), + [2507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(1397), + [2510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(5450), + [2513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(1625), + [2516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(5892), + [2519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(4612), + [2522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(370), + [2525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(371), + [2528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(372), + [2531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(324), + [2534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(5685), + [2537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(1536), + [2540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(7185), + [2543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_command, 1, 0, 0), + [2545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_command, 1, 0, 0), + [2547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [2551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5421), + [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3974), + [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3534), + [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), + [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5559), + [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3820), + [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5359), + [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4009), + [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5832), + [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4603), + [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [2583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [2585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), + [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7178), + [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [2597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), + [2601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), + [2603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5586), + [2605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5403), + [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [2611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5878), + [2613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4609), + [2615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [2617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [2619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [2621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7183), + [2629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3976), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [2633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), + [2635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3887), + [2637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7045), + [2639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [2641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), + [2643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), + [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5513), + [2647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [2649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5356), + [2651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [2653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5907), + [2655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4514), + [2657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [2659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [2661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [2663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5681), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7153), + [2671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [2675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), + [2677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), + [2685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5479), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5458), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [2693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [2695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5899), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), + [2699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7151), + [2713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [2719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(1569), + [2722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(3887), + [2725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(7045), + [2728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(718), + [2731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(3484), + [2734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(3485), + [2737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(5513), + [2740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(1605), + [2743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(5356), + [2746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(1746), + [2749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(5907), + [2752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(4514), + [2755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(217), + [2758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(218), + [2761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(219), + [2764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(196), + [2767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(5681), + [2770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(1565), + [2773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(7153), + [2776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [2778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), + [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3926), + [2782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6758), + [2784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [2786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), + [2788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3495), + [2790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5594), + [2792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [2794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5448), + [2796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5939), + [2800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4527), + [2802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [2804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [2806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [2808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5684), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7158), + [2816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1206), + [2819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3544), + [2822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3545), + [2825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5586), + [2828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1347), + [2831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5403), + [2834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1357), + [2837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5878), + [2840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4609), + [2843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(364), + [2846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(365), + [2849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(366), + [2852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(316), + [2855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(598), + [2858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1284), + [2861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7183), + [2864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(1656), + [2867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(3926), + [2870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(6758), + [2873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(685), + [2876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(3494), + [2879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(3495), + [2882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(5594), + [2885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(1601), + [2888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(5448), + [2891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(1781), + [2894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(5939), + [2897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(4527), + [2900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(241), + [2903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(242), + [2906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(243), + [2909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(216), + [2912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(5684), + [2915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(1635), + [2918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(7158), + [2921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [2923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [2925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), + [2927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [2931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1400), + [2934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3323), + [2937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3467), + [2940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5659), + [2943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1439), + [2946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5387), + [2949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1585), + [2952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5928), + [2955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4708), + [2958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(181), + [2961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(182), + [2964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(183), + [2967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(160), + [2970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(605), + [2973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1398), + [2976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7144), + [2979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [2981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), + [2983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), + [2985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5659), + [2987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [2989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5387), + [2991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [2993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5928), + [2995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4708), + [2997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [2999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [3001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [3003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [3005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7144), + [3011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), + [3013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), + [3015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), + [3017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5609), + [3019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [3021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5417), + [3023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), + [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5882), + [3027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4630), + [3029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [3031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [3033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [3035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7139), + [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4141), + [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), + [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3533), + [3049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5553), + [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3993), + [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5405), + [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4333), + [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5886), + [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4602), + [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7177), + [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), + [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4037), + [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), + [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), + [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5608), + [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3985), + [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5336), + [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4218), + [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5908), + [3093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4614), + [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7187), + [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4042), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), + [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), + [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5371), + [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), + [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3939), + [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5676), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [3147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(1965), + [3150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(3939), + [3153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(720), + [3156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(1877), + [3159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(5676), + [3162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(1964), + [3165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(1684), + [3168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(3593), + [3171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(3965), + [3174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(1702), + [3177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(7005), + [3180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(1683), + [3183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1532), + [3186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3455), + [3189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3456), + [3192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5609), + [3195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1367), + [3198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5417), + [3201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1697), + [3204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5882), + [3207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4630), + [3210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(141), + [3213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(142), + [3216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(143), + [3219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(140), + [3222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(632), + [3225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1506), + [3228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7139), + [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4829), + [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), + [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6011), + [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), + [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), + [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), + [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5574), + [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4850), + [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5427), + [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4649), + [3257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5938), + [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4524), + [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [3267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5702), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4828), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7157), + [3275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), + [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5431), + [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6033), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6040), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5953), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5986), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5997), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5999), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6003), + [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4295), + [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), + [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3489), + [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5544), + [3305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4142), + [3307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5385), + [3309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4101), + [3311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5873), + [3313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4518), + [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [3317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7155), + [3327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4297), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), + [3331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4164), + [3333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), + [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), + [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5602), + [3339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4030), + [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5460), + [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4428), + [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5902), + [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4613), + [3349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [3351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [3353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [3355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7186), + [3361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4174), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5946), + [3367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(1979), + [3370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(3587), + [3373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(3605), + [3376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(3480), + [3379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(3481), + [3382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(5479), + [3385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(2033), + [3388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(5458), + [3391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(1979), + [3394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(2067), + [3397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(5899), + [3400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(4507), + [3403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(209), + [3406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(210), + [3409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(211), + [3412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(188), + [3415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(7012), + [3418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(1978), + [3421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(2397), + [3424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 39), SHIFT_REPEAT(7151), + [3427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [3429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5452), + [3431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [3435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [3437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [3441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), + [3443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5956), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5948), + [3451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [3455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [3459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4319), + [3461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6034), + [3467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4246), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), + [3471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1629), + [3474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1667), + [3477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(671), + [3480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1628), + [3483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [3485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), + [3487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [3489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6292), + [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [3495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2148), + [3498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2166), + [3501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(675), + [3504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6292), + [3507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2147), + [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [3514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [3516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [3520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4327), + [3522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4024), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), + [3526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), + [3532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5529), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5410), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [3540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), + [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5857), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), + [3546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [3554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6169), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7149), + [3562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [3564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [3568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), + [3570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [3574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2199), + [3577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3476), + [3580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3477), + [3583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5529), + [3586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2267), + [3589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5410), + [3592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2199), + [3595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2447), + [3598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5857), + [3601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4504), + [3604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(201), + [3607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(202), + [3610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(203), + [3613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(180), + [3616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(690), + [3619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6169), + [3622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2198), + [3625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7149), + [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4325), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), + [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4356), + [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), + [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3487), + [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5525), + [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4217), + [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5369), + [3644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4236), + [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5840), + [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4516), + [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), + [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7154), + [3662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4397), + [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), + [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [3674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), + [3676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [3680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), + [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5330), + [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), + [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4447), + [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4225), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), + [3700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4449), + [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), + [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4407), + [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4171), + [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), + [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4409), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), + [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), + [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), + [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), + [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), + [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6910), + [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6910), + [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), + [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5647), + [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5390), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), + [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5834), + [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), + [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5675), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7161), + [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5458), + [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [3772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4698), + [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4349), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), + [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4700), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), + [3782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [3786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(2380), + [3789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(3597), + [3792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(6910), + [3795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(3597), + [3798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(974), + [3801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(6910), + [3804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(3500), + [3807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(3501), + [3810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(5647), + [3813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(2421), + [3816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(5390), + [3819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(2380), + [3822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(2479), + [3825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(5834), + [3828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(4534), + [3831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(253), + [3834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(254), + [3837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(255), + [3840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(228), + [3843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(5675), + [3846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(2376), + [3849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(7161), + [3852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), SHIFT(7007), + [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4486), + [3857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4287), + [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), + [3861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(2396), + [3864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(3660), + [3867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(1035), + [3870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(2412), + [3873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(5677), + [3876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(2395), + [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), + [3881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), + [3883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), + [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5677), + [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [3891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4484), + [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), + [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), + [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), + [3899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3707), + [3902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3707), + [3905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [3907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), + [3909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [3913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 2, 0, 0), + [3915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 2, 0, 0), + [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3717), + [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), + [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), + [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), + [3925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3717), + [3928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3717), + [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3721), + [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), + [3935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), + [3937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_not_pipeline, 1, 0, 0), + [3939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_not_pipeline, 1, 0, 0), + [3941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(6178), + [3944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), + [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), + [3948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3721), + [3951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3721), + [3954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 37), + [3956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 37), + [3958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), + [3960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), + [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7019), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7019), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), + [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5517), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [3982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), + [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5903), + [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), + [3988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5678), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7170), + [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), + [4004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 3, 0, 23), + [4006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 3, 0, 23), + [4008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 3, 0, 4), + [4010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 3, 0, 4), + [4012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [4014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [4016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [4018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 1, 0, 0), + [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [4022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), SHIFT(7008), + [4025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2306), + [4028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2322), + [4031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(781), + [4034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2305), + [4037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, 0, 0), + [4039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, 0, 0), + [4041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [4045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 1, 0, 16), + [4047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 1, 0, 16), + [4049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(2535), + [4052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(3641), + [4055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(7019), + [4058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(3641), + [4061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(1171), + [4064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(7019), + [4067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(3518), + [4070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(3519), + [4073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(5517), + [4076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(2561), + [4079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(5411), + [4082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(2535), + [4085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(2822), + [4088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(5903), + [4091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(4575), + [4094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(317), + [4097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(318), + [4100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(319), + [4103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(264), + [4106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(5678), + [4109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(2533), + [4112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(7170), + [4115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 1, 0, 17), + [4117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 1, 0, 17), + [4119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), + [4121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), + [4123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 2, 0, 10), + [4125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 2, 0, 10), + [4127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), + [4129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5444), + [4131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [4135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3726), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), + [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3919), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6156), + [4147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [4151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(987), + [4154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3919), + [4157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3919), + [4160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3753), + [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), + [4170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3726), + [4173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3726), + [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [4178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [4180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [4184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(6188), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [4191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [4195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4866), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [4201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5477), + [4203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4734), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4866), + [4209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4878), + [4211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5911), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), + [4215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4852), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7163), + [4227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4772), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4772), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), + [4233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), + [4239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5610), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [4247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), + [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5837), + [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), + [4253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [4261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7150), + [4267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), + [4269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5445), + [4271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), + [4281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), + [4285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), SHIFT(6875), + [4288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3753), + [4291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3753), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [4296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2408), + [4299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3478), + [4302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3479), + [4305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5610), + [4308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2349), + [4311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5441), + [4314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2408), + [4317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2476), + [4320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5837), + [4323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4506), + [4326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(205), + [4329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(206), + [4332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(207), + [4335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(184), + [4338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(887), + [4341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2407), + [4344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7150), + [4347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4859), + [4349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4754), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4858), + [4353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4861), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4860), + [4357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), + [4361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3714), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [4365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [4367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [4371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(6152), + [4374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [4376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(6164), + [4379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [4381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [4385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [4387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), + [4391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 1, 0, 1), + [4393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 1, 0, 1), + [4395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1109), + [4398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 1, 0, 0), + [4400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 1, 0, 0), + [4402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 1, 0, 0), + [4404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [4408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), + [4410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5378), + [4412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [4416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), + [4418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5390), + [4420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [4424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [4426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [4430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1150), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [4441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3596), + [4444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3596), + [4447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 3, 0, 25), + [4449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 3, 0, 25), + [4451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 3, 0, 24), + [4453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 3, 0, 24), + [4455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__extglob_blob, 1, 0, 0), + [4457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extglob_blob, 1, 0, 0), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), + [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4564), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), + [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), + [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), + [4475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3633), + [4478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3633), + [4481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 2, 0, 8), + [4483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 2, 0, 8), + [4485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 2, 0, 9), + [4487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 2, 0, 9), + [4489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 3, 0, 21), + [4491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 3, 0, 21), + [4493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 3, 0, 22), + [4495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 3, 0, 22), + [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [4499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3712), + [4502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3712), + [4505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4976), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), + [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [4511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5522), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4818), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5413), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4976), + [4519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5050), + [4521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5915), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), + [4525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7171), + [4537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4902), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4902), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), + [4543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), SHIFT(6909), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), + [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [4550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3714), + [4553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3714), + [4556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4979), + [4558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4843), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4978), + [4562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4981), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4980), + [4566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), SHIFT(7018), + [4569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [4571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1324), + [4574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), + [4578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3716), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), + [4584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3716), + [4587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3716), + [4590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [4592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), + [4594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5410), + [4596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), + [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [4600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5383), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), + [4614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [4616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [4620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(6166), + [4623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1261), + [4626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(6173), + [4629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3724), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), + [4633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), + [4635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5441), + [4637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [4641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [4645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 1, 0, 3), + [4647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 1, 0, 3), + [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), + [4651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5411), + [4653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), + [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), + [4675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [4681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [4687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [4691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [4697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), + [4707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3723), + [4710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3723), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), + [4715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [4717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [4723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3724), + [4726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3724), + [4729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5040), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [4735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5512), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5406), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5040), + [4743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5164), + [4745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5894), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), + [4749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5039), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7169), + [4761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5057), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5057), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5053), + [4767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [4771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [4775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1315), + [4778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 1, 0, 1), + [4780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 1, 0, 1), + [4782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 1, 0, 0), + [4784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 1, 0, 0), + [4786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [4792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3725), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [4796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3918), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), + [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5354), + [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), + [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [4810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3922), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), + [4818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [4822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3922), + [4825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3922), + [4828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [4830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1393), + [4833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), + [4835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), + [4843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3718), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), + [4849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [4851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3611), + [4854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3611), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), + [4863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1547), + [4866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3619), + [4869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3619), + [4872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3718), + [4875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3718), + [4878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1451), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), + [4885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3725), + [4888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3725), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [4895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 1, 0, 16), + [4897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 1, 0, 16), + [4899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 1, 0, 17), + [4901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 1, 0, 17), + [4903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [4905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3918), + [4908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3918), + [4911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1395), + [4914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), SHIFT(7043), + [4917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3727), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [4921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3938), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), + [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), + [4933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negated_command, 2, 0, 0), + [4935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negated_command, 2, 0, 0), + [4937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3938), + [4940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3938), + [4943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3727), + [4946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3727), + [4949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [4955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [4963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [4965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), + [4967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), + [4969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), + [4971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), + [4973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1717), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), + [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), + [4980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3626), + [4983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3626), + [4986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5212), + [4988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3512), + [4990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), + [4992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5499), + [4994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5195), + [4996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5374), + [4998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5262), + [5000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5859), + [5002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4565), + [5004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [5006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [5008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [5010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5210), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7167), + [5016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5222), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), + [5020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1, 0, 3), + [5022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), + [5024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), REDUCE(aux_sym_command_repeat1, 1, 0, 3), + [5027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), + [5029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), REDUCE(aux_sym_command_repeat1, 1, 0, 3), + [5032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 3), + [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), + [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), + [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), + [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), + [5048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1649), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), + [5053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), + [5057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1716), + [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [5062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), + [5066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), + [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), + [5070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), + [5074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), + [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), + [5078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), + [5082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1976), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6452), + [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), + [5091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [5095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [5099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1850), + [5102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1805), + [5105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1845), + [5108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(6176), + [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), + [5113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [5115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1806), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), + [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [5122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3674), + [5125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [5127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heredoc_pipeline, 2, 0, 0), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), + [5131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3698), + [5134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3698), + [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), + [5139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heredoc_expression, 2, 0, 67), + [5141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1970), + [5144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3679), + [5147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3679), + [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [5152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [5156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(6171), + [5159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), + [5161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 1, 0, 3), + [5163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 1, 0, 3), + [5165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 4, 0, 0), + [5167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 4, 0, 0), + [5169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5, 0, 4), + [5171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5, 0, 4), + [5173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_heredoc_body, 2, 0, 0), + [5175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_heredoc_body, 2, 0, 0), + [5177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__heredoc_body, 2, 0, 0), + [5179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heredoc_body, 2, 0, 0), + [5181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5, 0, 0), + [5183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5, 0, 0), + [5185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5, 0, 94), + [5187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5, 0, 94), + [5189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5, 0, 95), + [5191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5, 0, 95), + [5193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5, 0, 96), + [5195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5, 0, 96), + [5197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 6, 0, 4), + [5199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 6, 0, 4), + [5201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 6, 0, 125), + [5203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 6, 0, 125), + [5205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 6, 0, 126), + [5207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 6, 0, 126), + [5209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 6, 0, 127), + [5211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 6, 0, 127), + [5213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 6, 0, 128), + [5215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 6, 0, 128), + [5217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 7, 0, 150), + [5219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 7, 0, 150), + [5221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2071), + [5224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3898), + [5227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), + [5229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2133), + [5232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2552), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), + [5239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1442), + [5242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(983), + [5245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(5819), + [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [5250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(486), + [5253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2127), + [5256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1385), + [5259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1584), + [5262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2999), + [5265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(5727), + [5268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(6069), + [5271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1154), + [5274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2350), + [5277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2729), + [5280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2983), + [5283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1540), + [5286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1712), + [5289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1047), + [5292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(3246), + [5295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2316), + [5298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(456), + [5301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2430), + [5304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2457), + [5307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2075), + [5310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1771), + [5313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1777), + [5316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4276), + [5319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4114), + [5322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4875), + [5325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2881), + [5328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4682), + [5331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1791), + [5334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(6093), + [5337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2392), + [5340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2542), + [5343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(5119), + [5346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4882), + [5349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(5784), + [5352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(6112), + [5355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4007), + [5358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(3033), + [5361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(6232), + [5364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(5031), + [5367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2643), + [5370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2225), + [5373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(6028), + [5376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(5299), + [5379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2354), + [5382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(776), + [5385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(5177), + [5388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2803), + [5391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(5025), + [5394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(5787), + [5397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1064), + [5400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1070), + [5403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1344), + [5406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(849), + [5409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1484), + [5412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4215), + [5415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4086), + [5418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(858), + [5421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4094), + [5424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1227), + [5427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1238), + [5430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1469), + [5433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(891), + [5436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1619), + [5439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4353), + [5442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4278), + [5445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4282), + [5448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(938), + [5451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2099), + [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), + [5458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3669), + [5461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1501), + [5464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), + [5468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2302), + [5471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [5483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2328), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), + [5490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3647), + [5493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), + [5495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5407), + [5497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), + [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [5501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2310), + [5504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5926), + [5506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), + [5508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), + [5510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5308), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [5514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), + [5516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), + [5518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5613), + [5520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5850), + [5522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5343), + [5524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6083), + [5526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5851), + [5528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4530), + [5530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [5532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [5534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [5536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5855), + [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5754), + [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7159), + [5544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), + [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6592), + [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), + [5550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3110), + [5552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4710), + [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [5556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), + [5558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4711), + [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [5562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), + [5564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4543), + [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [5568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3603), + [5571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3070), + [5573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4544), + [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), + [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), + [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), + [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), + [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), + [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), + [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6436), + [5601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), + [5603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4761), + [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [5607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3089), + [5609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4766), + [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), + [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), + [5617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), + [5619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4755), + [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [5623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), + [5625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4757), + [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6581), + [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), + [5639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3138), + [5641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4629), + [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6064), + [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), + [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6689), + [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [5653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), + [5655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4503), + [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6248), + [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), + [5663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2358), + [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6903), + [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [5672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__extglob_blob, 2, 0, 0), + [5674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extglob_blob, 2, 0, 0), + [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [5678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), + [5680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4679), + [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), + [5686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3659), + [5689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), + [5691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4693), + [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6949), + [5701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2383), + [5704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), + [5706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5266), + [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), + [5712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), + [5714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5282), + [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [5720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3700), + [5723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2424), + [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [5730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), + [5732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5255), + [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), + [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), + [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), + [5742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2558), + [5745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, 0, 41), + [5747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, 0, 41), + [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [5751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3664), + [5754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [5756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [5758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 12), + [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [5762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 12), + [5764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 44), + [5766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 44), + [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), + [5770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 41), + [5772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 41), + [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [5776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 42), + [5778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 42), + [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), + [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), + [5786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_expression, 2, 0, 27), + [5788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_expression, 2, 0, 27), + [5790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), + [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), + [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [5796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_literal, 1, 0, 0), + [5798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_literal, 1, 0, 0), + [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [5802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), + [5804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2580), + [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), + [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), + [5811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), + [5813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3701), + [5816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2596), + [5819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, 0, 42), + [5821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, 0, 42), + [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [5825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__extglob_blob, 3, 0, 0), + [5827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extglob_blob, 3, 0, 0), + [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), + [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), + [5835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), + [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), + [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [5845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), + [5847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), + [5849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), + [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [5853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), + [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [5857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), + [5859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), + [5861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), + [5863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), + [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [5869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_binary_expression, 3, 0, 44), + [5871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_binary_expression, 3, 0, 44), + [5873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_unary_expression, 2, 0, 12), + [5875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_unary_expression, 2, 0, 12), + [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5793), + [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6433), + [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6898), + [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6580), + [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6688), + [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5733), + [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), + [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), + [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), + [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6121), + [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5138), + [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), + [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6280), + [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), + [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), + [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), + [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), + [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5064), + [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), + [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), + [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), + [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), + [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4401), + [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), + [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), + [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [6001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3710), + [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [6006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_postfix_expression, 2, 0, 27), + [6008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_postfix_expression, 2, 0, 27), + [6010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_ternary_expression, 5, 0, 77), + [6012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_ternary_expression, 5, 0, 77), + [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [6016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), + [6018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [6020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [6022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [6026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 5, 0, 77), + [6028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 77), + [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [6034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), + [6036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [6038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [6042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), + [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [6048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), + [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [6052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression_not_assignment, 1, 0, 0), + [6054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4703), + [6056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression_not_assignment, 1, 0, 0), + [6058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4034), + [6060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4033), + [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), + [6064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2784), + [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [6071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2801), + [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [6076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, 0, 41), + [6078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, 0, 41), + [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6931), + [6082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, 0, 42), + [6084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, 0, 42), + [6086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_parenthesized_expression, 3, 0, 0), + [6088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_parenthesized_expression, 3, 0, 0), + [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [6092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_expression, 1, 0, 5), + [6094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_expression, 1, 0, 5), + [6096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_expression, 1, 0, 6), + [6098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_expression, 1, 0, 6), + [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6537), + [6102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_expression, 1, 0, 7), + [6104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_expression, 1, 0, 7), + [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [6110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), + [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5224), + [6114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), + [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [6122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [6124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [6126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), + [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [6130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [6134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [6136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), + [6138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), + [6140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), + [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [6150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arithmetic_expansion_repeat1, 2, 0, 0), + [6152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_binary_expression, 3, 0, 44), + [6154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), + [6156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4826), + [6158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_binary_expression, 3, 0, 44), + [6160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [6168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), + [6170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [6172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), + [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [6176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [6180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [6182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), + [6184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4760), + [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [6194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [6196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), + [6198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), + [6200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [6206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), + [6208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [6210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [6214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), + [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [6222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), + [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [6228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [6236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), + [6238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [6240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), + [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [6244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), + [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [6248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [6250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), + [6252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), + [6254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [6262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4827), + [6264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4855), + [6266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4836), + [6268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4775), + [6270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4832), + [6272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4778), + [6274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4817), + [6276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4831), + [6278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4835), + [6280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4808), + [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), + [6284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_parenthesized_expression, 4, 0, 0), + [6286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_parenthesized_expression, 4, 0, 0), + [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), + [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), + [6292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4625), + [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), + [6296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3146), + [6299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [6301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), + [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), + [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), + [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), + [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), + [6323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression_not_assignment, 1, 0, 5), + [6325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression_not_assignment, 1, 0, 5), + [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6351), + [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [6331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression_not_assignment, 1, 0, 7), + [6333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression_not_assignment, 1, 0, 7), + [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4684), + [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), + [6339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4262), + [6341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4247), + [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), + [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [6347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_parenthesized_expression, 3, 0, 0), + [6349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_parenthesized_expression, 3, 0, 0), + [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5228), + [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [6357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4054), + [6359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5366), + [6361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4053), + [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), + [6365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4659), + [6367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4235), + [6369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4234), + [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), + [6373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3083), + [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5314), + [6378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_unary_expression, 2, 0, 12), + [6380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_unary_expression, 2, 0, 12), + [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [6384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_postfix_expression, 2, 0, 27), + [6386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_postfix_expression, 2, 0, 27), + [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), + [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), + [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), + [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), + [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), + [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6330), + [6410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression, 1, 0, 0), + [6412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4807), + [6414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression, 1, 0, 0), + [6416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3329), + [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), + [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), + [6426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3333), + [6428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3334), + [6430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3335), + [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [6434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), + [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [6438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), + [6440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), + [6442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), + [6444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), + [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), + [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [6452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4505), + [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5850), + [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5343), + [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5926), + [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), + [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [6472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4569), + [6474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3173), + [6477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4109), + [6479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4108), + [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), + [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4773), + [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4774), + [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4771), + [6491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4789), + [6493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4790), + [6495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4793), + [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4801), + [6499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4802), + [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4802), + [6503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4803), + [6505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4806), + [6507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4814), + [6509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4815), + [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [6513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), + [6515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3395), + [6517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), + [6519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3397), + [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4797), + [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4809), + [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4810), + [6537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4811), + [6539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4812), + [6541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4821), + [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4824), + [6545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4833), + [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4833), + [6549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4851), + [6551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4853), + [6553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4867), + [6555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4868), + [6557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), + [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), + [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [6565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), + [6567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3390), + [6569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3391), + [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), + [6573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3393), + [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), + [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [6585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4560), + [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [6591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), + [6593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [6595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), + [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [6599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), + [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [6603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), + [6605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [6607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [6609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [6613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4561), + [6615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4378), + [6617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4377), + [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), + [6621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4239), + [6623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5351), + [6625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4238), + [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), + [6629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), + [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [6635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4764), + [6637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4765), + [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), + [6641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5302), + [6643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5304), + [6645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 20), + [6647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 20), SHIFT_REPEAT(3814), + [6650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 20), SHIFT_REPEAT(3814), + [6653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 20), SHIFT_REPEAT(1882), + [6656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 20), SHIFT_REPEAT(3815), + [6659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 20), + [6661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 20), SHIFT_REPEAT(5724), + [6664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 20), SHIFT_REPEAT(6156), + [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [6669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4257), + [6671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4254), + [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), + [6675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4029), + [6677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5342), + [6679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4019), + [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), + [6683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6046), + [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [6691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5493), + [6693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6298), + [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5340), + [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6046), + [6699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5790), + [6701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5854), + [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), + [6705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, 0, 90), + [6707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6243), + [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6341), + [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6038), + [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7166), + [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), + [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [6727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4441), + [6729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6361), + [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6361), + [6733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4481), + [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), + [6737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6036), + [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6036), + [6741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 2, 0, 50), + [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6373), + [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5978), + [6747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4441), + [6750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), + [6752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), + [6754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3492), + [6757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3493), + [6760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5574), + [6763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4481), + [6766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5427), + [6769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4649), + [6772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5938), + [6775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4524), + [6778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(237), + [6781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(238), + [6784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(239), + [6787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(212), + [6790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4429), + [6793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7157), + [6796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3640), + [6799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5884), + [6802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3402), + [6805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3496), + [6808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3497), + [6811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5613), + [6814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5850), + [6817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5343), + [6820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5884), + [6823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6083), + [6826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5851), + [6829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4530), + [6832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(245), + [6835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(246), + [6838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(247), + [6841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(220), + [6844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5858), + [6847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5754), + [6850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7159), + [6853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6315), + [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6315), + [6857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6360), + [6859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5765), + [6861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5767), + [6863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4992), + [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5767), + [6867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2, 0, 12), + [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5717), + [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7040), + [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4794), + [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), + [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6360), + [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6087), + [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [6883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6346), + [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6346), + [6887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5989), + [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5989), + [6891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 3, 0, 52), + [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6300), + [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5988), + [6897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6308), + [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6308), + [6901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5438), + [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), + [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [6923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), + [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [6929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 1, 0, 0), + [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5755), + [6933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4308), + [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [6941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5483), + [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), + [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), + [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), + [6949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4017), + [6951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5922), + [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), + [6955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [6963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4413), + [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), + [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), + [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7164), + [6971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4911), + [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), + [6979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5489), + [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4819), + [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5350), + [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), + [6987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5049), + [6989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5835), + [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), + [6993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [7001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5213), + [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5213), + [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4894), + [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7165), + [7009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4658), + [7011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4657), + [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), + [7015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5394), + [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), + [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [7037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [7043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), + [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), + [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [7065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [7071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), + [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [7079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5527), + [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5421), + [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [7087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [7089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5866), + [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), + [7093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [7101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7172), + [7109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4270), + [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), + [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), + [7117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4002), + [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), + [7125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5568), + [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), + [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5366), + [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), + [7133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4021), + [7135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5846), + [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), + [7139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [7147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4454), + [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), + [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7180), + [7155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [7163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5511), + [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5431), + [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [7171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [7173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5918), + [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), + [7177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [7185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7119), + [7193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), + [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), + [7201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5638), + [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5452), + [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [7209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [7211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5861), + [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), + [7215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [7223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), + [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7142), + [7231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), + [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), + [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [7237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), + [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [7243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4338), + [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), + [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), + [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), + [7251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4839), + [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4747), + [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4839), + [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), + [7259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), + [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), + [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [7281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [7287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), + [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), + [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), + [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), + [7295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), + [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), + [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [7303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5629), + [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5378), + [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [7311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), + [7313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5864), + [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), + [7317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [7325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), + [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7160), + [7333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), + [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), + [7341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5668), + [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5407), + [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), + [7349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), + [7351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5871), + [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), + [7355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [7363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), + [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), + [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7146), + [7371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4145), + [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [7379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5615), + [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), + [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5351), + [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), + [7387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4226), + [7389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5912), + [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), + [7393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [7401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4633), + [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), + [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), + [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7188), + [7409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), + [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [7417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [7425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [7433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), + [7441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5575), + [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5371), + [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [7449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [7451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5862), + [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), + [7455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [7463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7181), + [7471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 1, 0, 13), + [7473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2, 0, 33), + [7475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), + [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), + [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [7487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), + [7489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3324), + [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [7493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5708), + [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5420), + [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [7499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), + [7501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5865), + [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), + [7505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [7511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), + [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [7517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), + [7519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3408), + [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [7524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), + [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [7528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), + [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [7532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), + [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [7538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2813), + [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [7542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), + [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [7546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), + [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [7550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), + [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [7554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), + [7556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4916), + [7558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5419), + [7560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4965), + [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), + [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [7566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), + [7568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3559), + [7571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3560), + [7574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3449), + [7577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3324), + [7580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3324), + [7583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5708), + [7586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5420), + [7589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2985), + [7592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2653), + [7595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5865), + [7598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4508), + [7601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(104), + [7604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(105), + [7607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(106), + [7610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2985), + [7613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2393), + [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [7618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), + [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [7622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851), + [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [7626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), + [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [7630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), + [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [7634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), + [7636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [7638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), + [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [7642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), + [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [7646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), + [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [7650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), + [7652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5135), + [7654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5400), + [7656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5134), + [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5134), + [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [7662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), + [7664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5910), + [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5910), + [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5909), + [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), + [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), + [7674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [7676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), + [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [7680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5694), + [7682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5426), + [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [7686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), + [7688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5893), + [7690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), + [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [7696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [7698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), + [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [7704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), + [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [7708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), + [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [7712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), + [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [7716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2879), + [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [7720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), + [7722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [7724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), + [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), + [7728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), + [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [7732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), + [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [7736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), + [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [7740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), + [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), + [7744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), + [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [7748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), + [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [7752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), + [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [7756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2964), + [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [7760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), + [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [7764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), + [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [7768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), + [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [7772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), + [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [7776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), + [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [7780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), + [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [7784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), + [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [7788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), + [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [7792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), + [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [7796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), + [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [7800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), + [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [7804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), + [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [7808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), + [7810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5107), + [7812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5413), + [7814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5101), + [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5101), + [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6012), + [7820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4788), + [7823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3490), + [7826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3491), + [7829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5557), + [7832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4784), + [7835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5396), + [7838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4788), + [7841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4927), + [7844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5896), + [7847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4520), + [7850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(229), + [7853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(230), + [7856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(231), + [7859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(208), + [7862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4783), + [7865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7156), + [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [7870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), + [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [7874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), + [7876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5996), + [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5996), + [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5994), + [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), + [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), + [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [7888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), + [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [7892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5697), + [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5463), + [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [7898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), + [7900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5932), + [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), + [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [7910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2907), + [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), + [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [7916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), + [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [7920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), + [7922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4788), + [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [7930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5557), + [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), + [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), + [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4788), + [7938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4927), + [7940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5896), + [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4520), + [7944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), + [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7156), + [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6032), + [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [7960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 68), SHIFT_REPEAT(4829), + [7963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__heredoc_command, 2, 0, 68), + [7965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 68), SHIFT_REPEAT(3492), + [7968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 68), SHIFT_REPEAT(3493), + [7971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 68), SHIFT_REPEAT(5574), + [7974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 68), SHIFT_REPEAT(4850), + [7977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 68), SHIFT_REPEAT(5427), + [7980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 68), SHIFT_REPEAT(4649), + [7983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 68), SHIFT_REPEAT(5938), + [7986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 68), SHIFT_REPEAT(4524), + [7989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 68), SHIFT_REPEAT(237), + [7992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 68), SHIFT_REPEAT(238), + [7995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 68), SHIFT_REPEAT(239), + [7998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 68), SHIFT_REPEAT(212), + [8001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__heredoc_command, 2, 0, 68), SHIFT_REPEAT(4828), + [8004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__heredoc_command, 2, 0, 68), SHIFT_REPEAT(7157), + [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [8013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2969), + [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), + [8017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), + [8019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [8021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972), + [8023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [8025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), + [8027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [8029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2974), + [8031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [8033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2975), + [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [8037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), + [8039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), + [8041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), + [8043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [8045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), + [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [8049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2979), + [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), + [8053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2980), + [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [8057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), + [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [8061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2986), + [8063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [8067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), + [8069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [8071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6113), + [8073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5931), + [8075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5931), + [8077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5919), + [8079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6104), + [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), + [8083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), + [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [8087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), + [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [8093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [8097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5245), + [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5247), + [8101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [8103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [8105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [8107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [8109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), + [8111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), + [8113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [8115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [8119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [8121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), + [8123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4517), + [8125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [8127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), + [8129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [8131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), + [8133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [8135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), + [8137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [8139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3111), + [8141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [8143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), + [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5967), + [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5995), + [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [8153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), + [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [8157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), + [8159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [8161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3152), + [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [8165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), + [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5955), + [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5969), + [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [8173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), + [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [8177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), + [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6044), + [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6049), + [8183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [8185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), + [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [8189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), + [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6026), + [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6059), + [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [8197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), + [8199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), + [8201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), + [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6007), + [8205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6017), + [8207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [8209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), + [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [8213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), + [8215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [8217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), + [8219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [8221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), + [8223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [8225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), + [8227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [8229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), + [8231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [8233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), + [8235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [8237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), + [8239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [8241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), + [8243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [8245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), + [8247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [8249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), + [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [8253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), + [8255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [8257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), + [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), + [8261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), + [8263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), + [8265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), + [8267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [8269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), + [8271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), + [8273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), + [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [8277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), + [8279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [8281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2956), + [8283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [8285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), + [8287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [8289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2963), + [8291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [8293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), + [8295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), + [8297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), + [8299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [8301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), + [8303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [8305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), + [8307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [8309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), + [8311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [8313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), + [8315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [8317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), + [8319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), + [8321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), + [8323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [8325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), + [8327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [8329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), + [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [8333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), + [8335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [8337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), + [8339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [8341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), + [8343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [8345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), + [8347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [8349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), + [8351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [8353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), + [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [8357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), + [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [8361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3069), + [8363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [8365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), + [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [8369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3077), + [8371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [8373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), + [8375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [8377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3086), + [8379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [8381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), + [8383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [8385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3090), + [8387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [8389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), + [8391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [8393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3094), + [8395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [8397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), + [8399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [8401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), + [8403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [8405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), + [8407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [8409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), + [8411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [8413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), + [8415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [8417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), + [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [8421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), + [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [8425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), + [8427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [8429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), + [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [8433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), + [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [8437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), + [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [8441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), + [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [8445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), + [8447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [8449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), + [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [8453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), + [8455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [8457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), + [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [8461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), + [8463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [8465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), + [8467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [8469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), + [8471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [8473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), + [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [8477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), + [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [8481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), + [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [8485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), + [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [8489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), + [8491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [8493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), + [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [8497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), + [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [8501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), + [8503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), + [8505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), + [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [8509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), + [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [8513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), + [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [8517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), + [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [8521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), + [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [8525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), + [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), + [8529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2899), + [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [8533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), + [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [8537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), + [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [8541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), + [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [8545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2913), + [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [8549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), + [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), + [8553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), + [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [8557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), + [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [8561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2919), + [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [8565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), + [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [8569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), + [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [8573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), + [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [8577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), + [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [8581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), + [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [8585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), + [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [8589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), + [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [8593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2947), + [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [8597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), + [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [8601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2955), + [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [8605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), + [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [8609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2957), + [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [8613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), + [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [8617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), + [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [8621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3034), + [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [8625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), + [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [8629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), + [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [8633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2960), + [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [8637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), + [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [8645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), + [8647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5110), + [8649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5350), + [8651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5108), + [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5108), + [8655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), + [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [8659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [8667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), + [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5446), + [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), + [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [8691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5166), + [8693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5406), + [8695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5165), + [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5165), + [8699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), + [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), + [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5435), + [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), + [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), + [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), + [8727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), + [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), + [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), + [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), + [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), + [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), + [8771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5981), + [8779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4953), + [8781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5396), + [8783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4952), + [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), + [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5991), + [8789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6251), + [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6269), + [8801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), + [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), + [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4715), + [8815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [8817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [8821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [8823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [8825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [8833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), + [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5336), + [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), + [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), + [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [8859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [8865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [8867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), + [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [8875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4917), + [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), + [8881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5663), + [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), + [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5400), + [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4917), + [8889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5009), + [8891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5891), + [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), + [8895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4945), + [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7162), + [8907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), + [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [8913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4958), + [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4958), + [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), + [8919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4148), + [8921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), + [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), + [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), + [8927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4147), + [8929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), + [8933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), + [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [8939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), + [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [8945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), + [8947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), + [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [8951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), + [8953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3255), + [8955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [8957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [8961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [8963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [8965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [8967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [8971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [8973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [8975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [8981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), + [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), + [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5369), + [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), + [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), + [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [9001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4798), + [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4798), + [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), + [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), + [9009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4786), + [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4786), + [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4777), + [9015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [9017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [9019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [9025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [9027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [9029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [9035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [9037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), + [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [9043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [9049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), + [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [9055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), + [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [9061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [9063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [9065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5387), + [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), + [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [9085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), + [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5374), + [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5212), + [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), + [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [9105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5219), + [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5219), + [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5216), + [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), + [9113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5238), + [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5238), + [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), + [9119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [9121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [9123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [9127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [9129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), + [9131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [9137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), + [9139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [9141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [9145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [9147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5081), + [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), + [9151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5080), + [9153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5093), + [9155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5093), + [9157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5092), + [9159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [9161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [9163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), + [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [9167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [9169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4984), + [9171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4984), + [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4982), + [9175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), + [9177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [9181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4926), + [9183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4926), + [9185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4915), + [9187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), + [9189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [9191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [9193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [9195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [9199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [9201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), + [9203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), + [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), + [9207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [9209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5480), + [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [9213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5444), + [9215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [9217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), + [9219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5849), + [9221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), + [9223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [9225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [9227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [9229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [9231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [9233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7147), + [9235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [9239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [9241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [9245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [9247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), + [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [9253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [9257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [9259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [9261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [9263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [9265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [9267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), + [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [9273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4026), + [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), + [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5405), + [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), + [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), + [9287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [9291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), + [9295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [9301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), + [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), + [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), + [9307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), + [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [9313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), + [9315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), + [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [9321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), + [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [9327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), + [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [9333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [9335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [9337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [9339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [9341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [9343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), + [9345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [9347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [9349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [9351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [9353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [9355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), + [9357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [9359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [9361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), + [9363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [9365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [9367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [9369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [9371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5453), + [9373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [9375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), + [9377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [9379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [9381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [9383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [9385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3979), + [9387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [9389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [9391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), + [9393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5359), + [9395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), + [9397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), + [9399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [9401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [9403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [9405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [9407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [9409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [9411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [9413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3981), + [9415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), + [9417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), + [9419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), + [9421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [9423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [9425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [9427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), + [9429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [9431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [9433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [9435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), + [9437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), + [9439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [9441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [9443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [9445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [9447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [9449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), + [9451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [9453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [9455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [9457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4223), + [9459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [9461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [9463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), + [9465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5460), + [9467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), + [9469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), + [9471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [9473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [9475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [9477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), + [9479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [9481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [9483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [9485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4258), + [9487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), + [9489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), + [9491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [9493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), + [9495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [9497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [9499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), + [9501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [9503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), + [9505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [9507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [9509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [9511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [9513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), + [9515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), + [9517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [9519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [9521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), + [9523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [9525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [9527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [9529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4179), + [9531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), + [9533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), + [9535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4177), + [9537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), + [9541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [9543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [9545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5450), + [9547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [9549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), + [9551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [9553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [9555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [9557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [9559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4050), + [9561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), + [9563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), + [9565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), + [9567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [9569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [9571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4057), + [9573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), + [9575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), + [9577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [9579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4069), + [9581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [9583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [9585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), + [9587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), + [9589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), + [9591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), + [9593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [9595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [9597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [9599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4068), + [9601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4129), + [9603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), + [9605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), + [9607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), + [9609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4128), + [9611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), + [9613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4904), + [9615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4895), + [9617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4904), + [9619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4895), + [9621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), + [9623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), + [9625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [9627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4585), + [9629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), + [9631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), + [9633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4584), + [9635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [9637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [9639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [9641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), + [9643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6067), + [9645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6094), + [9647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6067), + [9649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6094), + [9651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), + [9653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [9655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [9657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), + [9659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), + [9661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [9663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [9665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), + [9667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5127), + [9669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5126), + [9671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5127), + [9673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5126), + [9675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4943), + [9677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), + [9679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4943), + [9681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4941), + [9683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5145), + [9685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), + [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5145), + [9689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5144), + [9691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5315), + [9693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), + [9695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5315), + [9697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5318), + [9699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [9701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [9703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [9705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [9707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [9709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [9711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [9713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5184), + [9715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), + [9717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5184), + [9719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5170), + [9721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5149), + [9723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5146), + [9725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), + [9727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5146), + [9729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [9731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [9733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [9735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [9737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [9739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [9741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [9743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [9745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), + [9747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [9749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5434), + [9751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [9753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), + [9755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [9757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [9759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [9761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [9763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), + [9765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [9767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [9769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [9771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4183), + [9773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), + [9775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), + [9777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4181), + [9779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4058), + [9781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), + [9783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), + [9785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4056), + [9787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [9789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [9791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [9793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [9795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), + [9797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), + [9799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), + [9801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4119), + [9803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), + [9805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [9807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [9809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [9811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [9813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [9815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [9817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), + [9819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [9821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [9823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [9825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [9827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5403), + [9829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [9831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), + [9833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [9835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [9837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [9839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [9841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [9843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [9847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), + [9849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [9855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [9857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4358), + [9859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), + [9861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), + [9863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4357), + [9865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4303), + [9867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), + [9869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), + [9871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4291), + [9873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [9875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), + [9877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), + [9879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [9881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [9883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [9885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [9887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [9889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), + [9891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3360), + [9893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [9895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), + [9897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [9899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4392), + [9901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), + [9903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), + [9905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), + [9907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4394), + [9909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), + [9911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), + [9913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), + [9915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), + [9917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), + [9919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4299), + [9921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), + [9923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), + [9925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4301), + [9927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), + [9929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), + [9931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), + [9933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), + [9935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [9937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [9939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [9941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [9943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [9945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [9947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [9949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [9951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [9953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [9955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [9957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5820), + [9959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [9961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), + [9963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5207), + [9965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5816), + [9967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5457), + [9969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5820), + [9971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5794), + [9973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5914), + [9975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), + [9977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [9979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [9981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [9983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [9985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5816), + [9987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7135), + [9989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4688), + [9991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), + [9993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), + [9995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), + [9997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4690), + [9999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4690), + [10001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), + [10003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), + [10005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), + [10007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), + [10009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4451), + [10011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), + [10013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), + [10015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4453), + [10017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), + [10019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), + [10021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4698), + [10023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), + [10025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [10027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [10029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [10031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [10033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [10035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4472), + [10037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), + [10039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), + [10041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), + [10043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4474), + [10045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), + [10047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), + [10049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), + [10051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), + [10053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), + [10055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4329), + [10057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), + [10059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), + [10061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4331), + [10063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), + [10065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), + [10067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), + [10069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), + [10071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [10073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [10075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [10077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5231), + [10079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [10081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [10083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4967), + [10085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4843), + [10087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4967), + [10089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4966), + [10091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4969), + [10093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4969), + [10095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4968), + [10097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4754), + [10099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4859), + [10101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), + [10103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4863), + [10105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), + [10107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4862), + [10109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4865), + [10111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4865), + [10113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4864), + [10115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4979), + [10117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4981), + [10119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [10121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [10123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [10125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [10127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [10129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [10131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [10133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [10135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [10137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [10139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [10141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), + [10143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), + [10145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [10147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), + [10149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), + [10151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [10153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), + [10155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), + [10157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [10159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), + [10161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), + [10163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), + [10165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [10167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [10169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), + [10171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [10173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [10175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), + [10177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), + [10179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [10181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), + [10183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [10185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [10187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [10189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [10191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3720), + [10193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), + [10195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), + [10197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), + [10199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), + [10201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), + [10203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), + [10205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), + [10207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [10209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [10211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [10213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [10215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [10217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [10219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [10221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), + [10223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), + [10225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5540), + [10227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [10229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), + [10231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [10233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), + [10235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [10237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [10239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [10241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [10243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [10245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [10247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [10249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), + [10251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [10253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [10255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [10257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [10259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2991), + [10261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [10263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [10265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), + [10267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), + [10269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), + [10271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), + [10273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), + [10275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4003), + [10277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [10279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [10281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), + [10283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3179), + [10285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [10287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [10289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [10291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [10293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [10295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), + [10297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3582), + [10299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [10301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [10303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [10305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), + [10307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [10309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [10311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), + [10313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), + [10315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [10317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [10319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [10321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5771), + [10323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5763), + [10325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5771), + [10327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5772), + [10329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [10331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), + [10333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), + [10335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [10337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [10339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [10341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [10343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [10345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [10347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [10349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), + [10351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), + [10353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), + [10355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), + [10357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2952), + [10359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), + [10361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), + [10363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), + [10365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [10367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [10369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [10371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [10373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4372), + [10375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), + [10377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), + [10379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [10381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [10383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [10385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4410), + [10387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), + [10389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), + [10391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [10393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), + [10395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [10397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [10399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [10401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [10403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [10405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [10407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5417), + [10409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [10411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), + [10413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [10415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [10417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [10419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [10421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [10423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [10425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [10427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3366), + [10429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [10431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), + [10433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), + [10435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [10437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), + [10439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), + [10441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), + [10443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [10445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [10447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [10449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [10451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [10453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [10455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [10457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), + [10459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), + [10461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [10463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [10465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [10467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [10469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [10471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [10473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [10475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [10477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [10479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [10481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [10483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [10485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), + [10487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), + [10489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4846), + [10491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4494), + [10493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), + [10495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), + [10497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5725), + [10499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5455), + [10501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), + [10503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5930), + [10505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4678), + [10507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [10509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [10511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [10513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5326), + [10515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5323), + [10517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), + [10519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [10521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [10523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [10525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5775), + [10527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5775), + [10529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5769), + [10531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4318), + [10533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), + [10535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), + [10537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), + [10539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [10541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [10543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [10545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [10547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4208), + [10549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), + [10551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), + [10553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3079), + [10555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [10557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [10559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), + [10561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), + [10563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [10565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [10567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [10569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), + [10571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3326), + [10573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [10575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [10577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [10579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), + [10581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [10583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [10585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [10587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [10589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [10591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [10593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [10595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [10597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [10599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [10601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [10603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [10605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [10607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [10609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [10611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [10613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [10615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5777), + [10617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5777), + [10619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5778), + [10621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [10623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [10625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [10627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [10629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), + [10631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), + [10633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [10635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [10637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [10639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), + [10641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), + [10643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), + [10645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [10647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), + [10649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [10651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [10653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [10655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [10657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [10659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [10661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [10663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [10665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [10667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [10669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [10671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), + [10673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [10675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [10677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [10679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [10681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [10683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [10685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5776), + [10687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), + [10689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5773), + [10691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [10693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), + [10695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), + [10697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), + [10699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_statement, 1, -1, 3), + [10701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), + [10703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [10705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_statement, 1, -1, 3), + [10707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), + [10709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5713), + [10711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5571), + [10713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4460), + [10715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), + [10717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), + [10719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3729), + [10721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), + [10723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [10725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4415), + [10727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), + [10729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4373), + [10731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), + [10733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3720), + [10736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3720), + [10739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), + [10741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), + [10743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(6178), + [10746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3690), + [10749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3690), + [10752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), + [10754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), + [10756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), + [10758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), + [10760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), + [10762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3670), + [10765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(579), + [10768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), + [10770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3666), + [10773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(5713), + [10776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3722), + [10779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3722), + [10782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignments, 2, 0, 0), + [10784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignments, 2, 0, 0), + [10786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6178), + [10788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3704), + [10791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3704), + [10794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5268), + [10796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5265), + [10798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5265), + [10800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3731), + [10802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), + [10804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6188), + [10806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3704), + [10808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), + [10810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3719), + [10813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3719), + [10816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), + [10818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), + [10820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), + [10822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [10824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3729), + [10827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3729), + [10830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), + [10832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), + [10834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), + [10836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, 0, 29), + [10838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), + [10840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [10842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, 0, 29), + [10844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5706), + [10846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), + [10848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [10850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(4266), + [10853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3731), + [10856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3731), + [10859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(6188), + [10862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), + [10864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), + [10866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4266), + [10868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4320), + [10870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4229), + [10872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3684), + [10875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3684), + [10878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), + [10880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), + [10882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3595), + [10885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(614), + [10888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3686), + [10891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(5721), + [10894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), + [10896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(4229), + [10899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5595), + [10901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), + [10903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [10905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), + [10907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5721), + [10909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), + [10911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4207), + [10913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 62), + [10915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 62), + [10917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(4320), + [10920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 55), + [10922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 55), + [10924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(4207), + [10927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3905), + [10929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [10931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3929), + [10933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5722), + [10935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4341), + [10937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), + [10939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), + [10941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), + [10943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5673), + [10945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4386), + [10947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), + [10949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), + [10951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), + [10953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), + [10955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(4341), + [10958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6152), + [10960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3694), + [10962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [10964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5696), + [10966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(4340), + [10969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3772), + [10971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5636), + [10973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), + [10975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), + [10977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3774), + [10979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [10981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3776), + [10983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5705), + [10985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), + [10987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), + [10989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(4337), + [10992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4340), + [10994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4337), + [10996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3728), + [10999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3728), + [11002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3888), + [11004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5617), + [11006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3905), + [11009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(668), + [11012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3929), + [11015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(5722), + [11018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(6152), + [11021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), + [11023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6164), + [11025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(6164), + [11028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), + [11030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [11032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3744), + [11034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [11036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3746), + [11038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5703), + [11040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(4386), + [11043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3744), + [11046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(648), + [11049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3746), + [11052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(5703), + [11055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), + [11057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), + [11059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), + [11061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3774), + [11064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(691), + [11067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3776), + [11070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(5705), + [11073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6173), + [11075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(6173), + [11078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), + [11080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4496), + [11082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3, 0, 0), + [11084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3, 0, 0), + [11086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), + [11088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3759), + [11090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), + [11092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, 0, 132), + [11094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4813), + [11096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), + [11098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [11100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5716), + [11102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), + [11104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [11106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5831), + [11108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), + [11110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [11112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [11114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [11116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), + [11118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [11120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 45), + [11122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 45), + [11124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), + [11126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [11128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5692), + [11130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_group, 3, 0, 0), + [11132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_group, 3, 0, 0), + [11134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_group, 2, 0, 0), + [11136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_group, 2, 0, 0), + [11138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), + [11140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), + [11142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 3, 0, 30), + [11144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 3, 0, 30), + [11146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [11148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 45), + [11150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 45), + [11152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5488), + [11154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 3, 0, 58), + [11156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 4, 0, 0), + [11158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 4, 0, 0), + [11160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline, 2, 0, 0), + [11162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [11164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), + [11166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3697), + [11169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3697), + [11172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 45), + [11174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 45), + [11176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), + [11178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, 0, 70), + [11180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 3, 0, 0), + [11182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 3, 0, 0), + [11184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subshell, 3, 0, 0), + [11186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subshell, 3, 0, 0), + [11188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 28), + [11190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 28), + [11192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), + [11194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), + [11196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), + [11198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), + [11200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT(407), + [11203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(4496), + [11206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, 0, 72), + [11208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3761), + [11210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [11212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3763), + [11214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5699), + [11216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, 0, 74), + [11218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), + [11220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [11222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5686), + [11224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 2, 0, 0), + [11226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 2, 0, 0), + [11228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 1, 0, 1), + [11230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 1, 0, 1), + [11232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), + [11234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6166), + [11236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(6166), + [11239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2, 0, 0), + [11241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2, 0, 0), + [11243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 45), + [11245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 45), + [11247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 1, 0, 0), + [11249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 1, 0, 0), + [11251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), + [11253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [11255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5719), + [11257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 2, 0, 0), + [11259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, 0, 98), + [11261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, 0, 100), + [11263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(411), + [11266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 3, 0, 45), + [11268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), + [11270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), + [11272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3761), + [11275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(708), + [11278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3763), + [11281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(5699), + [11284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), + [11286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), + [11288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [11290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5455), + [11292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [11294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), + [11296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [11298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [11300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [11302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4782), + [11304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), + [11306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [11308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5688), + [11310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5418), + [11312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [11314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5916), + [11316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), + [11318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [11320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [11322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [11324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [11326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), + [11328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [11330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5327), + [11332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5328), + [11334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [11336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [11338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [11340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), + [11342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), + [11344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [11346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [11348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [11350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 47), + [11352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 47), + [11354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [11356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6, 0, 46), + [11358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 6, 0, 46), + [11360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [11362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [11364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [11366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [11368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [11370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), + [11372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), + [11374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4977), + [11376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 5, 0, 57), + [11378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 5, 0, 57), + [11380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), + [11382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), + [11384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5802), + [11386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [11388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6122), + [11390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7, 0, 46), + [11392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7, 0, 46), + [11394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [11396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 66), + [11398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 66), + [11400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [11402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5076), + [11404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), + [11406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_statement, 2, -1, 15), + [11408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_statement, 2, -1, 15), + [11410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 2), + [11412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 2), + [11414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5810), + [11416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5, 0, 46), + [11418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, 0, 46), + [11420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5, 0, 47), + [11422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, 0, 47), + [11424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6109), + [11426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), + [11428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [11430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6264), + [11432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 6, 0, 69), + [11434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 6, 0, 69), + [11436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 76), + [11438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 76), + [11440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4990), + [11442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 4, 0, 43), + [11444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 4, 0, 43), + [11446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [11448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 6, 0, 47), + [11450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6, 0, 47), + [11452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 85), + [11454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 85), + [11456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [11458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [11460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5295), + [11462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [11464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [11466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5203), + [11468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 48), + [11470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 48), + [11472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [11474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7, 0, 47), + [11476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7, 0, 47), + [11478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4994), + [11480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5809), + [11482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [11484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [11486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [11488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [11490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 8, 0, 46), + [11492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 8, 0, 46), + [11494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 8, 0, 47), + [11496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 8, 0, 47), + [11498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [11500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 19), + [11502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 19), + [11504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [11506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), + [11508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), + [11510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [11512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), + [11514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [11516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [11518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [11520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [11522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [11524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), + [11526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), + [11528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), + [11530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [11532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [11534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [11536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 46), + [11538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 46), + [11540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [11542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [11544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [11546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5753), + [11548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [11550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), + [11552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), + [11554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [11556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3765), + [11558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [11560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5700), + [11562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), + [11564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), + [11566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [11568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(413), + [11571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [11573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [11575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [11577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [11579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [11581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(418), + [11584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [11586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [11588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4830), + [11590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(4830), + [11593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(406), + [11596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(402), + [11599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [11601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), + [11603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [11605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [11607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [11609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [11611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(414), + [11614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), + [11616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [11618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [11620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), + [11622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [11624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [11626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3786), + [11628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5510), + [11630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [11632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [11634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6079), + [11636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5709), + [11638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_expression, 1, 0, 12), + [11640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [11642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [11644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [11646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), + [11648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3693), + [11651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [11653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3703), + [11656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [11658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [11660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [11662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), + [11664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [11666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [11668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [11670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [11672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [11674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [11676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [11678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [11680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), + [11682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [11684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [11686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), + [11688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), + [11690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [11692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [11694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3604), + [11697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3604), + [11700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(870), + [11703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3613), + [11706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(5714), + [11709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [11711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [11713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 1, 0, 16), + [11715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__heredoc_command, 1, 0, 16), + [11717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 1, 0, 17), + [11719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__heredoc_command, 1, 0, 17), + [11721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [11723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [11725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [11727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), + [11729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [11731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [11733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3788), + [11735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [11737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), + [11739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5711), + [11741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), + [11743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3788), + [11746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(888), + [11749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3790), + [11752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(5711), + [11755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), + [11757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), + [11759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [11761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), + [11763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), + [11765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [11767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [11769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [11771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6176), + [11773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(6176), + [11776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [11778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [11780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), + [11782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), + [11784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [11786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [11788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5714), + [11790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 116), + [11792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 116), + [11794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, 0, 84), + [11796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 145), + [11798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 145), + [11800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, 0, 84), + [11802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 111), + [11804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 111), + [11806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, 0, 47), + [11808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, 0, 156), + [11810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, 0, 156), + [11812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 6, 0, 113), + [11814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5143), + [11816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 104), + [11818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 104), + [11820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, 0, 60), + [11822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), + [11824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6739), + [11826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), + [11828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3507), + [11830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5689), + [11832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4541), + [11834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 3, 0, 65), + [11836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [11838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [11840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [11842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5856), + [11844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), + [11846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), + [11848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [11850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), + [11852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718), + [11854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 106), + [11856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 106), + [11858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, 0, 80), + [11860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(6171), + [11863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), + [11865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, 0, 82), + [11867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, 0, 82), + [11869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, 0, 61), + [11871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [11873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5143), + [11876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 141), + [11878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 141), + [11880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, 0, 47), + [11882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 143), + [11884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 143), + [11886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, 0, 113), + [11888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [11890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5495), + [11892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), + [11894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 135), + [11896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 135), + [11898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, 0, 80), + [11900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3705), + [11903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 139), + [11905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 139), + [11907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, 0, 110), + [11909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, 0, 78), + [11911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, 0, 78), + [11913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, 0, 60), + [11915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [11917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 137), + [11919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 137), + [11921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, 0, 46), + [11923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), + [11925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), + [11927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3792), + [11929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [11931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5712), + [11933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3648), + [11936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3648), + [11939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1020), + [11942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3642), + [11945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(5718), + [11948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6171), + [11950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), + [11952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3711), + [11955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, 0, 154), + [11957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, 0, 154), + [11959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 6, 0, 110), + [11961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), + [11963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), + [11965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 114), + [11967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 114), + [11969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, 0, 61), + [11971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [11973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6397), + [11975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 2, 0, 50), + [11977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5883), + [11979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3702), + [11982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6793), + [11984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 3, 0, 52), + [11986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5863), + [11988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 108), + [11990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 108), + [11992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, 0, 46), + [11994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3709), + [11997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6336), + [11999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4962), + [12001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 1, 0, 12), + [12003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5797), + [12005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6124), + [12007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 105), + [12009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 105), + [12011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 107), + [12013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 107), + [12015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 109), + [12017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 109), + [12019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 112), + [12021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 112), + [12023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 115), + [12025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 115), + [12027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 117), + [12029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 117), + [12031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), + [12033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), + [12035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [12037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5710), + [12039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 136), + [12041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 136), + [12043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 138), + [12045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 138), + [12047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 140), + [12049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 140), + [12051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 142), + [12053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 142), + [12055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 144), + [12057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 144), + [12059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 146), + [12061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 146), + [12063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, 0, 155), + [12065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, 0, 155), + [12067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, 0, 157), + [12069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, 0, 157), + [12071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5198), + [12073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, 0, 83), + [12075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, 0, 83), + [12077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), + [12079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5191), + [12082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5192), + [12085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), + [12087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), + [12089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), + [12091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [12093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5198), + [12096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5182), + [12099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, 0, 79), + [12101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, 0, 79), + [12103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6065), + [12105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5225), + [12108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5971), + [12110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6027), + [12112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6799), + [12114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 4, 0, 65), + [12116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5898), + [12118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7029), + [12120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 3, 0, 50), + [12122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5933), + [12124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5957), + [12126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5973), + [12128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), + [12130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6045), + [12132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6050), + [12134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6039), + [12136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6063), + [12138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6009), + [12140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6018), + [12142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5975), + [12144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3706), + [12146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [12148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6773), + [12150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 4, 0, 52), + [12152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5887), + [12154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [12156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(416), + [12159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5799), + [12161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5457), + [12163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5798), + [12165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5798), + [12167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(407), + [12170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(407), + [12173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), + [12175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), + [12177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [12179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [12181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3627), + [12184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1448), + [12187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3628), + [12190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(5702), + [12193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [12195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3706), + [12198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3706), + [12201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT(407), + [12204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), + [12206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5320), + [12208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [12210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), + [12212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [12214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6758), + [12216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [12218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [12220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), + [12222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [12224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7044), + [12226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [12228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), + [12230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [12232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7045), + [12234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [12236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), + [12238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [12240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [12242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), + [12244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [12246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7066), + [12248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5320), + [12251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [12253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), + [12255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [12257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6117), + [12259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6116), + [12261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6116), + [12263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), + [12265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), + [12267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), + [12269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), + [12271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6002), + [12273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6002), + [12275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5977), + [12277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6883), + [12279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), + [12281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), + [12283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5621), + [12285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [12287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5758), + [12289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4653), + [12291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [12293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [12295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [12297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5566), + [12299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [12301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5561), + [12303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [12305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5519), + [12307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6246), + [12309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5507), + [12311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [12313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5578), + [12315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5815), + [12317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5533), + [12319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [12321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5473), + [12323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4251), + [12325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5570), + [12327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [12329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5521), + [12331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6299), + [12333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5482), + [12335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), + [12337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5524), + [12339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6102), + [12341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5526), + [12343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6085), + [12345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5528), + [12347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4051), + [12349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5485), + [12351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6096), + [12353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5530), + [12355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4018), + [12357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5474), + [12359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4255), + [12361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5534), + [12363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), + [12365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5537), + [12367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), + [12369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5541), + [12371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6259), + [12373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5542), + [12375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6277), + [12377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5546), + [12379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4989), + [12381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5476), + [12383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4263), + [12385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5577), + [12387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [12389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5547), + [12391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4995), + [12393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5549), + [12395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), + [12397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5551), + [12399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), + [12401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5582), + [12403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [12405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5556), + [12407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), + [12409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5478), + [12411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4268), + [12413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5633), + [12415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4006), + [12417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5589), + [12419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [12421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5635), + [12423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4073), + [12425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5592), + [12427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [12429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5639), + [12431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [12433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5641), + [12435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [12437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5576), + [12439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), + [12441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5643), + [12443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4078), + [12445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5558), + [12447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), + [12449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3457), + [12452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3458), + [12455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5682), + [12458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [12460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5758), + [12463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4653), + [12466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(149), + [12469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(150), + [12472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(151), + [12475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5605), + [12477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4240), + [12479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5645), + [12481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4080), + [12483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5650), + [12485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), + [12487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5596), + [12489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [12491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5545), + [12493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [12495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5560), + [12497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5280), + [12499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5487), + [12501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6107), + [12503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5611), + [12505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4335), + [12507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5536), + [12509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [12511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5490), + [12513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), + [12515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5514), + [12517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), + [12519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5652), + [12521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [12523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5562), + [12525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5250), + [12527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5604), + [12529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), + [12531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5565), + [12533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), + [12535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5567), + [12537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), + [12539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5619), + [12541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), + [12543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5492), + [12545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), + [12547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5502), + [12549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [12551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5554), + [12553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [12555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5607), + [12557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), + [12559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5496), + [12561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), + [12563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5505), + [12565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [12567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5624), + [12569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4105), + [12571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5572), + [12573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [12575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5616), + [12577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), + [12579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5498), + [12581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), + [12583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5640), + [12585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4944), + [12587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5653), + [12589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [12591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5655), + [12593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [12595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5523), + [12597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), + [12599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5500), + [12601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5086), + [12603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5644), + [12605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4956), + [12607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5573), + [12609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [12611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5658), + [12613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [12615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5620), + [12617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [12619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5627), + [12621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4182), + [12623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5579), + [12625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5199), + [12627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5651), + [12629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3278), + [12631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5660), + [12633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [12635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5674), + [12637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5151), + [12639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5518), + [12641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), + [12643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5583), + [12645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), + [12647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5585), + [12649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), + [12651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5588), + [12653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4993), + [12655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5590), + [12657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4998), + [12659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5593), + [12661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6309), + [12663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5597), + [12665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6302), + [12667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5628), + [12669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [12671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5656), + [12673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), + [12675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5506), + [12677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4898), + [12679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5626), + [12681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), + [12683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5599), + [12685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), + [12687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5601), + [12689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [12691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5631), + [12693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [12695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5603), + [12697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), + [12699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5661), + [12701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), + [12703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5634), + [12705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3045), + [12707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5580), + [12709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4650), + [12711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5475), + [12713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4654), + [12715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5606), + [12717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [12719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5637), + [12721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), + [12723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5494), + [12725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [12727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5520), + [12729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), + [12731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5509), + [12733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4946), + [12735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5612), + [12737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), + [12739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5642), + [12741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [12743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5472), + [12745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), + [12747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5614), + [12749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [12751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5508), + [12753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), + [12755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5646), + [12757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [12759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5662), + [12761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [12763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5531), + [12765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), + [12767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5666), + [12769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [12771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5535), + [12773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), + [12775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5486), + [12777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), + [12779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5654), + [12781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), + [12783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5618), + [12785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [12787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5491), + [12789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), + [12791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5481), + [12793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [12795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5552), + [12797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [12799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5670), + [12801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [12803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5657), + [12805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), + [12807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5470), + [12809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), + [12811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5622), + [12813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), + [12815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5504), + [12817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [12819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5664), + [12821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), + [12823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5515), + [12825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5844), + [12827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5569), + [12829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5800), + [12831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5550), + [12833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), + [12835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5672), + [12837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [12839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5648), + [12841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4442), + [12843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5665), + [12845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), + [12847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5630), + [12849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4195), + [12851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5669), + [12853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), + [12855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5671), + [12857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), + [12859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5555), + [12861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [12863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5625), + [12865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [12867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5516), + [12869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5936), + [12871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5471), + [12873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4463), + [12875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5501), + [12877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5023), + [12879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5738), + [12881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5729), + [12883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5762), + [12885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5762), + [12887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4476), + [12889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), + [12891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4260), + [12893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4655), + [12895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4271), + [12897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [12899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6114), + [12901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3951), + [12903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6763), + [12905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), + [12907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [12909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6763), + [12911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), + [12913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), + [12915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), + [12917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6066), + [12919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5415), + [12921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6078), + [12923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6078), + [12925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), + [12927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6914), + [12929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [12931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [12933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6914), + [12935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [12937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), + [12939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5100), + [12941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [12943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), + [12945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4909), + [12947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), + [12949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), + [12951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [12953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), + [12955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [12957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5874), + [12959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), + [12961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6141), + [12963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), + [12965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6101), + [12967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4027), + [12969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), + [12971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), + [12973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), + [12975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6132), + [12977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5015), + [12979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), + [12981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [12983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [12985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), + [12987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), + [12989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5253), + [12991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), + [12993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [12995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), + [12997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7047), + [12999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), + [13001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [13003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7047), + [13005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), + [13007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [13009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [13011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [13013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5792), + [13015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), + [13017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), + [13019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5006), + [13021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), + [13023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7067), + [13025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [13027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [13029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7067), + [13031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), + [13033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [13035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6345), + [13037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [13039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), + [13041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), + [13043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4250), + [13045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [13047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3889), + [13049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6643), + [13051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), + [13053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [13055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6643), + [13057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [13059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [13061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [13063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4107), + [13065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [13067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4199), + [13069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [13071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4075), + [13073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), + [13075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3029), + [13077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [13079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4886), + [13081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4089), + [13083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [13085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [13087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), + [13089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), + [13091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), + [13093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3112), + [13095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), + [13097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [13099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), + [13101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [13103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3930), + [13105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), + [13107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [13109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), + [13111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5160), + [13113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), + [13115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7023), + [13117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [13119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [13121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7023), + [13123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), + [13125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), + [13127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [13129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3962), + [13131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), + [13133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [13135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), + [13137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), + [13139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2920), + [13141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [13143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5680), + [13145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5679), + [13147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5679), + [13149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5695), + [13152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4583), + [13155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(325), + [13158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(326), + [13161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(327), + [13164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5690), + [13167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), + [13169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), + [13171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [13173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [13175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [13177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), + [13179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [13181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [13183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3866), + [13185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), + [13187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [13189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), + [13191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), + [13193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), + [13195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), + [13197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5806), + [13199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5805), + [13201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5805), + [13203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), + [13205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [13207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [13209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), + [13211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), + [13213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), + [13215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), + [13217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [13219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [13221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [13223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), + [13225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [13227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [13229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), + [13231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), + [13233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [13235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [13237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5695), + [13239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), + [13241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [13243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [13245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [13247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), + [13249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 1, 0, 0), + [13251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), + [13253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), + [13255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [13257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), + [13259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), + [13261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [13263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [13265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [13267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3677), + [13269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [13271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [13273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [13275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3775), + [13277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [13279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [13281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), + [13283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), + [13285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [13287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [13289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3708), + [13291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [13293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [13295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), + [13297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), + [13299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), + [13301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [13303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), + [13305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [13307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [13309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), + [13311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), + [13313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), + [13315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [13317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [13319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3793), + [13321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), + [13323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [13325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), + [13327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), + [13329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [13331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [13333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), + [13335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [13337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [13339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [13341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3800), + [13343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), + [13345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [13347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), + [13349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), + [13351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), + [13353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), + [13355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, 0, 52), + [13357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6790), + [13359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), + [13361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [13363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [13365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), + [13367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3779), + [13369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), + [13371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [13373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5690), + [13375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 2, 0, 0), + [13377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), + [13379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), + [13381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [13383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), + [13385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3909), + [13387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), + [13389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [13391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), + [13393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3944), + [13395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [13397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [13399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [13401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3816), + [13403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), + [13405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [13407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), + [13409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), + [13411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), + [13413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [13415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5764), + [13417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [13419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [13421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [13423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [13425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), + [13427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [13429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [13431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [13433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [13435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [13437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), + [13439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [13441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), + [13443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), + [13445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [13447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [13449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [13451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), + [13453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [13455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [13457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [13459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [13461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [13463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [13465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), + [13467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [13469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [13471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [13473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [13475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [13477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5348), + [13479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), + [13481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [13483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [13485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [13487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, 0, 0), + [13489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766), + [13491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [13493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [13495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3831), + [13497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), + [13499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 3, 0, 0), + [13501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), + [13503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332), + [13505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 1, 0, 12), + [13507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [13509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [13511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [13513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6322), + [13515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5843), + [13517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5456), + [13519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5770), + [13521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_regex, 1, 0, 12), + [13523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5843), + [13525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5770), + [13527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(5843), + [13530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(5456), + [13533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(5768), + [13536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expansion_regex_repeat1, 2, 0, 0), + [13538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(5843), + [13541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(5768), + [13544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), + [13546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6829), + [13548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6829), + [13550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5768), + [13552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_regex, 2, 0, 12), + [13554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5768), + [13556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), + [13558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7006), + [13560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7006), + [13562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), + [13564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6820), + [13566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6820), + [13568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), + [13570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7123), + [13572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7123), + [13574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), + [13576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5804), + [13578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), + [13580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6830), + [13582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6830), + [13584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), + [13586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7129), + [13588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7129), + [13590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [13592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7024), + [13594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7024), + [13596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), + [13598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7022), + [13600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7022), + [13602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [13604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3831), + [13607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3831), + [13610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), + [13612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5783), + [13614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length_binary_expression, 3, 0, 27), + [13616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5774), + [13618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5897), + [13620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length_expression, 1, 0, 0), + [13622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4974), + [13624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 2, 0, 12), + [13626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5897), + [13629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length_expression, 1, 0, 7), + [13631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4887), + [13633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 2, 0, 51), + [13635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3988), + [13637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4493), + [13639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), + [13641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [13643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5954), + [13645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [13647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [13649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 4, 0, 65), + [13651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [13653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [13655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [13657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [13659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6622), + [13661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), + [13663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, 0, 52), + [13665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6331), + [13667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [13669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6735), + [13671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 3, 0, 50), + [13673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6359), + [13675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [13677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [13679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [13681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), + [13683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [13685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [13687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expansion_regex_repeat1, 1, 0, 49), + [13689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expansion_regex_repeat1, 1, 0, 49), + [13691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4350), + [13693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), + [13695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [13697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 5, 0, 124), + [13699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), + [13701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [13703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), + [13705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [13707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4417), + [13709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), + [13711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), + [13713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [13715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [13717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [13719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [13721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [13723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [13725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [13727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [13729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 4, 0, 52), + [13731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [13733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [13735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [13737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [13739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 5, 0, 65), + [13741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 4, 0, 91), + [13743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [13745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [13747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [13749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [13751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6872), + [13753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, 0, 90), + [13755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6368), + [13757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [13759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [13761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5970), + [13763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [13765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 5, 0, 123), + [13767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [13769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [13771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 3, 0, 50), + [13773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [13775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [13777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [13779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 5, 0, 52), + [13781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4462), + [13783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), + [13785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [13787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), + [13789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [13791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [13793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [13795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [13797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [13799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [13801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5227), + [13803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [13805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [13807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [13809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4390), + [13811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), + [13813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [13815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [13817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [13819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [13821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [13823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [13825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [13827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [13829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [13831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [13833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6035), + [13835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [13837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [13839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [13841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), + [13843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), + [13845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [13847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4465), + [13849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), + [13851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [13853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [13855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 3, 0, 64), + [13857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [13859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), + [13861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [13863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 4, 0, 50), + [13865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 4, 0, 92), + [13867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4475), + [13869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), + [13871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6043), + [13873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [13875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [13877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [13879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3987), + [13881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), + [13883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 4, 0, 93), + [13885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2, 0, 31), + [13887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6591), + [13889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5701), + [13891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6900), + [13893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6460), + [13895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7004), + [13897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5782), + [13899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6236), + [13901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), + [13903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6354), + [13905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6354), + [13907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, 0, 53), + [13909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2, 0, 32), + [13911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), + [13913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6307), + [13915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6307), + [13917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__concatenation_in_expansion, 2, 0, 0), + [13919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6731), + [13921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 3, 0, 63), + [13923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6119), + [13925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), + [13927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6339), + [13929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6339), + [13931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6594), + [13933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, 0, 86), + [13935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 0), + [13937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(390), + [13940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6123), + [13942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, 0, 46), + [13944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, 0, 47), + [13946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), + [13948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6696), + [13950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__concatenation_in_expansion_repeat1, 2, 0, 0), + [13952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__concatenation_in_expansion_repeat1, 2, 0, 0), SHIFT_REPEAT(4997), + [13955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), + [13957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3699), + [13960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2, 0, 34), + [13962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2, 0, 34), SHIFT_REPEAT(6087), + [13965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6469), + [13967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, 0, 54), + [13969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6867), + [13971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, 0, 122), + [13973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 1, 0, 7), + [13975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6095), + [13977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), + [13979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6334), + [13981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6334), + [13983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__for_body_repeat1, 2, 0, 0), + [13985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__for_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4493), + [13988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__for_body_repeat1, 2, 0, 0), + [13990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6073), + [13992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, 0, 46), + [13994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4931), + [13996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5034), + [13998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(6298), + [14001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, 0, 84), + [14003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4877), + [14005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5054), + [14007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5055), + [14009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 3, 0, 61), + [14011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4955), + [14013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5010), + [14015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_expression, 2, 0, 12), + [14017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4924), + [14019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5047), + [14021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5048), + [14023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_variable_assignment, 3, 0, 56), + [14025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_variable_assignment, 3, 0, 56), + [14027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 1, 0, 12), + [14029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 5, 0, 113), + [14031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4900), + [14033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5067), + [14035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), + [14037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(6236), + [14040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 5, 0, 110), + [14042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4986), + [14044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5065), + [14046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5066), + [14048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, 0, 47), + [14050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4910), + [14052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), + [14054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression, 1, 0, 26), + [14056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression, 1, 0, 26), + [14058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4880), + [14060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5071), + [14062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5072), + [14064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 3, 0, 60), + [14066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4885), + [14068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4999), + [14070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, 0, 80), + [14072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4925), + [14074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5027), + [14076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), + [14078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4920), + [14080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5059), + [14082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5060), + [14084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4949), + [14086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5073), + [14088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5074), + [14090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [14092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [14094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [14096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, 0, 75), + [14098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4626), + [14100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6086), + [14102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [14104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [14106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), + [14108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [14110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), + [14112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [14114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [14116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [14118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5075), + [14120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), + [14122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [14124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [14126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [14128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [14130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [14132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5082), + [14134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [14136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [14138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [14140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), + [14142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__for_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4626), + [14145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [14147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), + [14149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [14151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [14153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [14155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), + [14157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [14159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 7, 0, 151), + [14161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 7, 0, 152), + [14163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), + [14165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 7, 0, 153), + [14167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [14169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [14171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [14173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [14175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [14177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5139), + [14179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [14181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [14183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [14185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), + [14187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [14189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [14191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arithmetic_expansion_repeat1, 2, 0, 0), SHIFT_REPEAT(3399), + [14194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5094), + [14196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [14198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, 0, 81), SHIFT_REPEAT(3368), + [14201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, 0, 81), + [14203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5095), + [14205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [14207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [14209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5097), + [14211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5821), + [14213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [14215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [14217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [14219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4899), + [14221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [14223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [14225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [14227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [14229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [14231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [14233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [14235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5104), + [14237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [14239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [14241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6283), + [14243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5105), + [14245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [14247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), + [14249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [14251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [14253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5106), + [14255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 8, 0, 159), + [14257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), + [14259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), + [14261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5109), + [14263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5111), + [14265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [14267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), + [14269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), + [14271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5112), + [14273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5113), + [14275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), + [14277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 2, 0, 12), + [14279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6328), + [14281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5087), + [14283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, 0, 97), + [14285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [14287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [14289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), + [14291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [14293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5306), + [14295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), + [14297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [14299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [14301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, 0, 99), + [14303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [14305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 3, 0, 59), + [14307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [14309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__for_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4660), + [14312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), + [14314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4928), + [14316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [14318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [14320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [14322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6333), + [14324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6375), + [14326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5756), + [14328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [14330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6305), + [14332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [14334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [14336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5085), + [14338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [14340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, 0, 129), + [14342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, 0, 130), + [14344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, 0, 131), + [14346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [14348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), + [14350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, 0, 133), + [14352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, 0, 134), + [14354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, 0, 101), + [14356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), + [14358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6325), + [14360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6314), + [14362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [14364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [14366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), + [14368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, 0, 71), + [14370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, 0, 102), + [14372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [14374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, 0, 103), + [14376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [14378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, 0, 73), + [14380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [14382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [14384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [14386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [14388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [14390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [14392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [14394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [14396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [14398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [14400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [14402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [14404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [14406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), + [14408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5983), + [14410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [14412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 3, 0, 12), + [14414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6865), + [14416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, 0, 120), + [14418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), + [14420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6060), + [14422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), + [14424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5961), + [14426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6655), + [14428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, 0, 89), + [14430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_removal, 1, 0, 12), + [14432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6562), + [14434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), + [14436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5968), + [14438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6539), + [14440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 6, 0, 90), + [14442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [14444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [14446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [14448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5277), + [14450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [14452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7037), + [14454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [14456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [14458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [14460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), + [14462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7132), + [14464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5796), + [14466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), + [14468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [14470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [14472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [14474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), + [14476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6828), + [14478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), + [14480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6041), + [14482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6042), + [14484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5808), + [14486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5308), + [14488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [14490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), + [14492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [14494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6817), + [14496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [14498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [14500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [14502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6047), + [14504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6048), + [14506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [14508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6585), + [14510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6055), + [14512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [14514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), + [14516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [14518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [14520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6056), + [14522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [14524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6832), + [14526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), + [14528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [14530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4681), + [14532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4683), + [14534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5302), + [14536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6499), + [14538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5823), + [14540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), + [14542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [14544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6744), + [14546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4561), + [14548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4755), + [14550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), + [14552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [14554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5024), + [14556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7134), + [14558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4757), + [14560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), + [14562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__test_command_binary_expression, 3, 0, 44), + [14564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), + [14566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6874), + [14568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [14570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [14572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), + [14574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), + [14576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [14578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6474), + [14580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), + [14582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [14584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4765), + [14586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5984), + [14588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [14590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [14592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6587), + [14594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), + [14596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6029), + [14598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [14600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), + [14602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5287), + [14604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6704), + [14606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), + [14608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4749), + [14610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4750), + [14612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5297), + [14614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [14616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6810), + [14618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [14620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5786), + [14622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), + [14624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), + [14626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4735), + [14628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4717), + [14630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6927), + [14632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5788), + [14634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), + [14636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), + [14638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [14640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), + [14642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7122), + [14644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [14646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6076), + [14648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [14650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6051), + [14652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [14654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6423), + [14656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5147), + [14658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5032), + [14660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), + [14662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [14664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [14666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [14668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6468), + [14670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [14672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), + [14674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [14676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), + [14678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6775), + [14680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [14682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6013), + [14684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), + [14686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [14688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6990), + [14690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [14692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), + [14694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), + [14696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [14698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [14700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6461), + [14702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [14704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [14706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), + [14708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 7, 0, 158), + [14710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6514), + [14712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [14714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), + [14716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), + [14718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [14720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6578), + [14722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5817), + [14724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5818), + [14726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), + [14728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5822), + [14730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [14732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6626), + [14734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6128), + [14736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [14738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6075), + [14740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), + [14742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6106), + [14744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6686), + [14746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_removal, 2, 0, 12), + [14748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [14750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [14752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [14754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [14756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [14758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6732), + [14760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4714), + [14762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6583), + [14764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [14766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), + [14768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), + [14770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6798), + [14772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6023), + [14774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6306), + [14776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), + [14778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6837), + [14780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [14782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6025), + [14784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [14786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), + [14788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), + [14790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), + [14792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6912), + [14794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [14796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [14798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [14800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, 0, 118), + [14802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [14804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6947), + [14806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6053), + [14808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [14810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [14812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6994), + [14814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [14816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), + [14818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [14820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [14822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [14824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7125), + [14826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6054), + [14828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [14830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), + [14832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6892), + [14834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [14836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [14838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), + [14840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, 0, 119), + [14842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), + [14844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6545), + [14846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5274), + [14848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), + [14850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5943), + [14852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [14854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6389), + [14856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5944), + [14858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), + [14860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [14862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), + [14864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), + [14866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6527), + [14868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [14870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5298), + [14872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), + [14874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [14876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [14878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6683), + [14880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [14882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6948), + [14884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [14886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5016), + [14888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), + [14890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [14892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6841), + [14894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [14896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), + [14898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, 0, 121), + [14900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [14902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [14904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6955), + [14906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [14908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [14910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [14912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [14914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [14916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6377), + [14918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5947), + [14920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [14922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [14924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), + [14926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6428), + [14928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5300), + [14930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), + [14932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), + [14934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), + [14936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6462), + [14938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [14940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [14942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), + [14944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), + [14946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [14948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [14950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6497), + [14952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [14954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [14956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [14958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6522), + [14960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [14962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [14964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [14966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4983), + [14968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [14970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6550), + [14972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5962), + [14974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [14976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4884), + [14978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [14980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [14982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [14984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [14986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [14988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4891), + [14990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5118), + [14992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [14994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [14996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), + [14998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [15000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), + [15002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), + [15004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), + [15006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), + [15008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [15010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), + [15012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [15014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, 0, 87), + [15016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5197), + [15018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [15020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), + [15022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, 0, 88), + [15024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6647), + [15026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [15028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), + [15030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [15032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), + [15034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [15036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [15038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [15040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [15042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), + [15044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [15046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [15048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5759), + [15050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6825), + [15052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [15054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5743), + [15056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [15058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [15060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [15062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [15064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), + [15066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), + [15068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5812), + [15070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), + [15072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [15074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4971), + [15076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), + [15078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), + [15080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), + [15082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4280), + [15084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5175), + [15086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [15088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), + [15090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6736), + [15092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [15094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), + [15096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [15098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_operator, 2, 0, 50), + [15100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5730), + [15102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6690), + [15104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [15106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [15108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [15110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), + [15112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [15114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), + [15116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), + [15118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6004), + [15120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6006), + [15122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), + [15124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [15126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [15128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [15130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [15132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [15134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [15136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6125), + [15138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [15140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [15142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5740), + [15144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), + [15146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [15148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6957), + [15150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5803), + [15152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5879), + [15154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [15156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [15158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [15160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5785), + [15162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [15164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5029), + [15166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6010), + [15168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6019), + [15170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5038), + [15172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6016), + [15174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [15176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), + [15178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5950), + [15180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6021), + [15182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5958), + [15184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285), + [15186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6022), + [15188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [15190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [15192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [15194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [15196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [15198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [15200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), + [15202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5980), + [15204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [15206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5982), + [15208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [15210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 6, 0, 147), + [15212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6057), + [15214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 6, 0, 148), + [15216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5937), + [15218] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [15220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5945), + [15222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [15224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 6, 0, 149), + [15226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), + [15228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [15230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), + [15232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6127), + [15234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6118), + [15236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [15238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [15240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [15242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [15244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), + [15246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5747), + [15248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [15250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [15252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [15254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [15256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), + [15258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [15260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), + [15262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6769), + [15264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), + [15266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [15268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [15270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [15272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5761), + [15274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7013), + [15276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), + [15278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [15280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5741), + [15282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [15284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [15286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [15288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [15290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [15292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), + [15294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [15296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [15298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), + [15300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [15302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6824), + [15304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [15306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), + [15308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), + [15310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), + [15312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5728), + [15314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), + [15316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5726), + [15318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [15320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [15322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5736), + [15324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [15326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [15328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5979), + [15330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [15332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), + [15334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6327), + [15336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [15338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [15340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [15342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), + [15344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [15346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5735), + [15348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [15350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [15352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [15354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [15356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [15358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), + [15360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [15362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6862), + [15364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [15366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [15368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6289), + [15370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [15372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), + [15374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), + [15376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5746), + [15378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), + [15380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4975), + [15382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), + [15384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [15386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6100), + [15388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6091), + [15390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [15392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), + [15394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [15396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6908), + [15398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [15400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), + [15402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), + [15404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), + [15406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5001), + [15408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [15410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), + [15412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [15414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [15416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [15418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), + [15420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [15422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [15424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [15426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6952), + [15428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [15430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), + [15432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [15434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5757), + [15436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5737), + [15438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5223), + [15440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5220), + [15442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), + [15444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6634), + [15446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5752), + [15448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7046), + [15450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [15452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5828), + [15454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5731), + [15456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [15458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), + [15460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [15462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [15464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [15466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [15468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [15470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [15472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [15474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [15476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), + [15478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6081), + [15480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [15482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [15484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5000), + [15486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5748), + [15488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6570), + [15490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5749), + [15492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [15494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [15496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6437), + [15498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [15500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6220), + [15502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6237), + [15504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5951), + [15506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5952), + [15508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [15510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5917), + [15512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [15514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [15516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6992), + [15518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [15520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [15522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6792), + [15524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [15526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [15528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6896), + [15530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6926), + [15532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6962), + [15534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6983), + [15536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7003), + [15538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7061), + [15540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6381), + [15542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6390), + [15544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6399), + [15546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6408), + [15548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6417), + [15550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6426), + [15552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6435), + [15554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6442), + [15556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6449), + [15558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6456), + [15560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6463), + [15562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6470), + [15564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6477), + [15566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6484), + [15568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6491), + [15570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6498), + [15572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6505), + [15574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6512), + [15576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6519), + [15578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6526), + [15580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6533), + [15582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6540), + [15584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6547), + [15586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6554), + [15588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6561), + [15590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6568), + [15592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6575), + [15594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6582), + [15596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6589), + [15598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6596), + [15600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6603), + [15602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6610), + [15604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6617), + [15606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6624), + [15608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6631), + [15610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6638), + [15612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6645), + [15614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6652), + [15616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6659), + [15618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6666), + [15620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6673), + [15622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6680), + [15624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6687), + [15626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6694), + [15628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6701), + [15630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6754), + [15632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5960), + [15634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5966), + [15636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6089), + [15638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [15640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [15642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [15644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5974), + [15646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [15648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6906), + [15650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [15652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5976), + [15654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [15656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [15658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7015), + [15660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7042), + [15662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7065), + [15664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7068), + [15666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7069), + [15668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7070), + [15670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7071), + [15672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7072), + [15674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7073), + [15676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7074), + [15678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7075), + [15680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7076), + [15682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7077), + [15684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7078), + [15686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7079), + [15688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7080), + [15690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7081), + [15692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7082), + [15694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7083), + [15696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7084), + [15698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7085), + [15700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7086), + [15702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7087), + [15704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7088), + [15706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7089), + [15708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7090), + [15710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7091), + [15712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7092), + [15714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7093), + [15716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7094), + [15718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7095), + [15720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7096), + [15722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7097), + [15724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7098), + [15726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7099), + [15728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7100), + [15730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7101), + [15732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7102), + [15734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7103), + [15736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7104), + [15738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7105), + [15740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7106), + [15742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7107), + [15744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7108), + [15746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7109), + [15748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7110), + [15750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7111), + [15752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7112), + [15754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7113), + [15756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7114), + [15758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7115), + [15760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7116), + [15762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7117), + [15764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7118), }; enum ts_external_scanner_symbol_identifiers { @@ -349665,7 +332425,7 @@ static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token___error_recovery] = sym___error_recovery, }; -static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { +static const bool ts_external_scanner_states[129][EXTERNAL_TOKEN_COUNT] = { [1] = { [ts_external_token_heredoc_start] = true, [ts_external_token_simple_heredoc_body] = true, @@ -349724,22 +332484,22 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { }, [5] = { [ts_external_token_file_descriptor] = true, - [ts_external_token__concat] = true, + [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, - [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, - [ts_external_token_RBRACK] = true, - [ts_external_token_LT_LT] = true, - [ts_external_token_LT_LT_DASH] = true, [ts_external_token_LPAREN] = true, + [ts_external_token_esac] = true, }, [6] = { [ts_external_token_file_descriptor] = true, - [ts_external_token_variable_name] = true, + [ts_external_token__concat] = true, [ts_external_token_test_operator] = true, + [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, + [ts_external_token_RBRACK] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, [ts_external_token_LPAREN] = true, - [ts_external_token_esac] = true, }, [7] = { [ts_external_token__concat] = true, @@ -349854,21 +332614,21 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_file_descriptor] = true, [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, - [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, [ts_external_token_heredoc_redirect_token1] = true, - [ts_external_token_esac] = true, }, [19] = { [ts_external_token_file_descriptor] = true, [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, + [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, [ts_external_token_heredoc_redirect_token1] = true, + [ts_external_token_esac] = true, }, [20] = { [ts_external_token_file_descriptor] = true, @@ -349940,33 +332700,32 @@ 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_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_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, }, [30] = { [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_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, }, [31] = { [ts_external_token_file_descriptor] = true, @@ -349981,6 +332740,7 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { }, [32] = { [ts_external_token_file_descriptor] = true, + [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, [ts_external_token__brace_start] = true, [ts_external_token_RBRACK] = true, @@ -350018,11 +332778,6 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LT_LT] = true, }, [37] = { - [ts_external_token_variable_name] = true, - [ts_external_token_test_operator] = true, - [ts_external_token_LT_LT] = true, - }, - [38] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, [ts_external_token_variable_name] = true, @@ -350033,6 +332788,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, @@ -350046,34 +332806,34 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [41] = { [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_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, [ts_external_token_heredoc_redirect_token1] = true, - [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, [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, [ts_external_token_heredoc_redirect_token1] = true, + [ts_external_token_esac] = true, }, - [44] = { + [43] = { [ts_external_token__concat] = true, [ts_external_token_test_operator] = true, [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, }, + [44] = { + [ts_external_token_test_operator] = true, + [ts_external_token__brace_start] = true, + [ts_external_token_LPAREN] = true, + }, [45] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, @@ -350089,16 +332849,19 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LT_LT] = true, }, [47] = { - [ts_external_token_file_descriptor] = 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_heredoc_redirect_token1] = true, + [ts_external_token_LPAREN] = true, }, [48] = { + [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__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, }, [49] = { @@ -350108,14 +332871,9 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LPAREN] = true, }, [50] = { - [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, [ts_external_token_test_operator] = true, - [ts_external_token__bare_dollar] = true, - [ts_external_token__brace_start] = true, [ts_external_token_LT_LT] = true, - [ts_external_token_LT_LT_DASH] = true, - [ts_external_token_LPAREN] = true, }, [51] = { [ts_external_token_file_descriptor] = true, @@ -350127,11 +332885,6 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LT_LT_DASH] = true, }, [52] = { - [ts_external_token__concat] = true, - [ts_external_token_test_operator] = true, - [ts_external_token_LT_LT] = true, - }, - [53] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, [ts_external_token_variable_name] = true, @@ -350141,12 +332894,7 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, - [54] = { - [ts_external_token_test_operator] = true, - [ts_external_token_extglob_pattern] = true, - [ts_external_token_LT_LT] = true, - }, - [55] = { + [53] = { [ts_external_token_test_operator] = true, [ts_external_token_extglob_pattern] = true, [ts_external_token__brace_start] = true, @@ -350154,7 +332902,7 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LPAREN] = true, [ts_external_token_esac] = true, }, - [56] = { + [54] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, [ts_external_token_variable_name] = true, @@ -350163,48 +332911,47 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, - [57] = { + [55] = { + [ts_external_token_test_operator] = true, + [ts_external_token_extglob_pattern] = true, + [ts_external_token_LT_LT] = true, + }, + [56] = { [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] = { + [57] = { [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, }, + [58] = { + [ts_external_token__concat] = 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_RBRACK] = 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, }, [61] = { [ts_external_token_LT_LT] = true, - }, - [62] = { - [ts_external_token_test_operator] = true, - [ts_external_token_extglob_pattern] = true, - [ts_external_token_RBRACK] = true, - [ts_external_token_LT_LT] = true, - }, - [63] = { - [ts_external_token_LT_LT] = true, [ts_external_token_heredoc_redirect_token1] = true, }, - [64] = { + [62] = { [ts_external_token_file_descriptor] = true, [ts_external_token_variable_name] = true, [ts_external_token_LT_LT] = true, @@ -350212,141 +332959,134 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_heredoc_redirect_token1] = true, [ts_external_token_esac] = true, }, - [65] = { + [63] = { + [ts_external_token_test_operator] = true, + [ts_external_token_extglob_pattern] = true, [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, }, - [66] = { + [64] = { [ts_external_token__concat] = true, [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, }, - [67] = { + [65] = { + [ts_external_token_RBRACK] = true, + [ts_external_token_LT_LT] = true, + }, + [66] = { [ts_external_token_file_descriptor] = 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, }, - [68] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token__concat] = true, + [67] = { [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] = { + [68] = { + [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, - [ts_external_token_extglob_pattern] = true, + [ts_external_token__expansion_word] = true, [ts_external_token__brace_start] = true, + [ts_external_token_RBRACE] = true, [ts_external_token_LPAREN] = true, - [ts_external_token_esac] = true, }, - [70] = { + [69] = { [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, }, - [71] = { + [70] = { [ts_external_token_test_operator] = true, [ts_external_token__brace_start] = true, [ts_external_token_heredoc_redirect_token1] = true, }, - [72] = { + [71] = { [ts_external_token__immediate_double_hash] = true, [ts_external_token__external_expansion_sym_hash] = true, [ts_external_token__external_expansion_sym_bang] = true, [ts_external_token__external_expansion_sym_equal] = true, [ts_external_token_RBRACE] = true, }, - [73] = { - [ts_external_token_variable_name] = true, - [ts_external_token_test_operator] = true, - [ts_external_token__expansion_word] = true, - [ts_external_token__brace_start] = true, - [ts_external_token_RBRACE] = true, - [ts_external_token_LPAREN] = true, - }, - [74] = { + [72] = { [ts_external_token__empty_value] = true, [ts_external_token_test_operator] = true, [ts_external_token__brace_start] = true, [ts_external_token_LPAREN] = true, }, - [75] = { + [73] = { [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, [ts_external_token__brace_start] = true, [ts_external_token_heredoc_redirect_token1] = true, }, - [76] = { + [74] = { [ts_external_token_variable_name] = true, [ts_external_token_LPAREN] = true, }, - [77] = { + [75] = { [ts_external_token_file_descriptor] = true, [ts_external_token_variable_name] = true, [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, - [78] = { - [ts_external_token_test_operator] = true, - [ts_external_token__brace_start] = true, - }, - [79] = { + [76] = { [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] = { + [77] = { [ts_external_token_file_descriptor] = true, [ts_external_token_variable_name] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, - [82] = { - [ts_external_token_variable_name] = true, + [78] = { [ts_external_token_test_operator] = true, [ts_external_token__brace_start] = true, }, - [83] = { + [79] = { + [ts_external_token__immediate_double_hash] = true, + [ts_external_token_RBRACE] = true, + }, + [80] = { + [ts_external_token_test_operator] = true, + [ts_external_token__bare_dollar] = true, + [ts_external_token__brace_start] = true, + [ts_external_token_RBRACK] = true, + }, + [81] = { [ts_external_token_test_operator] = true, [ts_external_token_regex] = true, [ts_external_token__brace_start] = true, }, - [84] = { + [82] = { + [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, - [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, - [ts_external_token_RBRACK] = true, }, - [85] = { + [83] = { [ts_external_token_test_operator] = true, [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, }, - [86] = { + [84] = { [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, }, - [87] = { - [ts_external_token_heredoc_redirect_token1] = true, - [ts_external_token_LPAREN] = true, - }, - [88] = { - [ts_external_token__immediate_double_hash] = true, - }, - [89] = { + [85] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, [ts_external_token_variable_name] = true, @@ -350355,41 +333095,47 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_heredoc_redirect_token1] = true, [ts_external_token_esac] = true, }, - [90] = { + [86] = { + [ts_external_token__immediate_double_hash] = true, + }, + [87] = { + [ts_external_token_heredoc_redirect_token1] = true, + [ts_external_token_LPAREN] = true, + }, + [88] = { [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] = { + [89] = { [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, }, - [92] = { + [90] = { [ts_external_token_file_descriptor] = true, + [ts_external_token__concat] = true, + [ts_external_token_variable_name] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, [ts_external_token_heredoc_redirect_token1] = true, }, - [93] = { + [91] = { [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, }, - [94] = { + [92] = { [ts_external_token_file_descriptor] = 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, }, - [95] = { + [93] = { [ts_external_token__concat] = true, [ts_external_token__immediate_double_hash] = true, [ts_external_token__external_expansion_sym_hash] = true, @@ -350397,124 +333143,134 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__external_expansion_sym_equal] = true, [ts_external_token_RBRACE] = true, }, - [96] = { + [94] = { [ts_external_token_LPAREN] = true, }, - [97] = { + [95] = { [ts_external_token__concat] = true, [ts_external_token_test_operator] = true, [ts_external_token__brace_start] = true, [ts_external_token_heredoc_redirect_token1] = true, }, - [98] = { + [96] = { [ts_external_token_variable_name] = 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, }, - [99] = { + [97] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, - [100] = { + [98] = { [ts_external_token__concat] = true, [ts_external_token_test_operator] = true, [ts_external_token__brace_start] = true, }, - [101] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token_RBRACK] = true, - [ts_external_token_LT_LT] = true, - [ts_external_token_LT_LT_DASH] = true, + [99] = { + [ts_external_token_variable_name] = true, + [ts_external_token__expansion_word] = true, + [ts_external_token_RBRACE] = true, + [ts_external_token_LPAREN] = true, }, - [102] = { + [100] = { [ts_external_token_file_descriptor] = true, + [ts_external_token__concat] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, - [103] = { + [101] = { [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, }, - [104] = { + [102] = { [ts_external_token_file_descriptor] = true, - [ts_external_token__concat] = true, + [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, - [105] = { - [ts_external_token_variable_name] = true, - [ts_external_token__expansion_word] = true, - [ts_external_token_RBRACE] = true, - [ts_external_token_LPAREN] = true, - }, - [106] = { + [103] = { [ts_external_token_RBRACE] = true, [ts_external_token_heredoc_redirect_token1] = true, [ts_external_token_LPAREN] = true, }, - [107] = { + [104] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, + }, + [105] = { [ts_external_token_variable_name] = true, [ts_external_token__expansion_word] = true, [ts_external_token_LPAREN] = true, }, - [108] = { + [106] = { [ts_external_token_file_descriptor] = true, [ts_external_token_heredoc_redirect_token1] = true, }, - [109] = { + [107] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, [ts_external_token_heredoc_redirect_token1] = true, }, - [110] = { + [108] = { [ts_external_token_variable_name] = true, [ts_external_token_heredoc_redirect_token1] = true, }, - [111] = { + [109] = { [ts_external_token_variable_name] = true, }, - [112] = { + [110] = { [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, - [113] = { + [111] = { [ts_external_token_heredoc_content] = true, [ts_external_token_heredoc_end] = true, }, - [114] = { + [112] = { [ts_external_token_RBRACE] = true, }, - [115] = { + [113] = { [ts_external_token__concat] = true, }, - [116] = { + [114] = { [ts_external_token__concat] = true, [ts_external_token_heredoc_redirect_token1] = true, }, - [117] = { + [115] = { [ts_external_token__regex_no_slash] = true, [ts_external_token_RBRACE] = true, }, - [118] = { + [116] = { [ts_external_token_regex] = true, [ts_external_token_RBRACE] = true, }, - [119] = { + [117] = { [ts_external_token_heredoc_redirect_token1] = true, }, - [120] = { + [118] = { [ts_external_token__concat] = true, [ts_external_token__expansion_word] = true, [ts_external_token_RBRACE] = true, }, + [119] = { + [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, + }, + [120] = { + [ts_external_token_simple_heredoc_body] = true, + [ts_external_token__heredoc_body_beginning] = true, + }, [121] = { [ts_external_token__concat] = true, [ts_external_token_RBRACE] = true, @@ -350527,32 +333283,22 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_RBRACE] = true, }, [123] = { - [ts_external_token__external_expansion_sym_hash] = true, - [ts_external_token__external_expansion_sym_bang] = true, - [ts_external_token__external_expansion_sym_equal] = true, - [ts_external_token_RBRACE] = true, - }, - [124] = { - [ts_external_token_simple_heredoc_body] = true, - [ts_external_token__heredoc_body_beginning] = true, - }, - [125] = { [ts_external_token_esac] = true, }, - [126] = { + [124] = { [ts_external_token_extglob_pattern] = true, }, - [127] = { + [125] = { [ts_external_token__concat] = true, [ts_external_token_RBRACK] = true, }, - [128] = { + [126] = { [ts_external_token_RBRACK] = true, }, - [129] = { + [127] = { [ts_external_token_heredoc_end] = true, }, - [130] = { + [128] = { [ts_external_token_heredoc_start] = true, }, }; diff --git a/test/corpus/commands.txt b/test/corpus/commands.txt index 5c868df..dc630a0 100644 --- a/test/corpus/commands.txt +++ b/test/corpus/commands.txt @@ -226,14 +226,14 @@ x /dev/null -exec grep -l "pattern" {} \; + +--- + +(program + (redirected_statement + (command + (command_name + (word)) (word) (word) + (string + (string_content))) + (file_redirect + (file_descriptor) + (word)) + (word) + (word) + (word) + (string + (string_content)) + (concatenation (word) - (word)))) + (word)) + (word))) =============================== File redirects (noclobber override)